5835e90221c5cd164a495b4101eee8816c8ab3dd
[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 int atoi(const std::string& str)
272 {
273     return atoi(str.c_str());
274 }
275
276 inline int roundint(double d)
277 {
278     return (int)(d > 0 ? d + 0.5 : d - 0.5);
279 }
280
281 inline int64_t roundint64(double d)
282 {
283     return (int64_t)(d > 0 ? d + 0.5 : d - 0.5);
284 }
285
286 inline int64_t abs64(int64_t n)
287 {
288     return (n >= 0 ? n : -n);
289 }
290
291 inline std::string leftTrim(std::string src, char chr)
292 {
293     std::string::size_type pos = src.find_first_not_of(chr, 0);
294
295     if(pos > 0)
296         src.erase(0, pos);
297
298     return src;
299 }
300
301 template<typename T>
302 std::string HexStr(const T itbegin, const T itend, bool fSpaces=false)
303 {
304     std::string rv;
305     static const char hexmap[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
306                                      '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
307     rv.reserve((itend-itbegin)*3);
308     for(T it = itbegin; it < itend; ++it)
309     {
310         unsigned char val = (unsigned char)(*it);
311         if(fSpaces && it != itbegin)
312             rv.push_back(' ');
313         rv.push_back(hexmap[val>>4]);
314         rv.push_back(hexmap[val&15]);
315     }
316
317     return rv;
318 }
319
320 inline std::string HexStr(const std::vector<unsigned char>& vch, bool fSpaces=false)
321 {
322     return HexStr(vch.begin(), vch.end(), fSpaces);
323 }
324
325 template<typename T>
326 void PrintHex(const T pbegin, const T pend, const char* pszFormat="%s", bool fSpaces=true)
327 {
328     printf(pszFormat, HexStr(pbegin, pend, fSpaces).c_str());
329 }
330
331 inline void PrintHex(const std::vector<unsigned char>& vch, const char* pszFormat="%s", bool fSpaces=true)
332 {
333     printf(pszFormat, HexStr(vch, fSpaces).c_str());
334 }
335
336 inline int64_t GetPerformanceCounter()
337 {
338     int64_t nCounter = 0;
339 #ifdef WIN32
340     QueryPerformanceCounter((LARGE_INTEGER*)&nCounter);
341 #else
342     timeval t;
343     gettimeofday(&t, NULL);
344     nCounter = (int64_t) t.tv_sec * 1000000 + t.tv_usec;
345 #endif
346     return nCounter;
347 }
348
349 inline int64_t GetTimeMillis()
350 {
351     return (boost::posix_time::ptime(boost::posix_time::microsec_clock::universal_time()) -
352             boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds();
353 }
354
355 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);
356
357 static const std::string strTimestampFormat = "%Y-%m-%d %H:%M:%S UTC";
358 inline std::string DateTimeStrFormat(int64_t nTime)
359 {
360     return DateTimeStrFormat(strTimestampFormat.c_str(), nTime);
361 }
362
363
364 template<typename T>
365 void skipspaces(T& it)
366 {
367     while (isspace(*it))
368         ++it;
369 }
370
371 inline bool IsSwitchChar(char c)
372 {
373 #ifdef WIN32
374     return c == '-' || c == '/';
375 #else
376     return c == '-';
377 #endif
378 }
379
380 /**
381  * Return string argument or default value
382  *
383  * @param strArg Argument to get (e.g. "-foo")
384  * @param default (e.g. "1")
385  * @return command-line argument or default value
386  */
387 std::string GetArg(const std::string& strArg, const std::string& strDefault);
388
389 /**
390  * Return integer argument or default value
391  *
392  * @param strArg Argument to get (e.g. "-foo")
393  * @param default (e.g. 1)
394  * @return command-line argument (0 if invalid number) or default value
395  */
396 int64_t GetArg(const std::string& strArg, int64_t nDefault);
397
398 /**
399  * Return boolean argument or default value
400  *
401  * @param strArg Argument to get (e.g. "-foo")
402  * @param default (true or false)
403  * @return command-line argument or default value
404  */
405 bool GetBoolArg(const std::string& strArg, bool fDefault=false);
406
407 /**
408  * Set an argument if it doesn't already have a value
409  *
410  * @param strArg Argument to set (e.g. "-foo")
411  * @param strValue Value (e.g. "1")
412  * @return true if argument gets set, false if it already had a value
413  */
414 bool SoftSetArg(const std::string& strArg, const std::string& strValue);
415
416 /**
417  * Set a boolean argument if it doesn't already have a value
418  *
419  * @param strArg Argument to set (e.g. "-foo")
420  * @param fValue Value (e.g. false)
421  * @return true if argument gets set, false if it already had a value
422  */
423 bool SoftSetBoolArg(const std::string& strArg, bool fValue);
424
425 /**
426  * Timing-attack-resistant comparison.
427  * Takes time proportional to length
428  * of first argument.
429  */
430 template <typename T>
431 bool TimingResistantEqual(const T& a, const T& b)
432 {
433     if (b.size() == 0) return a.size() == 0;
434     size_t accumulator = a.size() ^ b.size();
435     for (size_t i = 0; i < a.size(); i++)
436         accumulator |= a[i] ^ b[i%b.size()];
437     return accumulator == 0;
438 }
439
440 /** Median filter over a stream of values.
441  * Returns the median of the last N numbers
442  */
443 template <typename T> class CMedianFilter
444 {
445 private:
446     std::vector<T> vValues;
447     std::vector<T> vSorted;
448     unsigned int nSize;
449 public:
450     CMedianFilter(unsigned int size, T initial_value):
451         nSize(size)
452     {
453         vValues.reserve(size);
454         vValues.push_back(initial_value);
455         vSorted = vValues;
456     }
457
458     void input(T value)
459     {
460         if(vValues.size() == nSize)
461         {
462             vValues.erase(vValues.begin());
463         }
464         vValues.push_back(value);
465
466         vSorted.resize(vValues.size());
467         std::copy(vValues.begin(), vValues.end(), vSorted.begin());
468         std::sort(vSorted.begin(), vSorted.end());
469     }
470
471     T median() const
472     {
473         int size = vSorted.size();
474         assert(size>0);
475         if(size & 1) // Odd number of elements
476         {
477             return vSorted[size/2];
478         }
479         else // Even number of elements
480         {
481             return (vSorted[size/2-1] + vSorted[size/2]) / 2;
482         }
483     }
484
485     int size() const
486     {
487         return static_cast<int>(vValues.size());
488     }
489
490     std::vector<T> sorted () const
491     {
492         return vSorted;
493     }
494 };
495
496 bool NewThread(void(*pfn)(void*), void* parg);
497
498 #ifdef WIN32
499 inline void SetThreadPriority(int nPriority)
500 {
501     SetThreadPriority(GetCurrentThread(), nPriority);
502 }
503 #else
504
505 #define THREAD_PRIORITY_LOWEST          PRIO_MAX
506 #define THREAD_PRIORITY_BELOW_NORMAL    2
507 #define THREAD_PRIORITY_NORMAL          0
508 #define THREAD_PRIORITY_ABOVE_NORMAL    0
509
510 inline void SetThreadPriority(int nPriority)
511 {
512     // It's unclear if it's even possible to change thread priorities on Linux,
513     // but we really and truly need it for the generation threads.
514 #ifdef PRIO_THREAD
515     setpriority(PRIO_THREAD, 0, nPriority);
516 #else
517     setpriority(PRIO_PROCESS, 0, nPriority);
518 #endif
519 }
520
521 inline void ExitThread(size_t nExitCode)
522 {
523     pthread_exit((void*)nExitCode);
524 }
525 #endif
526
527 void RenameThread(const char* name);
528
529 inline uint32_t ByteReverse(uint32_t value)
530 {
531     value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8);
532     return (value<<16) | (value>>16);
533 }
534
535 #endif
536