]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/btime.c
Fix: clock diff, Dan's patch, Nic's patch, segfault
[bacula/bacula] / bacula / src / lib / btime.c
1 /*
2  * Bacula time and date routines -- John Walker
3  *
4  *   Version $Id$
5  */
6 /*
7    Copyright (C) 2000-2003 Kern Sibbald and John Walker
8
9    This program is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License as
11    published by the Free Software Foundation; either version 2 of
12    the License, or (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17    General Public License for more details.
18
19    You should have received a copy of the GNU General Public
20    License along with this program; if not, write to the Free
21    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22    MA 02111-1307, USA.
23
24  */
25
26
27 /* Concerning times. There are a number of differnt time standards
28  * in Bacula (fdate_t, ftime_t, time_t (Unix standard), btime_t, and
29  *  utime_t).  fdate_t and ftime_t are deprecated and should no longer
30  *  be used, and in general, Unix time time_t should no longer be used,
31  *  it is being phased out. 
32  *     
33  *  Epoch is the base of Unix time in seconds (time_t, ...) 
34  *     and is 1 Jan 1970 at 0:0 UTC
35  *
36  *  The major two times that should be left are:
37  *     btime_t  (64 bit integer in microseconds base Epoch)
38  *     utime_t  (64 bit integer in seconds base Epoch)
39  */
40
41 #include "bacula.h"
42 #include <math.h>
43
44 /* Formatted time for user display: dd-Mon-yyyy hh:mm */
45 char *bstrftime(char *dt, int maxlen, utime_t tim)
46 {
47    time_t ttime = tim;
48    struct tm tm;
49    
50    /* ***FIXME**** the format and localtime_r() should be user configurable */
51    localtime_r(&ttime, &tm);
52    strftime(dt, maxlen, "%d-%b-%Y %H:%M", &tm);
53    return dt;
54 }
55
56 /* Unix time to standard time string yyyy-mm-dd hh:mm:ss */
57 char *bstrutime(char *dt, int maxlen, utime_t tim)
58 {
59    time_t ttime = tim;
60    struct tm tm;
61    localtime_r(&ttime, &tm);
62    strftime(dt, maxlen, "%Y-%m-%d %H:%M:%S", &tm);
63    return dt;
64 }
65
66 /* Convert standard time string yyyy-mm-dd hh:mm:ss to Unix time */
67 utime_t str_to_utime(char *str) 
68 {
69    struct tm tm;
70    time_t ttime;
71
72    if (sscanf(str, "%d-%d-%d %d:%d:%d", &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
73                                         &tm.tm_hour, &tm.tm_min, &tm.tm_sec) != 6) {
74       return 0;
75    }
76    if (tm.tm_mon > 0) {
77       tm.tm_mon--;
78    } else { 
79       return 0;
80    }
81    if (tm.tm_year >= 1900) {
82       tm.tm_year -= 1900;
83    } else {
84       return 0;
85    }
86    tm.tm_wday = tm.tm_yday = 0;
87    tm.tm_isdst = -1;
88    ttime = mktime(&tm);
89    if (ttime == -1) {       
90       ttime = 0;
91    }
92    return (utime_t)ttime;
93 }
94
95
96 /*
97  * Bacula's time (btime_t) is an unsigned 64 bit integer that contains
98  *   the number of microseconds since Epoch Time (1 Jan 1970) UTC.
99  */
100
101 btime_t get_current_btime()
102 {
103    struct timeval tv;
104    if (gettimeofday(&tv, NULL) != 0) {
105       tv.tv_sec = (long)time(NULL);   /* fall back to old method */
106       tv.tv_usec = 0;
107    }
108    return ((btime_t)tv.tv_sec) * 1000000 + (btime_t)tv.tv_usec;
109 }
110
111 /* Convert btime to Unix time */
112 time_t btime_to_unix(btime_t bt)
113 {
114    return (time_t)(bt/1000000);                    
115 }
116
117 /* Convert btime to utime */
118 utime_t btime_to_utime(btime_t bt)
119 {
120    return (utime_t)(bt/1000000);
121 }
122
123
124 /* Deprecated. Do not use. */
125 void get_current_time(struct date_time *dt)
126 {
127    struct tm tm;
128    time_t now;
129
130    now = time(NULL);
131    gmtime_r(&now, &tm);
132    Dmsg6(200, "m=%d d=%d y=%d h=%d m=%d s=%d\n", tm.tm_mon+1, tm.tm_mday, tm.tm_year+1900,
133       tm.tm_hour, tm.tm_min, tm.tm_sec);
134    tm_encode(dt, &tm);
135 #ifdef DEBUG
136    Dmsg2(200, "jday=%f jmin=%f\n", dt->julian_day_number, dt->julian_day_fraction);
137    tm_decode(dt, &tm);
138    Dmsg6(200, "m=%d d=%d y=%d h=%d m=%d s=%d\n", tm.tm_mon+1, tm.tm_mday, tm.tm_year+1900,
139       tm.tm_hour, tm.tm_min, tm.tm_sec);
140 #endif
141 }
142
143
144 /*  date_encode  --  Encode civil date as a Julian day number.  */
145
146 /* Deprecated. Do not use. */
147 fdate_t date_encode(uint32_t year, uint8_t month, uint8_t day)
148 {
149
150     /* Algorithm as given in Meeus, Astronomical Algorithms, Chapter 7, page 61 */
151
152     int32_t a, b, m;
153     uint32_t y;
154
155     ASSERT(month < 13);
156     ASSERT(day > 0 && day < 32);
157
158     m = month;
159     y = year;
160
161     if (m <= 2) {
162         y--;
163         m += 12;
164     }
165
166     /* Determine whether date is in Julian or Gregorian calendar based on
167        canonical date of calendar reform. */
168
169     if ((year < 1582) || ((year == 1582) && ((month < 9) || (month == 9 && day < 5)))) {
170         b = 0;
171     } else {
172         a = ((int) (y / 100));
173         b = 2 - a + (a / 4);
174     }
175
176     return (((int32_t) (365.25 * (y + 4716))) + ((int) (30.6001 * (m + 1))) +
177                 day + b - 1524.5);
178 }
179
180 /*  time_encode  --  Encode time from hours, minutes, and seconds
181                      into a fraction of a day.  */
182
183 /* Deprecated. Do not use. */
184 ftime_t time_encode(uint8_t hour, uint8_t minute, uint8_t second,
185                    float32_t second_fraction)
186 {
187     ASSERT((second_fraction >= 0.0) || (second_fraction < 1.0));
188     return (ftime_t) (((second + 60L * (minute + 60L * hour)) / 86400.0)) +
189                      second_fraction;
190 }
191
192 /*  date_time_encode  --  Set day number and fraction from date
193                           and time.  */
194
195 /* Deprecated. Do not use. */
196 void date_time_encode(struct date_time *dt,
197                       uint32_t year, uint8_t month, uint8_t day,
198                       uint8_t hour, uint8_t minute, uint8_t second,
199                       float32_t second_fraction)
200 {
201     dt->julian_day_number = date_encode(year, month, day);
202     dt->julian_day_fraction = time_encode(hour, minute, second, second_fraction);
203 }
204
205 /*  date_decode  --  Decode a Julian day number into civil date.  */
206
207 /* Deprecated. Do not use. */
208 void date_decode(fdate_t date, uint32_t *year, uint8_t *month,
209                  uint8_t *day)
210 {
211     fdate_t z, f, a, alpha, b, c, d, e;
212
213     date += 0.5;
214     z = floor(date);
215     f = date - z;
216
217     if (z < 2299161.0) {
218         a = z;
219     } else {
220         alpha = floor((z - 1867216.25) / 36524.25);
221         a = z + 1 + alpha - floor(alpha / 4);
222     }
223
224     b = a + 1524;
225     c = floor((b - 122.1) / 365.25);
226     d = floor(365.25 * c);
227     e = floor((b - d) / 30.6001);
228
229     *day = (uint8_t) (b - d - floor(30.6001 * e) + f);
230     *month = (uint8_t) ((e < 14) ? (e - 1) : (e - 13));
231     *year = (uint32_t) ((*month > 2) ? (c - 4716) : (c - 4715));
232 }
233
234 /*  time_decode  --  Decode a day fraction into civil time.  */
235
236 /* Deprecated. Do not use. */
237 void time_decode(ftime_t time, uint8_t *hour, uint8_t *minute,
238                  uint8_t *second, float32_t *second_fraction)
239 {
240     uint32_t ij;
241
242     ij = (uint32_t) ((time - floor(time)) * 86400.0);
243     *hour = (uint8_t) (ij / 3600L);
244     *minute = (uint8_t) ((ij / 60L) % 60L);
245     *second = (uint8_t) (ij % 60L);
246     if (second_fraction != NULL) {
247         *second_fraction = time - floor(time);
248     }
249 }
250
251 /*  date_time_decode  --  Decode a Julian day and day fraction
252                           into civil date and time.  */
253
254 /* Deprecated. Do not use. */
255 void date_time_decode(struct date_time *dt,
256                       uint32_t *year, uint8_t *month, uint8_t *day,
257                       uint8_t *hour, uint8_t *minute, uint8_t *second,
258                       float32_t *second_fraction)
259 {
260     date_decode(dt->julian_day_number, year, month, day);
261     time_decode(dt->julian_day_fraction, hour, minute, second, second_fraction);
262 }
263
264 /*  tm_encode  --  Encode a civil date and time from a tm structure   
265  *                 to a Julian day and day fraction.
266  */
267
268 /* Deprecated. Do not use. */
269 void tm_encode(struct date_time *dt,
270                       struct tm *tm) 
271 {
272     uint32_t year;
273     uint8_t month, day, hour, minute, second;
274
275     year = tm->tm_year + 1900;
276     month = tm->tm_mon + 1;
277     day = tm->tm_mday;
278     hour = tm->tm_hour;
279     minute = tm->tm_min;
280     second = tm->tm_sec;
281     dt->julian_day_number = date_encode(year, month, day);
282     dt->julian_day_fraction = time_encode(hour, minute, second, 0.0);
283 }
284
285
286 /*  tm_decode  --  Decode a Julian day and day fraction
287                    into civil date and time in tm structure */
288
289 /* Deprecated. Do not use. */
290 void tm_decode(struct date_time *dt,
291                       struct tm *tm) 
292 {
293     uint32_t year;
294     uint8_t month, day, hour, minute, second;
295
296     date_decode(dt->julian_day_number, &year, &month, &day);
297     time_decode(dt->julian_day_fraction, &hour, &minute, &second, NULL);
298     tm->tm_year = year - 1900;
299     tm->tm_mon = month - 1;
300     tm->tm_mday = day;
301     tm->tm_hour = hour;
302     tm->tm_min = minute;
303     tm->tm_sec = second;
304 }
305
306
307 /*  date_time_compare  --  Compare two dates and times and return
308                            the relationship as follows:
309
310                                     -1    dt1 < dt2
311                                      0    dt1 = dt2
312                                      1    dt1 > dt2
313 */
314
315 /* Deprecated. Do not use. */
316 int date_time_compare(struct date_time *dt1, struct date_time *dt2)
317 {
318     if (dt1->julian_day_number == dt2->julian_day_number) {
319         if (dt1->julian_day_fraction == dt2->julian_day_fraction) {
320             return 0;
321         }
322         return (dt1->julian_day_fraction < dt2->julian_day_fraction) ? -1 : 1;
323     }
324     return (dt1->julian_day_number - dt2->julian_day_number) ? -1 : 1;
325 }