Code

plugin: Make sdb_plugin_info_t public.
[sysdb.git] / src / core / time.c
1 /*
2  * SysDB - src/core/time.c
3  * Copyright (C) 2012 Sebastian 'tokkee' Harl <sh@tokkee.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
19  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
28 #if HAVE_CONFIG_H
29 #       include "config.h"
30 #endif /* HAVE_CONFIG_H */
32 #include "sysdb.h"
33 #include "core/time.h"
35 #include <time.h>
37 #include <stdio.h>
38 #include <string.h>
40 /*
41  * public API
42  */
44 /* 1 second (in micro-seconds) */
45 #define SEC 1000000000L
47 const sdb_time_t SDB_INTERVAL_YEAR   = 3652425L   * 24L * 60L * 60L * 100000L;
48 const sdb_time_t SDB_INTERVAL_MONTH  =  30436875L * 24L * 60L * 60L * 1000L;
49 const sdb_time_t SDB_INTERVAL_DAY    =              24L * 60L * 60L * SEC;
50 const sdb_time_t SDB_INTERVAL_HOUR   =                    60L * 60L * SEC;
51 const sdb_time_t SDB_INTERVAL_MINUTE =                          60L * SEC;
52 const sdb_time_t SDB_INTERVAL_SECOND =                                SEC;
54 sdb_time_t
55 sdb_gettime(void)
56 {
57         struct timespec ts_now = { 0, 0 };
59         if (clock_gettime(CLOCK_REALTIME, &ts_now))
60                 return 0;
61         return TIMESPEC_TO_SDB_TIME(ts_now);
62 } /* sdb_gettime */
64 int
65 sdb_sleep(sdb_time_t reg, sdb_time_t *rem)
66 {
67         struct timespec ts_reg, ts_rem = { 0, 0 };
68         int status;
70         ts_reg.tv_sec  = (time_t)SDB_TIME_TO_SECS(reg);
71         ts_reg.tv_nsec = (long int)(reg % (sdb_time_t)1000000000);
73         status = nanosleep(&ts_reg, &ts_rem);
74         if (rem)
75                 *rem = TIMESPEC_TO_SDB_TIME(ts_rem);
76         return status;
77 } /* sdb_sleep */
79 size_t
80 sdb_strftime(char *s, size_t len, const char *format, sdb_time_t t)
81 {
82         time_t tstamp;
83         struct tm tm;
85         memset(&tm, 0, sizeof(tm));
87         tstamp = (time_t)SDB_TIME_TO_SECS(t);
88         if (! localtime_r (&tstamp, &tm))
89                 return 0;
91         return strftime(s, len, format, &tm);
92 } /* sdb_strftime */
94 size_t
95 sdb_strfinterval(char *s, size_t len, sdb_time_t interval)
96 {
97         size_t n = 0;
98         size_t i;
100         /* special case the optional fractional part for seconds */
101         _Bool have_seconds = 0;
103         struct {
104                 sdb_time_t  interval;
105                 const char *suffix;
106         } specs[] = {
107                 { SDB_INTERVAL_YEAR,   "Y" },
108                 { SDB_INTERVAL_MONTH,  "M" },
109                 { SDB_INTERVAL_DAY,    "D" },
110                 { SDB_INTERVAL_HOUR,   "h" },
111                 { SDB_INTERVAL_MINUTE, "m" },
112                 { SDB_INTERVAL_SECOND, "" },
113         };
115 #define LEN (len > n ? len - n : 0)
116         for (i = 0; i < SDB_STATIC_ARRAY_LEN(specs); ++i) {
117                 if (interval >= specs[i].interval) {
118                         n += snprintf(s + n, LEN, "%"PRIscTIME"%s",
119                                         interval / specs[i].interval, specs[i].suffix);
120                         interval %= specs[i].interval;
121                         if (i == SDB_STATIC_ARRAY_LEN(specs) - 1)
122                                 have_seconds = 1;
123                 }
124         }
126         if (interval) {
127                 n += snprintf(s + n, LEN, ".%09"PRIscTIME, interval);
128                 have_seconds = 1;
130                 /* removing trailing zeroes */
131                 if (n <= len)
132                         while (s[n - 1] == '0')
133                                 s[n--] = '\0';
134         }
136         if (! n) {
137                 n = snprintf(s, len, "0");
138                 have_seconds = 1;
139         }
141         if (have_seconds)
142                 n += snprintf(s + n, LEN, "s");
143 #undef LEN
145         if (len)
146                 s[len - 1] = '\0';
147         return n;
148 } /* sdb_strfinterval */
150 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */