]>
git.saurik.com Git - wxWidgets.git/blob - src/zlib/zutil.c
1 /* zutil.c -- target dependent utility functions for the compression library
2 * Copyright (C) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 struct internal_state
{int dummy
;}; /* for buggy compilers */
16 z_const
char * const z_errmsg
[10] = {
17 "need dictionary", /* Z_NEED_DICT 2 */
18 "stream end", /* Z_STREAM_END 1 */
20 "file error", /* Z_ERRNO (-1) */
21 "stream error", /* Z_STREAM_ERROR (-2) */
22 "data error", /* Z_DATA_ERROR (-3) */
23 "insufficient memory", /* Z_MEM_ERROR (-4) */
24 "buffer error", /* Z_BUF_ERROR (-5) */
25 "incompatible version",/* Z_VERSION_ERROR (-6) */
29 const char * ZEXPORT
zlibVersion()
34 uLong ZEXPORT
zlibCompileFlags()
39 switch ((int)(sizeof(uInt
))) {
41 case 4: flags
+= 1; break;
42 case 8: flags
+= 2; break;
45 switch ((int)(sizeof(uLong
))) {
47 case 4: flags
+= 1 << 2; break;
48 case 8: flags
+= 2 << 2; break;
49 default: flags
+= 3 << 2;
51 switch ((int)(sizeof(voidpf
))) {
53 case 4: flags
+= 1 << 4; break;
54 case 8: flags
+= 2 << 4; break;
55 default: flags
+= 3 << 4;
57 switch ((int)(sizeof(z_off_t
))) {
59 case 4: flags
+= 1 << 6; break;
60 case 8: flags
+= 2 << 6; break;
61 default: flags
+= 3 << 6;
66 #if defined(ASMV) || defined(ASMINF)
75 #ifdef DYNAMIC_CRC_TABLE
84 #ifdef PKZIP_BUG_WORKAROUND
90 #if defined(STDC) || defined(Z_HAVE_STDARG_H)
93 # ifdef HAS_vsprintf_void
97 # ifdef HAS_vsnprintf_void
105 # ifdef HAS_sprintf_void
109 # ifdef HAS_snprintf_void
122 int ZLIB_INTERNAL z_verbose
= verbose
;
124 void ZLIB_INTERNAL
z_error (m
)
127 fprintf(stderr
, "%s\n", m
);
132 /* exported to allow conversion of error code to string for compress() and
135 const char * ZEXPORT
zError(err
)
141 #if defined(_WIN32_WCE)
142 /* The Microsoft C Run-Time Library for Windows CE doesn't have
143 * errno. We define it as a global variable to simplify porting.
144 * Its value is always 0 and should not be used.
151 void ZLIB_INTERNAL
zmemcpy(dest
, source
, len
)
156 if (len
== 0) return;
158 *dest
++ = *source
++; /* ??? to be unrolled */
159 } while (--len
!= 0);
162 int ZLIB_INTERNAL
zmemcmp(s1
, s2
, len
)
169 for (j
= 0; j
< len
; j
++) {
170 if (s1
[j
] != s2
[j
]) return 2*(s1
[j
] > s2
[j
])-1;
175 void ZLIB_INTERNAL
zmemzero(dest
, len
)
179 if (len
== 0) return;
181 *dest
++ = 0; /* ??? to be unrolled */
182 } while (--len
!= 0);
191 /* Turbo C in 16-bit mode */
195 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
196 * and farmalloc(64K) returns a pointer with an offset of 8, so we
197 * must fix the pointer. Warning: the pointer must be put back to its
198 * original form in order to free it, use zcfree().
204 local
int next_ptr
= 0;
206 typedef struct ptr_table_s
{
211 local ptr_table table
[MAX_PTR
];
212 /* This table is used to remember the original form of pointers
213 * to large buffers (64K). Such pointers are normalized with a zero offset.
214 * Since MSDOS is not a preemptive multitasking OS, this table is not
215 * protected from concurrent access. This hack doesn't work anyway on
216 * a protected system like OS/2. Use Microsoft C instead.
219 voidpf ZLIB_INTERNAL
zcalloc (voidpf opaque
, unsigned items
, unsigned size
)
221 voidpf buf
= opaque
; /* just to make some compilers happy */
222 ulg bsize
= (ulg
)items
*size
;
224 /* If we allocate less than 65520 bytes, we assume that farmalloc
225 * will return a usable pointer which doesn't have to be normalized.
227 if (bsize
< 65520L) {
228 buf
= farmalloc(bsize
);
229 if (*(ush
*)&buf
!= 0) return buf
;
231 buf
= farmalloc(bsize
+ 16L);
233 if (buf
== NULL
|| next_ptr
>= MAX_PTR
) return NULL
;
234 table
[next_ptr
].org_ptr
= buf
;
236 /* Normalize the pointer to seg:0 */
237 *((ush
*)&buf
+1) += ((ush
)((uch
*)buf
-0) + 15) >> 4;
239 table
[next_ptr
++].new_ptr
= buf
;
243 void ZLIB_INTERNAL
zcfree (voidpf opaque
, voidpf ptr
)
246 if (*(ush
*)&ptr
!= 0) { /* object < 64K */
250 /* Find the original pointer */
251 for (n
= 0; n
< next_ptr
; n
++) {
252 if (ptr
!= table
[n
].new_ptr
) continue;
254 farfree(table
[n
].org_ptr
);
255 while (++n
< next_ptr
) {
256 table
[n
-1] = table
[n
];
261 ptr
= opaque
; /* just to make some compilers happy */
262 Assert(0, "zcfree: ptr not found");
265 #endif /* __TURBOC__ */
269 /* Microsoft C in 16-bit mode */
273 #if (!defined(_MSC_VER) || (_MSC_VER <= 600))
274 # define _halloc halloc
275 # define _hfree hfree
278 voidpf ZLIB_INTERNAL
zcalloc (voidpf opaque
, uInt items
, uInt size
)
280 if (opaque
) opaque
= 0; /* to make compiler happy */
281 return _halloc((long)items
, size
);
284 void ZLIB_INTERNAL
zcfree (voidpf opaque
, voidpf ptr
)
286 if (opaque
) opaque
= 0; /* to make compiler happy */
292 #endif /* SYS16BIT */
295 #ifndef MY_ZCALLOC /* Any system without a special alloc function */
298 extern voidp malloc
OF((uInt size
));
299 extern voidp calloc
OF((uInt items
, uInt size
));
300 extern void free
OF((voidpf ptr
));
303 voidpf ZLIB_INTERNAL
zcalloc (opaque
, items
, size
)
308 if (opaque
) items
+= size
- size
; /* make compiler happy */
309 return sizeof(uInt
) > 2 ? (voidpf
)malloc(items
* size
) :
310 (voidpf
)calloc(items
, size
);
313 void ZLIB_INTERNAL
zcfree (opaque
, ptr
)
318 if (opaque
) return; /* make compiler happy */
321 #endif /* MY_ZCALLOC */