]>
diplodocus.org Git - nmh/blob - sbr/dtime.c
3 * dtime.c -- time/date routines
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
10 #include <h/mh.h> /* for snprintf() */
15 #if !defined(HAVE_STRUCT_TM_TM_GMTOFF)
20 * The number of days in the year, accounting for leap years
23 (((y) % 4) ? 365 : (((y) % 100) ? 366 : (((y) % 400) ? 365 : 366)))
26 "Jan", "Feb", "Mar", "Apr",
27 "May", "Jun", "Jul", "Aug",
28 "Sep", "Oct", "Nov", "Dec",
39 "Sunday", "Monday", "Tuesday",
40 "Wednesday", "Thursday", "Friday",
50 static int dmsize
[] = {
51 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
56 * Get current time (adjusted for local time
57 * zone and daylight savings time) expressed
58 * as nmh "broken-down" time structure.
67 return dlocaltime (&clock
);
72 * Take clock value and return pointer to nmh time structure
73 * containing "broken-down" time. The time is adjusted for
74 * local time zone and daylight savings time.
78 dlocaltime (time_t *clock
)
86 tm
= localtime (clock
);
88 tw
.tw_sec
= tm
->tm_sec
;
89 tw
.tw_min
= tm
->tm_min
;
90 tw
.tw_hour
= tm
->tm_hour
;
91 tw
.tw_mday
= tm
->tm_mday
;
92 tw
.tw_mon
= tm
->tm_mon
;
95 * tm_year is always "year - 1900".
96 * So we correct for this.
98 tw
.tw_year
= tm
->tm_year
+ 1900;
99 tw
.tw_wday
= tm
->tm_wday
;
100 tw
.tw_yday
= tm
->tm_yday
;
102 tw
.tw_flags
= TW_NULL
;
104 tw
.tw_flags
|= TW_DST
;
106 #ifdef HAVE_STRUCT_TM_TM_GMTOFF
107 tw
.tw_zone
= tm
->tm_gmtoff
/ 60;
108 if (tm
->tm_isdst
) /* if DST is in effect */
109 tw
.tw_zone
-= 60; /* reset to normal offset */
112 tw
.tw_zone
= -(timezone
/ 60);
115 tw
.tw_flags
&= ~TW_SDAY
;
116 tw
.tw_flags
|= TW_SEXP
;
117 tw
.tw_flags
&= ~TW_SZONE
;
118 tw
.tw_flags
|= TW_SZEXP
;
120 tw
.tw_clock
= *clock
;
127 * Take clock value and return pointer to nmh time
128 * structure containing "broken-down" time. Time is
129 * expressed in UTC (Coordinated Universal Time).
133 dgmtime (time_t *clock
)
135 static struct tws tw
;
143 tw
.tw_sec
= tm
->tm_sec
;
144 tw
.tw_min
= tm
->tm_min
;
145 tw
.tw_hour
= tm
->tm_hour
;
146 tw
.tw_mday
= tm
->tm_mday
;
147 tw
.tw_mon
= tm
->tm_mon
;
150 * tm_year is always "year - 1900"
151 * So we correct for this.
153 tw
.tw_year
= tm
->tm_year
+ 1900;
154 tw
.tw_wday
= tm
->tm_wday
;
155 tw
.tw_yday
= tm
->tm_yday
;
157 tw
.tw_flags
= TW_NULL
;
159 tw
.tw_flags
|= TW_DST
;
163 tw
.tw_flags
&= ~TW_SDAY
;
164 tw
.tw_flags
|= TW_SEXP
;
165 tw
.tw_flags
&= ~TW_SZONE
;
166 tw
.tw_flags
|= TW_SZEXP
;
168 tw
.tw_clock
= *clock
;
175 * Using a nmh "broken-down" time structure,
176 * produce a 26-byte date/time string, such as
178 * Tue Jan 14 17:49:03 1992\n\0
182 dctime (struct tws
*tw
)
184 static char buffer
[26];
189 snprintf (buffer
, sizeof(buffer
), "%.3s %.3s %02d %02d:%02d:%02d %.4d\n",
190 tw_dotw
[tw
->tw_wday
], tw_moty
[tw
->tw_mon
], tw
->tw_mday
,
191 tw
->tw_hour
, tw
->tw_min
, tw
->tw_sec
,
192 tw
->tw_year
< 100 ? tw
->tw_year
+ 1900 : tw
->tw_year
);
199 * Produce a date/time string of the form
201 * Mon, 16 Jun 1992 15:30:48 -700 (or)
202 * Mon, 16 Jun 1992 15:30:48 EDT
204 * for the current time, as specified by rfc822.
205 * The first form is required by rfc1123.
209 dtimenow (int alpha_timezone
)
214 return dtime (&clock
, alpha_timezone
);
219 * Using a local calendar time value, produce
220 * a date/time string of the form
222 * Mon, 16 Jun 1992 15:30:48 -700 (or)
223 * Mon, 16 Jun 1992 15:30:48 EDT
225 * as specified by rfc822. The first form is required
226 * by rfc1123 for outgoing messages.
230 dtime (time_t *clock
, int alpha_timezone
)
233 /* use alpha-numeric timezones */
234 return dasctime (dlocaltime (clock
), TW_NULL
);
236 /* use numeric timezones */
237 return dasctime (dlocaltime (clock
), TW_ZONE
);
242 * Using a nmh "broken-down" time structure, produce
243 * a date/time string of the form
245 * Mon, 16 Jun 1992 15:30:48 -0700
247 * as specified by rfc822 and rfc1123.
251 dasctime (struct tws
*tw
, int flags
)
254 static char result
[80];
259 /* Display timezone if known */
260 if ((tw
->tw_flags
& TW_SZONE
) == TW_SZNIL
)
263 snprintf(result
, sizeof(result
), " %s", dtimezone(tw
->tw_zone
, tw
->tw_flags
| flags
));
265 snprintf(buffer
, sizeof(buffer
), "%02d %s %0*d %02d:%02d:%02d%s",
266 tw
->tw_mday
, tw_moty
[tw
->tw_mon
],
267 tw
->tw_year
< 100 ? 2 : 4, tw
->tw_year
,
268 tw
->tw_hour
, tw
->tw_min
, tw
->tw_sec
, result
);
270 if ((tw
->tw_flags
& TW_SDAY
) == TW_SEXP
)
271 snprintf (result
, sizeof(result
), "%s, %s", tw_dotw
[tw
->tw_wday
], buffer
);
273 if ((tw
->tw_flags
& TW_SDAY
) == TW_SNIL
)
274 strncpy (result
, buffer
, sizeof(result
));
276 snprintf (result
, sizeof(result
), "%s (%s)", buffer
, tw_dotw
[tw
->tw_wday
]);
283 * Get the timezone for given offset.
284 * This used to return a three-letter abbreviation for some offset
285 * values. But not many. Until there's a good way to do that,
286 * return the string representation of the numeric offset.
290 dtimezone (int offset
, int flags
)
293 static char buffer
[10];
296 mins
= -((-offset
) % 60);
297 hours
= -((-offset
) / 60);
303 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
306 #endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */
307 snprintf (buffer
, sizeof(buffer
), "%s%02d%02d",
308 offset
< 0 ? "-" : "+", abs (hours
), abs (mins
));
314 * Convert nmh time structure for local "broken-down"
315 * time to calendar time (clock value). This routine
316 * is based on the gtime() routine written by Steven Shafer
317 * at CMU. It was forwarded to MTR by Jay Lepreau at Utah-CS.
321 dmktime (struct tws
*tw
)
323 int i
, sec
, min
, hour
, mday
, mon
, year
;
326 if (tw
->tw_clock
!= 0)
329 if ((sec
= tw
->tw_sec
) < 0 || sec
> 61
330 || (min
= tw
->tw_min
) < 0 || min
> 59
331 || (hour
= tw
->tw_hour
) < 0 || hour
> 23
332 || (mday
= tw
->tw_mday
) < 1 || mday
> 31
333 || (mon
= tw
->tw_mon
+ 1) < 1 || mon
> 12)
334 return (tw
->tw_clock
= (time_t) -1);
345 for (i
= 1970; i
< year
; i
++)
346 result
+= dysize (i
);
347 if (dysize (year
) == 366 && mon
>= 3)
350 result
+= dmsize
[mon
- 1];
352 result
= 24 * result
+ hour
;
353 result
= 60 * result
+ min
;
354 result
= 60 * result
+ sec
;
355 result
-= 60 * tw
->tw_zone
;
356 if (tw
->tw_flags
& TW_DST
)
359 return (tw
->tw_clock
= result
);
364 * Simple calculation of day of the week. Algorithm
365 * used is Zeller's congruence. We assume that
366 * if tw->tw_year < 100, then the century = 19.
370 set_dotw (struct tws
*tw
)
372 int month
, day
, year
, century
;
374 month
= tw
->tw_mon
- 1;
376 year
= tw
->tw_year
% 100;
377 century
= tw
->tw_year
< 100 ? 19 : tw
->tw_year
/ 100;
388 ((26 * month
- 2) / 10 + day
+ year
+ year
/ 4
389 - 3 * century
/ 4 + 1) % 7;
393 tw
->tw_flags
&= ~TW_SDAY
, tw
->tw_flags
|= TW_SIMP
;
398 * Copy nmh time structure
402 twscopy (struct tws
*tb
, struct tws
*tw
)
404 *tb
= *tw
; /* struct copy */
407 tb
->tw_sec
= tw
->tw_sec
;
408 tb
->tw_min
= tw
->tw_min
;
409 tb
->tw_hour
= tw
->tw_hour
;
410 tb
->tw_mday
= tw
->tw_mday
;
411 tb
->tw_mon
= tw
->tw_mon
;
412 tb
->tw_year
= tw
->tw_year
;
413 tb
->tw_wday
= tw
->tw_wday
;
414 tb
->tw_yday
= tw
->tw_yday
;
415 tb
->tw_zone
= tw
->tw_zone
;
416 tb
->tw_clock
= tw
->tw_clock
;
417 tb
->tw_flags
= tw
->tw_flags
;
423 * Compare two nmh time structures
427 twsort (struct tws
*tw1
, struct tws
*tw2
)
431 if (tw1
->tw_clock
== 0)
433 if (tw2
->tw_clock
== 0)
436 return ((c1
= tw1
->tw_clock
) > (c2
= tw2
->tw_clock
) ? 1
437 : c1
== c2
? 0 : -1);