home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip532.zip / amiga / time_lib.c < prev    next >
C/C++ Source or Header  |  1997-10-29  |  15KB  |  520 lines

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