aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/time_provider/monotonic.cpp
blob: 99126080e2a87bbd674e67bc702838a1ba7bd26f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "monotonic.h"

#include <chrono>

namespace NMonotonic {

namespace {
// Unfortunately time_since_epoch() is sometimes negative on wine
// Remember initial time point at program start and use offsets from that
std::chrono::steady_clock::time_point MonotonicOffset = std::chrono::steady_clock::now();
}

ui64 GetMonotonicMicroSeconds() {
    auto microseconds = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::steady_clock::now() - MonotonicOffset).count();
    // Steady clock is supposed to never jump backwards, but it's better to be safe in case of buggy implementations
    if (Y_UNLIKELY(microseconds < 0)) {
        microseconds = 0;
    }
    // Add one so we never return zero
    return microseconds + 1;
}

} // namespace TMonotonic

template<>
void Out<NMonotonic::TMonotonic>(
    IOutputStream& o,
    NMonotonic::TMonotonic t)
{
    o << t - NMonotonic::TMonotonic::Zero();
}