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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   globals.c
  3.   Routines to allocate and initialize globals, with or without threads.
  4.   Contents:  registerGlobalPointer()
  5.              deregisterGlobalPointer()
  6.              getGlobalPointer()
  7.              globalsCtor()
  8.   ---------------------------------------------------------------------------*/
  9. #define UNZIP_INTERNAL
  10. #include "unzip.h"
  11. #ifndef FUNZIP
  12. /* initialization of sigs is completed at runtime so unzip(sfx) executable
  13.  * won't look like a zipfile
  14.  */
  15. char central_hdr_sig[4] = {0, 0, 0x01, 0x02};
  16. char local_hdr_sig[4]   = {0, 0, 0x03, 0x04};
  17. char end_central_sig[4] = {0, 0, 0x05, 0x06};
  18. /* extern char extd_local_sig[4] = {0, 0, 0x07, 0x08};  NOT USED YET */
  19. ZCONST char *fnames[2] = {"*", NULL};   /* default filenames vector */
  20. #endif
  21. #ifndef REENTRANT
  22.    Uz_Globs G;
  23. #else /* REENTRANT */
  24. #  ifndef USETHREADID
  25.      Uz_Globs *GG;
  26. #  else /* USETHREADID */
  27. #    define THREADID_ENTRIES  0x40
  28.      int lastScan;
  29.      Uz_Globs  *threadPtrTable[THREADID_ENTRIES];
  30.      ulg        threadIdTable [THREADID_ENTRIES] = {
  31.          0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,
  32.          0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,    /* Make sure there are */
  33.          0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,    /* THREADID_ENTRIES 0s */
  34.          0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0
  35.      };
  36.      static ZCONST char Far TooManyThreads[] =
  37.        "error:  more than %d simultaneous threads.n
  38.         Some threads are probably not calling DESTROYTHREAD()n";
  39.      static ZCONST char Far EntryNotFound[] =
  40.        "error:  couldn't find global pointer in table.n
  41.         Maybe somebody accidentally called DESTROYTHREAD() twice.n";
  42.      static ZCONST char Far GlobalPointerMismatch[] =
  43.        "error:  global pointer in table does not match pointer passed as
  44.  parametern";
  45. static void registerGlobalPointer OF((__GPRO));
  46. static void registerGlobalPointer(__G)
  47.     __GDEF
  48. {
  49.     int scan=0;
  50.     ulg tid = GetThreadId();
  51.     while (threadIdTable[scan] && scan < THREADID_ENTRIES)
  52.         scan++;
  53.     if (scan == THREADID_ENTRIES) {
  54.         ZCONST char *tooMany = LoadFarString(TooManyThreads);
  55.         Info(slide, 0x421, ((char *)slide, tooMany, THREADID_ENTRIES));
  56.         free(pG);
  57.         EXIT(PK_MEM);   /* essentially memory error before we've started */
  58.     }
  59.     threadIdTable [scan] = tid;
  60.     threadPtrTable[scan] = pG;
  61.     lastScan = scan;
  62. }
  63. void deregisterGlobalPointer(__G)
  64.     __GDEF
  65. {
  66.     int scan=0;
  67.     ulg tid = GetThreadId();
  68.     while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
  69.         scan++;
  70. /*---------------------------------------------------------------------------
  71.     There are two things we can do if we can't find the entry:  ignore it or
  72.     scream.  The most likely reason for it not to be here is the user calling
  73.     this routine twice.  Since this could cause BIG problems if any globals
  74.     are accessed after the first call, we'd better scream.
  75.   ---------------------------------------------------------------------------*/
  76.     if (scan == THREADID_ENTRIES || threadPtrTable[scan] != pG) {
  77.         ZCONST char *noEntry;
  78.         if (scan == THREADID_ENTRIES)
  79.             noEntry = LoadFarString(EntryNotFound);
  80.         else
  81.             noEntry = LoadFarString(GlobalPointerMismatch);
  82.         Info(slide, 0x421, ((char *)slide, noEntry));
  83.         EXIT(PK_WARN);   /* programming error, but after we're all done */
  84.     }
  85.     threadIdTable [scan] = 0;
  86.     lastScan = scan;
  87.     free(threadPtrTable[scan]);
  88. }
  89. Uz_Globs *getGlobalPointer()
  90. {
  91.     int scan=0;
  92.     ulg tid = GetThreadId();
  93.     while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
  94.         scan++;
  95. /*---------------------------------------------------------------------------
  96.     There are two things we can do if we can't find the entry:  ignore it or
  97.     scream.  The most likely reason for it not to be here is the user calling
  98.     this routine twice.  Since this could cause BIG problems if any globals
  99.     are accessed after the first call, we'd better scream.
  100.   ---------------------------------------------------------------------------*/
  101.     if (scan == THREADID_ENTRIES) {
  102.         ZCONST char *noEntry = LoadFarString(EntryNotFound);
  103.         fprintf(stderr, noEntry);  /* can't use Info w/o a global pointer */
  104.         EXIT(PK_ERR);   /* programming error while still working */
  105.     }
  106.     return threadPtrTable[scan];
  107. }
  108. #  endif /* ?USETHREADID */
  109. #endif /* ?REENTRANT */
  110. Uz_Globs *globalsCtor()
  111. {
  112. #ifdef REENTRANT
  113.     Uz_Globs *pG = (Uz_Globs *)malloc(sizeof(Uz_Globs));
  114.     if (!pG)
  115.         return (Uz_Globs *)NULL;
  116. #endif /* REENTRANT */
  117.     /* for REENTRANT version, G is defined as (*pG) */
  118.     memzero(&G, sizeof(Uz_Globs));
  119. #ifndef FUNZIP
  120. #ifdef CMS_MVS
  121.     uO.aflag=1;
  122.     uO.C_flag=1;
  123. #endif
  124.     uO.lflag=(-1);
  125.     G.wildzipfn = "";
  126.     G.pfnames = (char **)fnames;
  127.     G.pxnames = (char **)&fnames[1];
  128.     G.pInfo = G.info;
  129.     G.sol = TRUE;          /* at start of line */
  130.     G.message = UzpMessagePrnt;
  131.     G.input = UzpInput;           /* not used by anyone at the moment... */
  132. #if defined(WINDLL) || defined(MACOS)
  133.     G.mpause = NULL;              /* has scrollbars:  no need for pausing */
  134. #else
  135.     G.mpause = UzpMorePause;
  136. #endif
  137.     G.decr_passwd = UzpPassword;
  138. #endif /* !FUNZIP */
  139. #if (!defined(DOS_FLX_H68_OS2_W32) && !defined(AMIGA) && !defined(RISCOS))
  140. #if (!defined(MACOS) && !defined(ATARI) && !defined(VMS))
  141.     G.echofd = -1;
  142. #endif /* !(MACOS || ATARI || VMS) */
  143. #endif /* !(DOS_FLX_H68_OS2_W32 || AMIGA || RISCOS) */
  144. #ifdef SYSTEM_SPECIFIC_CTOR
  145.     SYSTEM_SPECIFIC_CTOR(__G);
  146. #endif
  147. #ifdef REENTRANT
  148. #ifdef USETHREADID
  149.     registerGlobalPointer(__G);
  150. #else
  151.     GG = &G;
  152. #endif /* ?USETHREADID */
  153. #endif /* REENTRANT */
  154.     return &G;
  155. }