clocks.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_CLOCKS_H
  3. #define NETDATA_CLOCKS_H 1
  4. #include "../libnetdata.h"
  5. #ifndef HAVE_STRUCT_TIMESPEC
  6. struct timespec {
  7. time_t tv_sec; /* seconds */
  8. long tv_nsec; /* nanoseconds */
  9. };
  10. #endif
  11. #ifndef HAVE_CLOCKID_T
  12. typedef int clockid_t;
  13. #endif
  14. typedef unsigned long long nsec_t;
  15. typedef unsigned long long msec_t;
  16. typedef unsigned long long usec_t;
  17. typedef long long susec_t;
  18. typedef struct heartbeat {
  19. usec_t monotonic;
  20. usec_t realtime;
  21. } heartbeat_t;
  22. /* Linux value is as good as any other */
  23. #ifndef CLOCK_REALTIME
  24. #define CLOCK_REALTIME 0
  25. #endif
  26. #ifndef CLOCK_MONOTONIC
  27. /* fallback to CLOCK_REALTIME if not available */
  28. #define CLOCK_MONOTONIC CLOCK_REALTIME
  29. #endif
  30. /* Prefer CLOCK_MONOTONIC_COARSE where available to reduce overhead. It has the same semantics as CLOCK_MONOTONIC */
  31. #ifndef CLOCK_MONOTONIC_COARSE
  32. /* fallback to CLOCK_MONOTONIC if not available */
  33. #define CLOCK_MONOTONIC_COARSE CLOCK_MONOTONIC
  34. #endif
  35. #ifndef CLOCK_BOOTTIME
  36. #ifdef CLOCK_UPTIME
  37. /* CLOCK_BOOTTIME falls back to CLOCK_UPTIME on FreeBSD */
  38. #define CLOCK_BOOTTIME CLOCK_UPTIME
  39. #else // CLOCK_UPTIME
  40. /* CLOCK_BOOTTIME falls back to CLOCK_MONOTONIC */
  41. #define CLOCK_BOOTTIME CLOCK_MONOTONIC_COARSE
  42. #endif // CLOCK_UPTIME
  43. #else // CLOCK_BOOTTIME
  44. #ifdef HAVE_CLOCK_GETTIME
  45. #define CLOCK_BOOTTIME_IS_AVAILABLE 1 // required for /proc/uptime
  46. #endif // HAVE_CLOCK_GETTIME
  47. #endif // CLOCK_BOOTTIME
  48. #ifndef NSEC_PER_MSEC
  49. #define NSEC_PER_MSEC 1000000ULL
  50. #endif
  51. #ifndef NSEC_PER_SEC
  52. #define NSEC_PER_SEC 1000000000ULL
  53. #endif
  54. #ifndef NSEC_PER_USEC
  55. #define NSEC_PER_USEC 1000ULL
  56. #endif
  57. #ifndef USEC_PER_SEC
  58. #define USEC_PER_SEC 1000000ULL
  59. #endif
  60. #ifndef MSEC_PER_SEC
  61. #define MSEC_PER_SEC 1000ULL
  62. #endif
  63. #define USEC_PER_MS 1000ULL
  64. #ifndef HAVE_CLOCK_GETTIME
  65. /* Fallback function for POSIX.1-2001 clock_gettime() function.
  66. *
  67. * We use a realtime clock from gettimeofday(), this will
  68. * make systems without clock_gettime() support sensitive
  69. * to time jumps or hibernation/suspend side effects.
  70. */
  71. extern int clock_gettime(clockid_t clk_id, struct timespec *ts);
  72. #endif
  73. /*
  74. * Three clocks are available (cf. man 3 clock_gettime):
  75. *
  76. * REALTIME clock (i.e. wall-clock):
  77. * This clock is affected by discontinuous jumps in the system time
  78. * (e.g., if the system administrator manually changes the clock), and by the incremental adjustments performed by adjtime(3) and NTP.
  79. *
  80. * MONOTONIC clock
  81. * Clock that cannot be set and represents monotonic time since some unspecified starting point.
  82. * This clock is not affected by discontinuous jumps in the system time
  83. * (e.g., if the system administrator manually changes the clock), but is affected by the incremental adjustments performed by adjtime(3) and NTP.
  84. * If not available on the system, this clock falls back to REALTIME clock.
  85. *
  86. * BOOTTIME clock
  87. * Identical to CLOCK_MONOTONIC, except it also includes any time that the system is suspended.
  88. * This allows applications to get a suspend-aware monotonic clock without having to deal with the complications of CLOCK_REALTIME,
  89. * which may have discontinuities if the time is changed using settimeofday(2).
  90. * If not available on the system, this clock falls back to MONOTONIC clock.
  91. *
  92. * All now_*_timeval() functions fill the `struct timeval` with the time from the appropriate clock.
  93. * Those functions return 0 on success, -1 else with errno set appropriately.
  94. *
  95. * All now_*_sec() functions return the time in seconds from the appropriate clock, or 0 on error.
  96. * All now_*_usec() functions return the time in microseconds from the appropriate clock, or 0 on error.
  97. *
  98. * Most functions will attempt to use CLOCK_MONOTONIC_COARSE if available to reduce contention overhead and improve
  99. * performance scaling. If high precision is required please use one of the available now_*_high_precision_* functions.
  100. */
  101. extern int now_realtime_timeval(struct timeval *tv);
  102. extern time_t now_realtime_sec(void);
  103. extern usec_t now_realtime_usec(void);
  104. extern int now_monotonic_timeval(struct timeval *tv);
  105. extern time_t now_monotonic_sec(void);
  106. extern usec_t now_monotonic_usec(void);
  107. extern int now_monotonic_high_precision_timeval(struct timeval *tv);
  108. extern time_t now_monotonic_high_precision_sec(void);
  109. extern usec_t now_monotonic_high_precision_usec(void);
  110. extern int now_boottime_timeval(struct timeval *tv);
  111. extern time_t now_boottime_sec(void);
  112. extern usec_t now_boottime_usec(void);
  113. extern usec_t timeval_usec(struct timeval *tv);
  114. extern msec_t timeval_msec(struct timeval *tv);
  115. extern usec_t dt_usec(struct timeval *now, struct timeval *old);
  116. extern susec_t dt_usec_signed(struct timeval *now, struct timeval *old);
  117. extern void heartbeat_init(heartbeat_t *hb);
  118. /* Sleeps until next multiple of tick using monotonic clock.
  119. * Returns elapsed time in microseconds since previous heartbeat
  120. */
  121. extern usec_t heartbeat_next(heartbeat_t *hb, usec_t tick);
  122. /* Returns elapsed time in microseconds since last heartbeat */
  123. extern usec_t heartbeat_monotonic_dt_to_now_usec(heartbeat_t *hb);
  124. extern int sleep_usec(usec_t usec);
  125. /*
  126. * When running a binary with CLOCK_BOOTTIME defined on a system with a linux kernel older than Linux 2.6.39 the
  127. * clock_gettime(2) system call fails with EINVAL. In that case it must fall-back to CLOCK_MONOTONIC.
  128. */
  129. void test_clock_boottime(void);
  130. /*
  131. * When running a binary with CLOCK_MONOTONIC_COARSE defined on a system with a linux kernel older than Linux 2.6.32 the
  132. * clock_gettime(2) system call fails with EINVAL. In that case it must fall-back to CLOCK_MONOTONIC.
  133. */
  134. void test_clock_monotonic_coarse(void);
  135. extern collected_number uptime_msec(char *filename);
  136. #endif /* NETDATA_CLOCKS_H */