2 Copyright (c) 1990-2007 Info-ZIP. All rights reserved.
4 See the accompanying file LICENSE, version 2003-May-08 or later
5 (the contents of which are also included in unzip.h) for terms of use.
6 If, for some reason, all these files are missing, the Info-ZIP license
7 also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
9 /*---------------------------------------------------------------------------
13 Routines to allocate and initialize globals, with or without threads.
15 Contents: registerGlobalPointer()
16 deregisterGlobalPointer()
20 ---------------------------------------------------------------------------*/
23 #define UNZIP_INTERNAL
27 /* initialization of sigs is completed at runtime so unzip(sfx) executable
28 * won't look like a zipfile
30 char central_hdr_sig
[4] = {0, 0, 0x01, 0x02};
31 char local_hdr_sig
[4] = {0, 0, 0x03, 0x04};
32 char end_central_sig
[4] = {0, 0, 0x05, 0x06};
33 char end_central64_sig
[4] = {0, 0, 0x06, 0x06};
34 char end_centloc64_sig
[4] = {0, 0, 0x06, 0x07};
35 /* extern char extd_local_sig[4] = {0, 0, 0x07, 0x08}; NOT USED YET */
37 ZCONST
char *fnames
[2] = {"*", NULL
}; /* default filenames vector */
47 # else /* USETHREADID */
48 # define THREADID_ENTRIES 0x40
51 Uz_Globs
*threadPtrTable
[THREADID_ENTRIES
];
52 ulg threadIdTable
[THREADID_ENTRIES
] = {
53 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,
54 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, /* Make sure there are */
55 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, /* THREADID_ENTRIES 0s */
56 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0
59 static ZCONST
char Far TooManyThreads
[] =
60 "error: more than %d simultaneous threads.\n\
61 Some threads are probably not calling DESTROYTHREAD()\n";
62 static ZCONST
char Far EntryNotFound
[] =
63 "error: couldn't find global pointer in table.\n\
64 Maybe somebody accidentally called DESTROYTHREAD() twice.\n";
65 static ZCONST
char Far GlobalPointerMismatch
[] =
66 "error: global pointer in table does not match pointer passed as\
69 static void registerGlobalPointer
OF((__GPRO
));
73 static void registerGlobalPointer(__G
)
77 ulg tid
= GetThreadId();
79 while (threadIdTable
[scan
] && scan
< THREADID_ENTRIES
)
82 if (scan
== THREADID_ENTRIES
) {
83 ZCONST
char *tooMany
= LoadFarString(TooManyThreads
);
84 Info(slide
, 0x421, ((char *)slide
, tooMany
, THREADID_ENTRIES
));
86 EXIT(PK_MEM
); /* essentially memory error before we've started */
89 threadIdTable
[scan
] = tid
;
90 threadPtrTable
[scan
] = pG
;
96 void deregisterGlobalPointer(__G
)
100 ulg tid
= GetThreadId();
103 while (threadIdTable
[scan
] != tid
&& scan
< THREADID_ENTRIES
)
106 /*---------------------------------------------------------------------------
107 There are two things we can do if we can't find the entry: ignore it or
108 scream. The most likely reason for it not to be here is the user calling
109 this routine twice. Since this could cause BIG problems if any globals
110 are accessed after the first call, we'd better scream.
111 ---------------------------------------------------------------------------*/
113 if (scan
== THREADID_ENTRIES
|| threadPtrTable
[scan
] != pG
) {
114 ZCONST
char *noEntry
;
115 if (scan
== THREADID_ENTRIES
)
116 noEntry
= LoadFarString(EntryNotFound
);
118 noEntry
= LoadFarString(GlobalPointerMismatch
);
119 Info(slide
, 0x421, ((char *)slide
, noEntry
));
120 EXIT(PK_WARN
); /* programming error, but after we're all done */
123 threadIdTable
[scan
] = 0;
125 free(threadPtrTable
[scan
]);
130 Uz_Globs
*getGlobalPointer()
133 ulg tid
= GetThreadId();
135 while (threadIdTable
[scan
] != tid
&& scan
< THREADID_ENTRIES
)
138 /*---------------------------------------------------------------------------
139 There are two things we can do if we can't find the entry: ignore it or
140 scream. The most likely reason for it not to be here is the user calling
141 this routine twice. Since this could cause BIG problems if any globals
142 are accessed after the first call, we'd better scream.
143 ---------------------------------------------------------------------------*/
145 if (scan
== THREADID_ENTRIES
) {
146 ZCONST
char *noEntry
= LoadFarString(EntryNotFound
);
147 fprintf(stderr
, noEntry
); /* can't use Info w/o a global pointer */
148 EXIT(PK_ERR
); /* programming error while still working */
151 return threadPtrTable
[scan
];
154 # endif /* ?USETHREADID */
155 #endif /* ?REENTRANT */
159 Uz_Globs
*globalsCtor()
162 Uz_Globs
*pG
= (Uz_Globs
*)malloc(sizeof(Uz_Globs
));
165 return (Uz_Globs
*)NULL
;
166 #endif /* REENTRANT */
168 /* for REENTRANT version, G is defined as (*pG) */
170 memzero(&G
, sizeof(Uz_Globs
));
178 uO
.aflag
=1; /* default to '-a' auto create Text Files as type 101 */
181 # if (!defined(NO_TIMESTAMPS))
182 uO
.D_flag
=1; /* default to '-D', no restoration of dir timestamps */
188 G
.pfnames
= (char **)fnames
;
189 G
.pxnames
= (char **)&fnames
[1];
191 G
.sol
= TRUE
; /* at start of line */
193 G
.message
= UzpMessagePrnt
;
194 G
.input
= UzpInput
; /* not used by anyone at the moment... */
195 #if defined(WINDLL) || defined(MACOS)
196 G
.mpause
= NULL
; /* has scrollbars: no need for pausing */
198 G
.mpause
= UzpMorePause
;
200 G
.decr_passwd
= UzpPassword
;
203 #if (!defined(DOS_FLX_H68_NLM_OS2_W32) && !defined(AMIGA) && !defined(RISCOS))
204 #if (!defined(MACOS) && !defined(ATARI) && !defined(VMS))
206 #endif /* !(MACOS || ATARI || VMS) */
207 #endif /* !(DOS_FLX_H68_NLM_OS2_W32 || AMIGA || RISCOS) */
209 #ifdef SYSTEM_SPECIFIC_CTOR
210 SYSTEM_SPECIFIC_CTOR(__G
);
215 registerGlobalPointer(__G
);
218 #endif /* ?USETHREADID */
219 #endif /* REENTRANT */