Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2009-2018 The Bitcoin Core developers
|
2014-11-17 04:04:01 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <config/bitcoin-config.h>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#endif
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <utiltime.h>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
|
2017-02-11 21:37:05 +01:00
|
|
|
#include <atomic>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
|
|
|
#include <boost/thread.hpp>
|
2018-04-13 07:31:15 +02:00
|
|
|
#include <ctime>
|
|
|
|
#include <tinyformat.h>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
|
2017-02-11 21:37:05 +01:00
|
|
|
static std::atomic<int64_t> nMockTime(0); //!< For unit testing
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
|
|
|
|
int64_t GetTime()
|
|
|
|
{
|
2017-02-11 21:37:05 +01:00
|
|
|
int64_t mocktime = nMockTime.load(std::memory_order_relaxed);
|
|
|
|
if (mocktime) return mocktime;
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
|
2017-08-07 07:36:37 +02:00
|
|
|
time_t now = time(nullptr);
|
2015-11-25 03:39:19 +01:00
|
|
|
assert(now > 0);
|
|
|
|
return now;
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetMockTime(int64_t nMockTimeIn)
|
|
|
|
{
|
2017-02-11 21:37:05 +01:00
|
|
|
nMockTime.store(nMockTimeIn, std::memory_order_relaxed);
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
}
|
|
|
|
|
2017-05-10 21:49:00 +02:00
|
|
|
int64_t GetMockTime()
|
|
|
|
{
|
|
|
|
return nMockTime.load(std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
int64_t GetTimeMillis()
|
|
|
|
{
|
2015-11-25 03:39:19 +01:00
|
|
|
int64_t now = (boost::posix_time::microsec_clock::universal_time() -
|
|
|
|
boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds();
|
|
|
|
assert(now > 0);
|
|
|
|
return now;
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t GetTimeMicros()
|
|
|
|
{
|
2015-11-25 03:39:19 +01:00
|
|
|
int64_t now = (boost::posix_time::microsec_clock::universal_time() -
|
|
|
|
boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds();
|
|
|
|
assert(now > 0);
|
|
|
|
return now;
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-19 19:01:18 +01:00
|
|
|
int64_t GetSystemTimeInSeconds()
|
|
|
|
{
|
|
|
|
return GetTimeMicros()/1000000;
|
|
|
|
}
|
|
|
|
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
void MilliSleep(int64_t n)
|
|
|
|
{
|
2014-11-17 04:04:01 +01:00
|
|
|
|
|
|
|
/**
|
2017-01-18 16:15:37 +01:00
|
|
|
* Boost's sleep_for was uninterruptible when backed by nanosleep from 1.50
|
2014-11-17 04:04:01 +01:00
|
|
|
* until fixed in 1.52. Use the deprecated sleep method for the broken case.
|
|
|
|
* See: https://svn.boost.org/trac/boost/ticket/7238
|
|
|
|
*/
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#if defined(HAVE_WORKING_BOOST_SLEEP_FOR)
|
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(n));
|
|
|
|
#elif defined(HAVE_WORKING_BOOST_SLEEP)
|
|
|
|
boost::this_thread::sleep(boost::posix_time::milliseconds(n));
|
|
|
|
#else
|
|
|
|
//should never get here
|
|
|
|
#error missing boost sleep implementation
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-02-28 16:46:31 +01:00
|
|
|
std::string FormatISO8601DateTime(int64_t nTime) {
|
2018-04-13 07:31:15 +02:00
|
|
|
struct tm ts;
|
|
|
|
time_t time_val = nTime;
|
2018-04-20 00:41:15 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
gmtime_s(&ts, &time_val);
|
|
|
|
#else
|
2018-04-13 07:31:15 +02:00
|
|
|
gmtime_r(&time_val, &ts);
|
2018-04-20 00:41:15 +02:00
|
|
|
#endif
|
2018-04-13 07:31:15 +02:00
|
|
|
return strprintf("%04i-%02i-%02iT%02i:%02i:%02iZ", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday, ts.tm_hour, ts.tm_min, ts.tm_sec);
|
2018-02-28 16:46:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string FormatISO8601Date(int64_t nTime) {
|
2018-04-13 07:31:15 +02:00
|
|
|
struct tm ts;
|
|
|
|
time_t time_val = nTime;
|
2018-04-20 00:41:15 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
gmtime_s(&ts, &time_val);
|
|
|
|
#else
|
2018-04-13 07:31:15 +02:00
|
|
|
gmtime_r(&time_val, &ts);
|
2018-04-20 00:41:15 +02:00
|
|
|
#endif
|
2018-04-13 07:31:15 +02:00
|
|
|
return strprintf("%04i-%02i-%02i", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday);
|
2018-02-28 16:46:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string FormatISO8601Time(int64_t nTime) {
|
2018-04-13 07:31:15 +02:00
|
|
|
struct tm ts;
|
|
|
|
time_t time_val = nTime;
|
2018-04-20 00:41:15 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
gmtime_s(&ts, &time_val);
|
|
|
|
#else
|
2018-04-13 07:31:15 +02:00
|
|
|
gmtime_r(&time_val, &ts);
|
2018-04-20 00:41:15 +02:00
|
|
|
#endif
|
2018-04-13 07:31:15 +02:00
|
|
|
return strprintf("%02i:%02i:%02iZ", ts.tm_hour, ts.tm_min, ts.tm_sec);
|
2018-02-28 16:46:31 +01:00
|
|
|
}
|