/* */ #ifndef _D_UTIL_H_ #define _D_UTIL_H_ #include "common.h" #include #include #include #include using namespace std; #define STRTOLL(X) strtoll(X, (char**)NULL, 10); class Util { public: static void split(pair& hp, string src, char delim); static string llitos(long long int value, bool comma = false); static string itos(int value, bool comma = false); /** * Computes difference in micro-seconds between tv1 and tv2, * assuming tv1 is newer than tv2. * If tv1 is older than tv2, then this method returns 0. */ static long long int difftv(struct timeval tv1, struct timeval tv2); /** * Take a string src which is a deliminated list and add its elements * into result. result is not cleared before conversion begins. */ static void slice(vector& result, string src, char delim); static string trim(string src); static bool startsWith(string target, string part); static bool endsWith(string target, string part); static string replace(string target, string oldstr, string newstr); }; #endif // _D_UTIL_H_