mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <qstring.h>
|
|
|
|
using namespace std;
|
|
|
|
template<typename charT>
|
|
struct my_equal {
|
|
my_equal( const locale loc ) : loc_(loc) {}
|
|
bool operator()(charT ch1, charT ch2) {
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
|
return tolower(ch1) == tolower(ch2);
|
|
#else
|
|
return tolower(ch1, loc_) == tolower(ch2, loc_);
|
|
#endif
|
|
}
|
|
private:
|
|
const locale& loc_;
|
|
};
|
|
|
|
class Utils {
|
|
public:
|
|
// find substring (case insensitive)
|
|
template<typename T> static int ustrstr(const T& str1,
|
|
const T& str2,
|
|
const locale& loc = locale()) {
|
|
|
|
auto it = std::search(str1.begin(), str1.end(), str2.begin(), str2.end(),
|
|
my_equal<typename T::value_type>(loc));
|
|
if(it != str1.end()) return it - str1.begin();
|
|
else return -1;
|
|
}
|
|
|
|
template<typename T> static int ustrstr(const T& str1,
|
|
const char* str2c,
|
|
const locale& loc = locale()) {
|
|
|
|
std::string str2 = std::string(str2c);
|
|
auto it = std::search(str1.begin(), str1.end(), str2.begin(), str2.end(),
|
|
my_equal<typename T::value_type>(loc));
|
|
if (it != str1.end()) return it - str1.begin();
|
|
else return -1;
|
|
}
|
|
|
|
template<typename T> static int ustrstr(const T *str1,
|
|
const char* str2c,
|
|
const locale& loc = locale()) {
|
|
|
|
std::string str2 = std::string(str2c);
|
|
auto it = std::search(str1->begin(), str1->end(), str2.begin(), str2.end(),
|
|
my_equal<typename T::value_type>(loc));
|
|
if (it != str1->end()) return it - str1->begin();
|
|
else return -1;
|
|
}
|
|
|
|
static QString GetNSErrorDefinition(const char *str, const char *elem){
|
|
const char *temp = strstr(str, elem);
|
|
|
|
if (temp != NULL)
|
|
{
|
|
char definition[128] = { 0 };
|
|
const char *firstComma = strstr(temp + strlen(elem) + 1, "\"");
|
|
const char *lastComma = strstr(firstComma + 1, "\"");
|
|
|
|
int sz = lastComma - firstComma - 1;
|
|
|
|
strncpy(definition, firstComma + 1, (sz < 128 ? sz : 128));
|
|
|
|
return QString(definition);
|
|
}
|
|
else return QString("No definition found!");
|
|
}
|
|
|
|
char * getProxy();
|
|
int getProxyPort();
|
|
};
|
|
|
|
#endif // UTILS_H
|