1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
/*
* dtime.c -- time/date routines
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include <h/mh.h> /* for snprintf() */
#include <h/nmh.h>
#include <h/tws.h>
#include <time.h>
#if !defined(HAVE_STRUCT_TM_TM_GMTOFF)
extern long timezone;
#endif
/*
* The number of days in the year, accounting for leap years
*/
#define dysize(y) \
(((y) % 4) ? 365 : (((y) % 100) ? 366 : (((y) % 400) ? 365 : 366)))
char *tw_moty[] = {
"Jan", "Feb", "Mar", "Apr",
"May", "Jun", "Jul", "Aug",
"Sep", "Oct", "Nov", "Dec",
NULL
};
char *tw_dotw[] = {
"Sun", "Mon", "Tue",
"Wed", "Thu", "Fri",
"Sat", NULL
};
char *tw_ldotw[] = {
"Sunday", "Monday", "Tuesday",
"Wednesday", "Thursday", "Friday",
"Saturday", NULL
};
struct zone {
char *std;
char *dst;
int shift;
};
static int dmsize[] = {
31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
};
/*
* Get current time (adjusted for local time
* zone and daylight savings time) expressed
* as nmh "broken-down" time structure.
*/
struct tws *
dlocaltimenow (void)
{
time_t clock;
time (&clock);
return dlocaltime (&clock);
}
/*
* Take clock value and return pointer to nmh time structure
* containing "broken-down" time. The time is adjusted for
* local time zone and daylight savings time.
*/
struct tws *
dlocaltime (time_t *clock)
{
static struct tws tw;
struct tm *tm;
if (!clock)
return NULL;
tm = localtime (clock);
tw.tw_sec = tm->tm_sec;
tw.tw_min = tm->tm_min;
tw.tw_hour = tm->tm_hour;
tw.tw_mday = tm->tm_mday;
tw.tw_mon = tm->tm_mon;
/*
* tm_year is always "year - 1900".
* So we correct for this.
*/
tw.tw_year = tm->tm_year + 1900;
tw.tw_wday = tm->tm_wday;
tw.tw_yday = tm->tm_yday;
tw.tw_flags = TW_NULL;
if (tm->tm_isdst)
tw.tw_flags |= TW_DST;
#ifdef HAVE_STRUCT_TM_TM_GMTOFF
tw.tw_zone = tm->tm_gmtoff / 60;
if (tm->tm_isdst) /* if DST is in effect */
tw.tw_zone -= 60; /* reset to normal offset */
#else
tzset();
tw.tw_zone = -(timezone / 60);
#endif
tw.tw_flags &= ~TW_SDAY;
tw.tw_flags |= TW_SEXP;
tw.tw_flags &= ~TW_SZONE;
tw.tw_flags |= TW_SZEXP;
tw.tw_clock = *clock;
return (&tw);
}
/*
* Take clock value and return pointer to nmh time
* structure containing "broken-down" time. Time is
* expressed in UTC (Coordinated Universal Time).
*/
struct tws *
dgmtime (time_t *clock)
{
static struct tws tw;
struct tm *tm;
if (!clock)
return NULL;
tm = gmtime (clock);
tw.tw_sec = tm->tm_sec;
tw.tw_min = tm->tm_min;
tw.tw_hour = tm->tm_hour;
tw.tw_mday = tm->tm_mday;
tw.tw_mon = tm->tm_mon;
/*
* tm_year is always "year - 1900"
* So we correct for this.
*/
tw.tw_year = tm->tm_year + 1900;
tw.tw_wday = tm->tm_wday;
tw.tw_yday = tm->tm_yday;
tw.tw_flags = TW_NULL;
if (tm->tm_isdst)
tw.tw_flags |= TW_DST;
tw.tw_zone = 0;
tw.tw_flags &= ~TW_SDAY;
tw.tw_flags |= TW_SEXP;
tw.tw_flags &= ~TW_SZONE;
tw.tw_flags |= TW_SZEXP;
tw.tw_clock = *clock;
return (&tw);
}
/*
* Using a nmh "broken-down" time structure,
* produce a 26-byte date/time string, such as
*
* Tue Jan 14 17:49:03 1992\n\0
*/
char *
dctime (struct tws *tw)
{
static char buffer[26];
if (!tw)
return NULL;
snprintf (buffer, sizeof(buffer), "%.3s %.3s %02d %02d:%02d:%02d %.4d\n",
tw_dotw[tw->tw_wday], tw_moty[tw->tw_mon], tw->tw_mday,
tw->tw_hour, tw->tw_min, tw->tw_sec,
tw->tw_year < 100 ? tw->tw_year + 1900 : tw->tw_year);
return buffer;
}
/*
* Produce a date/time string of the form
*
* Mon, 16 Jun 1992 15:30:48 -700 (or)
* Mon, 16 Jun 1992 15:30:48 EDT
*
* for the current time, as specified by rfc822.
* The first form is required by rfc1123.
*/
char *
dtimenow (int alpha_timezone)
{
time_t clock;
time (&clock);
return dtime (&clock, alpha_timezone);
}
/*
* Using a local calendar time value, produce
* a date/time string of the form
*
* Mon, 16 Jun 1992 15:30:48 -700 (or)
* Mon, 16 Jun 1992 15:30:48 EDT
*
* as specified by rfc822. The first form is required
* by rfc1123 for outgoing messages.
*/
char *
dtime (time_t *clock, int alpha_timezone)
{
if (alpha_timezone)
/* use alpha-numeric timezones */
return dasctime (dlocaltime (clock), TW_NULL);
else
/* use numeric timezones */
return dasctime (dlocaltime (clock), TW_ZONE);
}
/*
* Using a nmh "broken-down" time structure, produce
* a date/time string of the form
*
* Mon, 16 Jun 1992 15:30:48 -0700
*
* as specified by rfc822 and rfc1123.
*/
char *
dasctime (struct tws *tw, int flags)
{
char buffer[80];
static char result[80];
if (!tw)
return NULL;
/* Display timezone if known */
if ((tw->tw_flags & TW_SZONE) == TW_SZNIL)
result[0] = '\0';
else
snprintf(result, sizeof(result), " %s", dtimezone(tw->tw_zone, tw->tw_flags | flags));
snprintf(buffer, sizeof(buffer), "%02d %s %0*d %02d:%02d:%02d%s",
tw->tw_mday, tw_moty[tw->tw_mon],
tw->tw_year < 100 ? 2 : 4, tw->tw_year,
tw->tw_hour, tw->tw_min, tw->tw_sec, result);
if ((tw->tw_flags & TW_SDAY) == TW_SEXP)
snprintf (result, sizeof(result), "%s, %s", tw_dotw[tw->tw_wday], buffer);
else
if ((tw->tw_flags & TW_SDAY) == TW_SNIL)
strncpy (result, buffer, sizeof(result));
else
snprintf (result, sizeof(result), "%s (%s)", buffer, tw_dotw[tw->tw_wday]);
return result;
}
/*
* Get the timezone for given offset.
* This used to return a three-letter abbreviation for some offset
* values. But not many. Until there's a good way to do that,
* return the string representation of the numeric offset.
*/
char *
dtimezone (int offset, int flags)
{
int hours, mins;
static char buffer[10];
if (offset < 0) {
mins = -((-offset) % 60);
hours = -((-offset) / 60);
} else {
mins = offset % 60;
hours = offset / 60;
}
#ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
if (flags & TW_DST)
hours += 1;
#endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */
snprintf (buffer, sizeof(buffer), "%s%02d%02d",
offset < 0 ? "-" : "+", abs (hours), abs (mins));
return buffer;
}
/*
* Convert nmh time structure for local "broken-down"
* time to calendar time (clock value). This routine
* is based on the gtime() routine written by Steven Shafer
* at CMU. It was forwarded to MTR by Jay Lepreau at Utah-CS.
*/
time_t
dmktime (struct tws *tw)
{
int i, sec, min, hour, mday, mon, year;
time_t result;
if (tw->tw_clock != 0)
return tw->tw_clock;
if ((sec = tw->tw_sec) < 0 || sec > 61
|| (min = tw->tw_min) < 0 || min > 59
|| (hour = tw->tw_hour) < 0 || hour > 23
|| (mday = tw->tw_mday) < 1 || mday > 31
|| (mon = tw->tw_mon + 1) < 1 || mon > 12)
return (tw->tw_clock = (time_t) -1);
year = tw->tw_year;
result = 0;
if (year < 1970)
year += 1900;
if (year < 1970)
year += 100;
for (i = 1970; i < year; i++)
result += dysize (i);
if (dysize (year) == 366 && mon >= 3)
result++;
while (--mon)
result += dmsize[mon - 1];
result += mday - 1;
result = 24 * result + hour;
result = 60 * result + min;
result = 60 * result + sec;
result -= 60 * tw->tw_zone;
if (tw->tw_flags & TW_DST)
result -= 60 * 60;
return (tw->tw_clock = result);
}
/*
* Simple calculation of day of the week. Algorithm
* used is Zeller's congruence. We assume that
* if tw->tw_year < 100, then the century = 19.
*/
void
set_dotw (struct tws *tw)
{
int month, day, year, century;
month = tw->tw_mon - 1;
day = tw->tw_mday;
year = tw->tw_year % 100;
century = tw->tw_year < 100 ? 19 : tw->tw_year / 100;
if (month <= 0) {
month += 12;
if (--year < 0) {
year += 100;
century--;
}
}
tw->tw_wday =
((26 * month - 2) / 10 + day + year + year / 4
- 3 * century / 4 + 1) % 7;
if (tw->tw_wday < 0)
tw->tw_wday += 7;
tw->tw_flags &= ~TW_SDAY, tw->tw_flags |= TW_SIMP;
}
/*
* Copy nmh time structure
*/
void
twscopy (struct tws *tb, struct tws *tw)
{
*tb = *tw; /* struct copy */
}
/*
* Compare two nmh time structures
*/
int
twsort (struct tws *tw1, struct tws *tw2)
{
time_t c1, c2;
if (tw1->tw_clock == 0)
dmktime (tw1);
if (tw2->tw_clock == 0)
dmktime (tw2);
return ((c1 = tw1->tw_clock) > (c2 = tw2->tw_clock) ? 1
: c1 == c2 ? 0 : -1);
}
|