1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
6 #if defined(_MSC_VER) || defined(__BORLANDC__)
8 typedef unsigned __int64 uint64;
10 typedef long long int64;
11 typedef unsigned long long uint64;
13 #if defined(_MSC_VER) && _MSC_VER < 1300
14 #define for if (false) ; else for
17 #define __forceinline inline
20 #define foreach BOOST_FOREACH
22 #define BEGIN(a) ((char*)&(a))
23 #define END(a) ((char*)&((&(a))[1]))
24 #define UBEGIN(a) ((unsigned char*)&(a))
25 #define UEND(a) ((unsigned char*)&((&(a))[1]))
26 #define ARRAYLEN(array) (sizeof(array)/sizeof((array)[0]))
27 #define printf OutputDebugStringF
32 #define snprintf my_snprintf
35 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MSVCRT__)
46 // This is needed because the foreach macro can't get over the comma in pair<t1, t2>
47 #define PAIRTYPE(t1, t2) pair<t1, t2>
49 // Used to bypass the rule against non-const reference to temporary
50 // where it makes sense with wrappers such as CFlatData or CTxDB
52 inline T& REF(const T& val)
57 // Align by increasing pointer, must have extra space at end of buffer
58 template <size_t nBytes, typename T>
67 u.n = (u.n + (nBytes-1)) & ~(nBytes-1);
72 #define MSG_NOSIGNAL 0
73 #define MSG_DONTWAIT 0
75 #define UINT64_MAX _UI64_MAX
76 #define INT64_MAX _I64_MAX
77 #define INT64_MIN _I64_MIN
83 #define unlink _unlink
84 typedef int socklen_t;
86 #define WSAGetLastError() errno
87 #define WSAEWOULDBLOCK EWOULDBLOCK
88 #define WSAEMSGSIZE EMSGSIZE
89 #define WSAEINTR EINTR
90 #define WSAEINPROGRESS EINPROGRESS
91 #define WSAEADDRINUSE EADDRINUSE
92 #define WSAENOTSOCK EBADF
93 #define INVALID_SOCKET (SOCKET)(~0)
94 #define SOCKET_ERROR -1
96 #define _vsnprintf(a,b,c,d) vsnprintf(a,b,c,d)
97 #define strlwr(psz) to_lower(psz)
98 #define _strlwr(psz) to_lower(psz)
100 #define Beep(n1,n2) (0)
101 inline void Sleep(int64 n)
103 boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n));
107 inline int myclosesocket(SOCKET& hSocket)
109 if (hSocket == INVALID_SOCKET)
112 int ret = closesocket(hSocket);
114 int ret = close(hSocket);
116 hSocket = INVALID_SOCKET;
119 #define closesocket(s) myclosesocket(s)
122 inline const char* _(const char* psz)
137 extern map<string, string> mapArgs;
138 extern map<string, vector<string> > mapMultiArgs;
140 extern bool fPrintToConsole;
141 extern bool fPrintToDebugger;
142 extern char pszSetDataDir[MAX_PATH];
143 extern bool fRequestShutdown;
144 extern bool fShutdown;
147 extern bool fCommandLine;
148 extern string strMiscWarning;
149 extern bool fTestNet;
150 extern bool fNoListen;
151 extern bool fLogTimestamps;
154 void RandAddSeedPerfmon();
155 int OutputDebugStringF(const char* pszFormat, ...);
156 int my_snprintf(char* buffer, size_t limit, const char* format, ...);
157 string strprintf(const char* format, ...);
158 bool error(const char* format, ...);
159 void LogException(std::exception* pex, const char* pszThread);
160 void PrintException(std::exception* pex, const char* pszThread);
161 void PrintExceptionContinue(std::exception* pex, const char* pszThread);
162 void ParseString(const string& str, char c, vector<string>& v);
163 string FormatMoney(int64 n, bool fPlus=false);
164 bool ParseMoney(const string& str, int64& nRet);
165 bool ParseMoney(const char* pszIn, int64& nRet);
166 vector<unsigned char> ParseHex(const char* psz);
167 vector<unsigned char> ParseHex(const string& str);
168 void ParseParameters(int argc, char* argv[]);
169 const char* wxGetTranslation(const char* psz);
170 bool WildcardMatch(const char* psz, const char* mask);
171 bool WildcardMatch(const string& str, const string& mask);
172 int GetFilesize(FILE* file);
173 void GetDataDir(char* pszDirRet);
174 string GetConfigFile();
176 void CreatePidFile(string pidFile, pid_t pid);
177 void ReadConfigFile(map<string, string>& mapSettingsRet, map<string, vector<string> >& mapMultiSettingsRet);
179 string MyGetSpecialFolderPath(int nFolder, bool fCreate);
181 string GetDefaultDataDir();
183 void ShrinkDebugFile();
184 int GetRandInt(int nMax);
185 uint64 GetRand(uint64 nMax);
187 int64 GetAdjustedTime();
188 void AddTimeData(unsigned int ip, int64 nTime);
189 string FormatFullVersion();
203 // Wrapper to automatically initialize critical sections
204 class CCriticalSection
210 explicit CCriticalSection() { InitializeCriticalSection(&cs); }
211 ~CCriticalSection() { DeleteCriticalSection(&cs); }
212 void Enter() { EnterCriticalSection(&cs); }
213 void Leave() { LeaveCriticalSection(&cs); }
214 bool TryEnter() { return TryEnterCriticalSection(&cs); }
217 boost::interprocess::interprocess_recursive_mutex mutex;
219 explicit CCriticalSection() { }
220 ~CCriticalSection() { }
221 void Enter() { mutex.lock(); }
222 void Leave() { mutex.unlock(); }
223 bool TryEnter() { return mutex.try_lock(); }
230 // Automatically leave critical section when leaving block, needed for exception safety
234 CCriticalSection* pcs;
236 CCriticalBlock(CCriticalSection& csIn) { pcs = &csIn; pcs->Enter(); }
237 ~CCriticalBlock() { pcs->Leave(); }
240 // WARNING: This will catch continue and break!
241 // break is caught with an assertion, but there's no way to detect continue.
242 // I'd rather be careful than suffer the other more error prone syntax.
243 // The compiler will optimise away all this loop junk.
244 #define CRITICAL_BLOCK(cs) \
245 for (bool fcriticalblockonce=true; fcriticalblockonce; assert(("break caught by CRITICAL_BLOCK!", !fcriticalblockonce)), fcriticalblockonce=false) \
246 for (CCriticalBlock criticalblock(cs); fcriticalblockonce && (cs.pszFile=__FILE__, cs.nLine=__LINE__, true); fcriticalblockonce=false, cs.pszFile=NULL, cs.nLine=0)
248 class CTryCriticalBlock
251 CCriticalSection* pcs;
253 CTryCriticalBlock(CCriticalSection& csIn) { pcs = (csIn.TryEnter() ? &csIn : NULL); }
254 ~CTryCriticalBlock() { if (pcs) pcs->Leave(); }
255 bool Entered() { return pcs != NULL; }
258 #define TRY_CRITICAL_BLOCK(cs) \
259 for (bool fcriticalblockonce=true; fcriticalblockonce; assert(("break caught by TRY_CRITICAL_BLOCK!", !fcriticalblockonce)), fcriticalblockonce=false) \
260 for (CTryCriticalBlock criticalblock(cs); fcriticalblockonce && (fcriticalblockonce = criticalblock.Entered()) && (cs.pszFile=__FILE__, cs.nLine=__LINE__, true); fcriticalblockonce=false, cs.pszFile=NULL, cs.nLine=0)
271 inline string i64tostr(int64 n)
273 return strprintf("%"PRI64d, n);
276 inline string itostr(int n)
278 return strprintf("%d", n);
281 inline int64 atoi64(const char* psz)
286 return strtoll(psz, NULL, 10);
290 inline int64 atoi64(const string& str)
293 return _atoi64(str.c_str());
295 return strtoll(str.c_str(), NULL, 10);
299 inline int atoi(const string& str)
301 return atoi(str.c_str());
304 inline int roundint(double d)
306 return (int)(d > 0 ? d + 0.5 : d - 0.5);
309 inline int64 roundint64(double d)
311 return (int64)(d > 0 ? d + 0.5 : d - 0.5);
314 inline int64 abs64(int64 n)
316 return (n >= 0 ? n : -n);
320 string HexStr(const T itbegin, const T itend, bool fSpaces=false)
322 if (itbegin == itend)
324 const unsigned char* pbegin = (const unsigned char*)&itbegin[0];
325 const unsigned char* pend = pbegin + (itend - itbegin) * sizeof(itbegin[0]);
327 str.reserve((pend-pbegin) * (fSpaces ? 3 : 2));
328 for (const unsigned char* p = pbegin; p != pend; p++)
329 str += strprintf((fSpaces && p != pend-1 ? "%02x " : "%02x"), *p);
333 inline string HexStr(const vector<unsigned char>& vch, bool fSpaces=false)
335 return HexStr(vch.begin(), vch.end(), fSpaces);
339 string HexNumStr(const T itbegin, const T itend, bool f0x=true)
341 if (itbegin == itend)
343 const unsigned char* pbegin = (const unsigned char*)&itbegin[0];
344 const unsigned char* pend = pbegin + (itend - itbegin) * sizeof(itbegin[0]);
345 string str = (f0x ? "0x" : "");
346 str.reserve(str.size() + (pend-pbegin) * 2);
347 for (const unsigned char* p = pend-1; p >= pbegin; p--)
348 str += strprintf("%02x", *p);
352 inline string HexNumStr(const vector<unsigned char>& vch, bool f0x=true)
354 return HexNumStr(vch.begin(), vch.end(), f0x);
358 void PrintHex(const T pbegin, const T pend, const char* pszFormat="%s", bool fSpaces=true)
360 printf(pszFormat, HexStr(pbegin, pend, fSpaces).c_str());
363 inline void PrintHex(const vector<unsigned char>& vch, const char* pszFormat="%s", bool fSpaces=true)
365 printf(pszFormat, HexStr(vch, fSpaces).c_str());
368 inline int64 GetPerformanceCounter()
372 QueryPerformanceCounter((LARGE_INTEGER*)&nCounter);
375 gettimeofday(&t, NULL);
376 nCounter = t.tv_sec * 1000000 + t.tv_usec;
381 inline int64 GetTimeMillis()
383 return (posix_time::ptime(posix_time::microsec_clock::universal_time()) -
384 posix_time::ptime(gregorian::date(1970,1,1))).total_milliseconds();
387 inline string DateTimeStrFormat(const char* pszFormat, int64 nTime)
390 struct tm* ptmTime = gmtime(&n);
392 strftime(pszTime, sizeof(pszTime), pszFormat, ptmTime);
397 void skipspaces(T& it)
403 inline bool IsSwitchChar(char c)
406 return c == '-' || c == '/';
412 inline string GetArg(const string& strArg, const string& strDefault)
414 if (mapArgs.count(strArg))
415 return mapArgs[strArg];
419 inline int64 GetArg(const string& strArg, int64 nDefault)
421 if (mapArgs.count(strArg))
422 return atoi64(mapArgs[strArg]);
426 inline bool GetBoolArg(const string& strArg)
428 if (mapArgs.count(strArg))
430 if (mapArgs[strArg].empty())
432 return (atoi(mapArgs[strArg]) != 0);
446 inline void heapchk()
450 //if (_heapchk() != _HEAPOK)
455 // Randomize the stack to help protect against buffer overrun exploits
456 #define IMPLEMENT_RANDOMIZE_STACK(ThreadFn) \
458 static char nLoops; \
460 nLoops = GetRand(20) + 1; \
468 #define CATCH_PRINT_EXCEPTION(pszFn) \
469 catch (std::exception& e) { \
470 PrintException(&e, (pszFn)); \
472 PrintException(NULL, (pszFn)); \
484 template<typename T1>
485 inline uint256 Hash(const T1 pbegin, const T1 pend)
487 static unsigned char pblank[1];
489 SHA256((pbegin == pend ? pblank : (unsigned char*)&pbegin[0]), (pend - pbegin) * sizeof(pbegin[0]), (unsigned char*)&hash1);
491 SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
495 template<typename T1, typename T2>
496 inline uint256 Hash(const T1 p1begin, const T1 p1end,
497 const T2 p2begin, const T2 p2end)
499 static unsigned char pblank[1];
503 SHA256_Update(&ctx, (p1begin == p1end ? pblank : (unsigned char*)&p1begin[0]), (p1end - p1begin) * sizeof(p1begin[0]));
504 SHA256_Update(&ctx, (p2begin == p2end ? pblank : (unsigned char*)&p2begin[0]), (p2end - p2begin) * sizeof(p2begin[0]));
505 SHA256_Final((unsigned char*)&hash1, &ctx);
507 SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
511 template<typename T1, typename T2, typename T3>
512 inline uint256 Hash(const T1 p1begin, const T1 p1end,
513 const T2 p2begin, const T2 p2end,
514 const T3 p3begin, const T3 p3end)
516 static unsigned char pblank[1];
520 SHA256_Update(&ctx, (p1begin == p1end ? pblank : (unsigned char*)&p1begin[0]), (p1end - p1begin) * sizeof(p1begin[0]));
521 SHA256_Update(&ctx, (p2begin == p2end ? pblank : (unsigned char*)&p2begin[0]), (p2end - p2begin) * sizeof(p2begin[0]));
522 SHA256_Update(&ctx, (p3begin == p3end ? pblank : (unsigned char*)&p3begin[0]), (p3end - p3begin) * sizeof(p3begin[0]));
523 SHA256_Final((unsigned char*)&hash1, &ctx);
525 SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
530 uint256 SerializeHash(const T& obj, int nType=SER_GETHASH, int nVersion=VERSION)
532 // Most of the time is spent allocating and deallocating CDataStream's
533 // buffer. If this ever needs to be optimized further, make a CStaticStream
534 // class with its buffer on the stack.
535 CDataStream ss(nType, nVersion);
538 return Hash(ss.begin(), ss.end());
541 inline uint160 Hash160(const vector<unsigned char>& vch)
544 SHA256(&vch[0], vch.size(), (unsigned char*)&hash1);
546 RIPEMD160((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
560 // Note: It turns out we might have been able to use boost::thread
561 // by using TerminateThread(boost::thread.native_handle(), 0);
563 typedef HANDLE pthread_t;
565 inline pthread_t CreateThread(void(*pfn)(void*), void* parg, bool fWantHandle=false)
570 NULL, // default security
571 0, // inherit stack size from parent
572 (LPTHREAD_START_ROUTINE)pfn, // function pointer
574 0, // creation option, start immediately
575 &nUnused); // thread identifier
578 printf("Error: CreateThread() returned %d\n", GetLastError());
583 CloseHandle(hthread);
584 return (pthread_t)-1;
589 inline void SetThreadPriority(int nPriority)
591 SetThreadPriority(GetCurrentThread(), nPriority);
594 inline pthread_t CreateThread(void(*pfn)(void*), void* parg, bool fWantHandle=false)
596 pthread_t hthread = 0;
597 int ret = pthread_create(&hthread, NULL, (void*(*)(void*))pfn, parg);
600 printf("Error: pthread_create() returned %d\n", ret);
604 return (pthread_t)-1;
608 #define THREAD_PRIORITY_LOWEST PRIO_MAX
609 #define THREAD_PRIORITY_BELOW_NORMAL 2
610 #define THREAD_PRIORITY_NORMAL 0
611 #define THREAD_PRIORITY_ABOVE_NORMAL 0
613 inline void SetThreadPriority(int nPriority)
615 // It's unclear if it's even possible to change thread priorities on Linux,
616 // but we really and truly need it for the generation threads.
618 setpriority(PRIO_THREAD, 0, nPriority);
620 setpriority(PRIO_PROCESS, 0, nPriority);
624 inline bool TerminateThread(pthread_t hthread, unsigned int nExitCode)
626 return (pthread_cancel(hthread) == 0);
629 inline void ExitThread(unsigned int nExitCode)
631 pthread_exit((void*)nExitCode);
639 inline bool AffinityBugWorkaround(void(*pfn)(void*))
642 // Sometimes after a few hours affinity gets stuck on one processor
643 DWORD dwProcessAffinityMask = -1;
644 DWORD dwSystemAffinityMask = -1;
645 GetProcessAffinityMask(GetCurrentProcess(), &dwProcessAffinityMask, &dwSystemAffinityMask);
646 DWORD dwPrev1 = SetThreadAffinityMask(GetCurrentThread(), dwProcessAffinityMask);
647 DWORD dwPrev2 = SetThreadAffinityMask(GetCurrentThread(), dwProcessAffinityMask);
648 if (dwPrev2 != dwProcessAffinityMask)
650 printf("AffinityBugWorkaround() : SetThreadAffinityMask=%d, ProcessAffinityMask=%d, restarting thread\n", dwPrev2, dwProcessAffinityMask);
651 if (!CreateThread(pfn, NULL))
652 printf("Error: CreateThread() failed\n");