date.c
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:5k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /* date.c - utility functions for handling times and dates
  2.  *
  3.  * Richard Braakman
  4.  */
  5. #include <unistd.h>
  6. #include <ctype.h>
  7. #include <string.h>
  8. #include "gwlib.h"
  9. static unsigned char *wkday[7] = {
  10.     "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
  11. };
  12. static unsigned char *monthname[12] = {
  13.     "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  14.     "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  15. };
  16. /* The starting day of each month, if there's not a leap year.
  17.  * January 1 is day 0, December 31 is day 355. */
  18. static int monthstart[12] = {
  19.     0, 31, 59, 90, 120, 151,
  20.     181, 212, 243, 273, 304, 334
  21. };
  22. /* Value in seconds */
  23. #define MINUTE 60
  24. #define HOUR (60 * MINUTE)
  25. #define DAY (24 * HOUR)
  26. Octstr *date_format_http(unsigned long unixtime)
  27. {
  28.     struct tm tm;
  29.     unsigned char buffer[30];
  30.     tm = gw_gmtime((time_t) unixtime);
  31.     /* Make sure gmtime gave us a good date.  We check this to
  32.      * protect the sprintf call below, which might overflow its
  33.      * buffer if the field values are bad. */
  34.     if (tm.tm_wday < 0 || tm.tm_wday > 6 ||
  35.         tm.tm_mday < 0 || tm.tm_mday > 31 ||
  36.         tm.tm_mon < 0 || tm.tm_mon > 11 ||
  37.         tm.tm_year < 0 ||
  38.         tm.tm_hour < 0 || tm.tm_hour > 23 ||
  39.         tm.tm_min < 0 || tm.tm_min > 59 ||
  40.         tm.tm_sec < 0 || tm.tm_sec > 61) {
  41.         warning(0, "Bad date for timestamp %lu, cannot format.",
  42.                 unixtime);
  43.         return NULL;
  44.     }
  45.     sprintf(buffer, "%s, %02d %s %04d %02d:%02d:%02d GMT",
  46.             wkday[tm.tm_wday], tm.tm_mday, monthname[tm.tm_mon],
  47.             tm.tm_year + 1900, tm.tm_hour, tm.tm_min, tm.tm_sec);
  48.     return octstr_create(buffer);
  49. }
  50. long date_convert_universal(struct universaltime *t)
  51. {
  52.     long date;
  53.     int leapyears;
  54.     long year;
  55.     date = (t->year - 1970) * (365 * DAY);
  56.     /* If we haven't had this year's leap day yet, pretend it's
  57.      * the previous year. */
  58.     year = t->year;
  59.     if (t->month <= 1)
  60.         year--;
  61.     /* Add leap years since 1970.  The magic number 477 is the value
  62.      * this formula would give for 1970 itself.  Notice the extra
  63.      * effort we make to keep it correct for the year 2100. */
  64.     leapyears = (year / 4) - (year / 100) + (year / 400) - 477;
  65.     date += leapyears * DAY;
  66.     date += monthstart[t->month] * DAY;
  67.     date += (t->day - 1) * DAY;
  68.     date += t->hour * HOUR;
  69.     date += t->minute * MINUTE;
  70.     date += t->second;
  71.     return date;
  72. }
  73. long date_parse_http(Octstr *date)
  74. {
  75.     long pos;
  76.     struct universaltime t;
  77.     Octstr *monthstr = NULL;
  78.     /* First, skip the leading day-of-week string. */
  79.     pos = octstr_search_char(date, ' ', 0);
  80.     if (pos < 0 || pos == octstr_len(date) - 1)
  81.         return -1;
  82.     pos++;  /* Skip the space */
  83.     /* Distinguish between the three acceptable formats */
  84.     if (isdigit(octstr_get_char(date, pos)) &&
  85.         octstr_get_char(date, pos + 2) == ' ') {
  86.         if (octstr_len(date) - pos < (long)strlen("06 Nov 1994 08:49:37 GMT"))
  87.             goto error;
  88.         if (octstr_parse_long(&t.day, date, pos, 10) != pos + 2)
  89.             goto error;
  90.         monthstr = octstr_copy(date, pos + 3, 3);
  91.         if (octstr_parse_long(&t.year, date, pos + 7, 10) != pos + 11)
  92.             goto error;
  93.         if (octstr_parse_long(&t.hour, date, pos + 12, 10) != pos + 14)
  94.             goto error;
  95.         if (octstr_parse_long(&t.minute, date, pos + 15, 10) != pos + 17)
  96.             goto error;
  97.         if (octstr_parse_long(&t.second, date, pos + 18, 10) != pos + 20)
  98.             goto error;
  99.         /* Take the GMT part on faith. */
  100.     } else if (isdigit(octstr_get_char(date, pos)) &&
  101.                octstr_get_char(date, pos + 2) == '-') {
  102.         if (octstr_len(date) - pos < (long)strlen("06-Nov-94 08:49:37 GMT"))
  103.             goto error;
  104.         if (octstr_parse_long(&t.day, date, pos, 10) != pos + 2)
  105.             goto error;
  106.         monthstr = octstr_copy(date, pos + 3, 3);
  107.         if (octstr_parse_long(&t.year, date, pos + 7, 10) != pos + 9)
  108.             goto error;
  109.         if (t.year > 60)
  110.             t.year += 1900;
  111.         else
  112.             t.year += 2000;
  113.         if (octstr_parse_long(&t.hour, date, pos + 10, 10) != pos + 12)
  114.             goto error;
  115.         if (octstr_parse_long(&t.minute, date, pos + 13, 10) != pos + 15)
  116.             goto error;
  117.         if (octstr_parse_long(&t.second, date, pos + 16, 10) != pos + 18)
  118.             goto error;
  119.         /* Take the GMT part on faith. */
  120.     } else {
  121.         if (octstr_len(date) - pos < (long)strlen(" 6 08:49:37 1994"))
  122.             goto error;
  123.         monthstr = octstr_copy(date, pos, 3);
  124.         if (octstr_parse_long(&t.day, date, pos + 4, 10) != pos + 6)
  125.             goto error;
  126.         if (octstr_parse_long(&t.hour, date, pos + 7, 10) != pos + 9)
  127.             goto error;
  128.         if (octstr_parse_long(&t.minute, date, pos + 10, 10) != pos + 12)
  129.             goto error;
  130.         if (octstr_parse_long(&t.second, date, pos + 13, 10) != pos + 15)
  131.             goto error;
  132.         if (octstr_parse_long(&t.year, date, pos + 16, 10) != pos + 20)
  133.             goto error;
  134.     }
  135.     for (t.month = 0; t.month < 12; t.month++) {
  136.         if (octstr_str_compare(monthstr, monthname[t.month]) == 0)
  137.             break;
  138.     }
  139.     if (t.month == 12)
  140.         goto error;
  141.     octstr_destroy(monthstr);
  142.     return date_convert_universal(&t);
  143. error:
  144.     octstr_destroy(monthstr);
  145.     return -1;
  146. }
  147. /* Note that this implementation makes unportable assumptions about time_t. */
  148. long date_universal_now(void)
  149. {
  150.     return (long) time(NULL);
  151. }