Merge branch 'collectd-5.5'
[collectd.git] / src / daemon / utils_time.c
1 /**
2  * collectd - src/utils_time.c
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 #include "collectd.h"
28 #include "utils_time.h"
29 #include "plugin.h"
30 #include "common.h"
31
32 #ifndef DEFAULT_MOCK_TIME
33 # define DEFAULT_MOCK_TIME 1542455354518929408ULL
34 #endif
35
36 #ifdef MOCK_TIME
37 cdtime_t cdtime_mock = (cdtime_t) MOCK_TIME;
38
39 cdtime_t cdtime (void)
40 {
41   return cdtime_mock;
42 }
43 #else /* !MOCK_TIME */
44 # if HAVE_CLOCK_GETTIME
45 cdtime_t cdtime (void) /* {{{ */
46 {
47   int status;
48   struct timespec ts = { 0, 0 };
49
50   status = clock_gettime (CLOCK_REALTIME, &ts);
51   if (status != 0)
52   {
53     char errbuf[1024];
54     ERROR ("cdtime: clock_gettime failed: %s",
55         sstrerror (errno, errbuf, sizeof (errbuf)));
56     return (0);
57   }
58
59   return (TIMESPEC_TO_CDTIME_T (&ts));
60 } /* }}} cdtime_t cdtime */
61 # else /* !HAVE_CLOCK_GETTIME */
62 /* Work around for Mac OS X which doesn't have clock_gettime(2). *sigh* */
63 cdtime_t cdtime (void) /* {{{ */
64 {
65   int status;
66   struct timeval tv = { 0, 0 };
67
68   status = gettimeofday (&tv, /* struct timezone = */ NULL);
69   if (status != 0)
70   {
71     char errbuf[1024];
72     ERROR ("cdtime: gettimeofday failed: %s",
73         sstrerror (errno, errbuf, sizeof (errbuf)));
74     return (0);
75   }
76
77   return (TIMEVAL_TO_CDTIME_T (&tv));
78 } /* }}} cdtime_t cdtime */
79 # endif
80 #endif
81
82 /* format_zone reads time zone information from "extern long timezone", exported
83  * by <time.h>, and formats it according to RFC 3339. This differs from
84  * strftime()'s "%z" format by including a colon between hour and minute. */
85 static void format_zone (char *buffer, size_t buffer_size) /* {{{ */
86 {
87   _Bool east = 0;
88   long hours;
89   long minutes;
90
91   minutes = timezone / 60;
92   if (minutes == 0) {
93     sstrncpy (buffer, "Z", buffer_size);
94     return;
95   }
96
97   if (minutes < 0)
98   {
99     east = 1;
100     minutes = minutes * (-1);
101   }
102
103   hours = minutes / 60;
104   minutes = minutes % 60;
105
106   ssnprintf (buffer, buffer_size, "%s%02ld:%02ld",
107              (east ? "+" : "-"), hours, minutes);
108 } /* }}} int format_zone */
109
110 static int format_rfc3339 (char *buffer, size_t buffer_size, cdtime_t t, _Bool print_nano) /* {{{ */
111 {
112   struct timespec t_spec;
113   struct tm t_tm;
114   char base[20]; /* 2006-01-02T15:04:05 */
115   char nano[11]; /* .999999999 */
116   char zone[7];  /* +00:00 */
117   char *fields[] = {base, nano, zone};
118   size_t len;
119
120   CDTIME_T_TO_TIMESPEC (t, &t_spec);
121   NORMALIZE_TIMESPEC (t_spec);
122
123   if (localtime_r (&t_spec.tv_sec, &t_tm) == NULL) {
124     char errbuf[1024];
125     int status = errno;
126     ERROR ("format_rfc3339: localtime_r failed: %s",
127         sstrerror (status, errbuf, sizeof (errbuf)));
128     return (status);
129   }
130
131   len = strftime (base, sizeof (base), "%Y-%m-%dT%H:%M:%S", &t_tm);
132   if (len == 0)
133     return ENOMEM;
134
135   if (print_nano)
136     ssnprintf (nano, sizeof (nano), ".%09ld", (long) t_spec.tv_nsec);
137   else
138     sstrncpy (nano, "", sizeof (nano));
139
140   format_zone (zone, sizeof (zone));
141
142   if (strjoin (buffer, buffer_size, fields, STATIC_ARRAY_SIZE (fields), "") < 0)
143     return ENOMEM;
144   return 0;
145 } /* }}} int cdtime_to_rfc3339nano */
146
147 int rfc3339 (char *buffer, size_t buffer_size, cdtime_t t) /* {{{ */
148 {
149   if (buffer_size < RFC3339_SIZE)
150     return ENOMEM;
151
152   return format_rfc3339 (buffer, buffer_size, t, 0);
153 } /* }}} size_t cdtime_to_rfc3339 */
154
155 int rfc3339nano (char *buffer, size_t buffer_size, cdtime_t t) /* {{{ */
156 {
157   if (buffer_size < RFC3339NANO_SIZE)
158     return ENOMEM;
159
160   return format_rfc3339 (buffer, buffer_size, t, 1);
161 } /* }}} size_t cdtime_to_rfc3339nano */
162
163 /* vim: set sw=2 sts=2 et fdm=marker : */