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