2015-12-23 08:45:53 -05:00
|
|
|
#include "..\STDInclude.hpp"
|
|
|
|
|
|
|
|
#define VA_BUFFER_COUNT 4
|
2016-01-01 20:28:09 -05:00
|
|
|
#define VA_BUFFER_SIZE 65536
|
2015-12-23 08:45:53 -05:00
|
|
|
|
|
|
|
namespace Utils
|
|
|
|
{
|
|
|
|
const char *VA(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
static char g_vaBuffer[VA_BUFFER_COUNT][VA_BUFFER_SIZE];
|
|
|
|
static int g_vaNextBufferIndex = 0;
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
char* dest = g_vaBuffer[g_vaNextBufferIndex];
|
2016-01-01 20:28:09 -05:00
|
|
|
vsnprintf(g_vaBuffer[g_vaNextBufferIndex], VA_BUFFER_SIZE, fmt, ap);
|
2015-12-23 08:45:53 -05:00
|
|
|
g_vaNextBufferIndex = (g_vaNextBufferIndex + 1) % VA_BUFFER_COUNT;
|
|
|
|
va_end(ap);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string StrToLower(std::string input)
|
|
|
|
{
|
|
|
|
std::transform(input.begin(), input.end(), input.begin(), ::tolower);
|
|
|
|
return input;
|
|
|
|
}
|
2015-12-24 08:28:08 -05:00
|
|
|
|
|
|
|
bool EndsWith(const char* heystack, const char* needle)
|
|
|
|
{
|
|
|
|
return (strstr(heystack, needle) == (heystack + strlen(heystack) - strlen(needle)));
|
|
|
|
}
|
2015-12-24 11:30:36 -05:00
|
|
|
|
2015-12-25 15:42:35 -05:00
|
|
|
std::vector<std::string> Explode(const std::string& str, char delim)
|
2015-12-24 11:30:36 -05:00
|
|
|
{
|
2015-12-25 15:42:35 -05:00
|
|
|
std::vector<std::string> result;
|
|
|
|
std::istringstream iss(str);
|
2015-12-24 11:30:36 -05:00
|
|
|
|
2015-12-25 15:42:35 -05:00
|
|
|
for (std::string token; std::getline(iss, token, delim);)
|
2015-12-24 11:30:36 -05:00
|
|
|
{
|
2015-12-27 22:02:30 -05:00
|
|
|
std::string _entry = std::move(token);
|
|
|
|
|
|
|
|
// Remove trailing 0x0 bytes
|
|
|
|
while (_entry.size() && !_entry[_entry.size() - 1])
|
|
|
|
{
|
|
|
|
_entry = _entry.substr(0, _entry.size() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
result.push_back(_entry);
|
2015-12-24 11:30:36 -05:00
|
|
|
}
|
|
|
|
|
2015-12-25 15:42:35 -05:00
|
|
|
return result;
|
2015-12-24 11:30:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void Replace(std::string &string, std::string find, std::string replace)
|
|
|
|
{
|
|
|
|
size_t nPos = 0;
|
|
|
|
|
|
|
|
while ((nPos = string.find(find, nPos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
string = string.replace(nPos, find.length(), replace);
|
|
|
|
nPos += replace.length();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-24 13:21:10 -05:00
|
|
|
unsigned int OneAtATime(char *key, size_t len)
|
|
|
|
{
|
|
|
|
unsigned int hash, i;
|
|
|
|
for (hash = i = 0; i < len; ++i)
|
|
|
|
{
|
|
|
|
hash += key[i];
|
|
|
|
hash += (hash << 10);
|
|
|
|
hash ^= (hash >> 6);
|
|
|
|
}
|
|
|
|
hash += (hash << 3);
|
|
|
|
hash ^= (hash >> 11);
|
|
|
|
hash += (hash << 15);
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2016-01-01 14:01:19 -05:00
|
|
|
// trim from start
|
|
|
|
std::string <rim(std::string &s)
|
|
|
|
{
|
|
|
|
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trim from end
|
|
|
|
std::string &RTrim(std::string &s)
|
|
|
|
{
|
|
|
|
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trim from both ends
|
|
|
|
std::string &Trim(std::string &s)
|
|
|
|
{
|
|
|
|
return LTrim(RTrim(s));
|
|
|
|
}
|
|
|
|
|
2016-01-04 05:32:05 -05:00
|
|
|
std::string ParseChallenge(std::string data)
|
|
|
|
{
|
|
|
|
// Ensure line break
|
|
|
|
data.append("\n");
|
|
|
|
return data.substr(0, data.find_first_of("\n")).data();
|
|
|
|
}
|
|
|
|
|
2015-12-24 11:30:36 -05:00
|
|
|
// Infostring class
|
|
|
|
void InfoString::Set(std::string key, std::string value)
|
|
|
|
{
|
|
|
|
this->KeyValuePairs[key] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string InfoString::Get(std::string key)
|
|
|
|
{
|
|
|
|
if (this->KeyValuePairs.find(key) != this->KeyValuePairs.end())
|
|
|
|
{
|
|
|
|
return this->KeyValuePairs[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string InfoString::Build()
|
|
|
|
{
|
|
|
|
std::string infoString;
|
|
|
|
|
|
|
|
bool first = true;
|
|
|
|
|
|
|
|
for (auto i = this->KeyValuePairs.begin(); i != this->KeyValuePairs.end(); i++)
|
|
|
|
{
|
|
|
|
if (first) first = false;
|
|
|
|
else infoString.append("\\");
|
|
|
|
|
|
|
|
infoString.append(i->first); // Key
|
|
|
|
infoString.append("\\");
|
|
|
|
infoString.append(i->second); // Value
|
|
|
|
}
|
|
|
|
|
|
|
|
return infoString;
|
|
|
|
}
|
|
|
|
|
2015-12-25 15:42:35 -05:00
|
|
|
void InfoString::Dump()
|
|
|
|
{
|
|
|
|
for (auto i = this->KeyValuePairs.begin(); i != this->KeyValuePairs.end(); i++)
|
|
|
|
{
|
|
|
|
OutputDebugStringA(Utils::VA("%s: %s", i->first.data(), i->second.data()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-24 11:30:36 -05:00
|
|
|
void InfoString::Parse(std::string buffer)
|
|
|
|
{
|
2015-12-27 22:02:30 -05:00
|
|
|
if (buffer[0] == '\\')
|
|
|
|
{
|
|
|
|
buffer = buffer.substr(1);
|
|
|
|
}
|
|
|
|
|
2015-12-25 15:42:35 -05:00
|
|
|
std::vector<std::string> KeyValues = Utils::Explode(buffer, '\\');
|
2015-12-24 11:30:36 -05:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < (KeyValues.size() - 1); i+=2)
|
|
|
|
{
|
|
|
|
this->KeyValuePairs[KeyValues[i]] = KeyValues[i + 1];
|
|
|
|
}
|
|
|
|
}
|
2015-12-23 08:45:53 -05:00
|
|
|
}
|