1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#ifndef UTIL_H
#define UTIL_H
#include <algorithm>
#include <cassert>
#include <string>
#include <sstream>
#include <vector>
#include "System/MainDefines.h"
/*
* Pre-processor trickery, useful to create unique identifiers.
* see http://stackoverflow.com/questions/461062/c-anonymous-variables
*/
#define _UTIL_CONCAT_SUB(start, end) \
start##end
#define _UTIL_CONCAT(start, end) \
_UTIL_CONCAT_SUB(start, end)
#define DO_ONCE(func) \
struct do_once##func { do_once##func() {func();} }; static do_once##func do_once_var##func;
#define DO_ONCE_FNC(code) \
struct _UTIL_CONCAT(doOnce, __LINE__) { _UTIL_CONCAT(doOnce, __LINE__)() { code; } }; static _UTIL_CONCAT(doOnce, __LINE__) _UTIL_CONCAT(doOnceVar, __LINE__);
static inline void StringToLowerInPlace(std::string& s)
{
std::transform(s.begin(), s.end(), s.begin(), (int (*)(int))tolower);
}
static inline std::string StringToLower(std::string s)
{
StringToLowerInPlace(s);
return s;
}
/**
* @brief Escape special characters and wrap in double quotes.
*/
static inline std::string Quote(std::string esc)
{
std::string::size_type pos = 0;
while ((pos = esc.find_first_of("\"\\\b\f\n\r\t", pos)) != std::string::npos) {
switch (esc[pos]) {
case '\"':
case '\\': esc.insert(pos, "\\"); break;
case '\b': esc.replace(pos, 1, "\\b"); break;
case '\f': esc.replace(pos, 1, "\\f"); break;
case '\n': esc.replace(pos, 1, "\\n"); break;
case '\r': esc.replace(pos, 1, "\\r"); break;
case '\t': esc.replace(pos, 1, "\\t"); break;
}
pos += 2;
}
std::ostringstream buf;
buf << "\"" << esc << "\"";
return buf.str();
}
/**
* @brief Escape special characters and wrap in double quotes.
*/
static inline std::string UnQuote(const std::string& str)
{
if (str[0] == '"' && str[str.length() - 1] == '"') {
return str.substr(1, str.length() - 2);
}
return str;
}
//! replace all characters matching 'c' in a string by 'd'
static inline std::string& StringReplaceInPlace(std::string& s, char c, char d)
{
size_t i = 0;
while (i < s.size()) {
if (s[i] == c) {
s[i] = d;
}
i++;
}
return s;
}
/**
* Replaces all instances of <code>from</code> to <code>to</code>
* in <code>text</code>.
*/
std::string StringReplace(const std::string& text,
const std::string& from,
const std::string& to);
/// strips any occurrences of characters in <chars> from <str>
std::string StringStrip(const std::string& str, const std::string& chars);
/// Removes leading and trailing whitespace from a string, in place.
void StringTrimInPlace(std::string& str, const std::string& ws = " \t\n\r");
/// Removes leading and trailing whitespace from a string, in a copy.
std::string StringTrim(const std::string& str, const std::string& ws = " \t\n\r");
static inline std::string IntToString(int i, const std::string& format = "%i")
{
char buf[64];
SNPRINTF(buf, sizeof(buf), format.c_str(), i);
return std::string(buf);
}
static inline std::string FloatToString(float f, const std::string& format = "%f")
{
char buf[64];
SNPRINTF(buf, sizeof(buf), format.c_str(), f);
return std::string(buf);
}
template<typename int_type = int>
static inline int_type StringToInt(std::string str, bool* failed = NULL)
{
StringTrimInPlace(str);
std::istringstream stream(str);
int_type buffer = 0;
stream >> buffer;
if (failed != NULL)
*failed = stream.fail();
return buffer;
}
/**
* Returns true of the argument string matches "0|n|no|f|false".
* The matching is done case insensitive.
*/
bool StringToBool(std::string str);
bool StringStartsWith(const std::string& str, const char* prefix);
bool StringEndsWith(const std::string& str, const char* postfix);
/// Returns true if str starts with prefix
static inline bool StringStartsWith(const std::string& str, const std::string& prefix)
{
return StringStartsWith(str, prefix.c_str());
}
/// Returns true if str ends with postfix
static inline bool StringEndsWith(const std::string& str, const std::string& postfix)
{
return StringEndsWith(str, postfix.c_str());
}
/// Appends postfix, when it doesn't already ends with it
static inline void EnsureEndsWith(std::string* str, const char* postfix)
{
if (!StringEndsWith(*str, postfix)) {
*str += postfix;
}
}
/**
* Sets a bool according to the value encoded in a string.
* The conversion works like this:
* - "" -> toggle-value
* - "0" -> false
* - "1" -> true
*/
void InverseOrSetBool(bool& b, const std::string& argValue, const bool inverseArg = false);
namespace utf8 {
char32_t GetNextChar(const std::string& text, int& pos);
std::string FromUnicode(char32_t ch);
static inline int CharLen(const std::string& str, int pos)
{
const auto oldPos = pos;
utf8::GetNextChar(str, pos);
return pos - oldPos;
}
static inline int NextChar(const std::string& str, int pos)
{
utf8::GetNextChar(str, pos);
return pos;
}
static inline int PrevChar(const std::string& str, int pos)
{
int startPos = std::max(pos - 4, 0);
int oldPos = startPos;
while (startPos < pos) {
oldPos = startPos;
utf8::GetNextChar(str, startPos);
}
return oldPos;
}
};
#if !defined(UNITSYNC) && !defined(UNIT_TEST) && !defined(BUILDING_AI)
namespace zlib {
std::vector<std::uint8_t> deflate(const std::uint8_t* inflData, unsigned long inflSize);
std::vector<std::uint8_t> inflate(const std::uint8_t* deflData, unsigned long deflSize);
std::vector<std::uint8_t> deflate(const std::vector<std::uint8_t>& inflData);
std::vector<std::uint8_t> inflate(const std::vector<std::uint8_t>& deflData);
};
#endif //UNITSYNC
#endif // UTIL_H
|