2019-01-10 19:41:51 +00:00
|
|
|
#include <util/time.hpp>
|
2019-11-05 16:58:53 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <util/logging/logger.hpp>
|
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-01-23 12:59:51 +00:00
|
|
|
template < typename Res, typename Clock >
|
2018-10-04 13:02:03 +00:00
|
|
|
static llarp_time_t
|
|
|
|
time_since_epoch()
|
|
|
|
{
|
2020-02-24 19:40:45 +00:00
|
|
|
return std::chrono::duration_cast< Res >(Clock::now().time_since_epoch());
|
2018-10-04 13:02:03 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 14:41:33 +00:00
|
|
|
const static llarp_time_t started_at_system =
|
|
|
|
time_since_epoch< std::chrono::milliseconds, Clock_t >();
|
2020-01-23 12:59:51 +00:00
|
|
|
|
2020-01-23 14:41:33 +00:00
|
|
|
const static llarp_time_t started_at_steady =
|
|
|
|
time_since_epoch< std::chrono::milliseconds,
|
|
|
|
std::chrono::steady_clock >();
|
|
|
|
/// get our uptime in ms
|
2020-01-23 12:59:51 +00:00
|
|
|
static llarp_time_t
|
|
|
|
time_since_started()
|
|
|
|
{
|
|
|
|
return time_since_epoch< std::chrono::milliseconds,
|
|
|
|
std::chrono::steady_clock >()
|
2020-01-23 14:41:33 +00:00
|
|
|
- started_at_steady;
|
2020-01-23 12:59:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 22:45:37 +00:00
|
|
|
llarp_time_t
|
|
|
|
time_now_ms()
|
|
|
|
{
|
2020-02-24 19:40:45 +00:00
|
|
|
static llarp_time_t lastTime = 0s;
|
2020-01-23 12:59:51 +00:00
|
|
|
auto t = time_since_started();
|
|
|
|
#ifdef TESTNET_SPEED
|
2020-02-24 19:40:45 +00:00
|
|
|
t /= uint64_t(TESTNET_SPEED);
|
2020-01-23 12:59:51 +00:00
|
|
|
#endif
|
2020-01-23 14:41:33 +00:00
|
|
|
t += started_at_system;
|
2020-01-23 12:59:51 +00:00
|
|
|
|
2019-11-05 16:58:53 +00:00
|
|
|
if(t <= lastTime)
|
|
|
|
{
|
|
|
|
return lastTime;
|
|
|
|
}
|
2020-02-24 19:40:45 +00:00
|
|
|
if(lastTime == 0s)
|
2019-11-05 16:58:53 +00:00
|
|
|
{
|
|
|
|
lastTime = t;
|
|
|
|
}
|
|
|
|
const auto dlt = t - lastTime;
|
2020-02-24 19:40:45 +00:00
|
|
|
if(dlt > 5s)
|
2019-11-05 16:58:53 +00:00
|
|
|
{
|
|
|
|
// big timeskip
|
|
|
|
t = lastTime;
|
2020-02-24 19:40:45 +00:00
|
|
|
lastTime = 0s;
|
2019-11-05 16:58:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lastTime = t;
|
|
|
|
}
|
|
|
|
return t;
|
2018-11-19 22:45:37 +00:00
|
|
|
}
|
2020-02-25 17:05:13 +00:00
|
|
|
|
|
|
|
nlohmann::json
|
|
|
|
to_json(const llarp_time_t &t)
|
|
|
|
{
|
|
|
|
return t.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream &
|
|
|
|
operator<<(std::ostream &out, const llarp_time_t &t)
|
|
|
|
{
|
|
|
|
std::chrono::milliseconds amount = t;
|
|
|
|
auto h = std::chrono::duration_cast< std::chrono::hours >(amount);
|
|
|
|
amount -= h;
|
|
|
|
auto m = std::chrono::duration_cast< std::chrono::minutes >(amount);
|
|
|
|
amount -= m;
|
|
|
|
auto s = std::chrono::duration_cast< std::chrono::seconds >(amount);
|
|
|
|
amount -= s;
|
|
|
|
auto ms = amount;
|
|
|
|
auto old_fill = out.fill('0');
|
|
|
|
if(h > 0h)
|
|
|
|
{
|
|
|
|
out << h.count() << 'h';
|
|
|
|
out.width(2); // 0-fill minutes if we have hours
|
|
|
|
}
|
|
|
|
if(h > 0h || m > 0min)
|
|
|
|
{
|
|
|
|
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
|