f4d229e8e3effefd827a4fcbd2be8a7cb3ccb1a5
[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 bool GetBoolArg(const std::string& strArg, bool fDefault)
592 {
593     if (mapArgs.count(strArg))
594     {
595         if (mapArgs[strArg].empty())
596             return true;
597         return (atoi(mapArgs[strArg]) != 0);
598     }
599     return fDefault;
600 }
601
602 bool SoftSetArg(const std::string& strArg, const std::string& strValue)
603 {
604     if (mapArgs.count(strArg) || mapMultiArgs.count(strArg))
605         return false;
606     mapArgs[strArg] = strValue;
607     mapMultiArgs[strArg].push_back(strValue);
608
609     return true;
610 }
611
612 bool SoftSetBoolArg(const std::string& strArg, bool fValue)
613 {
614     if (fValue)
615         return SoftSetArg(strArg, std::string("1"));
616     else
617         return SoftSetArg(strArg, std::string("0"));
618 }
619
620
621 string EncodeBase64(const unsigned char* pch, size_t len)
622 {
623     static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
624
625     string strRet="";
626     strRet.reserve((len+2)/3*4);
627
628     int mode=0, left=0;
629     const unsigned char *pchEnd = pch+len;
630
631     while (pch<pchEnd)
632     {
633         int enc = *(pch++);
634         switch (mode)
635         {
636             case 0: // we have no bits
637                 strRet += pbase64[enc >> 2];
638                 left = (enc & 3) << 4;
639                 mode = 1;
640                 break;
641
642             case 1: // we have two bits
643                 strRet += pbase64[left | (enc >> 4)];
644                 left = (enc & 15) << 2;
645                 mode = 2;
646                 break;
647
648             case 2: // we have four bits
649                 strRet += pbase64[left | (enc >> 6)];
650                 strRet += pbase64[enc & 63];
651                 mode = 0;
652                 break;
653         }
654     }
655
656     if (mode)
657     {
658         strRet += pbase64[left];
659         strRet += '=';
660         if (mode == 1)
661             strRet += '=';
662     }
663
664     return strRet;
665 }
666
667 string EncodeBase64(const string& str)
668 {
669     return EncodeBase64((const unsigned char*)str.c_str(), str.size());
670 }
671
672 vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid)
673 {
674     static const int decode64_table[256] =
675     {
676         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
677         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
678         -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1,
679         -1, -1, -1, -1, -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
680         15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28,
681         29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
682         49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
686         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
687         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
688         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
689     };
690
691     if (pfInvalid)
692         *pfInvalid = false;
693
694     vector<unsigned char> vchRet;
695     vchRet.reserve(strlen(p)*3/4);
696
697     int mode = 0;
698     int left = 0;
699
700     while (1)
701     {
702          int dec = decode64_table[(unsigned char)*p];
703          if (dec == -1) break;
704          p++;
705          switch (mode)
706          {
707              case 0: // we have no bits and get 6
708                  left = dec;
709                  mode = 1;
710                  break;
711
712               case 1: // we have 6 bits and keep 4
713                   vchRet.push_back((left<<2) | (dec>>4));
714                   left = dec & 15;
715                   mode = 2;
716                   break;
717
718              case 2: // we have 4 bits and get 6, we keep 2
719                  vchRet.push_back((left<<4) | (dec>>2));
720                  left = dec & 3;
721                  mode = 3;
722                  break;
723
724              case 3: // we have 2 bits and get 6
725                  vchRet.push_back((left<<6) | dec);
726                  mode = 0;
727                  break;
728          }
729     }
730
731     if (pfInvalid)
732         switch (mode)
733         {
734             case 0: // 4n base64 characters processed: ok
735                 break;
736
737             case 1: // 4n+1 base64 character processed: impossible
738                 *pfInvalid = true;
739                 break;
740
741             case 2: // 4n+2 base64 characters processed: require '=='
742                 if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1)
743                     *pfInvalid = true;
744                 break;
745
746             case 3: // 4n+3 base64 characters processed: require '='
747                 if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1)
748                     *pfInvalid = true;
749                 break;
750         }
751
752     return vchRet;
753 }
754
755 string DecodeBase64(const string& str)
756 {
757     vector<unsigned char> vchRet = DecodeBase64(str.c_str());
758     return string((const char*)&vchRet[0], vchRet.size());
759 }
760
761 string EncodeBase32(const unsigned char* pch, size_t len)
762 {
763     static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567";
764
765     string strRet="";
766     strRet.reserve((len+4)/5*8);
767
768     int mode=0, left=0;
769     const unsigned char *pchEnd = pch+len;
770
771     while (pch<pchEnd)
772     {
773         int enc = *(pch++);
774         switch (mode)
775         {
776             case 0: // we have no bits
777                 strRet += pbase32[enc >> 3];
778                 left = (enc & 7) << 2;
779                 mode = 1;
780                 break;
781
782             case 1: // we have three bits
783                 strRet += pbase32[left | (enc >> 6)];
784                 strRet += pbase32[(enc >> 1) & 31];
785                 left = (enc & 1) << 4;
786                 mode = 2;
787                 break;
788
789             case 2: // we have one bit
790                 strRet += pbase32[left | (enc >> 4)];
791                 left = (enc & 15) << 1;
792                 mode = 3;
793                 break;
794
795             case 3: // we have four bits
796                 strRet += pbase32[left | (enc >> 7)];
797                 strRet += pbase32[(enc >> 2) & 31];
798                 left = (enc & 3) << 3;
799                 mode = 4;
800                 break;
801
802             case 4: // we have two bits
803                 strRet += pbase32[left | (enc >> 5)];
804                 strRet += pbase32[enc & 31];
805                 mode = 0;
806         }
807     }
808
809     static const int nPadding[5] = {0, 6, 4, 3, 1};
810     if (mode)
811     {
812         strRet += pbase32[left];
813         for (int n=0; n<nPadding[mode]; n++)
814              strRet += '=';
815     }
816
817     return strRet;
818 }
819
820 string EncodeBase32(const string& str)
821 {
822     return EncodeBase32((const unsigned char*)str.c_str(), str.size());
823 }
824
825 vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid)
826 {
827     static const int decode32_table[256] =
828     {
829         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
830         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
831         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1,
832         -1, -1, -1, -1, -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
833         15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1,  0,  1,  2,
834          3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
835         23, 24, 25, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
839         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
840         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
841         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
842     };
843
844     if (pfInvalid)
845         *pfInvalid = false;
846
847     vector<unsigned char> vchRet;
848     vchRet.reserve((strlen(p))*5/8);
849
850     int mode = 0;
851     int left = 0;
852
853     while (1)
854     {
855          int dec = decode32_table[(unsigned char)*p];
856          if (dec == -1) break;
857          p++;
858          switch (mode)
859          {
860              case 0: // we have no bits and get 5
861                  left = dec;
862                  mode = 1;
863                  break;
864
865               case 1: // we have 5 bits and keep 2
866                   vchRet.push_back((left<<3) | (dec>>2));
867                   left = dec & 3;
868                   mode = 2;
869                   break;
870
871              case 2: // we have 2 bits and keep 7
872                  left = left << 5 | dec;
873                  mode = 3;
874                  break;
875
876              case 3: // we have 7 bits and keep 4
877                  vchRet.push_back((left<<1) | (dec>>4));
878                  left = dec & 15;
879                  mode = 4;
880                  break;
881
882              case 4: // we have 4 bits, and keep 1
883                  vchRet.push_back((left<<4) | (dec>>1));
884                  left = dec & 1;
885                  mode = 5;
886                  break;
887
888              case 5: // we have 1 bit, and keep 6
889                  left = left << 5 | dec;
890                  mode = 6;
891                  break;
892
893              case 6: // we have 6 bits, and keep 3
894                  vchRet.push_back((left<<2) | (dec>>3));
895                  left = dec & 7;
896                  mode = 7;
897                  break;
898
899              case 7: // we have 3 bits, and keep 0
900                  vchRet.push_back((left<<5) | dec);
901                  mode = 0;
902                  break;
903          }
904     }
905
906     if (pfInvalid)
907         switch (mode)
908         {
909             case 0: // 8n base32 characters processed: ok
910                 break;
911
912             case 1: // 8n+1 base32 characters processed: impossible
913             case 3: //   +3
914             case 6: //   +6
915                 *pfInvalid = true;
916                 break;
917
918             case 2: // 8n+2 base32 characters processed: require '======'
919                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || p[4] != '=' || p[5] != '=' || decode32_table[(unsigned char)p[6]] != -1)
920                     *pfInvalid = true;
921                 break;
922
923             case 4: // 8n+4 base32 characters processed: require '===='
924                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || decode32_table[(unsigned char)p[4]] != -1)
925                     *pfInvalid = true;
926                 break;
927
928             case 5: // 8n+5 base32 characters processed: require '==='
929                 if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || decode32_table[(unsigned char)p[3]] != -1)
930                     *pfInvalid = true;
931                 break;
932
933             case 7: // 8n+7 base32 characters processed: require '='
934                 if (left || p[0] != '=' || decode32_table[(unsigned char)p[1]] != -1)
935                     *pfInvalid = true;
936                 break;
937         }
938
939     return vchRet;
940 }
941
942 string DecodeBase32(const string& str)
943 {
944     vector<unsigned char> vchRet = DecodeBase32(str.c_str());
945     return string((const char*)&vchRet[0], vchRet.size());
946 }
947
948
949 int64_t DecodeDumpTime(const std::string& s)
950 {
951     bt::ptime pt;
952
953     for(size_t i=0; i<formats_n; ++i)
954     {
955         std::istringstream is(s);
956         is.imbue(formats[i]);
957         is >> pt;
958         if(pt != bt::ptime()) break;
959     }
960
961     return pt_to_time_t(pt);
962 }
963
964 std::string EncodeDumpTime(int64_t nTime) {
965     return DateTimeStrFormat("%Y-%m-%dT%H:%M:%SZ", nTime);
966 }
967
968 std::string EncodeDumpString(const std::string &str) {
969     std::stringstream ret;
970     BOOST_FOREACH(unsigned char c, str) {
971         if (c <= 32 || c >= 128 || c == '%') {
972             ret << '%' << HexStr(&c, &c + 1);
973         } else {
974             ret << c;
975         }
976     }
977     return ret.str();
978 }
979
980 std::string DecodeDumpString(const std::string &str) {
981     std::stringstream ret;
982     for (unsigned int pos = 0; pos < str.length(); pos++) {
983         unsigned char c = str[pos];
984         if (c == '%' && pos+2 < str.length()) {
985             c = (((str[pos+1]>>6)*9+((str[pos+1]-'0')&15)) << 4) | 
986                 ((str[pos+2]>>6)*9+((str[pos+2]-'0')&15));
987             pos += 2;
988         }
989         ret << c;
990     }
991     return ret.str();
992 }
993
994 bool WildcardMatch(const char* psz, const char* mask)
995 {
996     while (true)
997     {
998         switch (*mask)
999         {
1000         case '\0':
1001             return (*psz == '\0');
1002         case '*':
1003             return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask));
1004         case '?':
1005             if (*psz == '\0')
1006                 return false;
1007             break;
1008         default:
1009             if (*psz != *mask)
1010                 return false;
1011             break;
1012         }
1013         psz++;
1014         mask++;
1015     }
1016 }
1017
1018 bool WildcardMatch(const string& str, const string& mask)
1019 {
1020     return WildcardMatch(str.c_str(), mask.c_str());
1021 }
1022
1023
1024
1025
1026
1027
1028
1029
1030 static std::string FormatException(std::exception* pex, const char* pszThread)
1031 {
1032 #ifdef WIN32
1033     char pszModule[MAX_PATH] = "";
1034     GetModuleFileNameA(NULL, pszModule, sizeof(pszModule));
1035 #else
1036     const char* pszModule = "novacoin";
1037 #endif
1038     if (pex)
1039         return strprintf(
1040             "EXCEPTION: %s       \n%s       \n%s in %s       \n", typeid(*pex).name(), pex->what(), pszModule, pszThread);
1041     else
1042         return strprintf(
1043             "UNKNOWN EXCEPTION       \n%s in %s       \n", pszModule, pszThread);
1044 }
1045
1046 void LogException(std::exception* pex, const char* pszThread)
1047 {
1048     std::string message = FormatException(pex, pszThread);
1049     printf("\n%s", message.c_str());
1050 }
1051
1052 void PrintException(std::exception* pex, const char* pszThread)
1053 {
1054     std::string message = FormatException(pex, pszThread);
1055     printf("\n\n************************\n%s\n", message.c_str());
1056     fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
1057     strMiscWarning = message;
1058     throw;
1059 }
1060
1061 void LogStackTrace() {
1062     printf("\n\n******* exception encountered *******\n");
1063     if (fileout)
1064     {
1065 #if !defined(WIN32) && !defined(ANDROID)
1066         void* pszBuffer[32];
1067         size_t size;
1068         size = backtrace(pszBuffer, 32);
1069         backtrace_symbols_fd(pszBuffer, size, fileno(fileout));
1070 #endif
1071     }
1072 }
1073
1074 void PrintExceptionContinue(std::exception* pex, const char* pszThread)
1075 {
1076     std::string message = FormatException(pex, pszThread);
1077     printf("\n\n************************\n%s\n", message.c_str());
1078     fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
1079     strMiscWarning = message;
1080 }
1081
1082 boost::filesystem::path GetDefaultDataDir()
1083 {
1084     namespace fs = boost::filesystem;
1085     // Windows < Vista: C:\Documents and Settings\Username\Application Data\NovaCoin
1086     // Windows >= Vista: C:\Users\Username\AppData\Roaming\NovaCoin
1087     // Mac: ~/Library/Application Support/NovaCoin
1088     // Unix: ~/.novacoin
1089 #ifdef WIN32
1090     // Windows
1091     return GetSpecialFolderPath(CSIDL_APPDATA) / "NovaCoin";
1092 #else
1093     fs::path pathRet;
1094     char* pszHome = getenv("HOME");
1095     if (pszHome == NULL || strlen(pszHome) == 0)
1096         pathRet = fs::path("/");
1097     else
1098         pathRet = fs::path(pszHome);
1099 #ifdef MAC_OSX
1100     // Mac
1101     pathRet /= "Library/Application Support";
1102     fs::create_directory(pathRet);
1103     return pathRet / "NovaCoin";
1104 #else
1105     // Unix
1106     return pathRet / ".novacoin";
1107 #endif
1108 #endif
1109 }
1110
1111 const boost::filesystem::path &GetDataDir(bool fNetSpecific)
1112 {
1113     namespace fs = boost::filesystem;
1114
1115     static fs::path pathCached[2];
1116     static CCriticalSection csPathCached;
1117     static bool cachedPath[2] = {false, false};
1118
1119     fs::path &path = pathCached[fNetSpecific];
1120
1121     // This can be called during exceptions by printf, so we cache the
1122     // value so we don't have to do memory allocations after that.
1123     if (cachedPath[fNetSpecific])
1124         return path;
1125
1126     LOCK(csPathCached);
1127
1128     if (mapArgs.count("-datadir")) {
1129         path = fs::system_complete(mapArgs["-datadir"]);
1130         if (!fs::is_directory(path)) {
1131             path = "";
1132             return path;
1133         }
1134     } else {
1135         path = GetDefaultDataDir();
1136     }
1137     if (fNetSpecific && GetBoolArg("-testnet", false))
1138         path /= "testnet2";
1139
1140     fs::create_directory(path);
1141
1142     cachedPath[fNetSpecific]=true;
1143     return path;
1144 }
1145
1146 string randomStrGen(int length) {
1147     static string charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
1148     string result;
1149     result.resize(length);
1150     for (int32_t i = 0; i < length; i++)
1151         result[i] = charset[rand() % charset.length()];
1152
1153     return result;
1154 }
1155
1156 void createConf()
1157 {
1158     srand(time(NULL));
1159
1160     ofstream pConf;
1161 #if BOOST_FILESYSTEM_VERSION >= 3
1162     pConf.open(GetConfigFile().generic_string().c_str());
1163 #else
1164     pConf.open(GetConfigFile().string().c_str());
1165 #endif
1166     pConf << "rpcuser=user\nrpcpassword="
1167             + randomStrGen(15)
1168             + "\nrpcport=8344"
1169             + "\nport=7777"
1170             + "\n#(0=off, 1=on) daemon - run in the background as a daemon and accept commands"
1171             + "\ndaemon=0"
1172             + "\n#(0=off, 1=on) server - accept command line and JSON-RPC commands"
1173             + "\nserver=0"
1174             + "\nrpcallowip=127.0.0.1"
1175             + "\ntestnet=0";
1176     pConf.close();
1177 }
1178
1179 boost::filesystem::path GetConfigFile()
1180 {
1181     boost::filesystem::path pathConfigFile(GetArg("-conf", "novacoin.conf"));
1182     if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile;
1183     return pathConfigFile;
1184 }
1185
1186 void ReadConfigFile(map<string, string>& mapSettingsRet,
1187                     map<string, vector<string> >& mapMultiSettingsRet)
1188 {
1189     boost::filesystem::ifstream streamConfig(GetConfigFile());
1190     if (!streamConfig.good())
1191     {
1192         createConf();
1193         new(&streamConfig) boost::filesystem::ifstream(GetConfigFile());
1194         if(!streamConfig.good())
1195             return;
1196     }
1197
1198     set<string> setOptions;
1199     setOptions.insert("*");
1200
1201     for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it)
1202     {
1203         // Don't overwrite existing settings so command line settings override bitcoin.conf
1204         string strKey = string("-") + it->string_key;
1205         if (mapSettingsRet.count(strKey) == 0)
1206         {
1207             mapSettingsRet[strKey] = it->value[0];
1208             // interpret nofoo=1 as foo=0 (and nofoo=0 as foo=1) as long as foo not set)
1209             InterpretNegativeSetting(strKey, mapSettingsRet);
1210         }
1211         mapMultiSettingsRet[strKey].push_back(it->value[0]);
1212     }
1213 }
1214
1215 boost::filesystem::path GetPidFile()
1216 {
1217     boost::filesystem::path pathPidFile(GetArg("-pid", "novacoind.pid"));
1218     if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile;
1219     return pathPidFile;
1220 }
1221
1222 #ifndef WIN32
1223 void CreatePidFile(const boost::filesystem::path &path, pid_t pid)
1224 {
1225     FILE* file = fopen(path.string().c_str(), "w");
1226     if (file)
1227     {
1228         fprintf(file, "%d\n", pid);
1229         fclose(file);
1230     }
1231 }
1232 #endif
1233
1234 bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest)
1235 {
1236 #ifdef WIN32
1237     return MoveFileExA(src.string().c_str(), dest.string().c_str(),
1238                       MOVEFILE_REPLACE_EXISTING);
1239 #else
1240     int rc = std::rename(src.string().c_str(), dest.string().c_str());
1241     return (rc == 0);
1242 #endif /* WIN32 */
1243 }
1244
1245 void FileCommit(FILE *fileout)
1246 {
1247     fflush(fileout);                // harmless if redundantly called
1248 #ifdef WIN32
1249     _commit(_fileno(fileout));
1250 #else
1251     fsync(fileno(fileout));
1252 #endif
1253 }
1254
1255 int GetFilesize(FILE* file)
1256 {
1257     int nSavePos = ftell(file);
1258     int nFilesize = -1;
1259     if (fseek(file, 0, SEEK_END) == 0)
1260         nFilesize = ftell(file);
1261     fseek(file, nSavePos, SEEK_SET);
1262     return nFilesize;
1263 }
1264
1265 void ShrinkDebugFile()
1266 {
1267     // Scroll debug.log if it's getting too big
1268     boost::filesystem::path pathLog = GetDataDir() / "debug.log";
1269     FILE* file = fopen(pathLog.string().c_str(), "r");
1270     if (file && GetFilesize(file) > 10 * 1000000)
1271     {
1272         // Restart the file with some of the end
1273         char pch[200000];
1274         fseek(file, -((long long)sizeof(pch)), SEEK_END);
1275         int nBytes = fread(pch, 1, sizeof(pch), file);
1276         fclose(file);
1277
1278         file = fopen(pathLog.string().c_str(), "w");
1279         if (file)
1280         {
1281             fwrite(pch, 1, nBytes, file);
1282             fclose(file);
1283         }
1284     }
1285 }
1286
1287
1288
1289
1290
1291
1292
1293
1294 //
1295 // "Never go to sea with two chronometers; take one or three."
1296 // Our three time sources are:
1297 //  - System clock
1298 //  - Median of other nodes clocks
1299 //  - The user (asking the user to fix the system clock if the first two disagree)
1300 //
1301 static int64_t nMockTime = 0;  // For unit testing
1302
1303 int64_t GetTime()
1304 {
1305     if (nMockTime) return nMockTime;
1306
1307     return time(NULL);
1308 }
1309
1310 void SetMockTime(int64_t nMockTimeIn)
1311 {
1312     nMockTime = nMockTimeIn;
1313 }
1314
1315 static int64_t nTimeOffset = 0;
1316
1317 int64_t GetTimeOffset()
1318 {
1319     return nTimeOffset;
1320 }
1321
1322 int64_t GetAdjustedTime()
1323 {
1324     return GetTime() + GetTimeOffset();
1325 }
1326
1327 void AddTimeData(const CNetAddr& ip, int64_t nTime)
1328 {
1329     int64_t nOffsetSample = nTime - GetTime();
1330
1331     // Ignore duplicates
1332     static set<CNetAddr> setKnown;
1333     if (!setKnown.insert(ip).second)
1334         return;
1335
1336     // Add data
1337     vTimeOffsets.input(nOffsetSample);
1338     printf("Added time data, samples %d, offset %+" PRId64 " (%+" PRId64 " minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60);
1339     if (vTimeOffsets.size() >= 5 && vTimeOffsets.size() % 2 == 1)
1340     {
1341         int64_t nMedian = vTimeOffsets.median();
1342         std::vector<int64_t> vSorted = vTimeOffsets.sorted();
1343         // Only let other nodes change our time by so much
1344         if (abs64(nMedian) < 70 * 60)
1345         {
1346             nTimeOffset = nMedian;
1347         }
1348         else
1349         {
1350             nTimeOffset = 0;
1351
1352             static bool fDone;
1353             if (!fDone)
1354             {
1355                 // If nobody has a time different than ours but within 5 minutes of ours, give a warning
1356                 bool fMatch = false;
1357                 BOOST_FOREACH(int64_t nOffset, vSorted)
1358                     if (nOffset != 0 && abs64(nOffset) < 5 * 60)
1359                         fMatch = true;
1360
1361                 if (!fMatch)
1362                 {
1363                     fDone = true;
1364                     string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong NovaCoin will not work properly.");
1365                     strMiscWarning = strMessage;
1366                     printf("*** %s\n", strMessage.c_str());
1367                     uiInterface.ThreadSafeMessageBox(strMessage+" ", string("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION);
1368                 }
1369             }
1370         }
1371         if (fDebug) {
1372             BOOST_FOREACH(int64_t n, vSorted)
1373                 printf("%+" PRId64 "  ", n);
1374             printf("|  ");
1375         }
1376         printf("nTimeOffset = %+" PRId64 "  (%+" PRId64 " minutes)\n", nTimeOffset, nTimeOffset/60);
1377     }
1378 }
1379
1380
1381
1382
1383
1384
1385
1386
1387 string FormatVersion(int nVersion)
1388 {
1389     if (nVersion%100 == 0)
1390         return strprintf("%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100);
1391     else
1392         return strprintf("%d.%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100, nVersion%100);
1393 }
1394
1395 string FormatFullVersion()
1396 {
1397     return CLIENT_BUILD;
1398 }
1399
1400 // Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014)
1401 std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
1402 {
1403     std::ostringstream ss;
1404     ss << "/";
1405     ss << name << ":" << FormatVersion(nClientVersion);
1406     if (!comments.empty())
1407         ss << "(" << boost::algorithm::join(comments, "; ") << ")";
1408     ss << "/";
1409     return ss.str();
1410 }
1411
1412 #ifdef WIN32
1413 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate)
1414 {
1415     namespace fs = boost::filesystem;
1416
1417     char pszPath[MAX_PATH] = "";
1418
1419     if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate))
1420     {
1421         return fs::path(pszPath);
1422     }
1423
1424     printf("SHGetSpecialFolderPathA() failed, could not obtain requested path.\n");
1425     return fs::path("");
1426 }
1427 #endif
1428
1429 void runCommand(std::string strCommand)
1430 {
1431     int nErr = ::system(strCommand.c_str());
1432     if (nErr)
1433         printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
1434 }
1435
1436 void RenameThread(const char* name)
1437 {
1438 #if defined(PR_SET_NAME)
1439     // Only the first 15 characters are used (16 - NUL terminator)
1440     ::prctl(PR_SET_NAME, name, 0, 0, 0);
1441 #elif 0 && (defined(__FreeBSD__) || defined(__OpenBSD__))
1442     // TODO: This is currently disabled because it needs to be verified to work
1443     //       on FreeBSD or OpenBSD first. When verified the '0 &&' part can be
1444     //       removed.
1445     pthread_set_name_np(pthread_self(), name);
1446
1447 // This is XCode 10.6-and-later; bring back if we drop 10.5 support:
1448 // #elif defined(MAC_OSX)
1449 //    pthread_setname_np(name);
1450
1451 #else
1452     // Prevent warnings for unused parameters...
1453     (void)name;
1454 #endif
1455 }
1456
1457 bool NewThread(void(*pfn)(void*), void* parg)
1458 {
1459     try
1460     {
1461         boost::thread(pfn, parg); // thread detaches when out of scope
1462     } catch(boost::thread_resource_error &e) {
1463         printf("Error creating thread: %s\n", e.what());
1464         return false;
1465     }
1466     return true;
1467 }
1468
1469 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime)
1470 {
1471     // std::locale takes ownership of the pointer
1472     std::locale loc(std::locale::classic(), new boost::posix_time::time_facet(pszFormat));
1473     std::stringstream ss;
1474     ss.imbue(loc);
1475     ss << boost::posix_time::from_time_t(nTime);
1476     return ss.str();
1477 }