X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Futil.h;h=7035091508422f378a9a69f8cb105aacf2c288ec;hb=f18b69e03e97616e755e1aa718b38e62c3a643cf;hp=77b439ed5d64efad5d1eefdf4e2d8be1672de7f2;hpb=6c1f5a822a9ee7335ae9888f5bc81d9586fac2a7;p=novacoin.git diff --git a/src/util.h b/src/util.h index 77b439e..7035091 100644 --- a/src/util.h +++ b/src/util.h @@ -17,13 +17,13 @@ #include #include #include +#include +#include #ifndef Q_MOC_RUN #include #include #include -#include -#include #endif #include @@ -35,6 +35,9 @@ #include "netbase.h" // for AddTimeData +static const int32_t nOneHour = 60 * 60; +static const int32_t nOneDay = 24 * 60 * 60; +static const int64_t nOneWeek = 7 * 24 * 60 * 60; static const int64_t COIN = 1000000; static const int64_t CENT = 10000; @@ -43,12 +46,6 @@ static const int64_t CENT = 10000; #define END(a) ((char*)&((&(a))[1])) #define UBEGIN(a) ((unsigned char*)&(a)) #define UEND(a) ((unsigned char*)&((&(a))[1])) -#define ARRAYLEN(array) (sizeof(array)/sizeof((array)[0])) - -#define UVOIDBEGIN(a) ((void*)&(a)) -#define CVOIDBEGIN(a) ((const void*)&(a)) -#define UINTBEGIN(a) ((uint32_t*)&(a)) -#define CUINTBEGIN(a) ((const uint32_t*)&(a)) #ifndef THROW_WITH_STACKTRACE #define THROW_WITH_STACKTRACE(exception) \ @@ -59,6 +56,18 @@ static const int64_t CENT = 10000; void LogStackTrace(); #endif +#if defined(_MSC_VER) || defined(__MSVCRT__) + /* Silence compiler warnings on Windows + related to MinGWs inttypes.h */ + #undef PRIu64 + #undef PRId64 + #undef PRIx64 + + #define PRIu64 "I64u" + #define PRId64 "I64d" + #define PRIx64 "I64x" + +#endif /* Format characters for (s)size_t and ptrdiff_t */ #if defined(_MSC_VER) || defined(__MSVCRT__) @@ -80,9 +89,6 @@ void LogStackTrace(); #define PRIpdd "td" #endif -// This is needed because the foreach macro can't get over the comma in pair -#define PAIRTYPE(t1, t2) std::pair - // Align by increasing pointer, must have extra space at end of buffer template T* alignup(T* p) @@ -186,8 +192,8 @@ void ParseString(const std::string& str, char c, std::vector& v); std::string FormatMoney(int64_t n, bool fPlus=false); bool ParseMoney(const std::string& str, int64_t& nRet); bool ParseMoney(const char* pszIn, int64_t& nRet); -std::vector ParseHex(const char* psz); -std::vector ParseHex(const std::string& str); +std::vector ParseHex(const char *str); +inline std::vector ParseHex(const std::string& str) { return ParseHex(str.c_str()); } bool IsHex(const std::string& str); std::vector DecodeBase64(const char* p, bool* pfInvalid = NULL); std::string DecodeBase64(const std::string& str); @@ -222,10 +228,14 @@ void ShrinkDebugFile(); int GetRandInt(int nMax); uint64_t GetRand(uint64_t nMax); uint256 GetRandHash(); +void FillRand(uint8_t *buffer, size_t nCount); int64_t GetTime(); -void SetMockTime(int64_t nMockTimeIn); +int64_t GetTimeMillis(); +int64_t GetTimeMicros(); + int64_t GetAdjustedTime(); int64_t GetTimeOffset(); +int64_t GetNodesOffset(); std::string FormatFullVersion(); std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector& comments); void AddTimeData(const CNetAddr& ip, int64_t nTime); @@ -235,36 +245,39 @@ void runCommand(std::string strCommand); +inline std::string i64tostr(int64_t n) +{ + return strprintf("%" PRId64, n); +} +inline int64_t strtoll(const char* psz) +{ + return strtoll(psz, NULL, 10); +} +inline int64_t strtoll(const std::string& str) +{ + return strtoll(str.c_str(), NULL, 10); +} - -inline std::string i64tostr(int64_t n) +inline int32_t strtol(const char* psz) { - return strprintf("%" PRId64, n); + return strtol(psz, NULL, 10); } -inline std::string itostr(int n) +inline int32_t strtol(const std::string& str) { - return strprintf("%d", n); + return strtol(str.c_str(), NULL, 10); } -inline int64_t atoi64(const char* psz) +inline uint32_t strtoul(const char* psz) { -#ifdef _MSC_VER - return _atoi64(psz); -#else - return strtoll(psz, NULL, 10); -#endif + return strtoul(psz, NULL, 10); } -inline int64_t atoi64(const std::string& str) +inline uint32_t strtoul(const std::string& str) { -#ifdef _MSC_VER - return _atoi64(str.c_str()); -#else - return strtoll(str.c_str(), NULL, 10); -#endif + return strtoul(str.c_str(), NULL, 10); } inline int atoi(const std::string& str) @@ -282,11 +295,6 @@ inline int64_t roundint64(double d) return (int64_t)(d > 0 ? d + 0.5 : d - 0.5); } -inline int64_t abs64(int64_t n) -{ - return (n >= 0 ? n : -n); -} - inline std::string leftTrim(std::string src, char chr) { std::string::size_type pos = src.find_first_not_of(chr, 0); @@ -347,19 +355,16 @@ inline int64_t GetPerformanceCounter() inline int64_t GetTimeMillis() { - return (boost::posix_time::ptime(boost::posix_time::microsec_clock::universal_time()) - - boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds(); + return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } -inline std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime) +inline int64_t GetTimeMicros() { - time_t n = nTime; - struct tm* ptmTime = gmtime(&n); - char pszTime[200]; - strftime(pszTime, sizeof(pszTime), pszFormat, ptmTime); - return pszTime; + return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } +std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); + static const std::string strTimestampFormat = "%Y-%m-%d %H:%M:%S UTC"; inline std::string DateTimeStrFormat(int64_t nTime) { @@ -393,7 +398,7 @@ inline bool IsSwitchChar(char c) std::string GetArg(const std::string& strArg, const std::string& strDefault); /** - * Return integer argument or default value + * Return 64-bit integer argument or default value * * @param strArg Argument to get (e.g. "-foo") * @param default (e.g. 1) @@ -402,6 +407,24 @@ std::string GetArg(const std::string& strArg, const std::string& strDefault); int64_t GetArg(const std::string& strArg, int64_t nDefault); /** + * Return 32-bit integer argument or default value + * + * @param strArg Argument to get (e.g. "-foo") + * @param default (e.g. 1) + * @return command-line argument (0 if invalid number) or default value + */ +int32_t GetArgInt(const std::string& strArg, int32_t nDefault); + +/** + * Return 32-bit unsigned integer argument or default value + * + * @param strArg Argument to get (e.g. "-foo") + * @param default (e.g. 1) + * @return command-line argument (0 if invalid number) or default value + */ +uint32_t GetArgUInt(const std::string& strArg, uint32_t nDefault); + +/** * Return boolean argument or default value * * @param strArg Argument to get (e.g. "-foo") @@ -476,7 +499,7 @@ public: T median() const { - int size = vSorted.size(); + size_t size = vSorted.size(); assert(size>0); if(size & 1) // Odd number of elements { @@ -490,7 +513,7 @@ public: int size() const { - return vValues.size(); + return static_cast(vValues.size()); } std::vector sorted () const