2021-03-09 22:24:35 +00:00
|
|
|
#include "time.hpp"
|
2019-11-05 16:58:53 +00:00
|
|
|
#include <chrono>
|
2018-01-19 16:51:27 +00:00
|
|
|
|
2018-10-04 13:02:03 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2019-11-05 16:58:53 +00:00
|
|
|
using Clock_t = std::chrono::system_clock;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
template <typename Res, typename Clock>
|
2021-04-02 15:10:37 +00:00
|
|
|
static Duration_t
|
|
|
|
time_since_epoch(std::chrono::time_point<Clock> point)
|
2018-10-04 13:02:03 +00:00
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
return std::chrono::duration_cast<Res>(point.time_since_epoch());
|
2018-10-04 13:02:03 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
const static auto started_at_system = Clock_t::now();
|
|
|
|
|
|
|
|
const static auto started_at_steady = std::chrono::steady_clock::now();
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
ToMS(Duration_t ms)
|
|
|
|
{
|
|
|
|
return ms.count();
|
|
|
|
}
|
2020-01-23 12:59:51 +00:00
|
|
|
|
2020-01-23 14:41:33 +00:00
|
|
|
/// get our uptime in ms
|
2021-04-02 15:10:37 +00:00
|
|
|
Duration_t
|
|
|
|
uptime()
|
2020-01-23 12:59:51 +00:00
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
return std::chrono::duration_cast<Duration_t>(
|
|
|
|
std::chrono::steady_clock::now() - started_at_steady);
|
2020-01-23 12:59:51 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
Duration_t
|
2018-11-19 22:45:37 +00:00
|
|
|
time_now_ms()
|
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
auto t = uptime();
|
2020-01-23 12:59:51 +00:00
|
|
|
#ifdef TESTNET_SPEED
|
2021-04-02 15:10:37 +00:00
|
|
|
t /= uint64_t{TESTNET_SPEED};
|
2020-01-23 12:59:51 +00:00
|
|
|
#endif
|
2021-04-02 15:10:37 +00:00
|
|
|
return t + time_since_epoch<Duration_t, Clock_t>(started_at_system);
|
2018-11-19 22:45:37 +00:00
|
|
|
}
|
2020-02-25 17:05:13 +00:00
|
|
|
|
|
|
|
nlohmann::json
|
2021-04-02 15:10:37 +00:00
|
|
|
to_json(const Duration_t& t)
|
2020-02-25 17:05:13 +00:00
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
return ToMS(t);
|
2020-02-25 17:05:13 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::ostream&
|
2021-04-02 15:10:37 +00:00
|
|
|
operator<<(std::ostream& out, const Duration_t& t)
|
2020-02-25 17:05:13 +00:00
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
std::chrono::milliseconds amount{ToMS(t)};
|
2020-04-07 18:38:56 +00:00
|
|
|
auto h = std::chrono::duration_cast<std::chrono::hours>(amount);
|
2020-02-25 17:05:13 +00:00
|
|
|
amount -= h;
|
2020-04-07 18:38:56 +00:00
|
|
|
auto m = std::chrono::duration_cast<std::chrono::minutes>(amount);
|
2020-02-25 17:05:13 +00:00
|
|
|
amount -= m;
|
2020-04-07 18:38:56 +00:00
|
|
|
auto s = std::chrono::duration_cast<std::chrono::seconds>(amount);
|
2020-02-25 17:05:13 +00:00
|
|
|
amount -= s;
|
2020-04-07 18:38:56 +00:00
|
|
|
auto ms = amount;
|
2020-02-25 17:05:13 +00:00
|
|
|
auto old_fill = out.fill('0');
|
2020-04-07 18:38:56 +00:00
|
|
|
if (h > 0h)
|
2020-02-25 17:05:13 +00:00
|
|
|
{
|
|
|
|
out << h.count() << 'h';
|
|
|
|
out.width(2); // 0-fill minutes if we have hours
|
|
|
|
}
|
2020-04-07 18:38:56 +00:00
|
|
|
if (h > 0h || m > 0min)
|
2020-02-25 17:05:13 +00:00
|
|
|
{
|
|
|
|
out << m.count() << 'm';
|
|
|
|
out.width(2); // 0-fill seconds if we have minutes
|
|
|
|
}
|
|
|
|
out << s.count() << '.';
|
|
|
|
out.width(3);
|
|
|
|
out << ms.count();
|
|
|
|
out.fill(old_fill);
|
|
|
|
return out << "s";
|
|
|
|
}
|
2018-10-04 13:02:03 +00:00
|
|
|
} // namespace llarp
|