079e56d122eb080a75b8b6fd3b1a88e00d7ae982
[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 #include "uint256.h"
10
11 #ifndef WIN32
12 #include <sys/types.h>
13 #include <sys/time.h>
14 #include <sys/resource.h>
15 #endif
16
17 #include <map>
18 #include <vector>
19 #include <string>
20 #include <chrono>
21 #include <thread>
22
23 #ifndef Q_MOC_RUN
24 #include <boost/thread.hpp>
25 #include <boost/filesystem.hpp>
26 #include <boost/filesystem/path.hpp>
27 #include <boost/date_time/gregorian/gregorian_types.hpp>
28 #include <boost/date_time/posix_time/posix_time_types.hpp>
29 #endif
30
31 #include <stdarg.h>
32
33 #if defined(__USE_MINGW_ANSI_STDIO)
34 #undef __USE_MINGW_ANSI_STDIO // This constant forces MinGW to conduct stupid behavior
35 #endif
36 #include <inttypes.h>
37
38 #include "netbase.h" // for AddTimeData
39
40 static const int32_t nOneHour = 60 * 60;
41 static const int32_t nOneDay = 24 * 60 * 60;
42 static const int64_t nOneWeek = 7 * 24 * 60 * 60;
43
44 static const int64_t COIN = 1000000;
45 static const int64_t CENT = 10000;
46
47 #define BEGIN(a)            ((char*)&(a))
48 #define END(a)              ((char*)&((&(a))[1]))
49 #define UBEGIN(a)           ((unsigned char*)&(a))
50 #define UEND(a)             ((unsigned char*)&((&(a))[1]))
51
52 #ifndef THROW_WITH_STACKTRACE
53 #define THROW_WITH_STACKTRACE(exception)  \
54 {                                         \
55     LogStackTrace();                      \
56     throw (exception);                    \
57 }
58 void LogStackTrace();
59 #endif
60
61 #if defined(_MSC_VER) || defined(__MSVCRT__)
62  /* Silence compiler warnings on Windows 
63      related to MinGWs inttypes.h */
64  #undef PRIu64
65  #undef PRId64
66  #undef PRIx64
67
68  #define PRIu64 "I64u"
69  #define PRId64 "I64d"
70  #define PRIx64 "I64x"
71
72 #endif
73
74 /* Format characters for (s)size_t and ptrdiff_t */
75 #if defined(_MSC_VER) || defined(__MSVCRT__)
76   /* (s)size_t and ptrdiff_t have the same size specifier in MSVC:
77      http://msdn.microsoft.com/en-us/library/tcxf1dw6%28v=vs.100%29.aspx
78    */
79   #define PRIszx    "Ix"
80   #define PRIszu    "Iu"
81   #define PRIszd    "Id"
82   #define PRIpdx    "Ix"
83   #define PRIpdu    "Iu"
84   #define PRIpdd    "Id"
85 #else /* C99 standard */
86   #define PRIszx    "zx"
87   #define PRIszu    "zu"
88   #define PRIszd    "zd"
89   #define PRIpdx    "tx"
90   #define PRIpdu    "tu"
91   #define PRIpdd    "td"
92 #endif
93
94 // Align by increasing pointer, must have extra space at end of buffer
95 template <size_t nBytes, typename T>
96 T* alignup(T* p)
97 {
98     union
99     {
100         T* ptr;
101         size_t n;
102     } u;
103     u.ptr = p;
104     u.n = (u.n + (nBytes-1)) & ~(nBytes-1);
105     return u.ptr;
106 }
107
108 #ifdef WIN32
109 #define MSG_NOSIGNAL        0
110 #define MSG_DONTWAIT        0
111
112 #ifndef S_IRUSR
113 #define S_IRUSR             0400
114 #define S_IWUSR             0200
115 #endif
116 #else
117 #define MAX_PATH            1024
118 inline void Sleep(int64_t n)
119 {
120     this_thread::sleep_for(std::chrono::milliseconds(n));
121 }
122 #endif
123
124 /* This GNU C extension enables the compiler to check the format string against the parameters provided.
125  * X is the number of the "format string" parameter, and Y is the number of the first variadic parameter.
126  * Parameters count from 1.
127  */
128 #ifdef __GNUC__
129 #define ATTR_WARN_PRINTF(X,Y) __attribute__((format(printf,X,Y)))
130 #else
131 #define ATTR_WARN_PRINTF(X,Y)
132 #endif
133
134
135
136
137
138
139
140
141 extern std::map<std::string, std::string> mapArgs;
142 extern std::map<std::string, std::vector<std::string> > mapMultiArgs;
143 extern bool fDebug;
144 extern bool fDebugNet;
145 extern bool fPrintToConsole;
146 extern bool fPrintToDebugger;
147 extern bool fRequestShutdown;
148 extern bool fShutdown;
149 extern bool fDaemon;
150 extern bool fServer;
151 extern bool fCommandLine;
152 extern std::string strMiscWarning;
153 extern bool fTestNet;
154 extern bool fNoListen;
155 extern bool fLogTimestamps;
156 extern bool fReopenDebugLog;
157
158 void RandAddSeed();
159 void RandAddSeedPerfmon();
160 int ATTR_WARN_PRINTF(1,2) OutputDebugStringF(const char* pszFormat, ...);
161
162 /*
163   Rationale for the real_strprintf / strprintf construction:
164     It is not allowed to use va_start with a pass-by-reference argument.
165     (C++ standard, 18.7, paragraph 3). Use a dummy argument to work around this, and use a
166     macro to keep similar semantics.
167 */
168
169 /** Overload strprintf for char*, so that GCC format type warnings can be given */
170 std::string ATTR_WARN_PRINTF(1,3) real_strprintf(const char *format, int dummy, ...);
171 /** Overload strprintf for std::string, to be able to use it with _ (translation).
172  * This will not support GCC format type warnings (-Wformat) so be careful.
173  */
174 std::string real_strprintf(const std::string &format, int dummy, ...);
175 #define strprintf(format, ...) real_strprintf(format, 0, __VA_ARGS__)
176 std::string vstrprintf(const char *format, va_list ap);
177
178 bool ATTR_WARN_PRINTF(1,2) error(const char *format, ...);
179
180 /* Redefine printf so that it directs output to debug.log
181  *
182  * Do this *after* defining the other printf-like functions, because otherwise the
183  * __attribute__((format(printf,X,Y))) gets expanded to __attribute__((format(OutputDebugStringF,X,Y)))
184  * which confuses gcc.
185  */
186 #define printf OutputDebugStringF
187
188 void LogException(std::exception* pex, const char* pszThread);
189 void PrintException(std::exception* pex, const char* pszThread);
190 void PrintExceptionContinue(std::exception* pex, const char* pszThread);
191 void ParseString(const std::string& str, char c, std::vector<std::string>& v);
192 std::string FormatMoney(int64_t n, bool fPlus=false);
193 bool ParseMoney(const std::string& str, int64_t& nRet);
194 bool ParseMoney(const char* pszIn, int64_t& nRet);
195 std::vector<uint8_t> ParseHex(const char *str);
196 inline std::vector<uint8_t> ParseHex(const std::string& str) { return ParseHex(str.c_str()); }
197 bool IsHex(const std::string& str);
198 std::vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid = NULL);
199 std::string DecodeBase64(const std::string& str);
200 std::string EncodeBase64(const unsigned char* pch, size_t len);
201 std::string EncodeBase64(const std::string& str);
202 std::vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid = NULL);
203 std::string DecodeBase32(const std::string& str);
204 std::string EncodeBase32(const unsigned char* pch, size_t len);
205 std::string EncodeBase32(const std::string& str);
206 std::string EncodeDumpTime(int64_t nTime);
207 int64_t DecodeDumpTime(const std::string& s);
208 std::string EncodeDumpString(const std::string &str);
209 std::string DecodeDumpString(const std::string &str);
210 void ParseParameters(int argc, const char*const argv[]);
211 bool WildcardMatch(const char* psz, const char* mask);
212 bool WildcardMatch(const std::string& str, const std::string& mask);
213 void FileCommit(FILE *fileout);
214 int GetFilesize(FILE* file);
215 bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest);
216 boost::filesystem::path GetDefaultDataDir();
217 const boost::filesystem::path &GetDataDir(bool fNetSpecific = true);
218 boost::filesystem::path GetConfigFile();
219 boost::filesystem::path GetPidFile();
220 #ifndef WIN32
221 void CreatePidFile(const boost::filesystem::path &path, pid_t pid);
222 #endif
223 void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet);
224 #ifdef WIN32
225 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true);
226 #endif
227 void ShrinkDebugFile();
228 int GetRandInt(int nMax);
229 uint64_t GetRand(uint64_t nMax);
230 uint256 GetRandHash();
231 void FillRand(uint8_t *buffer, size_t nCount);
232 int64_t GetTime();
233 int64_t GetTimeMillis();
234 int64_t GetTimeMicros();
235
236 int64_t GetAdjustedTime();
237 int64_t GetTimeOffset();
238 int64_t GetNodesOffset();
239 std::string FormatFullVersion();
240 std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments);
241 void AddTimeData(const CNetAddr& ip, int64_t nTime);
242 void runCommand(std::string strCommand);
243
244
245
246
247
248 inline std::string i64tostr(int64_t n)
249 {
250     return strprintf("%" PRId64, n);
251 }
252
253 inline int64_t strtoll(const char* psz)
254 {
255     return strtoll(psz, NULL, 10);
256 }
257
258 inline int64_t strtoll(const std::string& str)
259 {
260     return strtoll(str.c_str(), NULL, 10);
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 std::string leftTrim(std::string src, char chr)
299 {
300     std::string::size_type pos = src.find_first_not_of(chr, 0);
301
302     if(pos > 0)
303         src.erase(0, pos);
304
305     return src;
306 }
307
308 template<typename T>
309 std::string HexStr(const T itbegin, const T itend, bool fSpaces=false)
310 {
311     std::string rv;
312     static const char hexmap[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
313                                      '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
314     rv.reserve((itend-itbegin)*3);
315     for(T it = itbegin; it < itend; ++it)
316     {
317         unsigned char val = (unsigned char)(*it);
318         if(fSpaces && it != itbegin)
319             rv.push_back(' ');
320         rv.push_back(hexmap[val>>4]);
321         rv.push_back(hexmap[val&15]);
322     }
323
324     return rv;
325 }
326
327 inline std::string HexStr(const std::vector<unsigned char>& vch, bool fSpaces=false)
328 {
329     return HexStr(vch.begin(), vch.end(), fSpaces);
330 }
331
332 template<typename T>
333 void PrintHex(const T pbegin, const T pend, const char* pszFormat="%s", bool fSpaces=true)
334 {
335     printf(pszFormat, HexStr(pbegin, pend, fSpaces).c_str());
336 }
337
338 inline void PrintHex(const std::vector<unsigned char>& vch, const char* pszFormat="%s", bool fSpaces=true)
339 {
340     printf(pszFormat, HexStr(vch, fSpaces).c_str());
341 }
342
343 inline int64_t GetPerformanceCounter()
344 {
345     int64_t nCounter = 0;
346 #ifdef WIN32
347     QueryPerformanceCounter((LARGE_INTEGER*)&nCounter);
348 #else
349     timeval t;
350     gettimeofday(&t, NULL);
351     nCounter = (int64_t) t.tv_sec * 1000000 + t.tv_usec;
352 #endif
353     return nCounter;
354 }
355
356 inline int64_t GetTimeMillis()
357 {
358     return (boost::posix_time::microsec_clock::universal_time() -
359             boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds();
360 }
361
362 inline int64_t GetTimeMicros()
363 {
364     return (boost::posix_time::microsec_clock::universal_time() -
365                    boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds();
366 }
367
368 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);
369
370 static const std::string strTimestampFormat = "%Y-%m-%d %H:%M:%S UTC";
371 inline std::string DateTimeStrFormat(int64_t nTime)
372 {
373     return DateTimeStrFormat(strTimestampFormat.c_str(), nTime);
374 }
375
376
377 template<typename T>
378 void skipspaces(T& it)
379 {
380     while (isspace(*it))
381         ++it;
382 }
383
384 inline bool IsSwitchChar(char c)
385 {
386 #ifdef WIN32
387     return c == '-' || c == '/';
388 #else
389     return c == '-';
390 #endif
391 }
392
393 /**
394  * Return string argument or default value
395  *
396  * @param strArg Argument to get (e.g. "-foo")
397  * @param default (e.g. "1")
398  * @return command-line argument or default value
399  */
400 std::string GetArg(const std::string& strArg, const std::string& strDefault);
401
402 /**
403  * Return 64-bit integer argument or default value
404  *
405  * @param strArg Argument to get (e.g. "-foo")
406  * @param default (e.g. 1)
407  * @return command-line argument (0 if invalid number) or default value
408  */
409 int64_t GetArg(const std::string& strArg, int64_t nDefault);
410
411 /**
412  * Return 32-bit integer argument or default value
413  *
414  * @param strArg Argument to get (e.g. "-foo")
415  * @param default (e.g. 1)
416  * @return command-line argument (0 if invalid number) or default value
417  */
418 int32_t GetArgInt(const std::string& strArg, int32_t nDefault);
419
420 /**
421  * Return 32-bit unsigned integer argument or default value
422  *
423  * @param strArg Argument to get (e.g. "-foo")
424  * @param default (e.g. 1)
425  * @return command-line argument (0 if invalid number) or default value
426  */
427 uint32_t GetArgUInt(const std::string& strArg, uint32_t nDefault);
428
429 /**
430  * Return boolean argument or default value
431  *
432  * @param strArg Argument to get (e.g. "-foo")
433  * @param default (true or false)
434  * @return command-line argument or default value
435  */
436 bool GetBoolArg(const std::string& strArg, bool fDefault=false);
437
438 /**
439  * Set an argument if it doesn't already have a value
440  *
441  * @param strArg Argument to set (e.g. "-foo")
442  * @param strValue Value (e.g. "1")
443  * @return true if argument gets set, false if it already had a value
444  */
445 bool SoftSetArg(const std::string& strArg, const std::string& strValue);
446
447 /**
448  * Set a boolean argument if it doesn't already have a value
449  *
450  * @param strArg Argument to set (e.g. "-foo")
451  * @param fValue Value (e.g. false)
452  * @return true if argument gets set, false if it already had a value
453  */
454 bool SoftSetBoolArg(const std::string& strArg, bool fValue);
455
456 /**
457  * Timing-attack-resistant comparison.
458  * Takes time proportional to length
459  * of first argument.
460  */
461 template <typename T>
462 bool TimingResistantEqual(const T& a, const T& b)
463 {
464     if (b.size() == 0) return a.size() == 0;
465     size_t accumulator = a.size() ^ b.size();
466     for (size_t i = 0; i < a.size(); i++)
467         accumulator |= a[i] ^ b[i%b.size()];
468     return accumulator == 0;
469 }
470
471 /** Median filter over a stream of values.
472  * Returns the median of the last N numbers
473  */
474 template <typename T> class CMedianFilter
475 {
476 private:
477     std::vector<T> vValues;
478     std::vector<T> vSorted;
479     unsigned int nSize;
480 public:
481     CMedianFilter(unsigned int size, T initial_value):
482         nSize(size)
483     {
484         vValues.reserve(size);
485         vValues.push_back(initial_value);
486         vSorted = vValues;
487     }
488
489     void input(T value)
490     {
491         if(vValues.size() == nSize)
492         {
493             vValues.erase(vValues.begin());
494         }
495         vValues.push_back(value);
496
497         vSorted.resize(vValues.size());
498         std::copy(vValues.begin(), vValues.end(), vSorted.begin());
499         std::sort(vSorted.begin(), vSorted.end());
500     }
501
502     T median() const
503     {
504         size_t size = vSorted.size();
505         assert(size>0);
506         if(size & 1) // Odd number of elements
507         {
508             return vSorted[size/2];
509         }
510         else // Even number of elements
511         {
512             return (vSorted[size/2-1] + vSorted[size/2]) / 2;
513         }
514     }
515
516     int size() const
517     {
518         return static_cast<int>(vValues.size());
519     }
520
521     std::vector<T> sorted () const
522     {
523         return vSorted;
524     }
525 };
526
527 bool NewThread(void(*pfn)(void*), void* parg);
528
529 #ifdef WIN32
530 inline void SetThreadPriority(int nPriority)
531 {
532     SetThreadPriority(GetCurrentThread(), nPriority);
533 }
534 #else
535
536 #define THREAD_PRIORITY_LOWEST          PRIO_MAX
537 #define THREAD_PRIORITY_BELOW_NORMAL    2
538 #define THREAD_PRIORITY_NORMAL          0
539 #define THREAD_PRIORITY_ABOVE_NORMAL    0
540
541 inline void SetThreadPriority(int nPriority)
542 {
543     // It's unclear if it's even possible to change thread priorities on Linux,
544     // but we really and truly need it for the generation threads.
545 #ifdef PRIO_THREAD
546     setpriority(PRIO_THREAD, 0, nPriority);
547 #else
548     setpriority(PRIO_PROCESS, 0, nPriority);
549 #endif
550 }
551
552 inline void ExitThread(size_t nExitCode)
553 {
554     pthread_exit((void*)nExitCode);
555 }
556 #endif
557
558 void RenameThread(const char* name);
559
560 inline uint32_t ByteReverse(uint32_t value)
561 {
562     value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8);
563     return (value<<16) | (value>>16);
564 }
565
566 #endif
567