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