zlib/zutil.c

181 lines
4.1 KiB
C
Raw Normal View History

2011-09-10 05:36:31 +00:00
/* zutil.c -- target dependent utility functions for the compression library
* Copyright (C) 1995 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
2011-09-10 06:08:07 +00:00
/* $Id: zutil.c,v 1.8 1995/05/03 17:27:12 jloup Exp $ */
2011-09-10 05:36:31 +00:00
#include <stdio.h>
#include "zutil.h"
2011-09-10 06:09:18 +00:00
struct internal_state {int dummy;}; /* for buggy compilers */
2011-09-10 06:07:35 +00:00
#ifndef __GO32__
2011-09-10 06:09:18 +00:00
extern void exit OF((int));
2011-09-10 06:07:35 +00:00
#endif
2011-09-10 05:52:17 +00:00
2011-09-10 05:36:31 +00:00
char *zlib_version = ZLIB_VERSION;
char *z_errmsg[] = {
"stream end", /* Z_STREAM_END 1 */
"", /* Z_OK 0 */
"file error", /* Z_ERRNO (-1) */
"stream error", /* Z_STREAM_ERROR (-2) */
"data error", /* Z_DATA_ERROR (-3) */
"insufficient memory", /* Z_MEM_ERROR (-4) */
"buffer error", /* Z_BUF_ERROR (-5) */
""};
void z_error (m)
char *m;
{
fprintf(stderr, "%s\n", m);
exit(1);
}
#ifndef HAVE_MEMCPY
void zmemcpy(dest, source, len)
Byte* dest;
Byte* source;
uInt len;
{
if (len == 0) return;
do {
2011-09-10 06:08:07 +00:00
*dest++ = *source++; /* ??? to be unrolled */
2011-09-10 05:36:31 +00:00
} while (--len != 0);
}
void zmemzero(dest, len)
Byte* dest;
uInt len;
{
if (len == 0) return;
do {
2011-09-10 06:08:07 +00:00
*dest++ = 0; /* ??? to be unrolled */
2011-09-10 05:36:31 +00:00
} while (--len != 0);
}
#endif
2011-09-10 06:07:35 +00:00
#if defined(__TURBOC__) && !defined(__SMALL__)
# define MY_ZCALLOC
2011-09-10 05:36:31 +00:00
/* Turbo C malloc() does not allow dynamic allocation of 64K bytes
* and farmalloc(64K) returns a pointer with an offset of 8, so we
* must fix the pointer. Warning: the pointer must be put back to its
* original form in order to free it, use zcfree().
*/
#define MAX_PTR 10
/* 10*64K = 640K */
local int next_ptr = 0;
typedef struct ptr_table_s {
voidp org_ptr;
voidp new_ptr;
} ptr_table;
local ptr_table table[MAX_PTR];
/* This table is used to remember the original form of pointers
* to large buffers (64K). Such pointers are normalized with a zero offset.
* Since MSDOS is not a preemptive multitasking OS, this table is not
* protected from concurrent access. This hack doesn't work anyway on
* a protected system like OS/2. Use Microsoft C instead.
*/
voidp zcalloc (voidp opaque, unsigned items, unsigned size)
{
2011-09-10 06:03:14 +00:00
voidp buf = opaque; /* just to make some compilers happy */
2011-09-10 05:36:31 +00:00
ulg bsize = (ulg)items*size;
if (bsize < 65536L) {
2011-09-10 06:08:07 +00:00
buf = farmalloc(bsize);
if (*(ush*)&buf != 0) return buf;
2011-09-10 05:36:31 +00:00
} else {
2011-09-10 06:08:07 +00:00
buf = farmalloc(bsize + 16L);
2011-09-10 05:36:31 +00:00
}
if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
table[next_ptr].org_ptr = buf;
/* Normalize the pointer to seg:0 */
*((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
*(ush*)&buf = 0;
table[next_ptr++].new_ptr = buf;
return buf;
}
void zcfree (voidp opaque, voidp ptr)
{
int n;
if (*(ush*)&ptr != 0) { /* object < 64K */
2011-09-10 06:08:07 +00:00
farfree(ptr);
return;
2011-09-10 05:36:31 +00:00
}
/* Find the original pointer */
for (n = 0; n < next_ptr; n++) {
2011-09-10 06:08:07 +00:00
if (ptr != table[n].new_ptr) continue;
farfree(table[n].org_ptr);
while (++n < next_ptr) {
table[n-1] = table[n];
}
next_ptr--;
return;
2011-09-10 05:36:31 +00:00
}
2011-09-10 06:03:14 +00:00
ptr = opaque; /* just to make some compilers happy */
2011-09-10 05:36:31 +00:00
z_error("zcfree: ptr not found");
}
2011-09-10 06:07:35 +00:00
#endif /* __TURBOC__ */
2011-09-10 06:09:18 +00:00
#if defined(MSDOS) && !defined(__TURBOC__) /* MSC */
2011-09-10 05:36:31 +00:00
2011-09-10 06:07:35 +00:00
# define MY_ZCALLOC
2011-09-10 05:36:31 +00:00
#if (!defined(_MSC_VER) || (_MSC_VER < 600))
# define _halloc halloc
# define _hfree hfree
#endif
voidp zcalloc (voidp opaque, unsigned items, unsigned size)
{
2011-09-10 06:03:14 +00:00
if (opaque) opaque = 0; /* to make compiler happy */
2011-09-10 05:36:31 +00:00
return _halloc((long)items, size);
}
void zcfree (voidp opaque, voidp ptr)
{
2011-09-10 06:03:14 +00:00
if (opaque) opaque = 0; /* to make compiler happy */
2011-09-10 05:52:17 +00:00
_hfree(ptr);
2011-09-10 05:36:31 +00:00
}
2011-09-10 06:09:18 +00:00
#endif /* MSC */
2011-09-10 05:36:31 +00:00
2011-09-10 06:07:35 +00:00
#ifndef MY_ZCALLOC /* Any system without a special alloc function */
#ifndef __GO32__
2011-09-10 06:09:18 +00:00
extern voidp calloc OF((uInt items, uInt size));
extern void free OF((voidp ptr));
2011-09-10 06:07:35 +00:00
#endif
2011-09-10 05:36:31 +00:00
voidp zcalloc (opaque, items, size)
voidp opaque;
unsigned items;
unsigned size;
{
return calloc(items, size);
}
void zcfree (opaque, ptr)
voidp opaque;
voidp ptr;
{
free(ptr);
}
2011-09-10 06:07:35 +00:00
#endif /* MY_ZCALLOC */