2015-03-05 14:29:05 +00:00
|
|
|
#ifndef UTILS_H
|
|
|
|
#define UTILS_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2015-03-07 17:31:48 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2015-03-05 14:29:05 +00:00
|
|
|
template<typename charT>
|
|
|
|
struct my_equal {
|
2015-03-07 17:31:48 +00:00
|
|
|
my_equal( const locale loc ) : loc_(loc) {}
|
2015-03-05 14:29:05 +00:00
|
|
|
bool operator()(charT ch1, charT ch2) {
|
2015-03-07 17:31:48 +00:00
|
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
2015-03-10 14:35:50 +00:00
|
|
|
return tolower(ch1) == tolower(ch2);
|
2015-03-07 17:31:48 +00:00
|
|
|
#else
|
2015-03-10 14:35:50 +00:00
|
|
|
return tolower(ch1, loc_) == tolower(ch2, loc_);
|
2015-03-07 17:31:48 +00:00
|
|
|
#endif
|
2015-03-05 14:29:05 +00:00
|
|
|
}
|
|
|
|
private:
|
2015-03-07 17:31:48 +00:00
|
|
|
const locale& loc_;
|
2015-03-05 14:29:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Utils {
|
|
|
|
public:
|
|
|
|
// find substring (case insensitive)
|
|
|
|
template<typename T> static int ci_find_substr(const T& str1,
|
|
|
|
const T& str2,
|
2015-03-07 17:31:48 +00:00
|
|
|
const locale& loc = locale()) {
|
2015-03-06 14:32:36 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-03-10 14:35:50 +00:00
|
|
|
template<typename T> static int ci_find_substr(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;
|
|
|
|
}
|
|
|
|
|
2015-03-06 14:32:36 +00:00
|
|
|
char * getProxy();
|
|
|
|
int getProxyPort();
|
2015-03-05 14:29:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // UTILS_H
|