time_lib.c
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:16k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. #define __amiga_time_lib_c
  2. /* -----------------------------------------------------------------------------
  3. This source is copyrighted by Norbert Pueschel <pueschel@imsdd.meb.uni-bonn.de>
  4. From 'clockdaemon.readme':
  5. (available from Aminet, main site is ftp.wustl.edu:/pub/aminet/ under
  6.  util/time/clockdaemon.lha)
  7. "The original SAS/C functions gmtime, localtime, mktime and time do not
  8. work correctly. The supplied link library time.lib contains replacement
  9. functions for them."
  10. The time.lib library consists of three parts (time.c, timezone.c and version.c),
  11. all included here. [time.lib 1.2 (1997-04-02)]
  12. Permission is granted to the Info-ZIP group to redistribute the time.lib source.
  13. The use of time.lib functions in own, noncommercial programs is permitted.
  14. It is only required to add the timezone.doc to such a distribution.
  15. Using the time.lib library in commercial software (including Shareware) is only
  16. permitted after prior consultation of the author.
  17. ------------------------------------------------------------------------------*/
  18. /* History */
  19. /* 30 Mar 1997, Haidinger Walter, added AVAIL_GETVAR macro to support OS <V36 */
  20. /* 24 May 1997, Haidinger Walter, added NO_MKTIME macro to allow use of Zip's */
  21. /*              mktime.c. NO_MKTIME must be defined in the makefile, though.  */
  22. /* 25 May 1997, Haidinger Walter, moved set_TZ() here from filedate.c         */
  23. /* 20 Jul 1997, Paul Kienitz, adapted for Aztec C, added mkgmtime(),          */
  24. /*              debugged, and made New York settings default, as is common.   */
  25. /* 30 Sep 1997, Paul Kienitz, restored real_timezone_is_set flag              */
  26. /* 19 Oct 1997, Paul Kienitz, corrected 16 bit multiply overflow bug          */
  27. /* 21 Oct 1997, Chr. Spieler, shortened long lines, removed more 16 bit stuff */
  28. /*              (n.b. __stdoffset and __dstoffset now have to be long ints)   */
  29. /* 25 Oct 1997, Paul Kienitz, cleanup, make tzset() not redo work needlessly  */
  30. /* 29 Oct 1997, Chr. Spieler, initialized globals _TZ, real_timezone_is_set   */
  31. /* 31 Dec 1997, Haidinger Walter, created z-time.h to overcome sas/c header   */
  32. /*              dependencies. TZ_ENVVAR macro added. Happy New Year!          */
  33. /* 25 Apr 1998, Chr. Spieler, __timezone must always contain __stdoffset      */
  34. /* 28 Apr 1998, Chr. Spieler, P. Kienitz, changed __daylight to standard usage */
  35. #ifdef __SASC
  36. #  include <proto/dos.h>
  37. #  include <proto/locale.h>
  38. #  include <proto/exec.h>
  39.    /* this setenv() is in amiga/filedate.c */
  40.    extern int setenv(const char *var, const char *value, int overwrite);
  41. #else
  42. #  include <clib/dos_protos.h>
  43. #  include <clib/locale_protos.h>
  44. #  include <clib/exec_protos.h>
  45. #  include <pragmas/exec_lib.h>
  46. #  include <pragmas/dos_lib.h>
  47. #  include <pragmas/locale_lib.h>
  48. /* Info-ZIP accesses these by their standard names: */
  49. #  define __timezone timezone
  50. #  define __daylight daylight
  51. #  define __tzset    tzset
  52. #endif
  53. #define NO_TIME_H
  54. #include "amiga/z-time.h"
  55. #include <exec/execbase.h>
  56. #include <clib/alib_stdio_protos.h>
  57. #include <string.h>
  58. #include <stdlib.h>
  59. extern struct ExecBase *SysBase;
  60. extern char *getenv(const char *var);
  61. typedef unsigned long time_t;
  62. struct tm {
  63.     int tm_sec;      /* seconds after the minute */
  64.     int tm_min;      /* minutes after the hour */
  65.     int tm_hour;     /* hours since midnight */
  66.     int tm_mday;     /* day of the month */
  67.     int tm_mon;      /* months since January */
  68.     int tm_year;     /* years since 1900 */
  69.     int tm_wday;     /* days since Sunday */
  70.     int tm_yday;     /* days since January 1 */
  71.     int tm_isdst;    /* Daylight Savings Time flag */
  72. };
  73. struct dstdate {
  74.   enum { JULIAN0, JULIAN, MWD } dd_type;
  75.   int                           dd_day;
  76.   int                           dd_week;
  77.   int                           dd_month;
  78.   int                           dd_secs;
  79. };
  80. static struct dstdate __dststart;
  81. static struct dstdate __dstend;
  82. #define isleapyear(y)    (((y)%4==0&&(!((y)%100==0)||((y)%400==0)))?1:0)
  83. #define yearlen(y)       (isleapyear(y)?366:365)
  84. #define weekday(d)       (((d)+4)%7)
  85. #define jan1ofyear(y)    (((y)-70)*365+((y)-69)/4-((y)-1)/100+((y)+299)/400)
  86. #define wdayofyear(y)    weekday(jan1ofyear(y))
  87. #define AMIGA2UNIX       252460800 /* seconds between 1.1.1970 and 1.1.1978 */
  88. #define CHECK            300       /* min. time between checks of IXGMTOFFSET */
  89. #define GETVAR_REQVERS   36L       /* required OS version for GetVar() */
  90. #define AVAIL_GETVAR     (SysBase->LibNode.lib_Version >= GETVAR_REQVERS)
  91. #ifndef TZ_ENVVAR
  92. #  define TZ_ENVVAR      "TZ"      /* environment variable to parse */
  93. #endif
  94. #ifdef __SASC
  95.   extern int  __daylight;
  96.   extern long __timezone;
  97.   extern char *__tzname[2];
  98.   extern char *_TZ;
  99. #else
  100.   int __daylight;
  101.   long __timezone;
  102.   char *__tzname[2];
  103.   char *_TZ = NULL;
  104. #endif
  105. int real_timezone_is_set = FALSE;   /* globally visible TZ_is_valid signal */
  106. char __tzstn[MAXTIMEZONELEN];
  107. char __tzdtn[MAXTIMEZONELEN];
  108. /* the following 4 variables are only used internally; make them static ? */
  109. int __isdst;
  110. time_t __nextdstchange;
  111. long __stdoffset;
  112. long __dstoffset;
  113. #define TZLEN 64
  114. static char TZ[TZLEN];
  115. static struct tm TM;
  116. static const unsigned short days[2][13] = {
  117.   { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
  118.   { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
  119. };
  120. #ifndef NO_MKTIME     /* only used by mktime() */
  121. static const unsigned short monlen[2][12] = {
  122.   { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
  123.   { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
  124. };
  125. #endif
  126. /* internal prototypes */
  127. static time_t dst2time(int year,struct dstdate *dst);
  128. static void time2tm(time_t time);
  129. static int checkdst(time_t time);
  130. #ifndef NO_MKTIME
  131. static void normalize(int *i,int *j,int norm);
  132. #endif
  133. static long gettime(char **s);
  134. static void getdstdate(char **s,struct dstdate *dst);
  135. #ifdef __SASC
  136. void set_TZ(long time_zone, int day_light);
  137. #endif
  138. /* prototypes for sc.lib replacement functions */
  139. struct tm *gmtime(const time_t *t);
  140. struct tm *localtime(const time_t *t);
  141. #ifndef NO_MKTIME
  142. time_t mkgmtime(struct tm *tm);
  143. time_t mktime(struct tm *tm);
  144. #endif
  145. time_t time(time_t *tm);
  146. void __tzset(void);
  147. static time_t dst2time(int year,struct dstdate *dst)
  148. {
  149.   int isleapyear,week,mon,mday;
  150.   mon = 0;
  151.   mday = dst->dd_day;
  152.   isleapyear = isleapyear(year);
  153.   switch(dst->dd_type) {
  154.     case JULIAN:
  155.       if(!isleapyear || dst->dd_day <= 59) break;
  156.     default:
  157.       mday++;
  158.       break;
  159.     case MWD:
  160.       mon = dst->dd_month-1;
  161.       week = dst->dd_week;
  162.       if(week == 5) {
  163.         mon++;
  164.         week = 0;
  165.       }
  166.       mday = dst->dd_day - weekday(jan1ofyear(year)+days[isleapyear][mon]);
  167.       if(mday < 0) mday += 7;
  168.       mday += (week - 1) * 7 + 1;
  169.       break;
  170.   }
  171.   return((time_t)(jan1ofyear(year)+days[isleapyear][mon]+mday-1)*(time_t)86400L+
  172.          (time_t)dst->dd_secs);
  173. }
  174. static void time2tm(time_t time)
  175. {
  176.   int isleapyear;
  177.   TM.tm_sec  = time % 60;
  178.   time /= 60;
  179.   TM.tm_min  = time % 60;
  180.   time /= 60;
  181.   TM.tm_hour = time % 24;
  182.   time /= 24;
  183.   TM.tm_year = time/365 + 70; /* guess year */
  184.   while((TM.tm_yday = time - jan1ofyear(TM.tm_year)) < 0) TM.tm_year--;
  185.   isleapyear = isleapyear(TM.tm_year);
  186.   for(TM.tm_mon = 0;
  187.       TM.tm_yday >= days[isleapyear][TM.tm_mon+1];
  188.       TM.tm_mon++);
  189.   TM.tm_mday = TM.tm_yday - days[isleapyear][TM.tm_mon] + 1;
  190.   TM.tm_wday = (time+4)%7;
  191. }
  192. static int checkdst(time_t time)
  193. {
  194.   int year,day;
  195.   time_t t,u;
  196.   day = time / 86400L;
  197.   year = day / 365 + 70; /* guess year */
  198.   while(day - jan1ofyear(year) < 0) year--;
  199.   t = dst2time(year,&__dststart) + __stdoffset;
  200.   u = dst2time(year,&__dstend)   + __dstoffset;
  201.   if(u > t) {
  202.     return((time >= t && time < u)?1:0);
  203.   }
  204.   else {
  205.     return((time < u || time >= t)?1:0);
  206.   }
  207. }
  208. struct tm *gmtime(const time_t *t)
  209. {
  210.   TM.tm_isdst = 0;
  211.   time2tm(*t);
  212.   return(&TM);
  213. }
  214. struct tm *localtime(const time_t *t)
  215. {
  216.   if(!_TZ) __tzset();
  217.   TM.tm_isdst = checkdst(*t);
  218.   time2tm(*t - (TM.tm_isdst ? __dstoffset : __stdoffset));
  219.   return(&TM);
  220. }
  221. #ifndef NO_MKTIME   /* normalize() only used by mktime() */
  222. static void normalize(int *i,int *j,int norm)
  223. {
  224.   while(*i < 0) {
  225.     *i += norm;
  226.     (*j)--;
  227.   }
  228.   while(*i >= norm) {
  229.     *i -= norm;
  230.     (*j)++;
  231.   }
  232. }
  233. time_t mkgmtime(struct tm *tm)
  234. {
  235.   time_t t;
  236.   normalize(&tm->tm_sec,&tm->tm_min,60);
  237.   normalize(&tm->tm_min,&tm->tm_hour,60);
  238.   normalize(&tm->tm_hour,&tm->tm_mday,24);
  239.   normalize(&tm->tm_mon,&tm->tm_year,12);
  240.   while(tm->tm_mday > monlen[isleapyear(tm->tm_year)][tm->tm_mon]) {
  241.     tm->tm_mday -= monlen[isleapyear(tm->tm_year)][tm->tm_mon];
  242.     tm->tm_mon++;
  243.     if(tm->tm_mon == 12) {
  244.       tm->tm_mon = 0;
  245.       tm->tm_year++;
  246.     }
  247.   }
  248.   while(tm->tm_mday < 0) {
  249.     tm->tm_mon--;
  250.     if(tm->tm_mon == -1) {
  251.       tm->tm_mon = 11;
  252.       tm->tm_year--;
  253.     }
  254.     tm->tm_mday += monlen[isleapyear(tm->tm_year)][tm->tm_mon];
  255.   }
  256.   tm->tm_yday = tm->tm_mday + days[isleapyear(tm->tm_year)][tm->tm_mon] - 1;
  257.   t = jan1ofyear(tm->tm_year) + tm->tm_yday;
  258.   tm->tm_wday = weekday(t);
  259.   if(tm->tm_year < 70) return((time_t)0);
  260.   t = t * 86400L + tm->tm_hour * 3600L + tm->tm_min * 60L + (time_t)tm->tm_sec;
  261.   return(t);
  262. }
  263. time_t mktime(struct tm *tm)
  264. {
  265.   time_t t;
  266.   if(!_TZ) __tzset();
  267.   t = mkgmtime(tm);
  268.   if(tm->tm_isdst < 0) tm->tm_isdst = checkdst(t);
  269.   t += tm->tm_isdst ? __dstoffset : __stdoffset;
  270.   return(t);
  271. }
  272. #endif /* !NO_MKTIME */
  273. static long gettime(char **s)
  274. {
  275.   long num,time;
  276.   for(num = 0;**s >= '0' && **s <= '9';(*s)++) {
  277.     num = 10*num + (**s - '0');
  278.   }
  279.   time = 3600L * num;
  280.   if(**s == ':') {
  281.     (*s)++;
  282.     for(num = 0;**s >= '0' && **s <= '9';(*s)++) {
  283.       num = 10*num + (**s - '0');
  284.     }
  285.     time += 60 * num;
  286.     if(**s == ':') {
  287.       (*s)++;
  288.       for(num = 0;**s >= '0' && **s <= '9';(*s)++) {
  289.         num = 10*num + (**s - '0');
  290.       }
  291.       time += num;
  292.     }
  293.   }
  294.   return(time);
  295. }
  296. static void getdstdate(char **s,struct dstdate *dst)
  297. {
  298.   switch(**s) {
  299.     case 'J':
  300.     case 'j':
  301.       (*s)++;
  302.       dst->dd_type = JULIAN;
  303.       for(dst->dd_day = 0;**s >= '0' && **s <= '9';(*s)++) {
  304.         dst->dd_day = 10*dst->dd_day + (**s - '0');
  305.       }
  306.       break;
  307.     case 'M':
  308.     case 'm':
  309.       (*s)++;
  310.       dst->dd_type = MWD;
  311.       for(dst->dd_month = 0;**s >= '0' && **s <= '9';(*s)++) {
  312.         dst->dd_month = 10*dst->dd_month + (**s - '0');
  313.       }
  314.       if(**s != '.') return;
  315.       (*s)++;
  316.       for(dst->dd_week = 0;**s >= '0' && **s <= '9';(*s)++) {
  317.         dst->dd_week = 10*dst->dd_week + (**s - '0');
  318.       }
  319.       if(**s != '.') return;
  320.       (*s)++;
  321.       for(dst->dd_day = 0;**s >= '0' && **s <= '9';(*s)++) {
  322.         dst->dd_day = 10*dst->dd_day + (**s - '0');
  323.       }
  324.       break;
  325.     default:
  326.       dst->dd_type = JULIAN0;
  327.       for(dst->dd_day = 0;**s >= '0' && **s <= '9';(*s)++) {
  328.         dst->dd_day = 10*dst->dd_day + (**s - '0');
  329.       }
  330.       break;
  331.   }
  332.   if(**s == '/') {
  333.     (*s)++;
  334.     dst->dd_secs = gettime(s);
  335.   }
  336. }
  337. void __tzset(void)
  338. {
  339.   char *s,*t;
  340.   int minus = 0;
  341.   time_t tm;
  342.   struct Library *LocaleBase;
  343.   struct Locale *loc = NULL;
  344.   if (real_timezone_is_set)
  345.     return;
  346.   real_timezone_is_set = TRUE;
  347.   __dststart.dd_secs = __dstend.dd_secs = 7200;
  348.   __dststart.dd_type = __dstend.dd_type = MWD;
  349.   __dststart.dd_month = 4;
  350.   __dststart.dd_week = 1;
  351.   __dstend.dd_month = 10;
  352.   __dstend.dd_week = 5;
  353.   __dststart.dd_day = __dstend.dd_day = 0; /* sunday */
  354.   _TZ = NULL;
  355.   if (AVAIL_GETVAR) {                /* GetVar() available? */
  356.     if(GetVar(TZ_ENVVAR,TZ,TZLEN,GVF_GLOBAL_ONLY) > 0)
  357.       _TZ = TZ;
  358.   } else
  359.       _TZ = getenv(TZ_ENVVAR);
  360.   if (_TZ == NULL || !_TZ[0]) {
  361.     static char gmt[MAXTIMEZONELEN] = DEFAULT_TZ_STR;
  362.     LocaleBase = OpenLibrary("locale.library",0);
  363.     if(LocaleBase) {
  364.       loc = OpenLocale(0);  /* cannot return null */
  365.       if (loc->loc_GMTOffset == -300 || loc->loc_GMTOffset == 300) {
  366.         BPTR eh;
  367.         if (eh = Lock("ENV:sys/locale.prefs", ACCESS_READ))
  368.           UnLock(eh);
  369.         else {
  370.           real_timezone_is_set = FALSE;
  371.           loc->loc_GMTOffset = 300; /* Amigados bug: default when locale is */
  372.         }                           /* not initialized can have wrong sign  */
  373.       }
  374.       sprintf(gmt, "GMT%ld:%02ld", loc->loc_GMTOffset / 60L,
  375.               labs(loc->loc_GMTOffset) % 60L);
  376.       CloseLocale(loc);
  377.       CloseLibrary(LocaleBase);
  378.     } else
  379.       real_timezone_is_set = FALSE;
  380.     _TZ = gmt;
  381.   }
  382.   for(s = _TZ,t = __tzstn;*s && *s != '+' && *s != '-' && *s != ',' &&
  383.       (*s < '0' || *s > '9');s++) {
  384.     if(t-__tzstn < MAXTIMEZONELEN-1) *(t++) = *s;
  385.   }
  386.   *t = '';
  387.   if(*s == '+') {
  388.     s++;
  389.   }
  390.   else {
  391.     if(*s == '-') {
  392.       minus = 1;
  393.       s++;
  394.     }
  395.   }
  396.   __stdoffset = gettime(&s);
  397.   if(minus) {
  398.     __stdoffset *= -1;
  399.   }
  400.   if(*s) {
  401.     minus = 0;
  402.     for(t = __tzdtn;*s && *s != '+' && *s != '-' && *s != ',' &&
  403.         (*s < '0' || *s > '9');s++) {
  404.       if(t-__tzdtn < MAXTIMEZONELEN-1) *(t++) = *s;
  405.     }
  406.     *t = '';
  407.     if(*s == '+') {
  408.       s++;
  409.     }
  410.     else {
  411.       if(*s == '-') {
  412.         minus = 1;
  413.         s++;
  414.       }
  415.     }
  416.     if(*s && *s != ',') {
  417.       __dstoffset = gettime(&s);
  418.       if(minus) {
  419.         __dstoffset *= -1;
  420.       }
  421.     }
  422.     else {
  423.       __dstoffset = __stdoffset - 3600L;
  424.     }
  425.     if(*s == ',') {
  426.       s++;
  427.       getdstdate(&s,&__dststart);
  428.       if(*s == ',') {
  429.         s++;
  430.         getdstdate(&s,&__dstend);
  431.       }
  432.     }
  433.   }
  434.   else {
  435.     __dstoffset = __stdoffset;
  436.   }
  437.   time2tm(time(&tm));
  438.   __isdst = checkdst(tm);
  439.   __daylight = (__dstoffset != __stdoffset);
  440.   __timezone = __stdoffset;
  441.   __nextdstchange = dst2time(TM.tm_year, __isdst ? &__dstend : &__dststart);
  442.   if(tm >= __nextdstchange) {
  443.     __nextdstchange = dst2time(TM.tm_year+1,
  444.                                __isdst ? &__dstend : &__dststart);
  445.   }
  446.   __tzname[0] = __tzstn;
  447.   __tzname[1] = __tzdtn;
  448. #ifdef __SASC
  449.   if (loc)         /* store TZ envvar if data read from locale */
  450.     set_TZ(__timezone, __daylight);
  451. #endif
  452. }
  453. time_t time(time_t *tm)
  454. {
  455.   static time_t last_check = 0;
  456.   static struct _ixgmtoffset {
  457.     LONG  Offset;
  458.     UBYTE DST;
  459.     UBYTE Null;
  460.   } ixgmtoffset;
  461.   static char *envvarstr; /* ptr to environm. string (used if !AVAIL_GETVAR) */
  462.   struct DateStamp ds;
  463.   time_t now;
  464.   DateStamp(&ds);
  465.   now = ds.ds_Days * 86400L + ds.ds_Minute * 60L +
  466.         ds.ds_Tick / TICKS_PER_SECOND;
  467.   if(now - last_check > CHECK) {
  468.     last_check = now;
  469.     if (AVAIL_GETVAR)    /* GetVar() available? */
  470.       if(GetVar("IXGMTOFFSET",(STRPTR)&ixgmtoffset,6,
  471.                 GVF_BINARY_VAR|GVF_GLOBAL_ONLY) == -1) {
  472.         __tzset();
  473.         ixgmtoffset.Offset = __isdst ? __dstoffset : __stdoffset;
  474.       }
  475.     else
  476.       if (envvarstr=getenv("IXGMTOFFSET")) {
  477.         ixgmtoffset = *((struct _ixgmtoffset *)envvarstr);  /* copy to struct */
  478.         __tzset();
  479.         ixgmtoffset.Offset = __isdst ? __dstoffset : __stdoffset;
  480.       }
  481.   }
  482.   now += AMIGA2UNIX;
  483.   now += ixgmtoffset.Offset;
  484.   if(tm) *tm = now;
  485.   return(now);
  486. }
  487. #ifdef __SASC
  488. /* Stores data from timezone and daylight to ENV:TZ.                  */
  489. /* ENV:TZ is required to exist by some other SAS/C library functions, */
  490. /* like stat() or fstat().                                            */
  491. void set_TZ(long time_zone, int day_light)
  492. {
  493.   char put_tz[MAXTIMEZONELEN];  /* string for putenv: "TZ=aaabbb:bb:bbccc" */
  494.   int offset;
  495.   void *exists;     /* dummy ptr to see if global envvar TZ already exists */
  496.   if (AVAIL_GETVAR)
  497.      exists = (void *)FindVar(TZ_ENVVAR,GVF_GLOBAL_ONLY);  /* OS V36+ */
  498.   else
  499.      exists = (void *)getenv(TZ_ENVVAR);
  500.   /* see if there is already an envvar TZ_ENVVAR. If not, create it */
  501.   if (exists == NULL) {
  502.     /* create TZ string by pieces: */
  503.     sprintf(put_tz, "GMT%+ld", time_zone / 3600L);
  504.     if (time_zone % 3600L) {
  505.       offset = (int) labs(time_zone % 3600L);
  506.       sprintf(put_tz + strlen(put_tz), ":%02d", offset / 60);
  507.       if (offset % 60)
  508.         sprintf(put_tz + strlen(put_tz), ":%02d", offset % 60);
  509.     }
  510.     if (day_light)
  511.       strcat(put_tz,"DST");
  512.     if (AVAIL_GETVAR)       /* store TZ to ENV:TZ. */
  513.        SetVar(TZ_ENVVAR,put_tz,-1,GVF_GLOBAL_ONLY);     /* OS V36+ */
  514.     else
  515.        setenv(TZ_ENVVAR,put_tz, 1);
  516.   }
  517. }
  518. #endif /* __SASC */