]> arthur.barton.de Git - netdata.git/blob - src/clocks.c
ab-debian 0.20170311.01-0ab1, upstream v1.5.0-573-g0fba967b
[netdata.git] / src / clocks.c
1 #include "common.h"
2
3 #ifndef HAVE_CLOCK_GETTIME
4 inline int clock_gettime(clockid_t clk_id, struct timespec *ts) {
5     struct timeval tv;
6     if(unlikely(gettimeofday(&tv, NULL) == -1))
7         return -1;
8     ts->tv_sec = tv.tv_sec;
9     ts->tv_nsec = (tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC;
10     return 0;
11 }
12 #endif
13
14 static inline time_t now_sec(clockid_t clk_id) {
15     struct timespec ts;
16     if(unlikely(clock_gettime(clk_id, &ts) == -1))
17         return 0;
18     return ts.tv_sec;
19 }
20
21 static inline usec_t now_usec(clockid_t clk_id) {
22     struct timespec ts;
23     if(unlikely(clock_gettime(clk_id, &ts) == -1))
24         return 0;
25     return (usec_t)ts.tv_sec * USEC_PER_SEC + (ts.tv_nsec % NSEC_PER_SEC) / NSEC_PER_USEC;
26 }
27
28 static inline int now_timeval(clockid_t clk_id, struct timeval *tv) {
29     struct timespec ts;
30     if(unlikely(clock_gettime(clk_id, &ts) == -1))
31         return -1;
32     tv->tv_sec = ts.tv_sec;
33     tv->tv_usec = (suseconds_t)((ts.tv_nsec % NSEC_PER_SEC) / NSEC_PER_USEC);
34     return 0;
35 }
36
37 inline time_t now_realtime_sec(void) {
38     return now_sec(CLOCK_REALTIME);
39 }
40
41 inline usec_t now_realtime_usec(void) {
42     return now_usec(CLOCK_REALTIME);
43 }
44
45 inline int now_realtime_timeval(struct timeval *tv) {
46     return now_timeval(CLOCK_REALTIME, tv);
47 }
48
49 inline time_t now_monotonic_sec(void) {
50     return now_sec(CLOCK_MONOTONIC);
51 }
52
53 inline usec_t now_monotonic_usec(void) {
54     return now_usec(CLOCK_MONOTONIC);
55 }
56
57 inline int now_monotonic_timeval(struct timeval *tv) {
58     return now_timeval(CLOCK_MONOTONIC, tv);
59 }
60
61 inline time_t now_boottime_sec(void) {
62     return now_sec(CLOCK_BOOTTIME);
63 }
64
65 inline usec_t now_boottime_usec(void) {
66     return now_usec(CLOCK_BOOTTIME);
67 }
68
69 inline int now_boottime_timeval(struct timeval *tv) {
70     return now_timeval(CLOCK_BOOTTIME, tv);
71 }
72
73 inline usec_t timeval_usec(struct timeval *tv) {
74     return (usec_t)tv->tv_sec * USEC_PER_SEC + (tv->tv_usec % USEC_PER_SEC);
75 }
76
77 inline msec_t timeval_msec(struct timeval *tv) {
78     return (msec_t)tv->tv_sec * MSEC_PER_SEC + ((tv->tv_usec % USEC_PER_SEC) / MSEC_PER_SEC);
79 }
80
81 inline susec_t dt_usec_signed(struct timeval *now, struct timeval *old) {
82     usec_t ts1 = timeval_usec(now);
83     usec_t ts2 = timeval_usec(old);
84
85     if(likely(ts1 >= ts2)) return (susec_t)(ts1 - ts2);
86     return -((susec_t)(ts2 - ts1));
87 }
88
89 inline usec_t dt_usec(struct timeval *now, struct timeval *old) {
90     usec_t ts1 = timeval_usec(now);
91     usec_t ts2 = timeval_usec(old);
92     return (ts1 > ts2) ? (ts1 - ts2) : (ts2 - ts1);
93 }
94
95 inline void heartbeat_init(heartbeat_t *hb)
96 {
97     *hb = 0ULL;
98 }
99
100 usec_t heartbeat_next(heartbeat_t *hb, usec_t tick)
101 {
102     heartbeat_t now = now_monotonic_usec();
103     usec_t next = now - (now % tick) + tick;
104
105     while(now < next) {
106         sleep_usec(next - now);
107         now = now_monotonic_usec();
108     }
109
110     if(likely(*hb != 0ULL)) {
111         usec_t dt = now - *hb;
112         *hb = now;
113         if(unlikely(dt / tick > 1))
114             error("heartbeat missed between %llu usec and %llu usec", *hb, now);
115         return dt;
116     }
117     else {
118         *hb = now;
119         return 0ULL;
120     }
121 }
122
123 inline usec_t heartbeat_dt_usec(heartbeat_t *hb)
124 {
125     if(!*hb)
126         return 0ULL;
127     return now_monotonic_usec() - *hb;
128 }