hxdate.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:9k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxdate.cpp,v 1.8.8.3 2004/07/09 01:44:03 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hxtypes.h"
  50. #include "hlxclib/string.h"
  51. #include "hlxclib/stdio.h"
  52. #ifdef _MACINTOSH
  53. #ifndef _MAC_MACHO
  54. #include <OSUtils.h>
  55. #endif
  56. #ifdef _CARBON
  57. #ifndef _MAC_MACHO
  58. #include <stat.h>
  59. #endif
  60. #else
  61. #include <stat.mac.h>
  62. #endif
  63. #else
  64. #include "hlxclib/sys/types.h"
  65. #include "hlxclib/sys/stat.h"
  66. #endif
  67. #if defined(_AIX)
  68. #include <ctype.h>
  69. #endif
  70. #ifdef _WINDOWS
  71. #include <windows.h>
  72. #include <wininet.h>
  73. #include "hlxclib/io.h"
  74. #endif /* _WINDOWS */
  75. #include "hxstrutl.h"
  76. #include "hxdate.h"
  77. #include "hxheap.h"
  78. #ifdef _DEBUG
  79. #undef HX_THIS_FILE
  80. static const char HX_THIS_FILE[] = __FILE__;
  81. #endif
  82. #if defined(_OPENWAVE)
  83. HX_DATETIME 
  84. HX_GET_DATETIME(void)
  85. {
  86.     op_tm tm;
  87.     time_t t = op_time();
  88.     HX_DATETIME dt;
  89.     // XXXSAB - localtime?
  90.     op_gmtime(t, &tm);
  91.     dt.second = tm.tm_sec;
  92.     dt.minute = tm.tm_min;
  93.     dt.hour = tm.tm_hour;
  94.     dt.dayofweek = tm.tm_wday;
  95.     dt.dayofmonth = tm.tm_mday;
  96.     dt.dayofyear = tm.tm_yday;
  97.     dt.month = tm.tm_mon + 1; // 0 based (11 = December)
  98.     dt.year = tm.tm_year;
  99.     dt.gmtDelta = 0; // or something
  100.     return dt;
  101. }
  102. #elif (defined(_WINDOWS) || defined(WIN32) || defined(_WIN32) || defined(_WINCE))
  103. HX_DATETIME HX_GET_DATETIME(void)
  104. {
  105. HX_DATETIME datetime;
  106. #ifdef _WINCE
  107. TIME_ZONE_INFORMATION tzinfo;
  108. ::GetTimeZoneInformation(&tzinfo);
  109. #else
  110. // init the timezone data
  111. _tzset();
  112. #endif /* _WINCE */
  113. // Get the local time
  114. time_t lTime;
  115. struct tm* tmDateTime;
  116. time(&lTime);
  117. tmDateTime=localtime(&lTime);
  118. datetime.second = tmDateTime->tm_sec;
  119. datetime.minute = tmDateTime->tm_min;
  120. datetime.hour = tmDateTime->tm_hour;
  121. datetime.dayofweek = tmDateTime->tm_wday;
  122. datetime.dayofmonth = tmDateTime->tm_mday;
  123. datetime.dayofyear = tmDateTime->tm_yday + 1;
  124. datetime.month = tmDateTime->tm_mon + 1;
  125. datetime.year = tmDateTime->tm_year;
  126. #ifdef _WINCE
  127. datetime.gmtDelta = -1 * (tzinfo.Bias / 60);  // minutes to hours
  128. #else
  129. datetime.gmtDelta = -1*(_timezone/3600); //seconds to hours
  130. #endif /* _WINCE */
  131. return datetime;
  132. }
  133. #elif _MACINTOSH
  134. #ifndef _MAC_MACHO
  135. #include <datetimeutils.h>
  136. #endif
  137. HX_DATETIME HX_GET_DATETIME(void)
  138. {
  139. HX_DATETIME datetime;
  140. ULONG32 secs;
  141. LongDateRec ldate;
  142. ::GetDateTime(&secs);
  143. LongDateTime time = secs;
  144. ::LongSecondsToDate(&time, &ldate);
  145. datetime.second = ldate.ld.second;
  146. datetime.minute = ldate.ld.minute;
  147. datetime.hour = ldate.ld.hour;
  148. datetime.dayofweek = ldate.ld.dayOfWeek - 1;
  149. datetime.dayofmonth = ldate.ld.day;
  150. datetime.dayofyear = ldate.ld.dayOfYear;
  151. datetime.month = ldate.ld.month;
  152. datetime.year = ldate.ld.year - HX_YEAR_OFFSET;
  153. // get time zone in seconds
  154. MachineLocation loc;
  155. ::ReadLocation(&loc);
  156. // we need to extend the sign since the gmtDelta is a 3 byte value
  157. long gmtDelta = loc.u.gmtDelta;
  158. long internalGmtDelta = gmtDelta & 0x00FFFFFF;
  159. if(internalGmtDelta & 0x00800000)
  160. {
  161. internalGmtDelta = internalGmtDelta | 0xFF000000;
  162. }
  163. // convert to hours
  164. datetime.gmtDelta = (short)internalGmtDelta/3600; 
  165. return datetime;
  166. }
  167. #elif defined(_UNIX) || defined(_SYMBIAN)
  168. HX_DATETIME 
  169. HX_GET_DATETIME(void)
  170. {
  171.     struct tm* tm;
  172.     time_t t = time(0);
  173.     HX_DATETIME dt;
  174.     tm = localtime(&t);
  175.     dt.second = tm->tm_sec;
  176.     dt.minute = tm->tm_min;
  177.     dt.hour = tm->tm_hour;
  178.     dt.dayofweek = tm->tm_wday;
  179.     dt.dayofmonth = tm->tm_mday;
  180.     dt.dayofyear = tm->tm_yday;
  181.     dt.month = tm->tm_mon + 1; // 0 based (11 = December)
  182.     dt.year = tm->tm_year;
  183.     dt.gmtDelta = 0; // or something
  184.     return dt;
  185. }
  186. // unix code added here
  187. #endif // _WIN32 
  188. //  Returns the number of the month given or -1 on error.
  189. int MonthNo (char * month)
  190. {
  191.     int ret = -1;
  192.     
  193.     if (!strncasecmp(month, "JAN", 3))
  194.         ret = 0;
  195.     else if (!strncasecmp(month, "FEB", 3))
  196.         ret = 1;
  197.     else if (!strncasecmp(month, "MAR", 3))
  198.         ret = 2;
  199.     else if (!strncasecmp(month, "APR", 3))
  200.         ret = 3;
  201.     else if (!strncasecmp(month, "MAY", 3))
  202.         ret = 4;
  203.     else if (!strncasecmp(month, "JUN", 3))
  204.         ret = 5;
  205.     else if (!strncasecmp(month, "JUL", 3))
  206.         ret = 6;
  207.     else if (!strncasecmp(month, "AUG", 3))
  208.         ret = 7;
  209.     else if (!strncasecmp(month, "SEP", 3))
  210.         ret = 8;
  211.     else if (!strncasecmp(month, "OCT", 3))
  212.         ret = 9;
  213.     else if (!strncasecmp(month, "NOV", 3))
  214.         ret = 10;
  215.     else if (!strncasecmp(month, "DEC", 3))
  216.         ret = 11;
  217.     else 
  218.     {
  219.         ret = -1;
  220.     }
  221.     return ret;
  222. }
  223. time_t ParseDate(char *date_string)
  224. {
  225. #ifdef _OPENWAVE
  226.     struct op_tm tm;
  227.     if (op_time_parse_http_date(date_string, &tm))
  228.     {
  229.         return op_timegm(&tm);
  230.     }
  231.     return 0;
  232. #else
  233.     struct  tm time_info;         // Points to static tm structure
  234.     char*   ip = NULL;
  235.     char    mname[256] = {0}; /* Flawfinder: ignore */
  236.     time_t  rv;
  237.     memset(&time_info, 0, sizeof(struct tm));
  238.     // Whatever format we're looking at, it will start with weekday.
  239.     // Skip to first space
  240.     if(!(ip = strchr(date_string,' ')))
  241.     {
  242.         return 0;
  243.     }
  244.     else
  245.     {
  246. while(IS_SPACE(*ip))
  247. {
  248.             ++ip;
  249. }
  250.     }
  251.     /* make sure that the date is less than 256 
  252.      * That will keep mname from ever overflowing 
  253.      */
  254.     if(255 < strlen(ip))
  255.     {
  256. return 0;
  257.     }
  258.     if(isalpha(*ip)) 
  259.     {
  260. // ctime
  261. sscanf(ip, (strstr(ip, "DST") ? "%s %d %d:%d:%d %*s %d"
  262. : "%s %d %d:%d:%d %d"),
  263.    mname,
  264.    &time_info.tm_mday,
  265.    &time_info.tm_hour,
  266.    &time_info.tm_min,
  267.    &time_info.tm_sec,
  268.    &time_info.tm_year);
  269. time_info.tm_year -= 1900;
  270.     }
  271.     else if(ip[2] == '-') 
  272.     {
  273.         // RFC 850 (normal HTTP)
  274.         char t[256] = {0}; /* Flawfinder: ignore */
  275.         sscanf(ip,"%s %d:%d:%d", t,
  276.     &time_info.tm_hour,
  277.     &time_info.tm_min,
  278.     &time_info.tm_sec);
  279.         t[2] = '';
  280.         time_info.tm_mday = atoi(t);
  281.         t[6] = '';
  282.         SafeStrCpy(mname, &t[3], 256);
  283.         time_info.tm_year = atoi(&t[7]);
  284.         // Prevent wraparound from ambiguity
  285.         if(time_info.tm_year < 70)
  286. {
  287.             time_info.tm_year += 100;
  288. }
  289. else if(time_info.tm_year > 1900)
  290. {
  291.     time_info.tm_year -= 1900;
  292. }
  293.     }
  294.     else 
  295.     {
  296.         // RFC 822
  297.         sscanf(ip,"%d %s %d %d:%d:%d",&time_info.tm_mday,
  298.     mname,
  299.     &time_info.tm_year,
  300.     &time_info.tm_hour,
  301.     &time_info.tm_min,
  302.     &time_info.tm_sec);
  303. // since tm_year is years since 1900 and the year we parsed
  304.   // is absolute, we need to subtract 1900 years from it
  305. time_info.tm_year -= 1900;
  306.     }
  307.     time_info.tm_mon = MonthNo(mname);
  308.     if(time_info.tm_mon == -1)
  309.     {
  310. return 0;
  311.     }
  312.     rv = mktime(&time_info);
  313. #ifndef NO_TM_ISDST
  314.     if(time_info.tm_isdst)
  315.     {
  316. rv -= 3600;
  317.     }
  318. #endif /* NO_TM_ISDST */
  319.     if(rv == -1)
  320.     {
  321.         return(0);
  322.     }
  323.     else
  324.     {
  325. return(rv);
  326.     }
  327. #endif /* _OPENWAVE */
  328. }