2017-02-17 09:57:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <string_view>
|
2017-04-17 07:06:01 +00:00
|
|
|
|
2017-04-14 22:30:33 +00:00
|
|
|
#include <algorithm>
|
2018-02-07 05:26:38 +00:00
|
|
|
#include <iterator>
|
2018-02-22 07:34:32 +00:00
|
|
|
#include <memory>
|
2017-02-17 09:57:44 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-12-22 16:48:12 +00:00
|
|
|
void TrimInPlace(std::string& s);
|
|
|
|
std::string Trim(std::string s);
|
2017-05-29 21:18:35 +00:00
|
|
|
|
2018-03-31 18:32:28 +00:00
|
|
|
uint64_t HashUsr(std::string_view s);
|
2018-01-13 19:39:06 +00:00
|
|
|
|
2017-03-31 04:15:42 +00:00
|
|
|
// Returns true if |value| starts/ends with |start| or |ending|.
|
2018-03-29 23:57:10 +00:00
|
|
|
bool StartsWith(std::string_view value, std::string_view start);
|
|
|
|
bool EndsWith(std::string_view value, std::string_view ending);
|
2018-03-31 18:32:28 +00:00
|
|
|
bool EndsWithAny(std::string_view s, const std::vector<std::string>& ss);
|
2018-01-12 17:37:33 +00:00
|
|
|
bool FindAnyPartial(const std::string& value,
|
|
|
|
const std::vector<std::string>& values);
|
2018-01-11 02:33:20 +00:00
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
std::vector<std::string> SplitString(const std::string& str,
|
|
|
|
const std::string& delimiter);
|
2017-05-19 01:14:53 +00:00
|
|
|
|
2018-03-31 18:32:28 +00:00
|
|
|
std::string LowerPathIfInsensitive(const std::string& path);
|
2017-05-22 07:14:11 +00:00
|
|
|
|
2017-09-14 06:39:32 +00:00
|
|
|
template <typename TValues, typename TMap>
|
2018-01-18 01:51:58 +00:00
|
|
|
std::string StringJoinMap(const TValues& values,
|
|
|
|
const TMap& map,
|
|
|
|
const std::string& sep = ", ") {
|
2017-04-26 04:03:22 +00:00
|
|
|
std::string result;
|
|
|
|
bool first = true;
|
|
|
|
for (auto& entry : values) {
|
|
|
|
if (!first)
|
2018-01-18 01:51:58 +00:00
|
|
|
result += sep;
|
2017-04-26 04:03:22 +00:00
|
|
|
first = false;
|
2017-09-14 06:39:32 +00:00
|
|
|
result += map(entry);
|
2017-04-26 04:03:22 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-04-24 01:01:51 +00:00
|
|
|
|
2017-09-14 06:39:32 +00:00
|
|
|
template <typename TValues>
|
2018-01-18 01:51:58 +00:00
|
|
|
std::string StringJoin(const TValues& values, const std::string& sep = ", ") {
|
|
|
|
return StringJoinMap(values, [](const std::string& entry) { return entry; },
|
|
|
|
sep);
|
2017-09-14 06:39:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 19:51:15 +00:00
|
|
|
// Ensures that |path| ends in a slash.
|
|
|
|
void EnsureEndsInSlash(std::string& path);
|
|
|
|
|
2017-12-02 05:07:30 +00:00
|
|
|
// Converts a file path to one that can be used as filename.
|
|
|
|
// e.g. foo/bar.c => foo_bar.c
|
|
|
|
std::string EscapeFileName(std::string path);
|
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
std::optional<std::string> ReadContent(const std::string& filename);
|
2017-03-04 01:45:20 +00:00
|
|
|
void WriteToFile(const std::string& filename, const std::string& content);
|
2018-04-22 17:01:44 +00:00
|
|
|
std::optional<int64_t> LastWriteTime(const std::string& filename);
|
2017-03-04 01:45:20 +00:00
|
|
|
|
2017-03-16 07:36:49 +00:00
|
|
|
// http://stackoverflow.com/a/38140932
|
|
|
|
//
|
|
|
|
// struct SomeHashKey {
|
|
|
|
// std::string key1;
|
|
|
|
// std::string key2;
|
|
|
|
// bool key3;
|
|
|
|
// };
|
|
|
|
// MAKE_HASHABLE(SomeHashKey, t.key1, t.key2, t.key3)
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
inline void hash_combine(std::size_t& seed) {}
|
2017-03-16 07:36:49 +00:00
|
|
|
|
|
|
|
template <typename T, typename... Rest>
|
|
|
|
inline void hash_combine(std::size_t& seed, const T& v, Rest... rest) {
|
|
|
|
std::hash<T> hasher;
|
|
|
|
seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
|
|
|
|
hash_combine(seed, rest...);
|
|
|
|
}
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
#define MAKE_HASHABLE(type, ...) \
|
|
|
|
namespace std { \
|
|
|
|
template <> \
|
|
|
|
struct hash<type> { \
|
|
|
|
std::size_t operator()(const type& t) const { \
|
|
|
|
std::size_t ret = 0; \
|
|
|
|
hash_combine(ret, __VA_ARGS__); \
|
|
|
|
return ret; \
|
|
|
|
} \
|
|
|
|
}; \
|
|
|
|
}
|
|
|
|
|
2017-12-20 17:10:57 +00:00
|
|
|
std::string GetDefaultResourceDirectory();
|