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