Merge branch 'collectd-5.5' into collectd-5.6
[collectd.git] / src / daemon / utils_time.h
1 /**
2  * collectd - src/daemon/utils_time.h
3  * Copyright (C) 2010-2015  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  **/
26
27 #ifndef UTILS_TIME_H
28 #define UTILS_TIME_H 1
29
30 #include "collectd.h"
31
32 #ifdef TESTING_H
33 /* cdtime_mock is the time returned by cdtime() when build with
34  * -DMOCK_TIME */
35 extern cdtime_t cdtime_mock;
36 #endif
37
38 /*
39  * "cdtime_t" is a 64bit unsigned integer. The time is stored at a 2^-30 second
40  * resolution, i.e. the most significant 34 bit are used to store the time in
41  * seconds, the least significant bits store the sub-second part in something
42  * very close to nanoseconds. *The* big advantage of storing time in this
43  * manner is that comparing times and calculating differences is as simple as
44  * it is with "time_t", i.e. a simple integer comparison / subtraction works.
45  */
46 /*
47  * cdtime_t is defined in "collectd.h" */
48 /* typedef uint64_t cdtime_t; */
49
50 /* 2^30 = 1073741824 */
51 #define TIME_T_TO_CDTIME_T(t) (((cdtime_t)(t)) << 30)
52
53 #define MS_TO_CDTIME_T(ms)                                                     \
54   (((((cdtime_t)(ms)) / 1000) << 30) |                                         \
55    ((((((cdtime_t)(ms)) % 1000) << 30) + 500) / 1000))
56 #define US_TO_CDTIME_T(us)                                                     \
57   (((((cdtime_t)(us)) / 1000000) << 30) |                                      \
58    ((((((cdtime_t)(us)) % 1000000) << 30) + 500000) / 1000000))
59 #define NS_TO_CDTIME_T(ns)                                                     \
60   (((((cdtime_t)(ns)) / 1000000000) << 30) |                                   \
61    ((((((cdtime_t)(ns)) % 1000000000) << 30) + 500000000) / 1000000000))
62
63 #define CDTIME_T_TO_TIME_T(t) ((time_t)(((t) + (1 << 29)) >> 30))
64 #define CDTIME_T_TO_MS(t)                                                      \
65   ((uint64_t)((((t) >> 30) * 1000) +                                           \
66               ((((t)&0x3fffffff) * 1000 + (1 << 29)) >> 30)))
67 #define CDTIME_T_TO_US(t)                                                      \
68   ((uint64_t)((((t) >> 30) * 1000000) +                                        \
69               ((((t)&0x3fffffff) * 1000000 + (1 << 29)) >> 30)))
70 #define CDTIME_T_TO_NS(t)                                                      \
71   ((uint64_t)((((t) >> 30) * 1000000000) +                                     \
72               ((((t)&0x3fffffff) * 1000000000 + (1 << 29)) >> 30)))
73
74 #define CDTIME_T_TO_DOUBLE(t) (((double)(t)) / 1073741824.0)
75 #define DOUBLE_TO_CDTIME_T(d) ((cdtime_t)((d)*1073741824.0))
76
77 #define CDTIME_T_TO_TIMEVAL(cdt, tvp)                                          \
78   do {                                                                         \
79     (tvp)->tv_sec = (time_t)((cdt) >> 30);                                     \
80     (tvp)->tv_usec =                                                           \
81         (suseconds_t)((((cdt)&0x3fffffff) * 1000000 + (1 << 29)) >> 30);       \
82   } while (0)
83 #define TIMEVAL_TO_CDTIME_T(tv)                                                \
84   US_TO_CDTIME_T(1000000 * (tv)->tv_sec + (tv)->tv_usec)
85
86 #define CDTIME_T_TO_TIMESPEC(cdt, tsp)                                         \
87   do {                                                                         \
88     (tsp)->tv_sec = (time_t)((cdt) >> 30);                                     \
89     (tsp)->tv_nsec =                                                           \
90         (long)((((cdt)&0x3fffffff) * 1000000000 + (1 << 29)) >> 30);           \
91   } while (0)
92 #define TIMESPEC_TO_CDTIME_T(ts)                                               \
93   NS_TO_CDTIME_T(1000000000ULL * (ts)->tv_sec + (ts)->tv_nsec)
94
95 cdtime_t cdtime(void);
96
97 #define RFC3339_SIZE 26
98 #define RFC3339NANO_SIZE 36
99
100 /* rfc3339 formats a cdtime_t time in RFC 3339 format with second precision. */
101 int rfc3339(char *buffer, size_t buffer_size, cdtime_t t);
102
103 /* rfc3339nano formats a cdtime_t time in RFC 3339 format with nanosecond
104  * precision. */
105 int rfc3339nano(char *buffer, size_t buffer_size, cdtime_t t);
106
107 #endif /* UTILS_TIME_H */
108 /* vim: set sw=2 sts=2 et : */