]> 4ch.mooo.com Git - 16.git/blob - src/lib/dl/ext/zlib/zutil.c
refresh wwww
[16.git] / src / lib / dl / ext / zlib / zutil.c
1 /* zutil.c -- target dependent utility functions for the compression library
2  * Copyright (C) 1995-2005, 2010 Jean-loup Gailly.
3  * For conditions of distribution and use, see copyright notice in zlib.h
4  */
5
6 /* @(#) $Id$ */
7
8 #include "zutil.h"
9
10 #ifndef NO_DUMMY_DECL
11 struct internal_state      {int dummy;}; /* for buggy compilers */
12 #endif
13
14 const char * const z_errmsg[10] = {
15 "need dictionary",     /* Z_NEED_DICT       2  */
16 "stream end",          /* Z_STREAM_END      1  */
17 "",                    /* Z_OK              0  */
18 "file error",          /* Z_ERRNO         (-1) */
19 "stream error",        /* Z_STREAM_ERROR  (-2) */
20 "data error",          /* Z_DATA_ERROR    (-3) */
21 "insufficient memory", /* Z_MEM_ERROR     (-4) */
22 "buffer error",        /* Z_BUF_ERROR     (-5) */
23 "incompatible version",/* Z_VERSION_ERROR (-6) */
24 ""};
25
26
27 const char * ZEXPORT zlibVersion()
28 {
29     return ZLIB_VERSION;
30 }
31
32 uLong ZEXPORT zlibCompileFlags()
33 {
34     uLong flags;
35
36     flags = 0;
37     switch ((int)(sizeof(uInt))) {
38     case 2:     break;
39     case 4:     flags += 1;     break;
40     case 8:     flags += 2;     break;
41     default:    flags += 3;
42     }
43     switch ((int)(sizeof(uLong))) {
44     case 2:     break;
45     case 4:     flags += 1 << 2;        break;
46     case 8:     flags += 2 << 2;        break;
47     default:    flags += 3 << 2;
48     }
49     switch ((int)(sizeof(voidpf))) {
50     case 2:     break;
51     case 4:     flags += 1 << 4;        break;
52     case 8:     flags += 2 << 4;        break;
53     default:    flags += 3 << 4;
54     }
55     switch ((int)(sizeof(z_off_t))) {
56     case 2:     break;
57     case 4:     flags += 1 << 6;        break;
58     case 8:     flags += 2 << 6;        break;
59     default:    flags += 3 << 6;
60     }
61 #ifdef DEBUG
62     flags += 1 << 8;
63 #endif
64 #if defined(ASMV) || defined(ASMINF)
65     flags += 1 << 9;
66 #endif
67 #ifdef ZLIB_WINAPI
68     flags += 1 << 10;
69 #endif
70 #ifdef BUILDFIXED
71     flags += 1 << 12;
72 #endif
73 #ifdef DYNAMIC_CRC_TABLE
74     flags += 1 << 13;
75 #endif
76 #ifdef NO_GZCOMPRESS
77     flags += 1L << 16;
78 #endif
79 #ifdef NO_GZIP
80     flags += 1L << 17;
81 #endif
82 #ifdef PKZIP_BUG_WORKAROUND
83     flags += 1L << 20;
84 #endif
85 #ifdef FASTEST
86     flags += 1L << 21;
87 #endif
88 #ifdef STDC
89 #  ifdef NO_vsnprintf
90         flags += 1L << 25;
91 #    ifdef HAS_vsprintf_void
92         flags += 1L << 26;
93 #    endif
94 #  else
95 #    ifdef HAS_vsnprintf_void
96         flags += 1L << 26;
97 #    endif
98 #  endif
99 #else
100         flags += 1L << 24;
101 #  ifdef NO_snprintf
102         flags += 1L << 25;
103 #    ifdef HAS_sprintf_void
104         flags += 1L << 26;
105 #    endif
106 #  else
107 #    ifdef HAS_snprintf_void
108         flags += 1L << 26;
109 #    endif
110 #  endif
111 #endif
112     return flags;
113 }
114
115 #ifdef DEBUG
116
117 #  ifndef verbose
118 #    define verbose 0
119 #  endif
120 int ZLIB_INTERNAL z_verbose = verbose;
121
122 void ZLIB_INTERNAL z_error (m)
123     char *m;
124 {
125     fprintf(stderr, "%s\n", m);
126     exit(1);
127 }
128 #endif
129
130 /* exported to allow conversion of error code to string for compress() and
131  * uncompress()
132  */
133 const char * ZEXPORT zError(err)
134     int err;
135 {
136     return ERR_MSG(err);
137 }
138
139 #if defined(_WIN32_WCE)
140     /* The Microsoft C Run-Time Library for Windows CE doesn't have
141      * errno.  We define it as a global variable to simplify porting.
142      * Its value is always 0 and should not be used.
143      */
144     int errno = 0;
145 #endif
146
147 #ifndef HAVE_MEMCPY
148
149 Bytef* ZLIB_INTERNAL zmemchr OF((const Bytef* source, int c, uInt len)) {
150     while (len-- != 0UL) {
151         if (*source == (unsigned char)c) return (Bytef*)source;
152         source++;
153     }
154
155     return NULL;
156 }
157
158 void ZLIB_INTERNAL zmemcpy(dest, source, len)
159     Bytef* dest;
160     const Bytef* source;
161     uInt  len;
162 {
163     if (len == 0) return;
164     do {
165         *dest++ = *source++; /* ??? to be unrolled */
166     } while (--len != 0);
167 }
168
169 int ZLIB_INTERNAL zmemcmp(s1, s2, len)
170     const Bytef* s1;
171     const Bytef* s2;
172     uInt  len;
173 {
174     uInt j;
175
176     for (j = 0; j < len; j++) {
177         if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
178     }
179     return 0;
180 }
181
182 void ZLIB_INTERNAL zmemzero(dest, len)
183     Bytef* dest;
184     uInt  len;
185 {
186     if (len == 0) return;
187     do {
188         *dest++ = 0;  /* ??? to be unrolled */
189     } while (--len != 0);
190 }
191 #endif
192
193
194 #ifdef SYS16BIT
195
196 #ifdef __TURBOC__
197 /* Turbo C in 16-bit mode */
198
199 #  define MY_ZCALLOC
200
201 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
202  * and farmalloc(64K) returns a pointer with an offset of 8, so we
203  * must fix the pointer. Warning: the pointer must be put back to its
204  * original form in order to free it, use zcfree().
205  */
206
207 #define MAX_PTR 10
208 /* 10*64K = 640K */
209
210 local int next_ptr = 0;
211
212 typedef struct ptr_table_s {
213     voidpf org_ptr;
214     voidpf new_ptr;
215 } ptr_table;
216
217 local ptr_table table[MAX_PTR];
218 /* This table is used to remember the original form of pointers
219  * to large buffers (64K). Such pointers are normalized with a zero offset.
220  * Since MSDOS is not a preemptive multitasking OS, this table is not
221  * protected from concurrent access. This hack doesn't work anyway on
222  * a protected system like OS/2. Use Microsoft C instead.
223  */
224
225 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
226 {
227     voidpf buf = opaque; /* just to make some compilers happy */
228     ulg bsize = (ulg)items*size;
229
230     /* If we allocate less than 65520 bytes, we assume that farmalloc
231      * will return a usable pointer which doesn't have to be normalized.
232      */
233     if (bsize < 65520L) {
234         buf = farmalloc(bsize);
235         if (*(ush*)&buf != 0) return buf;
236     } else {
237         buf = farmalloc(bsize + 16L);
238     }
239     if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
240     table[next_ptr].org_ptr = buf;
241
242     /* Normalize the pointer to seg:0 */
243     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
244     *(ush*)&buf = 0;
245     table[next_ptr++].new_ptr = buf;
246     return buf;
247 }
248
249 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
250 {
251     int n;
252     if (*(ush*)&ptr != 0) { /* object < 64K */
253         farfree(ptr);
254         return;
255     }
256     /* Find the original pointer */
257     for (n = 0; n < next_ptr; n++) {
258         if (ptr != table[n].new_ptr) continue;
259
260         farfree(table[n].org_ptr);
261         while (++n < next_ptr) {
262             table[n-1] = table[n];
263         }
264         next_ptr--;
265         return;
266     }
267     ptr = opaque; /* just to make some compilers happy */
268     Assert(0, "zcfree: ptr not found");
269 }
270
271 #endif /* __TURBOC__ */
272
273
274 #ifdef M_I86
275 /* Microsoft C in 16-bit mode */
276
277 #  define MY_ZCALLOC
278
279 #if (!defined(_MSC_VER) || (_MSC_VER <= 600))
280 #  define _halloc  halloc
281 #  define _hfree   hfree
282 #endif
283
284 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
285 {
286     if (opaque) opaque = 0; /* to make compiler happy */
287     return _halloc((long)items, size);
288 }
289
290 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
291 {
292     if (opaque) opaque = 0; /* to make compiler happy */
293     _hfree(ptr);
294 }
295
296 #endif /* M_I86 */
297
298 #endif /* SYS16BIT */
299
300
301 #ifndef MY_ZCALLOC /* Any system without a special alloc function */
302
303 #ifndef STDC
304 extern voidp  malloc OF((uInt size));
305 extern voidp  calloc OF((uInt items, uInt size));
306 extern void   free   OF((voidpf ptr));
307 #endif
308
309 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
310     voidpf opaque;
311     unsigned items;
312     unsigned size;
313 {
314     if (opaque) items += size - size; /* make compiler happy */
315     return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
316                               (voidpf)calloc(items, size);
317 }
318
319 void ZLIB_INTERNAL zcfree (opaque, ptr)
320     voidpf opaque;
321     voidpf ptr;
322 {
323     free(ptr);
324     if (opaque) return; /* make compiler happy */
325 }
326
327 #endif /* MY_ZCALLOC */