env_os2.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:6k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: OS/2 environment routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 1 August 1988
  13.  * Last Edited: 10 June 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made available
  24.  * "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. static char *myLocalHost = NIL; /* local host name */
  36. static char *myHomeDir = NIL; /* home directory name */
  37. static char *myNewsrc = NIL; /* newsrc file name */
  38. #include "write.c" /* include safe writing routines */
  39. /* Environment manipulate parameters
  40.  * Accepts: function code
  41.  *     function-dependent value
  42.  * Returns: function-dependent return value
  43.  */
  44. void *env_parameters (long function,void *value)
  45. {
  46.   switch ((int) function) {
  47.   case SET_HOMEDIR:
  48.     myHomeDir = cpystr ((char *) value);
  49.     break;
  50.   case GET_HOMEDIR:
  51.     value = (void *) myHomeDir;
  52.     break;
  53.   case SET_LOCALHOST:
  54.     myLocalHost = cpystr ((char *) value);
  55.     break;
  56.   case GET_LOCALHOST:
  57.     value = (void *) myLocalHost;
  58.     break;
  59.   case SET_NEWSRC:
  60.     if (myNewsrc) fs_give ((void **) &myNewsrc);
  61.     myNewsrc = cpystr ((char *) value);
  62.     break;
  63.   case GET_NEWSRC:
  64.     if (!myNewsrc) { /* set news file name if not defined */
  65.       char tmp[MAILTMPLEN];
  66.       sprintf (tmp,"%s\newsrc",myhomedir ());
  67.       myNewsrc = cpystr (tmp);
  68.     }
  69.     value = (void *) myNewsrc;
  70.     break;
  71.   default:
  72.     value = NIL; /* error case */
  73.     break;
  74.   }
  75.   return value;
  76. }
  77. /* Write current time
  78.  * Accepts: destination string
  79.  *     optional format of day-of-week prefix
  80.  *     format of date and time
  81.  *     flag whether to append symbolic timezone
  82.  */
  83. static void do_date (char *date,char *prefix,char *fmt,int suffix)
  84. {
  85.   time_t tn = time (0);
  86.   struct tm *t = gmtime (&tn);
  87.   int zone = t->tm_hour * 60 + t->tm_min;
  88.   int julian = t->tm_yday;
  89.   t = localtime (&tn); /* get local time now */
  90. /* minus UTC minutes since midnight */
  91.   zone = t->tm_hour * 60 + t->tm_min - zone;
  92.   /* julian can be one of:
  93.    *  36x  local time is December 31, UTC is January 1, offset -24 hours
  94.    *    1  local time is 1 day ahead of UTC, offset +24 hours
  95.    *    0  local time is same day as UTC, no offset
  96.    *   -1  local time is 1 day behind UTC, offset -24 hours
  97.    * -36x  local time is January 1, UTC is December 31, offset +24 hours
  98.    */
  99.   if (julian = t->tm_yday -julian)
  100.     zone += ((julian < 0) == (abs (julian) == 1)) ? -24*60 : 24*60;
  101.   if (prefix) { /* want day of week? */
  102.     sprintf (date,prefix,days[t->tm_wday]);
  103.     date += strlen (date); /* make next sprintf append */
  104.   }
  105. /* output the date */
  106.   sprintf (date,fmt,t->tm_mday,months[t->tm_mon],t->tm_year+1900,
  107.    t->tm_hour,t->tm_min,t->tm_sec,zone/60,abs (zone) % 60);
  108.   if (suffix) { /* append timezone suffix if desired */
  109.     tzset (); /* get timezone from TZ environment stuff */
  110.     sprintf (date + strlen (date)," (%s)",
  111.      tzname[daylight ? (((struct tm *) t)->tm_isdst > 0) : 0]);
  112.   }
  113. }
  114. /* Write current time in RFC 822 format
  115.  * Accepts: destination string
  116.  */
  117. void rfc822_date (char *date)
  118. {
  119.   do_date (date,"%s, ","%d %s %d %02d:%02d:%02d %+03d%02d",T);
  120. }
  121. /* Write current time in internal format
  122.  * Accepts: destination string
  123.  */
  124. void internal_date (char *date)
  125. {
  126.   do_date (date,NIL,"%02d-%s-%d %02d:%02d:%02d %+03d%02d",NIL);
  127. }
  128. /* Return my home directory name
  129.  * Returns: my home directory name
  130.  */
  131. char *myhomedir ()
  132. {
  133.   if (!myHomeDir) { /* get home directory name if not yet known */
  134.     char *s;
  135.     if ((s = getenv ("PINEHOME")) || (s = getenv ("HOME")) ||
  136. (s = getenv ("ETC"))) {
  137.       myHomeDir = cpystr (s);
  138.       while (s = strchr (myHomeDir,'/')) *s = '\';
  139.       if ((s = strrchr (myHomeDir,'\')) && !s[1]) *s = '';
  140.     }
  141.     else myHomeDir = cpystr ("");
  142.   }
  143.   return myHomeDir;
  144. }
  145. /* Return mailbox file name
  146.  * Accepts: destination buffer
  147.  *     mailbox name
  148.  * Returns: file name
  149.  */
  150. char *mailboxfile (char *dst,char *name)
  151. {
  152.   char *s;
  153.   char *ext = (char *) mail_parameters (NIL,GET_EXTENSION,NIL);
  154. /* forbid extraneous extensions */
  155.   if ((s = strchr ((s = strrchr (name,'\')) ? s : name,'.')) &&
  156.       ((ext = (char *) mail_parameters (NIL,GET_EXTENSION,NIL)) ||
  157.        strchr (s+1,'.'))) return NIL;
  158. /* absolute path name? */
  159.   if ((*name == '\') || (name[1] == ':')) strcpy (dst,name);
  160.   else sprintf (dst,"%s\%s",myhomedir (),name);
  161.   if (ext) sprintf (dst + strlen (dst),".%s",ext);
  162.   return dst;
  163. }
  164. /* Determine default prototype stream to user
  165.  * Accepts: type (NIL for create, T for append)
  166.  * Returns: default prototype stream
  167.  */
  168. MAILSTREAM *default_proto (long type)
  169. {
  170.   extern MAILSTREAM DEFAULTPROTO;
  171.   return &DEFAULTPROTO; /* return default driver's prototype */
  172. }
  173. /* Global data */
  174. static unsigned rndm = 0; /* initial `random' number */
  175. /* Return random number
  176.  */
  177. long random ()
  178. {
  179.   if (!rndm) srand (rndm = (unsigned) time (0L));
  180.   return (long) rand ();
  181. }
  182. /* Emulator for BSD syslog() routine
  183.  * Accepts: priority
  184.  *     message
  185.  *     parameters
  186.  */
  187. void syslog (int priority,const char *message,...)
  188. {
  189. }
  190. /* Emulator for BSD openlog() routine
  191.  * Accepts: identity
  192.  *     options
  193.  *     facility
  194.  */
  195. void openlog (const char *ident,int logopt,int facility)
  196. {
  197. }