3138b7c3ac49c7b4b1840f83c77970840f17230d
[novacoin.git] / src / util.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_UTIL_H
6 #define BITCOIN_UTIL_H
7
8
9 #ifndef WIN32
10 #include <sys/types.h>
11 #include <sys/time.h>
12 #include <sys/resource.h>
13 #endif
14
15 #ifdef WIN32
16 #include "compat.h"
17 #endif
18
19 #ifndef Q_MOC_RUN
20 #include <boost/thread.hpp>
21 #include <boost/filesystem/path.hpp>
22 #include <boost/date_time/gregorian/gregorian_types.hpp>
23 #include <boost/date_time/posix_time/posix_time_types.hpp>
24 #endif
25
26 #if defined(__USE_MINGW_ANSI_STDIO)
27 #undef __USE_MINGW_ANSI_STDIO // This constant forces MinGW to conduct stupid behavior
28 #endif
29
30 #include <cinttypes>
31 #include <map>
32 #include <vector>
33 #include <string>
34 #include <cstdarg>
35
36 static const int32_t nOneHour = 60 * 60;
37 static const int32_t nOneDay = 24 * 60 * 60;
38 static const int64_t nOneWeek = 7 * 24 * 60 * 60;
39
40 static const int64_t COIN = 1000000;
41 static const int64_t CENT = 10000;
42
43 #define BEGIN(a)            ((char*)&(a))
44 #define END(a)              ((char*)&((&(a))[1]))
45 #define UBEGIN(a)           ((unsigned char*)&(a))
46 #define UEND(a)             ((unsigned char*)&((&(a))[1]))
47 #define ARRAYLEN(array)     (sizeof(array)/sizeof((array)[0]))
48
49 #define UVOIDBEGIN(a)        ((void*)&(a))
50 #define CVOIDBEGIN(a)        ((const void*)&(a))
51 #define UINTBEGIN(a)        ((uint32_t*)&(a))
52 #define CUINTBEGIN(a)        ((const uint32_t*)&(a))
53
54 #ifndef THROW_WITH_STACKTRACE
55 #define THROW_WITH_STACKTRACE(exception)  \
56 {                                         \
57     LogStackTrace();                      \
58     throw (exception);                    \
59 }
60 void LogStackTrace();
61 #endif
62
63 #if defined(_MSC_VER) || defined(__MSVCRT__)
64  /* Silence compiler warnings on Windows 
65      related to MinGWs inttypes.h */
66  #undef PRIu64
67  #undef PRId64
68  #undef PRIx64
69
70  #define PRIu64 "I64u"
71  #define PRId64 "I64d"
72  #define PRIx64 "I64x"
73
74 #endif
75
76 /* Format characters for (s)size_t and ptrdiff_t */
77 #if defined(_MSC_VER) || defined(__MSVCRT__)
78   /* (s)size_t and ptrdiff_t have the same size specifier in MSVC:
79      http://msdn.microsoft.com/en-us/library/tcxf1dw6%28v=vs.100%29.aspx
80    */
81   #define PRIszx    "Ix"
82   #define PRIszu    "Iu"
83   #define PRIszd    "Id"
84   #define PRIpdx    "Ix"
85   #define PRIpdu    "Iu"
86   #define PRIpdd    "Id"
87 #else /* C99 standard */
88   #define PRIszx    "zx"
89   #define PRIszu    "zu"
90   #define PRIszd    "zd"
91   #define PRIpdx    "tx"
92   #define PRIpdu    "tu"
93   #define PRIpdd    "td"
94 #endif
95
96 // This is needed because the foreach macro can't get over the comma in pair<t1, t2>
97 #define PAIRTYPE(t1, t2)    std::pair<t1, t2>
98
99 // Align by increasing pointer, must have extra space at end of buffer
100 template <size_t nBytes, typename T>
101 T* alignup(T* p)
102 {
103     union
104     {
105         T* ptr;
106         size_t n;
107     } u;
108     u.ptr = p;
109     u.n = (u.n + (nBytes-1)) & ~(nBytes-1);
110     return u.ptr;
111 }
112
113 #ifdef WIN32
114 #define MSG_NOSIGNAL        0
115 #define MSG_DONTWAIT        0
116
117 #ifndef S_IRUSR
118 #define S_IRUSR             0400
119 #define S_IWUSR             0200
120 #endif
121 #else
122 #define MAX_PATH            1024
123 inline void Sleep(int64_t n)
124 {
125     /*Boost has a year 2038 problem— if the request sleep time is past epoch+2^31 seconds the sleep returns instantly.
126       So we clamp our sleeps here to 10 years and hope that boost is fixed by 2028.*/
127     boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n>315576000000LL?315576000000LL:n));
128 }
129 #endif
130
131 /* This GNU C extension enables the compiler to check the format string against the parameters provided.
132  * X is the number of the "format string" parameter, and Y is the number of the first variadic parameter.
133  * Parameters count from 1.
134  */
135 #ifdef __GNUC__
136 #define ATTR_WARN_PRINTF(X,Y) __attribute__((format(printf,X,Y)))
137 #else
138 #define ATTR_WARN_PRINTF(X,Y)
139 #endif
140
141
142 extern std::map<std::string, std::string> mapArgs;
143 extern std::map<std::string, std::vector<std::string> > mapMultiArgs;
144 extern bool fDebug;
145 extern bool fDebugNet;
146 extern bool fPrintToConsole;
147 extern bool fPrintToDebugger;
148 extern bool fRequestShutdown;
149 extern bool fShutdown;
150 extern bool fDaemon;
151 extern bool fServer;
152 extern bool fCommandLine;
153 extern std::string strMiscWarning;
154 extern bool fTestNet;
155 extern bool fNoListen;
156 extern bool fLogTimestamps;
157 extern bool fReopenDebugLog;
158
159 int ATTR_WARN_PRINTF(1,2) OutputDebugStringF(const char* pszFormat, ...);
160
161 /*
162   Rationale for the real_strprintf / strprintf construction:
163     It is not allowed to use va_start with a pass-by-reference argument.
164     (C++ standard, 18.7, paragraph 3). Use a dummy argument to work around this, and use a
165     macro to keep similar semantics.
166 */
167
168 /** Overload strprintf for char*, so that GCC format type warnings can be given */
169 std::string ATTR_WARN_PRINTF(1,3) real_strprintf(const char *format, int dummy, ...);
170 /** Overload strprintf for std::string, to be able to use it with _ (translation).
171  * This will not support GCC format type warnings (-Wformat) so be careful.
172  */
173 std::string real_strprintf(const std::string &format, int dummy, ...);
174 #define strprintf(format, ...) real_strprintf(format, 0, __VA_ARGS__)
175 std::string vstrprintf(const char *format, va_list ap);
176
177 bool ATTR_WARN_PRINTF(1,2) error(const char *format, ...);
178
179 /* Redefine printf so that it directs output to debug.log
180  *
181  * Do this *after* defining the other printf-like functions, because otherwise the
182  * __attribute__((format(printf,X,Y))) gets expanded to __attribute__((format(OutputDebugStringF,X,Y)))
183  * which confuses gcc.
184  */
185 #define printf OutputDebugStringF
186
187 void LogException(std::exception* pex, const char* pszThread);
188 void PrintException(std::exception* pex, const char* pszThread);
189 void PrintExceptionContinue(std::exception* pex, const char* pszThread);
190 void ParseString(const std::string& str, char c, std::vector<std::string>& v);
191 std::string FormatMoney(int64_t n, bool fPlus=false);
192 bool ParseMoney(const std::string& str, int64_t& nRet);
193 bool ParseMoney(const char* pszIn, int64_t& nRet);
194 std::vector<unsigned char> ParseHex(const char* psz);
195 std::vector<unsigned char> ParseHex(const std::string& str);
196 bool IsHex(const std::string& str);
197 std::vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid = NULL);
198 std::string DecodeBase64(const std::string& str);
199 std::string EncodeBase64(const unsigned char* pch, size_t len);
200 std::string EncodeBase64(const std::string& str);
201 std::vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid = NULL);
202 std::string DecodeBase32(const std::string& str);
203 std::string EncodeBase32(const unsigned char* pch, size_t len);
204 std::string EncodeBase32(const std::string& str);
205 std::string EncodeDumpTime(int64_t nTime);
206 int64_t DecodeDumpTime(const std::string& s);
207 std::string EncodeDumpString(const std::string &str);
208 std::string DecodeDumpString(const std::string &str);
209 void ParseParameters(int argc, const char*const argv[]);
210 bool WildcardMatch(const char* psz, const char* mask);
211 bool WildcardMatch(const std::string& str, const std::string& mask);
212 void FileCommit(FILE *fileout);
213 int GetFilesize(FILE* file);
214 bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest);
215 boost::filesystem::path GetDefaultDataDir();
216 const boost::filesystem::path &GetDataDir(bool fNetSpecific = true);
217 boost::filesystem::path GetConfigFile();
218 boost::filesystem::path GetPidFile();
219 #ifndef WIN32
220 void CreatePidFile(const boost::filesystem::path &path, pid_t pid);
221 #endif
222 void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet);
223 #ifdef WIN32
224 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true);
225 #endif
226 void ShrinkDebugFile();
227 int64_t GetTime();
228 int64_t GetTimeMillis();
229 int64_t GetTimeMicros();
230 std::string FormatFullVersion();
231 std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments);
232 void runCommand(std::string strCommand);
233
234
235 inline std::string i64tostr(int64_t n)
236 {
237     return strprintf("%" PRId64, n);
238 }
239
240 inline std::string itostr(int n)
241 {
242     return strprintf("%d", n);
243 }
244
245 inline int64_t atoi64(const char* psz)
246 {
247 #ifdef _MSC_VER
248     return _atoi64(psz);
249 #else
250     return strtoll(psz, NULL, 10);
251 #endif
252 }
253
254 inline int64_t atoi64(const std::string& str)
255 {
256 #ifdef _MSC_VER
257     return _atoi64(str.c_str());
258 #else
259     return strtoll(str.c_str(), NULL, 10);
260 #endif
261 }
262
263 inline int32_t strtol(const char* psz)
264 {
265     return strtol(psz, NULL, 10);
266 }
267
268 inline int32_t strtol(const std::string& str)
269 {
270     return strtol(str.c_str(), NULL, 10);
271 }
272
273 inline uint32_t strtoul(const char* psz)
274 {
275     return strtoul(psz, NULL, 10);
276 }
277
278 inline uint32_t strtoul(const std::string& str)
279 {
280     return strtoul(str.c_str(), NULL, 10);
281 }
282
283 inline int atoi(const std::string& str)
284 {
285     return atoi(str.c_str());
286 }
287
288 inline int roundint(double d)
289 {
290     return (int)(d > 0 ? d + 0.5 : d - 0.5);
291 }
292
293 inline int64_t roundint64(double d)
294 {
295     return (int64_t)(d > 0 ? d + 0.5 : d - 0.5);
296 }
297
298 inline int64_t abs64(int64_t n)
299 {
300     return (n >= 0 ? n : -n);
301 }
302
303 inline std::string leftTrim(std::string src, char chr)
304 {
305     std::string::size_type pos = src.find_first_not_of(chr, 0);
306
307     if(pos > 0)
308         src.erase(0, pos);
309
310     return src;
311 }
312
313 template<typename T>
314 std::string HexStr(const T itbegin, const T itend, bool fSpaces=false)
315 {
316     std::string rv;
317     static const char hexmap[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
318                                      '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
319     rv.reserve((itend-itbegin)*3);
320     for(T it = itbegin; it < itend; ++it)
321     {
322         unsigned char val = (unsigned char)(*it);
323         if(fSpaces && it != itbegin)
324             rv.push_back(' ');
325         rv.push_back(hexmap[val>>4]);
326         rv.push_back(hexmap[val&15]);
327     }
328
329     return rv;
330 }
331
332 inline std::string HexStr(const std::vector<unsigned char>& vch, bool fSpaces=false)
333 {
334     return HexStr(vch.begin(), vch.end(), fSpaces);
335 }
336
337 template<typename T>
338 void PrintHex(const T pbegin, const T pend, const char* pszFormat="%s", bool fSpaces=true)
339 {
340     printf(pszFormat, HexStr(pbegin, pend, fSpaces).c_str());
341 }
342
343 inline void PrintHex(const std::vector<unsigned char>& vch, const char* pszFormat="%s", bool fSpaces=true)
344 {
345     printf(pszFormat, HexStr(vch, fSpaces).c_str());
346 }
347
348 inline int64_t GetTimeMillis()
349 {
350     return (boost::posix_time::microsec_clock::universal_time() -
351             boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds();
352 }
353
354 inline int64_t GetTimeMicros()
355 {
356     return (boost::posix_time::microsec_clock::universal_time() -
357                    boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds();
358 }
359
360 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);
361
362 static const std::string strTimestampFormat = "%Y-%m-%d %H:%M:%S UTC";
363 inline std::string DateTimeStrFormat(int64_t nTime)
364 {
365     return DateTimeStrFormat(strTimestampFormat.c_str(), nTime);
366 }
367
368
369 template<typename T>
370 void skipspaces(T& it)
371 {
372     while (isspace(*it))
373         ++it;
374 }
375
376 inline bool IsSwitchChar(char c)
377 {
378 #ifdef WIN32
379     return c == '-' || c == '/';
380 #else
381     return c == '-';
382 #endif
383 }
384
385 /**
386  * Return string argument or default value
387  *
388  * @param strArg Argument to get (e.g. "-foo")
389  * @param default (e.g. "1")
390  * @return command-line argument or default value
391  */
392 std::string GetArg(const std::string& strArg, const std::string& strDefault);
393
394 /**
395  * Return 64-bit integer argument or default value
396  *
397  * @param strArg Argument to get (e.g. "-foo")
398  * @param default (e.g. 1)
399  * @return command-line argument (0 if invalid number) or default value
400  */
401 int64_t GetArg(const std::string& strArg, int64_t nDefault);
402
403 /**
404  * Return 32-bit integer argument or default value
405  *
406  * @param strArg Argument to get (e.g. "-foo")
407  * @param default (e.g. 1)
408  * @return command-line argument (0 if invalid number) or default value
409  */
410 int32_t GetArgInt(const std::string& strArg, int32_t nDefault);
411
412 /**
413  * Return 32-bit unsigned integer argument or default value
414  *
415  * @param strArg Argument to get (e.g. "-foo")
416  * @param default (e.g. 1)
417  * @return command-line argument (0 if invalid number) or default value
418  */
419 uint32_t GetArgUInt(const std::string& strArg, uint32_t nDefault);
420
421 /**
422  * Return boolean argument or default value
423  *
424  * @param strArg Argument to get (e.g. "-foo")
425  * @param default (true or false)
426  * @return command-line argument or default value
427  */
428 bool GetBoolArg(const std::string& strArg, bool fDefault=false);
429
430 /**
431  * Set an argument if it doesn't already have a value
432  *
433  * @param strArg Argument to set (e.g. "-foo")
434  * @param strValue Value (e.g. "1")
435  * @return true if argument gets set, false if it already had a value
436  */
437 bool SoftSetArg(const std::string& strArg, const std::string& strValue);
438
439 /**
440  * Set a boolean argument if it doesn't already have a value
441  *
442  * @param strArg Argument to set (e.g. "-foo")
443  * @param fValue Value (e.g. false)
444  * @return true if argument gets set, false if it already had a value
445  */
446 bool SoftSetBoolArg(const std::string& strArg, bool fValue);
447
448 /**
449  * Timing-attack-resistant comparison.
450  * Takes time proportional to length
451  * of first argument.
452  */
453 template <typename T>
454 bool TimingResistantEqual(const T& a, const T& b)
455 {
456     if (b.size() == 0) return a.size() == 0;
457     size_t accumulator = a.size() ^ b.size();
458     for (size_t i = 0; i < a.size(); i++)
459         accumulator |= a[i] ^ b[i%b.size()];
460     return accumulator == 0;
461 }
462
463 bool NewThread(void(*pfn)(void*), void* parg);
464
465 #ifdef WIN32
466 inline void SetThreadPriority(int nPriority)
467 {
468     SetThreadPriority(GetCurrentThread(), nPriority);
469 }
470 #else
471
472 #define THREAD_PRIORITY_LOWEST          PRIO_MAX
473 #define THREAD_PRIORITY_BELOW_NORMAL    2
474 #define THREAD_PRIORITY_NORMAL          0
475 #define THREAD_PRIORITY_ABOVE_NORMAL    0
476
477 inline void SetThreadPriority(int nPriority)
478 {
479     // It's unclear if it's even possible to change thread priorities on Linux,
480     // but we really and truly need it for the generation threads.
481 #ifdef PRIO_THREAD
482     setpriority(PRIO_THREAD, 0, nPriority);
483 #else
484     setpriority(PRIO_PROCESS, 0, nPriority);
485 #endif
486 }
487
488 inline void ExitThread(size_t nExitCode)
489 {
490     pthread_exit((void*)nExitCode);
491 }
492 #endif
493
494 void RenameThread(const char* name);
495
496 inline uint32_t ByteReverse(uint32_t value)
497 {
498     value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8);
499     return (value<<16) | (value>>16);
500 }
501
502 #endif