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

压缩解压

开发平台:

MultiPlatform

  1. /* Low-level Amiga routines shared between Zip and UnZip.
  2.  *
  3.  * Contains:  FileDate()
  4.  *            locale_TZ()
  5.  *            getenv()          [Aztec C only; replaces bad C library versions]
  6.  *            setenv()          [ditto]
  7.  *            tzset()           [ditto]
  8.  *            gmtime()          [ditto]
  9.  *            localtime()       [ditto]
  10.  *            time()            [ditto]
  11.  *            sendpkt()
  12.  *            Agetch()
  13.  *
  14.  * The first nine are used by all Info-ZIP programs except fUnZip.
  15.  * The last two are used by all except the non-CRYPT version of fUnZip.
  16.  * Probably some of the stuff in here is unused by ZipNote and ZipSplit too...
  17.  * sendpkt() is used by Agetch() and FileDate(), and by windowheight() in
  18.  * amiga/amiga.c (UnZip).  time() is used only by Zip.
  19.  */
  20. /* HISTORY/CHANGES
  21.  *  2 Sep 92, Greg Roelofs, Original coding.
  22.  *  6 Sep 92, John Bush, Incorporated into UnZip 5.1
  23.  *  6 Sep 92, John Bush, Interlude "FileDate()" defined, which calls or
  24.  *            redefines SetFileDate() depending upon AMIGADOS2 definition.
  25.  * 11 Oct 92, John Bush, Eliminated AMIGADOS2 switch by determining
  26.  *            revision via OpenLibrary() call.  Now only one version of
  27.  *            the program runs on both platforms (1.3.x vs. 2.x)
  28.  * 11 Oct 92, John Bush, Merged with Zip version and changed arg passing
  29.  *            to take time_t input instead of struct DateStamp.
  30.  *            Arg passing made to conform with utime().
  31.  * 22 Nov 92, Paul Kienitz, fixed includes for Aztec and cleaned up some
  32.  *            lint-ish errors; simplified test for AmigaDOS version.
  33.  * 11 Nov 95, Paul Kienitz, added Agetch() for crypt password input and
  34.  *            UnZip's "More" prompt -- simplifies crypt.h and avoids
  35.  *            use of library code redundant with sendpkt().  Made it
  36.  *            available to fUnZip, which does not use FileDate().
  37.  * 22 Nov 95, Paul Kienitz, created a new tzset() that gets the current
  38.  *            timezone from the Locale preferences.  These exist only under
  39.  *            AmigaDOS 2.1 and up, but it is probably correctly set on more
  40.  *            Amigas than the TZ environment variable is.  We check that
  41.  *            only if TZ is not validly set.  We do not parse daylight
  42.  *            savings syntax except to check for presence vs. absence of a
  43.  *            DST part; United States rules are assumed.  This is better
  44.  *            than the tzset()s in the Amiga compilers' libraries do.
  45.  * 15 Jan 96, Chr. Spieler, corrected the logic when to select low level
  46.  *            sendpkt() (when FileDate(), Agetch() or windowheight() is used),
  47.  *            and AMIGA's Agetch() (CRYPT, and UnZip(SFX)'s UzpMorePause()).
  48.  * 10 Feb 96, Paul Kienitz, re-fiddled that selection logic again, moved
  49.  *            stuff around for clarity.
  50.  * 16 Mar 96, Paul Kienitz, created a replacement localtime() to go with the
  51.  *            new tzset(), because Aztec's is hopelessly broken.  Also
  52.  *            gmtime(), which localtime() calls.
  53.  * 12 Apr 96, Paul Kienitz, daylight savings was being handled incorrectly.
  54.  * 21 Apr 96, Paul Kienitz, had to replace time() as well, Aztec's returns
  55.  *            local time instead of GMT.  That's why their localtime() was bad,
  56.  *            because it assumed time_t was already local, and gmtime() was
  57.  *            the one that checked TZ.
  58.  * 23 Apr 96, Chr. Spieler, deactivated time() replacement for UnZip stuff.
  59.  *            Currently, the UnZip sources do not make use of time() (and do
  60.  *            not supply the working mktime() replacement, either!).
  61.  * 29 Apr 96, Paul Kienitz, created a replacement getenv() out of code that
  62.  *            was previously embedded in tzset(), for reliable global test
  63.  *            of whether TZ is set or not.
  64.  * 19 Jun 96, Haidinger Walter, re-adapted for current SAS/C compiler.
  65.  *  7 Jul 96, Paul Kienitz, smoothed together compiler-related changes.
  66.  *  4 Feb 97, Haidinger Walter, added set_TZ() for SAS/C.
  67.  * 23 Apr 97, Paul Kienitz, corrected Unix->Amiga DST error by adding
  68.  *            mkgmtime() so localtime() could be used.
  69.  * 28 Apr 97, Christian Spieler, deactivated mkgmtime() definition for ZIP;
  70.  *            the Zip sources supply this function as part of util.c.
  71.  * 24 May 97, Haidinger Walter, added time_lib support for SAS/C and moved
  72.  *            set_TZ() to time_lib.c.
  73.  * 12 Jul 97, Paul Kienitz, adapted time_lib stuff for Aztec.
  74.  * 26 Jul 97, Chr. Spieler, old mkgmtime() fixed (ydays[] def, sign vs unsign).
  75.  * 30 Dec 97, Haidinger Walter, adaptation for SAS/C using z-stat.h functions.
  76.  * 19 Feb 98, Haidinger Walter, removed alloc_remember, more SAS.C fixes.
  77.  * 23 Apr 98, Chr. Spieler, removed mkgmtime(), changed FileDate to convert to
  78.  *            Amiga file-time directly.
  79.  * 24 Apr 98, Paul Kienitz, clip Unix dates earlier than 1978 in FileDate().
  80.  * 02 Sep 98, Paul Kienitz, C. Spieler, always include zip.h to get a defined
  81.  *            header inclusion sequence that resolves all header dependencies.
  82.  */
  83. #ifndef __amiga_filedate_c
  84. #define __amiga_filedate_c
  85. #include "zip.h"
  86. #include <ctype.h>
  87. #include <errno.h>
  88. #include <exec/types.h>
  89. #include <exec/execbase.h>
  90. #include <exec/memory.h>
  91. #ifdef AZTEC_C
  92. #  include <libraries/dos.h>
  93. #  include <libraries/dosextens.h>
  94. #  include <clib/exec_protos.h>
  95. #  include <clib/dos_protos.h>
  96. #  include <clib/locale_protos.h>
  97. #  include <pragmas/exec_lib.h>
  98. #  include <pragmas/dos_lib.h>
  99. #  include <pragmas/locale_lib.h>
  100. #  define ESRCH  ENOENT
  101. #  define EOSERR EIO
  102. #endif
  103. #ifdef __SASC
  104. #  include <stdlib.h>
  105. #  if (defined(_M68020) && (!defined(__USE_SYSBASE)))
  106.                             /* on 68020 or higher processors it is faster   */
  107. #    define __USE_SYSBASE   /* to use the pragma libcall instead of syscall */
  108. #  endif                    /* to access functions of the exec.library      */
  109. #  include <proto/exec.h>   /* see SAS/C manual:part 2,chapter 2,pages 6-7  */
  110. #  include <proto/dos.h>
  111. #  include <proto/locale.h>
  112. #  ifdef DEBUG
  113. #     include <sprof.h>
  114. #  endif
  115. #  ifdef MWDEBUG
  116. #    include <stdio.h>      /* include both before memwatch.h again just */
  117. #    include <stdlib.h>     /* to be safe */
  118. #    include "memwatch.h"
  119. #  endif /* MWDEBUG */
  120. #endif /* __SASC */
  121. #include "crypt.h"            /* just so we can tell if CRYPT is supported */
  122. #ifndef FUNZIP
  123. #ifndef SUCCESS
  124. #  define SUCCESS (-1L)
  125. #  define FAILURE 0L
  126. #endif
  127. #define ReqVers 36L        /* required library version for SetFileDate() */
  128. #define ENVSIZE 100        /* max space allowed for an environment var   */
  129. extern struct ExecBase *SysBase;
  130. #ifndef USE_TIME_LIB
  131. #ifdef AZTEC_C                  /* should be pretty safe for reentrancy */
  132.    long timezone = 0;           /* already declared SAS/C external */
  133.    int daylight = 0;            /* likewise */
  134. #endif
  135. int real_timezone_is_set = FALSE;       /* set by tzset() */
  136. #endif /* !USE_TIME_LIB */
  137. /* prototypes */
  138. char *getenv(const char *var);
  139. #ifdef __SASC
  140. int setenv(const char *var, const char *value, int overwrite);
  141. /*  !!!!  We have really got to find a way to operate without this. */
  142. #endif
  143. LONG FileDate (char *filename, time_t u[]);
  144. LONG sendpkt(struct MsgPort *pid, LONG action, LONG *args, LONG nargs);
  145. int Agetch(void);
  146. /* prototypes for time replacement functions */
  147. #ifndef USE_TIME_LIB
  148.   void tzset(void);
  149.   int locale_TZ(void);
  150.   struct tm *gmtime(const time_t *when);
  151.   struct tm *localtime(const time_t *when);
  152. #  ifdef __SASC
  153.      extern void set_TZ(long time_zone, int day_light);  /* in time_lib.c */
  154. #  endif
  155. #  ifdef ZIP
  156.      time_t time(time_t *tp);
  157. #  endif
  158. #endif /* !USE_TIME_LIB */
  159. /* =============================================================== */
  160. /***********************/
  161. /* Function filedate() */
  162. /***********************/
  163. /*  FileDate() (originally utime.c), by Paul Wells.  Modified by John Bush
  164.  *  and others (see also sendpkt() comments, below); NewtWare SetFileDate()
  165.  *  clone cheaply ripped off from utime().
  166.  */
  167. /* DESCRIPTION
  168.  * This routine chooses between 2 methods to set the file date on AMIGA.
  169.  * Since AmigaDOS 2.x came out, SetFileDate() was available in ROM (v.36
  170.  * and higher).  Under AmigaDOS 1.3.x (less than v.36 ROM), SetFileDate()
  171.  * must be accomplished by constructing a message packet and sending it
  172.  * to the file system handler of the file to be stamped.
  173.  *
  174.  * The system's ROM version is extracted from the external system Library
  175.  * base.
  176.  *
  177.  * NOTE:  although argument passing conforms with utime(), note the
  178.  *        following differences:
  179.  *          - Return value is boolean success/failure.
  180.  *          - If a structure or array is passed, only the first value
  181.  *            is used, which *may* correspond to date accessed and not
  182.  *            date modified.
  183.  */
  184. /* Nonzero if `y' is a leap year, else zero. */
  185. #define leap(y) (((y) % 4 == 0 && (y) % 100 != 0) || (y) % 400 == 0)
  186. /* Number of leap years from 1970 to `y' (not including `y' itself). */
  187. #define nleap(y) (((y) - 1969) / 4 - ((y) - 1901) / 100 + ((y) - 1601) / 400)
  188. /* Accumulated number of days from 01-Jan up to start of current month. */
  189. #ifdef ZIP
  190. static const unsigned short ydays[] =
  191. {  0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
  192. #else
  193. extern const unsigned short ydays[];  /* in unzip's fileio.c */
  194. #endif
  195. LONG FileDate(filename, u)
  196.     char *filename;
  197.     time_t u[];
  198. {
  199.     LONG SetFileDate(UBYTE *filename, struct DateStamp *pDate);
  200.     LONG sendpkt(struct MsgPort *pid, LONG action, LONG *args, LONG nargs);
  201.     struct MsgPort *taskport;
  202.     BPTR dirlock, lock;
  203.     struct FileInfoBlock *fib;
  204.     LONG pktargs[4];
  205.     UBYTE *ptr;
  206.     long ret;
  207.     struct DateStamp pDate;
  208.     struct tm *ltm;
  209.     int years;
  210.     /* tzset(); */
  211.     /* Amiga file date is based on 01-Jan-1978 00:00:00 (local time):
  212.      * 8 years and 2 leapdays difference from Unix time.
  213.      */
  214.     ltm = localtime(&u[0]);
  215.     years = ltm->tm_year + 1900;
  216.     if (years < 1978)
  217.         pDate.ds_Days = pDate.ds_Minute = pDate.ds_Tick = 0;
  218.     else {
  219.         pDate.ds_Days = (years - 1978) * 365L + (nleap(years) - 2) +
  220.                         ((ltm->tm_mon > 1 && leap(years)) ? 1 : 0) +
  221.                         ydays[ltm->tm_mon] + (ltm->tm_mday - 1);
  222.         pDate.ds_Minute = ltm->tm_hour * 60 + ltm->tm_min;
  223.         pDate.ds_Tick = ltm->tm_sec * TICKS_PER_SECOND;
  224.     }
  225.     if (SysBase->LibNode.lib_Version >= ReqVers)
  226.     {
  227.         return (SetFileDate(filename,&pDate));  /* native routine at 2.0+ */
  228.     }
  229.     else  /* !(SysBase->lib_Version >=ReqVers) */
  230.     {
  231.         if( !(taskport = (struct MsgPort *)DeviceProc(filename)) )
  232.         {
  233.             errno = ESRCH;          /* no such process */
  234.             return FAILURE;
  235.         }
  236.         if( !(lock = Lock(filename,SHARED_LOCK)) )
  237.         {
  238.             errno = ENOENT;         /* no such file */
  239.             return FAILURE;
  240.         }
  241.         if( !(fib = (struct FileInfoBlock *)AllocMem(
  242.             (long)sizeof(struct FileInfoBlock),MEMF_PUBLIC|MEMF_CLEAR)) )
  243.         {
  244.             errno = ENOMEM;         /* insufficient memory */
  245.             UnLock(lock);
  246.             return FAILURE;
  247.         }
  248.         if( Examine(lock,fib)==FAILURE )
  249.         {
  250.             errno = EOSERR;         /* operating system error */
  251.             UnLock(lock);
  252.             FreeMem(fib,(long)sizeof(*fib));
  253.             return FAILURE;
  254.         }
  255.         dirlock = ParentDir(lock);
  256.         ptr = (UBYTE *)AllocMem(64L,MEMF_PUBLIC);
  257.         strcpy((ptr+1),fib->fib_FileName);
  258.         *ptr = strlen(fib->fib_FileName);
  259.         FreeMem(fib,(long)sizeof(*fib));
  260.         UnLock(lock);
  261.         /* now fill in argument array */
  262.         pktargs[0] = 0;
  263.         pktargs[1] = (LONG)dirlock;
  264.         pktargs[2] = (LONG)&ptr[0] >> 2;
  265.         pktargs[3] = (LONG)&pDate;
  266.         errno = ret = sendpkt(taskport,ACTION_SET_DATE,pktargs,4L);
  267.         FreeMem(ptr,64L);
  268.         UnLock(dirlock);
  269.         return SUCCESS;
  270.     }  /* ?(SysBase->lib_Version >= ReqVers) */
  271. } /* FileDate() */
  272. char *getenv(const char *var)         /* not reentrant! */
  273. {
  274.     static char space[ENVSIZE];
  275.     struct Process *me = (void *) FindTask(NULL);
  276.     void *old_window = me->pr_WindowPtr;
  277.     char *ret = NULL;
  278.     me->pr_WindowPtr = (void *) -1;   /* suppress any "Please insert" popups */
  279.     if (SysBase->LibNode.lib_Version >= ReqVers) {
  280.         if (GetVar((char *) var, space, ENVSIZE - 1, /* GVF_GLOBAL_ONLY */ 0) > 0)
  281.             ret = space;
  282.     } else {                    /* early AmigaDOS, get env var the crude way */
  283.         BPTR hand, foot, spine;
  284.         int z = 0;
  285.         if (foot = Lock("ENV:", ACCESS_READ)) {
  286.             spine = CurrentDir(foot);
  287.             if (hand = Open((char *) var, MODE_OLDFILE)) {
  288.                 z = Read(hand, space, ENVSIZE - 1);
  289.                 Close(hand);
  290.             }
  291.             UnLock(CurrentDir(spine));
  292.         }
  293.         if (z > 0) {
  294.             space[z] = '';
  295.             ret = space;
  296.         }
  297.     }
  298.     me->pr_WindowPtr = old_window;
  299.     return ret;
  300. }
  301. #ifdef __SASC
  302. int setenv(const char *var, const char *value, int overwrite)
  303. {
  304.     struct Process *me = (void *) FindTask(NULL);
  305.     void *old_window = me->pr_WindowPtr;
  306.     int ret = -1;
  307.     me->pr_WindowPtr = (void *) -1;   /* suppress any "Please insert" popups */
  308.     if (SysBase->LibNode.lib_Version >= ReqVers)
  309.         ret = !SetVar((char *) var, (char *) value, -1, GVF_GLOBAL_ONLY | LV_VAR);
  310.     else {
  311.         BPTR hand, foot, spine;
  312.         long len = value ? strlen(value) : 0;
  313.         if (foot = Lock("ENV:", ACCESS_READ)) {
  314.             spine = CurrentDir(foot);
  315.             if (len) {
  316.                 if (hand = Open((char *) var, MODE_NEWFILE)) {
  317.                     ret = Write(hand, (char *) value, len + 1) >= len;
  318.                     Close(hand);
  319.                 }
  320.             } else
  321.                 ret = DeleteFile((char *) var);
  322.             UnLock(CurrentDir(spine));
  323.         }
  324.     }
  325.     me->pr_WindowPtr = old_window;
  326.     return ret;
  327. }
  328. #endif /* __SASC */
  329. #ifndef USE_TIME_LIB
  330. /* set timezone and daylight to settings found in locale.library */
  331. int locale_TZ(void)
  332. {
  333.     struct Library *LocaleBase;
  334.     struct Locale *ll;
  335.     struct Process *me = (void *) FindTask(NULL);
  336.     void *old_window = me->pr_WindowPtr;
  337.     BPTR eh;
  338.     int z, valid = FALSE;
  339.     /* read timezone from locale.library if TZ envvar missing */
  340.     me->pr_WindowPtr = (void *) -1;   /* suppress any "Please insert" popups */
  341.     if (LocaleBase = OpenLibrary("locale.library", 0)) {
  342.         if (ll = OpenLocale(NULL)) {
  343.             z = ll->loc_GMTOffset;
  344.             if (z == -300) {
  345.                 if (eh = Lock("ENV:sys/locale.prefs", ACCESS_READ))
  346.                     UnLock(eh);
  347.                 else
  348.                     z = 300; /* bug: locale not initialized, default is bogus! */
  349.             } else
  350.                 real_timezone_is_set = TRUE;
  351.             timezone = z * 60;
  352.             daylight = (z >= 4*60 && z <= 9*60);    /* apply in the Americas */
  353.             valid = TRUE;
  354.             CloseLocale(ll);
  355.         }
  356.         CloseLibrary(LocaleBase);
  357.     }
  358.     me->pr_WindowPtr = old_window;
  359.     return valid;
  360. }
  361. void tzset(void)
  362. {
  363.     char *p,*TZstring;
  364.     int z,valid = FALSE;
  365.     if (real_timezone_is_set)
  366.         return;
  367.     timezone = 0;       /* default is GMT0 which means no offsets */
  368.     daylight = 0;       /* from local system time                 */
  369.     TZstring = getenv("TZ");              /* read TZ envvar */
  370.     if (TZstring && TZstring[0]) {        /* TZ exists and has contents? */
  371.         z = 3600;
  372.         for (p = TZstring; *p && !isdigit(*p) && *p != '-'; p++) ;
  373.         if (*p == '-')
  374.             z = -3600, p++;
  375.         if (*p) {
  376.             timezone = 0;
  377.             do {
  378.                 while (isdigit(*p))
  379.                     timezone = timezone * 10 + z * (*p++ - '0'), valid = TRUE;
  380.                 if (*p == ':') p++;
  381.             } while (isdigit(*p) && (z /= 60) > 0);
  382.         }
  383.         while (isspace(*p)) p++;                      /* probably not needed */
  384.         if (valid) {
  385.             real_timezone_is_set = TRUE;
  386.             daylight = !!*p;                       /* a DST name part exists */
  387.         }
  388.     }
  389.     if (!valid)
  390.         locale_TZ();               /* read locale.library */
  391. #ifdef __SASC
  392.     /* Some SAS/C library functions, e.g. stat(), call library     */
  393.     /* __tzset() themselves. So envvar TZ *must* exist in order to */
  394.     /* to get the right offset from GMT.  XXX  WE SHOULD TRY HARD  */
  395.     /* find and replace any remaining functions that need this!    */
  396.     set_TZ(timezone, daylight);
  397. #endif /* __SASC */
  398. }
  399. struct tm *gmtime(const time_t *when)
  400. {
  401.     static struct tm tbuf;   /* this function is intrinsically non-reentrant */
  402.     static short smods[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  403.     long days = *when / 86400;
  404.     long secs = *when % 86400;
  405.     short yell, yday;
  406.     tbuf.tm_wday = (days + 4) % 7;                   /* 1/1/70 is a Thursday */
  407.     tbuf.tm_year = 70 + 4 * (days / 1461);
  408.     yday = days % 1461;
  409.     while (yday >= (yell = (tbuf.tm_year & 3 ? 365 : 366)))
  410.         yday -= yell, tbuf.tm_year++;
  411.     smods[1] = (tbuf.tm_year & 3 ? 28 : 29);
  412.     tbuf.tm_mon = 0;
  413.     tbuf.tm_yday = yday;
  414.     while (yday >= smods[tbuf.tm_mon])
  415.         yday -= smods[tbuf.tm_mon++];
  416.     tbuf.tm_mday = yday + 1;
  417.     tbuf.tm_isdst = 0;
  418.     tbuf.tm_sec = secs % 60;
  419.     tbuf.tm_min = (secs / 60) % 60;
  420.     tbuf.tm_hour = secs / 3600;
  421. #ifdef AZTEC_C
  422.     tbuf.tm_hsec = 0;                   /* this field exists for Aztec only */
  423. #endif
  424.     return &tbuf;
  425. }
  426. struct tm *localtime(const time_t *when)
  427. {
  428.     struct tm *t;
  429.     time_t localwhen;
  430.     int dst = FALSE, sundays, lastweekday;
  431.     tzset();
  432.     localwhen = *when - timezone;
  433.     t = gmtime(&localwhen);
  434.     /* So far we support daylight savings correction by the USA rule only: */
  435.     if (daylight && t->tm_mon >= 3 && t->tm_mon <= 9) {
  436.         if (t->tm_mon > 3 && t->tm_mon < 9)      /* May Jun Jul Aug Sep: yes */
  437.             dst = TRUE;
  438.         else {
  439.             sundays = (t->tm_mday + 6 - t->tm_wday) / 7;
  440.             if (t->tm_wday == 0 && t->tm_hour < 2 && sundays)
  441.                 sundays--;           /* a Sunday does not count until 2:00am */
  442.             if (t->tm_mon == 3 && sundays > 0)      /* first sunday in April */
  443.                 dst = TRUE;
  444.             else if (t->tm_mon == 9) {
  445.                 lastweekday = (t->tm_wday + 31 - t->tm_mday) % 7;
  446.                 if (sundays < (37 - lastweekday) / 7)
  447.                     dst = TRUE;                    /* last sunday in October */
  448.             }
  449.         }
  450.         if (dst) {
  451.             localwhen += 3600;
  452.             t = gmtime(&localwhen);                   /* crude but effective */
  453.             t->tm_isdst = 1;
  454.         }
  455.     }
  456.     return t;
  457. }
  458. #  ifdef ZIP
  459. time_t time(time_t *tp)
  460. {
  461.     time_t t;
  462.     struct DateStamp ds;
  463.     DateStamp(&ds);
  464.     t = ds.ds_Tick / TICKS_PER_SECOND + ds.ds_Minute * 60
  465.                                       + (ds.ds_Days + 2922) * 86400;
  466.     t = mktime(gmtime(&t));
  467.     /* gmtime leaves ds in the local timezone, mktime converts it to GMT */
  468.     if (tp) *tp = t;
  469.     return t;
  470. }
  471. #  endif /* ZIP */
  472. #endif /* !USE_TIME_LIB */
  473. #endif /* !FUNZIP */
  474. #if CRYPT || !defined(FUNZIP)
  475. /*  sendpkt.c
  476.  *  by A. Finkel, P. Lindsay, C. Sheppner
  477.  *  returns Res1 of the reply packet
  478.  */
  479. /*
  480. #include <exec/types.h>
  481. #include <exec/memory.h>
  482. #include <libraries/dos.h>
  483. #include <libraries/dosextens.h>
  484. #include <proto/exec.h>
  485. #include <proto/dos.h>
  486. */
  487. LONG sendpkt(struct MsgPort *pid, LONG action, LONG *args, LONG nargs);
  488. LONG sendpkt(pid,action,args,nargs)
  489. struct MsgPort *pid;           /* process identifier (handler message port) */
  490. LONG action,                   /* packet type (desired action)              */
  491.      *args,                    /* a pointer to argument list                */
  492.      nargs;                    /* number of arguments in list               */
  493. {
  494.     struct MsgPort *replyport, *CreatePort(UBYTE *, long);
  495.     void DeletePort(struct MsgPort *);
  496.     struct StandardPacket *packet;
  497.     LONG count, *pargs, res1;
  498.     replyport = CreatePort(NULL,0L);
  499.     if( !replyport ) return(0);
  500.     packet = (struct StandardPacket *)AllocMem(
  501.             (long)sizeof(struct StandardPacket),MEMF_PUBLIC|MEMF_CLEAR);
  502.     if( !packet )
  503.     {
  504.         DeletePort(replyport);
  505.         return(0);
  506.     }
  507.     packet->sp_Msg.mn_Node.ln_Name  = (char *)&(packet->sp_Pkt);
  508.     packet->sp_Pkt.dp_Link          = &(packet->sp_Msg);
  509.     packet->sp_Pkt.dp_Port          = replyport;
  510.     packet->sp_Pkt.dp_Type          = action;
  511.     /* copy the args into the packet */
  512.     pargs = &(packet->sp_Pkt.dp_Arg1);      /* address of 1st argument */
  513.     for( count=0; count<nargs; count++ )
  514.         pargs[count] = args[count];
  515.     PutMsg(pid,(struct Message *)packet);   /* send packet */
  516.     WaitPort(replyport);
  517.     GetMsg(replyport);
  518.     res1 = packet->sp_Pkt.dp_Res1;
  519.     FreeMem((char *)packet,(long)sizeof(*packet));
  520.     DeletePort(replyport);
  521.     return(res1);
  522. } /* sendpkt() */
  523. #endif /* CRYPT || !FUNZIP */
  524. #if CRYPT || (defined(UNZIP) && !defined(FUNZIP))
  525. /* Agetch() reads one raw keystroke -- uses sendpkt() */
  526. int Agetch(void)
  527. {
  528.     LONG sendpkt(struct MsgPort *pid, LONG action, LONG *args, LONG nargs);
  529.     struct Task *me = FindTask(NULL);
  530.     struct CommandLineInterface *cli = BADDR(((struct Process *) me)->pr_CLI);
  531.     BPTR fh = cli->cli_StandardInput;   /* this is immune to < redirection */
  532.     void *conp = ((struct FileHandle *) BADDR(fh))->fh_Type;
  533.     char longspace[8];
  534.     long *flag = (long *) ((ULONG) &longspace[4] & ~3); /* LONGWORD ALIGNED! */
  535.     UBYTE c;
  536.     *flag = 1;
  537.     sendpkt(conp, ACTION_SCREEN_MODE, flag, 1);         /* assume success */
  538.     Read(fh, &c, 1);
  539.     *flag = 0;
  540.     sendpkt(conp, ACTION_SCREEN_MODE, flag, 1);
  541.     if (c == 3)                                         /* ^C in input */
  542.         Signal(me, SIGBREAKF_CTRL_C);
  543.     return c;
  544. }
  545. #endif /* CRYPT || (UNZIP && !FUNZIP) */
  546. #endif /* __amiga_filedate_c*/