Added GetArgInt function
[novacoin.git] / src / util.cpp
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
6 #include "util.h"
7 #include "sync.h"
8 #include "version.h"
9 #include "ui_interface.h"
10 #include <boost/algorithm/string/join.hpp>
11 #include <boost/algorithm/string/case_conv.hpp> // for to_lower()
12 #include <boost/algorithm/string/predicate.hpp> // for startswith() and endswith()
13
14 // Work around clang compilation problem in Boost 1.46:
15 // /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup
16 // See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options
17 //           http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION
18 namespace boost {
19     namespace program_options {
20         std::string to_internal(const std::string&);
21     }
22 }
23
24 #include <boost/program_options/detail/config_file.hpp>
25 #include <boost/program_options/parsers.hpp>
26 #include <boost/filesystem.hpp>
27 #include <boost/filesystem/fstream.hpp>
28
29 #include <boost/date_time/posix_time/posix_time.hpp>
30 #include <boost/foreach.hpp>
31 #include <boost/thread.hpp>
32 #include <openssl/crypto.h>
33 #include <openssl/rand.h>
34
35 #ifdef WIN32
36 #ifdef _MSC_VER
37 #pragma warning(disable:4786)
38 #pragma warning(disable:4804)
39 #pragma warning(disable:4805)
40 #pragma warning(disable:4717)
41 #endif
42 #ifdef _WIN32_WINNT
43 #undef _WIN32_WINNT
44 #endif
45 #define _WIN32_WINNT 0x0501
46 #ifdef _WIN32_IE
47 #undef _WIN32_IE
48 #endif
49 #define _WIN32_IE 0x0501
50 #define WIN32_LEAN_AND_MEAN 1
51 #ifndef NOMINMAX
52 #define NOMINMAX
53 #endif
54 #include <io.h> /* for _commit */
55 #include "shlobj.h"
56 #elif defined(__linux__)
57 # include <sys/prctl.h>
58 #endif
59
60 #if !defined(WIN32) && !defined(ANDROID)
61 #include <execinfo.h>
62 #endif
63
64
65 using namespace std;
66 namespace bt = boost::posix_time;
67
68 map<string, string> mapArgs;
69 map<string, vector<string> > mapMultiArgs;
70 bool fDebug = false;
71 bool fDebugNet = false;
72 bool fPrintToConsole = false;
73 bool fPrintToDebugger = false;
74 bool fRequestShutdown = false;
75 bool fShutdown = false;
76 bool fDaemon = false;
77 bool fServer = false;
78 bool fCommandLine = false;
79 string strMiscWarning;
80 bool fTestNet = false;
81 bool fNoListen = false;
82 bool fLogTimestamps = false;
83 CMedianFilter<int64_t> vTimeOffsets(200,0);
84 bool fReopenDebugLog = false;
85
86 // Extended DecodeDumpTime implementation, see this page for details:
87 // http://stackoverflow.com/questions/3786201/parsing-of-date-time-from-string-boost
88 const std::locale formats[] = {
89     std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%dT%H:%M:%SZ")),
90     std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d %H:%M:%S")),
91     std::locale(std::locale::classic(),new bt::time_input_facet("%Y/%m/%d %H:%M:%S")),
92     std::locale(std::locale::classic(),new bt::time_input_facet("%d.%m.%Y %H:%M:%S")),
93     std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d"))
94 };
95
96 const size_t formats_n = sizeof(formats)/sizeof(formats[0]);
97
98 std::time_t pt_to_time_t(const bt::ptime& pt)
99 {
100     bt::ptime timet_start(boost::gregorian::date(1970,1,1));
101     bt::time_duration diff = pt - timet_start;
102     return diff.ticks()/bt::time_duration::rep_type::ticks_per_second;
103 }
104
105 // Init OpenSSL library multithreading support
106 static CCriticalSection** ppmutexOpenSSL;
107 void locking_callback(int mode, int i, const char* file, int line)
108 {
109     if (mode & CRYPTO_LOCK) {
110         ENTER_CRITICAL_SECTION(*ppmutexOpenSSL[i]);
111     } else {
112         LEAVE_CRITICAL_SECTION(*ppmutexOpenSSL[i]);
113     }
114 }
115
116 LockedPageManager LockedPageManager::instance;
117
118 // Init
119 class CInit
120 {
121 public:
122     CInit()
123     {
124         // Init OpenSSL library multithreading support
125         ppmutexOpenSSL = (CCriticalSection**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(CCriticalSection*));
126         for (int i = 0; i < CRYPTO_num_locks(); i++)
127             ppmutexOpenSSL[i] = new CCriticalSection();
128         CRYPTO_set_locking_callback(locking_callback);
129
130 #ifdef WIN32
131         // Seed random number generator with screen scrape and other hardware sources
132         RAND_screen();
133 #endif
134
135         // Seed random number generator with performance counter
136         RandAddSeed();
137     }
138     ~CInit()
139     {
140         // Shutdown OpenSSL library multithreading support
141         CRYPTO_set_locking_callback(NULL);
142         for (int i = 0; i < CRYPTO_num_locks(); i++)
143             delete ppmutexOpenSSL[i];
144         OPENSSL_free(ppmutexOpenSSL);
145     }
146 }
147 instance_of_cinit;
148
149
150
151
152
153
154
155
156 void RandAddSeed()
157 {
158     // Seed with CPU performance counter
159     int64_t nCounter = GetPerformanceCounter();
160     RAND_add(&nCounter, sizeof(nCounter), 1.5);
161     memset(&nCounter, 0, sizeof(nCounter));
162 }
163
164 void RandAddSeedPerfmon()
165 {
166     RandAddSeed();
167
168     // This can take up to 2 seconds, so only do it every 10 minutes
169     static int64_t nLastPerfmon;
170     if (GetTime() < nLastPerfmon + 10 * 60)
171         return;
172     nLastPerfmon = GetTime();
173
174 #ifdef WIN32
175     // Don't need this on Linux, OpenSSL automatically uses /dev/urandom
176     // Seed with the entire set of perfmon data
177     unsigned char pdata[250000];
178     memset(pdata, 0, sizeof(pdata));
179     unsigned long nSize = sizeof(pdata);
180     long ret = RegQueryValueExA(HKEY_PERFORMANCE_DATA, "Global", NULL, NULL, pdata, &nSize);
181     RegCloseKey(HKEY_PERFORMANCE_DATA);
182     if (ret == ERROR_SUCCESS)
183     {
184         RAND_add(pdata, nSize, nSize/100.0);
185         OPENSSL_cleanse(pdata, nSize);
186         printf("RandAddSeed() %lu bytes\n", nSize);
187     }
188 #endif
189 }
190
191 uint64_t GetRand(uint64_t nMax)
192 {
193     if (nMax == 0)
194         return 0;
195
196     // The range of the random source must be a multiple of the modulus
197     // to give every possible output value an equal possibility
198     uint64_t nRange = (std::numeric_limits<uint64_t>::max() / nMax) * nMax;
199     uint64_t nRand = 0;
200     do
201         RAND_bytes((unsigned char*)&nRand, sizeof(nRand));
202     while (nRand >= nRange);
203     return (nRand % nMax);
204 }
205
206 int GetRandInt(int nMax)
207 {
208     return static_cast<int>(GetRand(nMax));
209 }
210
211 uint256 GetRandHash()
212 {
213     uint256 hash;
214     RAND_bytes((unsigned char*)&hash, sizeof(hash));
215     return hash;
216 }
217
218
219
220
221
222
223 static FILE* fileout = NULL;
224
225 inline int OutputDebugStringF(const char* pszFormat, ...)
226 {
227     int ret = 0;
228     if (fPrintToConsole)
229     {
230         // print to console
231         va_list arg_ptr;
232         va_start(arg_ptr, pszFormat);
233         ret = vprintf(pszFormat, arg_ptr);
234         va_end(arg_ptr);
235     }
236     else if (!fPrintToDebugger)
237     {
238         // print to debug.log
239
240         if (!fileout)
241         {
242             boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
243             fileout = fopen(pathDebug.string().c_str(), "a");
244             if (fileout) setbuf(fileout, NULL); // unbuffered
245         }
246         if (fileout)
247         {
248             static bool fStartedNewLine = true;
249
250             // This routine may be called by global destructors during shutdown.
251             // Since the order of destruction of static/global objects is undefined,
252             // allocate mutexDebugLog on the heap the first time this routine
253             // is called to avoid crashes during shutdown.
254             static boost::mutex* mutexDebugLog = NULL;
255             if (mutexDebugLog == NULL) mutexDebugLog = new boost::mutex();
256             boost::mutex::scoped_lock scoped_lock(*mutexDebugLog);
257
258             // reopen the log file, if requested
259             if (fReopenDebugLog) {
260                 fReopenDebugLog = false;
261                 boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
262                 if (freopen(pathDebug.string().c_str(),"a",fileout) != NULL)
263                     setbuf(fileout, NULL); // unbuffered
264             }
265
266             // Debug print useful for profiling
267             if (fLogTimestamps && fStartedNewLine)
268                 fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
269             if (pszFormat[strlen(pszFormat) - 1] == '\n')
270                 fStartedNewLine = true;
271             else
272                 fStartedNewLine = false;
273
274             va_list arg_ptr;
275             va_start(arg_ptr, pszFormat);
276             ret = vfprintf(fileout, pszFormat, arg_ptr);
277             va_end(arg_ptr);
278         }
279     }
280
281 #ifdef WIN32
282     if (fPrintToDebugger)
283     {
284         static CCriticalSection cs_OutputDebugStringF;
285
286         // accumulate and output a line at a time
287         {
288             LOCK(cs_OutputDebugStringF);
289             static std::string buffer;
290
291             va_list arg_ptr;
292             va_start(arg_ptr, pszFormat);
293             buffer += vstrprintf(pszFormat, arg_ptr);
294             va_end(arg_ptr);
295
296             int line_start = 0, line_end;
297             while((line_end = buffer.find('\n', line_start)) != -1)
298             {
299                 OutputDebugStringA(buffer.substr(line_start, line_end - line_start).c_str());
300                 line_start = line_end + 1;
301             }
302             buffer.erase(0, line_start);
303         }
304     }
305 #endif
306     return ret;
307 }
308
309 string vstrprintf(const char *format, va_list ap)
310 {
311     char buffer[50000];
312     char* p = buffer;
313     int limit = sizeof(buffer);
314     int ret;
315     while (true)
316     {
317 #ifndef _MSC_VER
318         va_list arg_ptr;
319         va_copy(arg_ptr, ap);
320 #else
321         va_list arg_ptr = ap;
322 #endif
323 #ifdef WIN32
324         ret = _vsnprintf(p, limit, format, arg_ptr);
325 #else
326         ret = vsnprintf(p, limit, format, arg_ptr);
327 #endif
328         va_end(arg_ptr);
329         if (ret >= 0 && ret < limit)
330             break;
331         if (p != buffer)
332             delete[] p;
333         limit *= 2;
334         p = new char[limit];
335         if (p == NULL)
336             throw std::bad_alloc();
337     }
338     string str(p, p+ret);
339     if (p != buffer)
340         delete[] p;
341     return str;
342 }
343
344 string real_strprintf(const char *format, int dummy, ...)
345 {
346     va_list arg_ptr;
347     va_start(arg_ptr, dummy);
348     string str = vstrprintf(format, arg_ptr);
349     va_end(arg_ptr);
350     return str;
351 }
352
353 string real_strprintf(const std::string &format, int dummy, ...)
354 {
355     va_list arg_ptr;
356     va_start(arg_ptr, dummy);
357     string str = vstrprintf(format.c_str(), arg_ptr);
358     va_end(arg_ptr);
359     return str;
360 }
361
362 bool error(const char *format, ...)
363 {
364     va_list arg_ptr;
365     va_start(arg_ptr, format);
366     std::string str = vstrprintf(format, arg_ptr);
367     va_end(arg_ptr);
368     printf("ERROR: %s\n", str.c_str());
369     return false;
370 }
371
372
373 void ParseString(const string& str, char c, vector<string>& v)
374 {
375     if (str.empty())
376         return;
377     string::size_type i1 = 0;
378     string::size_type i2;
379     while (true)
380     {
381         i2 = str.find(c, i1);
382         if (i2 == str.npos)
383         {
384             v.push_back(str.substr(i1));
385             return;
386         }
387         v.push_back(str.substr(i1, i2-i1));
388         i1 = i2+1;
389     }
390 }
391
392
393 string FormatMoney(int64_t n, bool fPlus)
394 {
395     // Note: not using straight sprintf here because we do NOT want
396     // localized number formatting.
397     int64_t n_abs = (n > 0 ? n : -n);
398     int64_t quotient = n_abs/COIN;
399     int64_t remainder = n_abs%COIN;
400     string str = strprintf("%" PRId64 ".%06" PRId64, quotient, remainder);
401
402     // Right-trim excess zeros before the decimal point:
403     int nTrim = 0;
404     for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i)
405         ++nTrim;
406     if (nTrim)
407         str.erase(str.size()-nTrim, nTrim);
408
409     if (n < 0)
410         str.insert((unsigned int)0, 1, '-');
411     else if (fPlus && n > 0)
412         str.insert((unsigned int)0, 1, '+');
413     return str;
414 }
415
416
417 bool ParseMoney(const string& str, int64_t& nRet)
418 {
419     return ParseMoney(str.c_str(), nRet);
420 }
421
422 bool ParseMoney(const char* pszIn, int64_t& nRet)
423 {
424     string strWhole;
425     int64_t nUnits = 0;
426     const char* p = pszIn;
427     while (isspace(*p))
428         p++;
429     for (; *p; p++)
430     {
431         if (*p == '.')
432         {
433             p++;
434             int64_t nMult = CENT*10;
435             while (isdigit(*p) && (nMult > 0))
436             {
437                 nUnits += nMult * (*p++ - '0');
438                 nMult /= 10;
439             }
440             break;
441         }
442         if (isspace(*p))
443             break;
444         if (!isdigit(*p))
445             return false;
446         strWhole.insert(strWhole.end(), *p);
447     }
448     for (; *p; p++)
449         if (!isspace(*p))
450             return false;
451     if (strWhole.size() > 10) // guard against 63 bit overflow
452         return false;
453     if (nUnits < 0 || nUnits > COIN)
454         return false;
455     int64_t nWhole = atoi64(strWhole);
456     int64_t nValue = nWhole*COIN + nUnits;
457
458     nRet = nValue;
459     return true;
460 }
461
462
463 static const signed char phexdigit[256] =
464 { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
465   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
466   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
467   0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1,
468   -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
469   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
470   -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
471   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
472   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
473   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
474   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
475   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
476   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
477   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
478   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
479   -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, };
480
481 bool IsHex(const string& str)
482 {
483     BOOST_FOREACH(unsigned char c, str)
484     {
485         if (phexdigit[c] < 0)
486             return false;
487     }
488     return (str.size() > 0) && (str.size()%2 == 0);
489 }
490
491 vector<unsigned char> ParseHex(const char* psz)
492 {
493     // convert hex dump to vector
494     vector<unsigned char> vch;
495     while (true)
496     {
497         while (isspace(*psz))
498             psz++;
499         signed char c = phexdigit[(unsigned char)*psz++];
500         if (c == (signed char)-1)
501             break;
502         unsigned char n = (c << 4);
503         c = phexdigit[(unsigned char)*psz++];
504         if (c == (signed char)-1)
505             break;
506         n |= c;
507         vch.push_back(n);
508     }
509     return vch;
510 }
511
512 vector<unsigned char> ParseHex(const string& str)
513 {
514     return ParseHex(str.c_str());
515 }
516
517 static void InterpretNegativeSetting(string name, map<string, string>& mapSettingsRet)
518 {
519     // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set
520     if (name.find("-no") == 0)
521     {
522         std::string positive("-");
523         positive.append(name.begin()+3, name.end());
524         if (mapSettingsRet.count(positive) == 0)
525         {
526             bool value = !GetBoolArg(name);
527             mapSettingsRet[positive] = (value ? "1" : "0");
528         }
529     }
530 }
531
532 void ParseParameters(int argc, const char* const argv[])
533 {
534     mapArgs.clear();
535     mapMultiArgs.clear();
536     for (int i = 1; i < argc; i++)
537     {
538         std::string str(argv[i]);
539         std::string strValue;
540         size_t is_index = str.find('=');
541         if (is_index != std::string::npos)
542         {
543             strValue = str.substr(is_index+1);
544             str = str.substr(0, is_index);
545         }
546 #ifdef WIN32
547         boost::to_lower(str);
548         if (boost::algorithm::starts_with(str, "/"))
549             str = "-" + str.substr(1);
550 #endif
551         if (str[0] != '-')
552             break;
553
554         mapArgs[str] = strValue;
555         mapMultiArgs[str].push_back(strValue);
556     }
557
558     // New 0.6 features:
559     BOOST_FOREACH(const PAIRTYPE(string,string)& entry, mapArgs)
560     {
561         string name = entry.first;
562
563         //  interpret --foo as -foo (as long as both are not set)
564         if (name.find("--") == 0)
565         {
566             std::string singleDash(name.begin()+1, name.end());
567             if (mapArgs.count(singleDash) == 0)
568                 mapArgs[singleDash] = entry.second;
569             name = singleDash;
570         }
571
572         // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set
573         InterpretNegativeSetting(name, mapArgs);
574     }
575 }
576
577 std::string GetArg(const std::string& strArg, const std::string& strDefault)
578 {
579     if (mapArgs.count(strArg))
580         return mapArgs[strArg];
581     return strDefault;
582 }
583
584 int64_t GetArg(const std::string& strArg, int64_t nDefault)
585 {
586     if (mapArgs.count(strArg))
587         return atoi64(mapArgs[strArg]);
588     return nDefault;
589 }
590
591 int32_t GetArgInt(const std::string& strArg, int32_t nDefault)
592 {
593     if (mapArgs.count(strArg))
594         return strtol(mapArgs[strArg]);
595     return nDefault;
596 }
597
598 bool GetBoolArg(const std::string& strArg, bool fDefault)
599 {
600     if (mapArgs.count(strArg))
601     {
602         if (mapArgs[strArg].empty())
603             return true;
604         return (atoi(mapArgs[strArg]) != 0);
605     }
606     return fDefault;
607 }
608
609 bool SoftSetArg(const std::string& strArg, const std::string& strValue)
610 {
611     if (mapArgs.count(strArg) || mapMultiArgs.count(strArg))
612         return false;
613     mapArgs[strArg] = strValue;
614     mapMultiArgs[strArg].push_back(strValue);
615
616     return true;
617 }
618
619 bool SoftSetBoolArg(const std::string& strArg, bool fValue)
620 {
621     if (fValue)
622         return SoftSetArg(strArg, std::string("1"));
623     else
624         return SoftSetArg(strArg, std::string("0"));
625 }
626
627
628 string EncodeBase64(const unsigned char* pch, size_t len)
629 {
630     static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
631
632     string strRet="";
633     strRet.reserve((len+2)/3*4);
634
635     int mode=0, left=0;
636     const unsigned char *pchEnd = pch+len;
637
638     while (pch<pchEnd)
639     {
640         int enc = *(pch++);
641         switch (mode)
642         {
643             case 0: // we have no bits
644                 strRet += pbase64[enc >> 2];
645                 left = (enc & 3) << 4;
646                 mode = 1;
647                 break;
648
649             case 1: // we have two bits
650                 strRet += pbase64[left | (enc >> 4)];
651                 left = (enc & 15) << 2;
652                 mode = 2;
653                 break;
654
655             case 2: // we have four bits
656                 strRet += pbase64[left | (enc >> 6)];
657                 strRet += pbase64[enc & 63];
658                 mode = 0;
659                 break;
660         }
661     }
662
663     if (mode)
664     {
665         strRet += pbase64[left];
666         strRet += '=';
667         if (mode == 1)
668             strRet += '=';
669     }
670
671     return strRet;
672 }
673
674 string EncodeBase64(const string& str)
675 {
676     return EncodeBase64((const unsigned char*)str.c_str(), str.size());
677 }
678
679 vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid)
680 {
681     static const int decode64_table[256] =
682     {
683         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
684         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
685         -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1,
686         -1, -1, -1, -1, -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
687         15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28,
688         29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
689         49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
690         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
691         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
692         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
693         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
694         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
695         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
696     };
697
698     if (pfInvalid)
699         *pfInvalid = false;
700
701     vector<unsigned char> vchRet;
702     vchRet.reserve(strlen(p)*3/4);
703
704     int mode = 0;
705     int left = 0;
706
707     while (1)
708     {
709          int dec = decode64_table[(unsigned char)*p];
710          if (dec == -1) break;
711          p++;
712          switch (mode)
713          {
714              case 0: // we have no bits and get 6
715                  left = dec;
716                  mode = 1;
717                  break;
718
719               case 1: // we have 6 bits and keep 4
720                   vchRet.push_back((left<<2) | (dec>>4));
721                   left = dec & 15;
722                   mode = 2;
723                   break;
724
725              case 2: // we have 4 bits and get 6, we keep 2
726                  vchRet.push_back((left<<4) | (dec>>2));
727                  left = dec & 3;
728                  mode = 3;
729                  break;
730
731              case 3: // we have 2 bits and get 6
732                  vchRet.push_back((left<<6) | dec);
733                  mode = 0;
734                  break;
735          }
736     }
737
738     if (pfInvalid)
739         switch (mode)
740         {
741             case 0: // 4n base64 characters processed: ok
742                 break;
743
744             case 1: // 4n+1 base64 character processed: impossible
745                 *pfInvalid = true;
746                 break;
747
748             case 2: // 4n+2 base64 characters processed: require '=='
749                 if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1)
750                     *pfInvalid = true;
751                 break;
752
753             case 3: // 4n+3 base64 characters processed: require '='
754                 if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1)
755                     *pfInvalid = true;
756                 break;
757         }
758
759     return vchRet;
760 }
761
762 string DecodeBase64(const string& str)
763 {
764     vector<unsigned char> vchRet = DecodeBase64(str.c_str());
765     return string((const char*)&vchRet[0], vchRet.size());
766 }
767
768 string EncodeBase32(const unsigned char* pch, size_t len)
769 {
770     static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567";
771
772     string strRet="";
773     strRet.reserve((len+4)/5*8);
774
775     int mode=0, left=0;
776     const unsigned char *pchEnd = pch+len;
777
778     while (pch<pchEnd)
779     {
780         int enc = *(pch++);
781         switch (mode)
782         {
783             case 0: // we have no bits
784                 strRet += pbase32[enc >> 3];
785                 left = (enc & 7) << 2;
786                 mode = 1;
787                 break;
788
789             case 1: // we have three bits
790                 strRet += pbase32[left | (enc >> 6)];
791                 strRet += pbase32[(enc >> 1) & 31];
792                 left = (enc & 1) << 4;
793                 mode = 2;
794                 break;
795
796             case 2: // we have one bit
797                 strRet += pbase32[left | (enc >> 4)];
798                 left = (enc & 15) << 1;
799                 mode = 3;
800                 break;
801
802             case 3: // we have four bits
803                 strRet += pbase32[left | (enc >> 7)];
804                 strRet += pbase32[(enc >> 2) & 31];
805                 left = (enc & 3) << 3;
806                 mode = 4;
807                 break;
808
809             case 4: // we have two bits
810                 strRet += pbase32[left | (enc >> 5)];
811                 strRet += pbase32[enc & 31];
812                 mode = 0;
813         }
814     }
815
816     static const int nPadding[5] = {0, 6, 4, 3, 1};
817     if (mode)
818     {
819         strRet += pbase32[left];
820         for (int n=0; n<nPadding[mode]; n++)
821              strRet += '=';
822     }
823
824     return strRet;
825 }
826
827 string EncodeBase32(const string& str)
828 {
829     return EncodeBase32((const unsigned char*)str.c_str(), str.size());
830 }
831
832 vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid)
833 {
834     static const int decode32_table[256] =
835     {
836         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
837         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
838         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1,
839         -1, -1, -1, -1, -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
840         15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1,  0,  1,  2,
841          3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
842         23, 24, 25, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
843         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
844         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
845         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
846         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
847         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
848         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
849     };
850
851     if (pfInvalid)
852         *pfInvalid = false;
853
854     vector<unsigned char> vchRet;
855     vchRet.reserve((strlen(p))*5/8);
856
857     int mode = 0;
858     int left = 0;
859
860     while (1)
861     {
862          int dec = decode32_table[(unsigned char)*p];
863          if (dec == -1) break;
864          p++;
865          switch (mode)
866          {
867              case 0: // we have no bits and get 5
868                  left = dec;
869                  mode = 1;
870                  break;
871
872               case 1: // we have 5 bits and keep 2
873                   vchRet.push_back((left<<3) | (dec>>2));
874                   left = dec & 3;
875                   mode = 2;
876                   break;
877
878              case 2: // we have 2 bits and keep 7
879                  left = left << 5 | dec;
880                  mode = 3;
881                  break;
882
883              case 3: // we have 7 bits and keep 4
884                  vchRet.push_back((left<<1) | (dec>>4));
885                  left = dec & 15;
886                  mode = 4;
887                  break;
888
889              case 4: // we have 4 bits, and keep 1
890                  vchRet.push_back((left<<4) | (dec>>1));
891                  left = dec & 1;
892                  mode = 5;
893                  break;
894
895              case 5: // we have 1 bit, and keep 6
896                  left = left << 5 | dec;
897                  mode = 6;
898                  break;
899
900              case 6: // we have 6 bits, and keep 3
901                  vchRet.push_back((left<<2) | (dec>>3));
902                  left = dec & 7;
903                  mode = 7;
904                  break;
905
906              case 7: // we have 3 bits, and keep 0
907                  vchRet.push_back((left<<5) | dec);
908                  mode = 0;
909                  break;
910          }
911     }
912
913     if (pfInvalid)
914         switch (mode)
915         {
916             case 0: // 8n base32 characters processed: ok
917                 break;
918
919             case 1: // 8n+1 base32 characters processed: impossible
920             case 3: //   +3
921             case 6: //   +6
922                 *pfInvalid = true;
923                 break;
924
925             case 2: // 8n+2 base32 characters processed: require '======'
926                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || p[4] != '=' || p[5] != '=' || decode32_table[(unsigned char)p[6]] != -1)
927                     *pfInvalid = true;
928                 break;
929
930             case 4: // 8n+4 base32 characters processed: require '===='
931                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || decode32_table[(unsigned char)p[4]] != -1)
932                     *pfInvalid = true;
933                 break;
934
935             case 5: // 8n+5 base32 characters processed: require '==='
936                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || decode32_table[(unsigned char)p[3]] != -1)
937                     *pfInvalid = true;
938                 break;
939
940             case 7: // 8n+7 base32 characters processed: require '='
941                 if (left || p[0] != '=' || decode32_table[(unsigned char)p[1]] != -1)
942                     *pfInvalid = true;
943                 break;
944         }
945
946     return vchRet;
947 }
948
949 string DecodeBase32(const string& str)
950 {
951     vector<unsigned char> vchRet = DecodeBase32(str.c_str());
952     return string((const char*)&vchRet[0], vchRet.size());
953 }
954
955
956 int64_t DecodeDumpTime(const std::string& s)
957 {
958     bt::ptime pt;
959
960     for(size_t i=0; i<formats_n; ++i)
961     {
962         std::istringstream is(s);
963         is.imbue(formats[i]);
964         is >> pt;
965         if(pt != bt::ptime()) break;
966     }
967
968     return pt_to_time_t(pt);
969 }
970
971 std::string EncodeDumpTime(int64_t nTime) {
972     return DateTimeStrFormat("%Y-%m-%dT%H:%M:%SZ", nTime);
973 }
974
975 std::string EncodeDumpString(const std::string &str) {
976     std::stringstream ret;
977     BOOST_FOREACH(unsigned char c, str) {
978         if (c <= 32 || c >= 128 || c == '%') {
979             ret << '%' << HexStr(&c, &c + 1);
980         } else {
981             ret << c;
982         }
983     }
984     return ret.str();
985 }
986
987 std::string DecodeDumpString(const std::string &str) {
988     std::stringstream ret;
989     for (unsigned int pos = 0; pos < str.length(); pos++) {
990         unsigned char c = str[pos];
991         if (c == '%' && pos+2 < str.length()) {
992             c = (((str[pos+1]>>6)*9+((str[pos+1]-'0')&15)) << 4) | 
993                 ((str[pos+2]>>6)*9+((str[pos+2]-'0')&15));
994             pos += 2;
995         }
996         ret << c;
997     }
998     return ret.str();
999 }
1000
1001 bool WildcardMatch(const char* psz, const char* mask)
1002 {
1003     while (true)
1004     {
1005         switch (*mask)
1006         {
1007         case '\0':
1008             return (*psz == '\0');
1009         case '*':
1010             return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask));
1011         case '?':
1012             if (*psz == '\0')
1013                 return false;
1014             break;
1015         default:
1016             if (*psz != *mask)
1017                 return false;
1018             break;
1019         }
1020         psz++;
1021         mask++;
1022     }
1023 }
1024
1025 bool WildcardMatch(const string& str, const string& mask)
1026 {
1027     return WildcardMatch(str.c_str(), mask.c_str());
1028 }
1029
1030
1031
1032
1033
1034
1035
1036
1037 static std::string FormatException(std::exception* pex, const char* pszThread)
1038 {
1039 #ifdef WIN32
1040     char pszModule[MAX_PATH] = "";
1041     GetModuleFileNameA(NULL, pszModule, sizeof(pszModule));
1042 #else
1043     const char* pszModule = "novacoin";
1044 #endif
1045     if (pex)
1046         return strprintf(
1047             "EXCEPTION: %s       \n%s       \n%s in %s       \n", typeid(*pex).name(), pex->what(), pszModule, pszThread);
1048     else
1049         return strprintf(
1050             "UNKNOWN EXCEPTION       \n%s in %s       \n", pszModule, pszThread);
1051 }
1052
1053 void LogException(std::exception* pex, const char* pszThread)
1054 {
1055     std::string message = FormatException(pex, pszThread);
1056     printf("\n%s", message.c_str());
1057 }
1058
1059 void PrintException(std::exception* pex, const char* pszThread)
1060 {
1061     std::string message = FormatException(pex, pszThread);
1062     printf("\n\n************************\n%s\n", message.c_str());
1063     fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
1064     strMiscWarning = message;
1065     throw;
1066 }
1067
1068 void LogStackTrace() {
1069     printf("\n\n******* exception encountered *******\n");
1070     if (fileout)
1071     {
1072 #if !defined(WIN32) && !defined(ANDROID)
1073         void* pszBuffer[32];
1074         size_t size;
1075         size = backtrace(pszBuffer, 32);
1076         backtrace_symbols_fd(pszBuffer, size, fileno(fileout));
1077 #endif
1078     }
1079 }
1080
1081 void PrintExceptionContinue(std::exception* pex, const char* pszThread)
1082 {
1083     std::string message = FormatException(pex, pszThread);
1084     printf("\n\n************************\n%s\n", message.c_str());
1085     fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
1086     strMiscWarning = message;
1087 }
1088
1089 boost::filesystem::path GetDefaultDataDir()
1090 {
1091     namespace fs = boost::filesystem;
1092     // Windows < Vista: C:\Documents and Settings\Username\Application Data\NovaCoin
1093     // Windows >= Vista: C:\Users\Username\AppData\Roaming\NovaCoin
1094     // Mac: ~/Library/Application Support/NovaCoin
1095     // Unix: ~/.novacoin
1096 #ifdef WIN32
1097     // Windows
1098     return GetSpecialFolderPath(CSIDL_APPDATA) / "NovaCoin";
1099 #else
1100     fs::path pathRet;
1101     char* pszHome = getenv("HOME");
1102     if (pszHome == NULL || strlen(pszHome) == 0)
1103         pathRet = fs::path("/");
1104     else
1105         pathRet = fs::path(pszHome);
1106 #ifdef MAC_OSX
1107     // Mac
1108     pathRet /= "Library/Application Support";
1109     fs::create_directory(pathRet);
1110     return pathRet / "NovaCoin";
1111 #else
1112     // Unix
1113     return pathRet / ".novacoin";
1114 #endif
1115 #endif
1116 }
1117
1118 const boost::filesystem::path &GetDataDir(bool fNetSpecific)
1119 {
1120     namespace fs = boost::filesystem;
1121
1122     static fs::path pathCached[2];
1123     static CCriticalSection csPathCached;
1124     static bool cachedPath[2] = {false, false};
1125
1126     fs::path &path = pathCached[fNetSpecific];
1127
1128     // This can be called during exceptions by printf, so we cache the
1129     // value so we don't have to do memory allocations after that.
1130     if (cachedPath[fNetSpecific])
1131         return path;
1132
1133     LOCK(csPathCached);
1134
1135     if (mapArgs.count("-datadir")) {
1136         path = fs::system_complete(mapArgs["-datadir"]);
1137         if (!fs::is_directory(path)) {
1138             path = "";
1139             return path;
1140         }
1141     } else {
1142         path = GetDefaultDataDir();
1143     }
1144     if (fNetSpecific && GetBoolArg("-testnet", false))
1145         path /= "testnet2";
1146
1147     fs::create_directory(path);
1148
1149     cachedPath[fNetSpecific]=true;
1150     return path;
1151 }
1152
1153 string randomStrGen(int length) {
1154     static string charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
1155     string result;
1156     result.resize(length);
1157     for (int32_t i = 0; i < length; i++)
1158         result[i] = charset[rand() % charset.length()];
1159
1160     return result;
1161 }
1162
1163 void createConf()
1164 {
1165     srand(static_cast<unsigned int>(time(NULL)));
1166
1167     ofstream pConf;
1168 #if BOOST_FILESYSTEM_VERSION >= 3
1169     pConf.open(GetConfigFile().generic_string().c_str());
1170 #else
1171     pConf.open(GetConfigFile().string().c_str());
1172 #endif
1173     pConf << "rpcuser=user\nrpcpassword="
1174             + randomStrGen(15)
1175             + "\nrpcport=8344"
1176             + "\nport=7777"
1177             + "\n#(0=off, 1=on) daemon - run in the background as a daemon and accept commands"
1178             + "\ndaemon=0"
1179             + "\n#(0=off, 1=on) server - accept command line and JSON-RPC commands"
1180             + "\nserver=0"
1181             + "\nrpcallowip=127.0.0.1"
1182             + "\ntestnet=0";
1183     pConf.close();
1184 }
1185
1186 boost::filesystem::path GetConfigFile()
1187 {
1188     boost::filesystem::path pathConfigFile(GetArg("-conf", "novacoin.conf"));
1189     if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile;
1190     return pathConfigFile;
1191 }
1192
1193 void ReadConfigFile(map<string, string>& mapSettingsRet,
1194                     map<string, vector<string> >& mapMultiSettingsRet)
1195 {
1196     boost::filesystem::ifstream streamConfig(GetConfigFile());
1197     if (!streamConfig.good())
1198     {
1199         createConf();
1200         new(&streamConfig) boost::filesystem::ifstream(GetConfigFile());
1201         if(!streamConfig.good())
1202             return;
1203     }
1204
1205     set<string> setOptions;
1206     setOptions.insert("*");
1207
1208     for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it)
1209     {
1210         // Don't overwrite existing settings so command line settings override bitcoin.conf
1211         string strKey = string("-") + it->string_key;
1212         if (mapSettingsRet.count(strKey) == 0)
1213         {
1214             mapSettingsRet[strKey] = it->value[0];
1215             // interpret nofoo=1 as foo=0 (and nofoo=0 as foo=1) as long as foo not set)
1216             InterpretNegativeSetting(strKey, mapSettingsRet);
1217         }
1218         mapMultiSettingsRet[strKey].push_back(it->value[0]);
1219     }
1220 }
1221
1222 boost::filesystem::path GetPidFile()
1223 {
1224     boost::filesystem::path pathPidFile(GetArg("-pid", "novacoind.pid"));
1225     if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile;
1226     return pathPidFile;
1227 }
1228
1229 #ifndef WIN32
1230 void CreatePidFile(const boost::filesystem::path &path, pid_t pid)
1231 {
1232     FILE* file = fopen(path.string().c_str(), "w");
1233     if (file)
1234     {
1235         fprintf(file, "%d\n", pid);
1236         fclose(file);
1237     }
1238 }
1239 #endif
1240
1241 bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest)
1242 {
1243 #ifdef WIN32
1244     return MoveFileExA(src.string().c_str(), dest.string().c_str(),
1245                        MOVEFILE_REPLACE_EXISTING) != 0;
1246 #else
1247     int rc = std::rename(src.string().c_str(), dest.string().c_str());
1248     return (rc == 0);
1249 #endif /* WIN32 */
1250 }
1251
1252 void FileCommit(FILE *fileout)
1253 {
1254     fflush(fileout);                // harmless if redundantly called
1255 #ifdef WIN32
1256     _commit(_fileno(fileout));
1257 #else
1258     fsync(fileno(fileout));
1259 #endif
1260 }
1261
1262 int GetFilesize(FILE* file)
1263 {
1264     int nSavePos = ftell(file);
1265     int nFilesize = -1;
1266     if (fseek(file, 0, SEEK_END) == 0)
1267         nFilesize = ftell(file);
1268     fseek(file, nSavePos, SEEK_SET);
1269     return nFilesize;
1270 }
1271
1272 void ShrinkDebugFile()
1273 {
1274     // Scroll debug.log if it's getting too big
1275     boost::filesystem::path pathLog = GetDataDir() / "debug.log";
1276     FILE* file = fopen(pathLog.string().c_str(), "r");
1277     if (file && GetFilesize(file) > 10 * 1000000)
1278     {
1279         // Restart the file with some of the end
1280         char pch[200000];
1281         fseek(file, -((long long)sizeof(pch)), SEEK_END);
1282         size_t nBytes = fread(pch, 1, sizeof(pch), file);
1283         fclose(file);
1284
1285         file = fopen(pathLog.string().c_str(), "w");
1286         if (file)
1287         {
1288             fwrite(pch, 1, nBytes, file);
1289             fclose(file);
1290         }
1291     }
1292 }
1293
1294
1295
1296
1297
1298
1299
1300
1301 //
1302 // "Never go to sea with two chronometers; take one or three."
1303 // Our three time sources are:
1304 //  - System clock
1305 //  - Median of other nodes clocks
1306 //  - The user (asking the user to fix the system clock if the first two disagree)
1307 //
1308
1309 // System clock
1310 int64_t GetTime()
1311 {
1312     return time(NULL);
1313 }
1314
1315 // Trusted NTP offset or median of NTP samples.
1316 extern int64_t nNtpOffset;
1317
1318 // Median of time samples given by other nodes.
1319 static int64_t nNodesOffset = INT64_MAX;
1320
1321 // Select time offset:
1322 int64_t GetTimeOffset()
1323 {
1324     // If NTP and system clock are in agreement within 40 minutes, then use NTP.
1325     if (abs64(nNtpOffset) < 40 * 60)
1326         return nNtpOffset;
1327
1328     // If not, then choose between median peer time and system clock.
1329     if (abs64(nNodesOffset) < 70 * 60)
1330         return nNodesOffset;
1331
1332     return 0;
1333 }
1334
1335 int64_t GetNodesOffset()
1336 {
1337         return nNodesOffset;
1338 }
1339
1340 int64_t GetAdjustedTime()
1341 {
1342     return GetTime() + GetTimeOffset();
1343 }
1344
1345 void AddTimeData(const CNetAddr& ip, int64_t nTime)
1346 {
1347     int64_t nOffsetSample = nTime - GetTime();
1348
1349     // Ignore duplicates
1350     static set<CNetAddr> setKnown;
1351     if (!setKnown.insert(ip).second)
1352         return;
1353
1354     // Add data
1355     vTimeOffsets.input(nOffsetSample);
1356     printf("Added time data, samples %d, offset %+" PRId64 " (%+" PRId64 " minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60);
1357     if (vTimeOffsets.size() >= 5 && vTimeOffsets.size() % 2 == 1)
1358     {
1359         int64_t nMedian = vTimeOffsets.median();
1360         std::vector<int64_t> vSorted = vTimeOffsets.sorted();
1361         // Only let other nodes change our time by so much
1362         if (abs64(nMedian) < 70 * 60)
1363         {
1364             nNodesOffset = nMedian;
1365         }
1366         else
1367         {
1368             nNodesOffset = INT64_MAX;
1369
1370             static bool fDone;
1371             if (!fDone)
1372             {
1373                 bool fMatch = false;
1374
1375                 // If nobody has a time different than ours but within 5 minutes of ours, give a warning
1376                 BOOST_FOREACH(int64_t nOffset, vSorted)
1377                     if (nOffset != 0 && abs64(nOffset) < 5 * 60)
1378                         fMatch = true;
1379
1380                 if (!fMatch)
1381                 {
1382                     fDone = true;
1383                     string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong NovaCoin will not work properly.");
1384                     strMiscWarning = strMessage;
1385                     printf("*** %s\n", strMessage.c_str());
1386                     uiInterface.ThreadSafeMessageBox(strMessage+" ", string("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION);
1387                 }
1388             }
1389         }
1390         if (fDebug) {
1391             BOOST_FOREACH(int64_t n, vSorted)
1392                 printf("%+" PRId64 "  ", n);
1393             printf("|  ");
1394         }
1395         if (nNodesOffset != INT64_MAX)
1396             printf("nNodesOffset = %+" PRId64 "  (%+" PRId64 " minutes)\n", nNodesOffset, nNodesOffset/60);
1397     }
1398 }
1399
1400 string FormatVersion(int nVersion)
1401 {
1402     if (nVersion%100 == 0)
1403         return strprintf("%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100);
1404     else
1405         return strprintf("%d.%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100, nVersion%100);
1406 }
1407
1408 string FormatFullVersion()
1409 {
1410     return CLIENT_BUILD;
1411 }
1412
1413 // Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014)
1414 std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
1415 {
1416     std::ostringstream ss;
1417     ss << "/";
1418     ss << name << ":" << FormatVersion(nClientVersion);
1419     if (!comments.empty())
1420         ss << "(" << boost::algorithm::join(comments, "; ") << ")";
1421     ss << "/";
1422     return ss.str();
1423 }
1424
1425 #ifdef WIN32
1426 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate)
1427 {
1428     namespace fs = boost::filesystem;
1429
1430     char pszPath[MAX_PATH] = "";
1431
1432     if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate))
1433     {
1434         return fs::path(pszPath);
1435     }
1436
1437     printf("SHGetSpecialFolderPathA() failed, could not obtain requested path.\n");
1438     return fs::path("");
1439 }
1440 #endif
1441
1442 void runCommand(std::string strCommand)
1443 {
1444     int nErr = ::system(strCommand.c_str());
1445     if (nErr)
1446         printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
1447 }
1448
1449 void RenameThread(const char* name)
1450 {
1451 #if defined(PR_SET_NAME)
1452     // Only the first 15 characters are used (16 - NUL terminator)
1453     ::prctl(PR_SET_NAME, name, 0, 0, 0);
1454 #elif 0 && (defined(__FreeBSD__) || defined(__OpenBSD__))
1455     // TODO: This is currently disabled because it needs to be verified to work
1456     //       on FreeBSD or OpenBSD first. When verified the '0 &&' part can be
1457     //       removed.
1458     pthread_set_name_np(pthread_self(), name);
1459
1460 // This is XCode 10.6-and-later; bring back if we drop 10.5 support:
1461 // #elif defined(MAC_OSX)
1462 //    pthread_setname_np(name);
1463
1464 #else
1465     // Prevent warnings for unused parameters...
1466     (void)name;
1467 #endif
1468 }
1469
1470 bool NewThread(void(*pfn)(void*), void* parg)
1471 {
1472     try
1473     {
1474         boost::thread(pfn, parg); // thread detaches when out of scope
1475     } catch(boost::thread_resource_error &e) {
1476         printf("Error creating thread: %s\n", e.what());
1477         return false;
1478     }
1479     return true;
1480 }
1481
1482 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime)
1483 {
1484     // std::locale takes ownership of the pointer
1485     std::locale loc(std::locale::classic(), new boost::posix_time::time_facet(pszFormat));
1486     std::stringstream ss;
1487     ss.imbue(loc);
1488     ss << boost::posix_time::from_time_t(nTime);
1489     return ss.str();
1490 }