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 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
/* Miscellaneous time-related utilities (borrowed from evolution)
*
* Copyright (C) 1998 The Free Software Foundation
* Copyright (C) 2000 Helix Code, Inc.
* Copyright (C) 2000 Ximian, Inc.
* Copyright (C) 2001 CodeFactory AB
*
* Authors: Federico Mena <federico@ximian.com>
* Miguel de Icaza <miguel@ximian.com>
* Richard Hult <rhult@codefactory.se>
*/
#include <string.h>
#include <ctype.h>
#include <glib.h>
#include "time-utils.h"
void
print_time_t (time_t t)
{
struct tm *tm = localtime (&t);
printf ("%d/%02d/%02d %02d:%02d:%02d",
1900 + tm->tm_year, tm->tm_mon+1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);
}
/**
* isodate_from_time_t:
* @t: A time value.
*
* Creates an ISO 8601 local time representation from a time value.
*
* Return value: String with the ISO 8601 representation of the local time.
**/
char *
isodate_from_time_t (time_t t)
{
struct tm *tm;
char isotime[40];
tm = localtime (&t);
strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%S", tm);
return g_strdup (isotime);
}
/**
* time_from_isodate:
* @str: Date/time value in ISO 8601 format.
*
* Converts an ISO 8601 time string into a time_t value.
*
* Return value: Time_t corresponding to the specified ISO string.
**/
time_t
time_from_isodate (const char *str)
{
int len;
struct tm my_tm;
time_t t;
int i;
g_return_val_if_fail (str != NULL, -1);
/* yyyymmdd[Thhmmss[Z]] */
len = strlen (str);
if (!(len == 8 || len == 15 || len == 16))
return -1;
for (i = 0; i < len; i++)
if (!((i != 8 && i != 15 && isdigit (str[i]))
|| (i == 8 && str[i] == 'T')
|| (i == 15 && str[i] == 'Z')))
return -1;
memset (&my_tm, 0, sizeof (my_tm));
#define digit_at(x,y) (x[y] - '0')
my_tm.tm_year = (digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 +
digit_at (str, 2) * 10 + digit_at (str, 3)) - 1900;
my_tm.tm_mon = digit_at (str, 4) * 10 + digit_at (str, 5) - 1;
my_tm.tm_mday = digit_at (str, 6) * 10 + digit_at (str, 7);
if (len > 8) {
my_tm.tm_hour = digit_at (str, 9) * 10 + digit_at (str, 10);
my_tm.tm_min = digit_at (str, 11) * 10 + digit_at (str, 12);
my_tm.tm_sec = digit_at (str, 13) * 10 + digit_at (str, 14);
}
my_tm.tm_isdst = -1;
t = mktime (&my_tm);
if (len == 16) {
#if defined(HAVE_TM_GMTOFF)
t += my_tm.tm_gmtoff;
#elif defined(HAVE_TIMEZONE)
t -= timezone;
#endif
}
return t;
}
/*
* Pass in 4/16/97 and get 19970416 out.
* lets hope the ms dates are y2k compliant.
*/
static char *
convert_slashed_us_date_to_iso (const char *date)
{
char scratch[9]; /* yyyymmdd */
int i;
i = 0;
g_assert (date [i] != '\0');
g_assert (date [i + 1] != '\0');
/* Month */
if (date [i + 1] == '/') {
scratch [4] = '0';
scratch [5] = date [i];
i+=2;
} else {
g_assert (date [i + 2] == '/');
scratch [4] = date [i];
scratch [5] = date [i + 1];
i+=3;
}
g_assert (date [i] != '\0');
g_assert (date [i + 1] != '\0');
/* Day */
if (date [i + 1] == '/') {
scratch [6] = '0';
scratch [7] = date [i];
i+=2;
} else {
g_assert (date [i + 2] == '/');
scratch [6] = date [i];
scratch [7] = date [i + 1];
i+=3;
}
g_assert (date [i] != '\0');
g_assert (date [i + 1] != '\0');
/* Year */
if (date [i + 2] == '\0') {
/* And here we have the ugly [ like my butt ] Y2K hack
God bless all those who live to see 2090 */
if (date [i] >= '9') {
scratch [0] = '1';
scratch [1] = '9';
} else {
scratch [0] = '2';
scratch [1] = '0';
}
scratch [2] = date [i];
scratch [3] = date [i + 1];
} else { /* assume 4 digit */
g_assert (date [i + 3] != '\0');
scratch [0] = date [i];
scratch [1] = date [i + 1];
scratch [2] = date [i + 2];
scratch [3] = date [i + 3];
}
scratch [8] = '\0';
return g_strdup (scratch);
}
/**
* time_from_msdate:
* @str: an ms time string stamp from an mpx file.
*
* This function is a mess, it tries to detect the time
* format in the string and convert it to a time_t. This
* is apparently possible.
*
* Internaly the string is converted to an isodate and
* then converted into a time_t.
*
* Return value: the time corresponding to @str.
**/
time_t
time_from_msdate (const char *str)
{
/* FIXME: horrible hacks lurk here */
gboolean contains_slash;
gboolean has_day_prefix;
static const char *day_prefixes [] = {
"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
};
int i;
has_day_prefix = FALSE;
for (i = 0; i < 7; i++) {
if (!strncmp (str, day_prefixes [i], 3)) {
has_day_prefix = TRUE;
break;
}
}
contains_slash = (strstr (str, "/") != NULL);
if (contains_slash && has_day_prefix) {
char *date;
time_t ret;
g_assert (str [3] == ' ');
date = convert_slashed_us_date_to_iso (&str [4]);
ret = time_from_isodate (date);
g_free (date);
return ret;
} else
g_warning ("Unknown MS date format '%s'", str);
return 0;
}
time_t
time_add_minutes (time_t time, int minutes)
{
struct tm *tm = localtime (&time);
time_t new_time;
tm->tm_min += minutes;
if ((new_time = mktime (tm)) == -1) {
g_message ("time_add_minutes(): mktime() could not handle "
"adding %d minutes with\n", minutes);
print_time_t (time);
printf ("\n");
return time;
}
return new_time;
}
/* Adds a day onto the time, using local time.
Note that if clocks go forward due to daylight savings time, there are
some non-existent local times, so the hour may be changed to make it a
valid time. This also means that it may not be wise to keep calling
time_add_day() to step through a certain period - if the hour gets changed
to make it valid time, any further calls to time_add_day() will also return
this hour, which may not be what you want. */
time_t
time_add_day (time_t time, int days)
{
struct tm *tm = localtime (&time);
time_t new_time;
#if 0
int dst_flag = tm->tm_isdst;
#endif
tm->tm_mday += days;
tm->tm_isdst = -1;
if ((new_time = mktime (tm)) == -1) {
g_message ("time_add_day(): mktime() could not handling adding %d days with\n",
days);
print_time_t (time);
printf ("\n");
return time;
}
#if 0
/* I don't know what this is for. See also time_day_begin() and
time_day_end(). - Damon. */
if (dst_flag > tm->tm_isdst) {
tm->tm_hour++;
new_time += 3600;
} else if (dst_flag < tm->tm_isdst) {
tm->tm_hour--;
new_time -= 3600;
}
#endif
return new_time;
}
time_t
time_add_week (time_t time, int weeks)
{
return time_add_day (time, weeks * 7);
}
time_t
time_add_month (time_t time, int months)
{
struct tm *tm = localtime (&time);
time_t new_time;
int mday;
mday = tm->tm_mday;
tm->tm_mon += months;
tm->tm_isdst = -1;
if ((new_time = mktime (tm)) == -1) {
g_message ("time_add_month(): mktime() could not handling adding %d months with\n",
months);
print_time_t (time);
printf ("\n");
return time;
}
tm = localtime (&new_time);
if (tm->tm_mday < mday) {
tm->tm_mon--;
tm->tm_mday = time_days_in_month (tm->tm_year+1900, tm->tm_mon);
return new_time = mktime (tm);
}
else
return new_time;
}
time_t
time_add_year (time_t time, int years)
{
struct tm *tm = localtime (&time);
time_t new_time;
tm->tm_year += years;
if ((new_time = mktime (tm)) == -1) {
g_message ("time_add_year(): mktime() could not handling adding %d years with\n",
years);
print_time_t (time);
printf ("\n");
return time;
}
return new_time;
}
/* Number of days in a month, for normal and leap years */
static const int days_in_month[2][12] = {
{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
{ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
};
/* Returns whether the specified year is a leap year */
static int
is_leap_year (int year)
{
if (year <= 1752)
return !(year % 4);
else
return (!(year % 4) && (year % 100)) || !(year % 400);
}
int
time_days_in_month (int year, int month)
{
g_return_val_if_fail (year >= 1900, 0);
g_return_val_if_fail ((month >= 0) && (month < 12), 0);
return days_in_month [is_leap_year (year)][month];
}
time_t
time_from_day (int year, int month, int day)
{
struct tm tm;
memset (&tm, 0, sizeof (tm));
tm.tm_year = year - 1900;
tm.tm_mon = month;
tm.tm_mday = day;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_year_begin (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mon = 0;
tm.tm_mday = 1;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_year_end (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mon = 0;
tm.tm_mday = 1;
tm.tm_year++;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_month_begin (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mday = 1;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_month_end (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mday = 1;
tm.tm_mon++;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_week_begin (time_t t, gboolean week_starts_on_monday)
{
struct tm tm;
int offset;
int week_start_day;
tm = *localtime (&t);
/* sunday 0 -> saturday 6 */
if (week_starts_on_monday) {
week_start_day = 1;
}
else {
week_start_day = 0;
}
/* Calculate the current offset from the week start day. */
offset = (tm.tm_wday + 7 - week_start_day) % 7;
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mday -= offset;
tm.tm_isdst = -1;
return mktime (&tm);
}
time_t
time_week_end (time_t t, gboolean week_starts_on_monday)
{
struct tm tm;
int offset;
int week_start_day;
tm = *localtime (&t);
/* sunday 0 -> saturday 6 */
if (week_starts_on_monday) {
week_start_day = 1;
}
else {
week_start_day = 0;
}
/* Calculate the current offset from the week start day. */
offset = (tm.tm_wday + 7 - week_start_day) % 7;
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_mday += 7 - offset;
tm.tm_isdst = -1;
return mktime (&tm);
}
/* Returns the start of the day, according to the local time. */
time_t
time_day_begin (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_isdst = -1;
return mktime (&tm);
}
/* Returns the end of the day, according to the local time. */
time_t
time_day_end (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_mday++;
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_isdst = -1;
return mktime (&tm);
}
/* Added for MrProject. */
/* Returns the start of the quarter, according to the local time. */
time_t
time_quarter_begin (time_t t)
{
struct tm tm;
gint month;
tm = *localtime (&t);
tm.tm_hour = 0;
tm.tm_min = 0;
tm.tm_sec = 0;
month = tm.tm_mon;
if (month >= 0 && month <= 2) {
month = 0;
}
else if (month >= 3 && month <= 5) {
month = 3;
}
else if (month >= 6 && month <= 8) {
month = 6;
}
else if (month >= 9 && month <= 11) {
month = 9;
}
else {
g_warning ("Invalid month");
month = tm.tm_mon;
}
tm.tm_mon = month;
tm.tm_mday = 1;
tm.tm_isdst = -1;
return mktime (&tm);
}
/* Returns the start of the hour, according to the local time. */
time_t
time_hour_begin (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_min = 0;
tm.tm_sec = 0;
tm.tm_isdst = -1;
return mktime (&tm);
}
/* Returns the start of the minute, according to the local time. */
time_t
time_minute_begin (time_t t)
{
struct tm tm;
tm = *localtime (&t);
tm.tm_sec = 0;
tm.tm_isdst = -1;
return mktime (&tm);
}
gdouble
time_diff (time_t t2, time_t t1, int *days, int *hours, int *minutes)
{
double diff;
diff = difftime (t2, t1);
if (days) {
*days = diff / (60*60*24);
diff -= *days * (60*60*24);
}
if (hours) {
*hours = diff / (60*60);
diff -= *hours * (60*60);
}
if (minutes) {
*minutes = diff / 60;
diff -= *minutes * 60;
}
return diff;
}
void
time_split (time_t time, int *year, int *month, int *day)
{
struct tm *tm = localtime (&time);
if (year)
*year = tm->tm_year + 1900;
if (month)
*month = tm->tm_mon;
if (day)
*day = tm->tm_mday;
}
|