os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/zutil.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* zutil.c -- target dependent utility functions for the compression library
sl@0
     2
 * Copyright (C) 1995-1998 Jean-loup Gailly.
sl@0
     3
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     4
 */
sl@0
     5
sl@0
     6
/* @(#) $Id$ */
sl@0
     7
sl@0
     8
#include <e32base.h>
sl@0
     9
#include "zutil.h"
sl@0
    10
sl@0
    11
sl@0
    12
struct internal_state      {int dummy;}; /* for buggy compilers */
sl@0
    13
sl@0
    14
#ifndef STDC
sl@0
    15
extern void exit OF((int));
sl@0
    16
#endif
sl@0
    17
sl@0
    18
const char * const z_errmsg[10] = {
sl@0
    19
"need dictionary",     /* Z_NEED_DICT       2  */
sl@0
    20
"stream end",          /* Z_STREAM_END      1  */
sl@0
    21
"",                    /* Z_OK              0  */
sl@0
    22
"file error",          /* Z_ERRNO         (-1) */
sl@0
    23
"stream error",        /* Z_STREAM_ERROR  (-2) */
sl@0
    24
"data error",          /* Z_DATA_ERROR    (-3) */
sl@0
    25
"insufficient memory", /* Z_MEM_ERROR     (-4) */
sl@0
    26
"buffer error",        /* Z_BUF_ERROR     (-5) */
sl@0
    27
"incompatible version",/* Z_VERSION_ERROR (-6) */
sl@0
    28
""};
sl@0
    29
sl@0
    30
sl@0
    31
EXPORT_C const char * ZEXPORT zlibVersion()
sl@0
    32
{
sl@0
    33
    return ZLIB_VERSION;
sl@0
    34
}
sl@0
    35
sl@0
    36
#ifdef DEBUG
sl@0
    37
sl@0
    38
#  ifndef verbose
sl@0
    39
#    define verbose 0
sl@0
    40
#  endif
sl@0
    41
const int z_verbose = verbose;
sl@0
    42
sl@0
    43
void z_error (m)
sl@0
    44
    char *m;
sl@0
    45
{
sl@0
    46
    fprintf(stderr, "%s\n", m);
sl@0
    47
    exit(1);
sl@0
    48
}
sl@0
    49
#endif
sl@0
    50
sl@0
    51
/* exported to allow conversion of error code to string for compress() and
sl@0
    52
 * uncompress()
sl@0
    53
 */
sl@0
    54
EXPORT_C const char * ZEXPORT zError(
sl@0
    55
    int err)
sl@0
    56
{
sl@0
    57
    return ERR_MSG(err);
sl@0
    58
}
sl@0
    59
sl@0
    60
sl@0
    61
#ifndef HAVE_MEMCPY
sl@0
    62
sl@0
    63
void zmemcpy(dest, source, len)
sl@0
    64
    Bytef* dest;
sl@0
    65
    const Bytef* source;
sl@0
    66
    uInt  len;
sl@0
    67
{
sl@0
    68
    if (len == 0) return;
sl@0
    69
    do {
sl@0
    70
        *dest++ = *source++; /* ??? to be unrolled */
sl@0
    71
    } while (--len != 0);
sl@0
    72
}
sl@0
    73
sl@0
    74
int zmemcmp(s1, s2, len)
sl@0
    75
    const Bytef* s1;
sl@0
    76
    const Bytef* s2;
sl@0
    77
    uInt  len;
sl@0
    78
{
sl@0
    79
    uInt j;
sl@0
    80
sl@0
    81
    for (j = 0; j < len; j++) {
sl@0
    82
        if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
sl@0
    83
    }
sl@0
    84
    return 0;
sl@0
    85
}
sl@0
    86
sl@0
    87
void zmemzero(dest, len)
sl@0
    88
    Bytef* dest;
sl@0
    89
    uInt  len;
sl@0
    90
{
sl@0
    91
    if (len == 0) return;
sl@0
    92
    do {
sl@0
    93
        *dest++ = 0;  /* ??? to be unrolled */
sl@0
    94
    } while (--len != 0);
sl@0
    95
}
sl@0
    96
#endif
sl@0
    97
sl@0
    98
#ifdef __TURBOC__
sl@0
    99
#if (defined( __BORLANDC__) || !defined(SMALL_MEDIUM)) && !defined(__32BIT__)
sl@0
   100
/* Small and medium model in Turbo C are for now limited to near allocation
sl@0
   101
 * with reduced MAX_WBITS and MAX_MEM_LEVEL
sl@0
   102
 */
sl@0
   103
#  define MY_ZCALLOC
sl@0
   104
sl@0
   105
/* Turbo C malloc() does not allow dynamic allocation of 64K bytes
sl@0
   106
 * and farmalloc(64K) returns a pointer with an offset of 8, so we
sl@0
   107
 * must fix the pointer. Warning: the pointer must be put back to its
sl@0
   108
 * original form in order to free it, use zcfree().
sl@0
   109
 */
sl@0
   110
sl@0
   111
#define MAX_PTR 10
sl@0
   112
/* 10*64K = 640K */
sl@0
   113
sl@0
   114
local int next_ptr = 0;
sl@0
   115
sl@0
   116
typedef struct ptr_table_s {
sl@0
   117
    voidpf org_ptr;
sl@0
   118
    voidpf new_ptr;
sl@0
   119
} ptr_table;
sl@0
   120
sl@0
   121
const local ptr_table table[MAX_PTR];
sl@0
   122
/* This table is used to remember the original form of pointers
sl@0
   123
 * to large buffers (64K). Such pointers are normalized with a zero offset.
sl@0
   124
 * Since MSDOS is not a preemptive multitasking OS, this table is not
sl@0
   125
 * protected from concurrent access. This hack doesn't work anyway on
sl@0
   126
 * a protected system like OS/2. Use Microsoft C instead.
sl@0
   127
 */
sl@0
   128
sl@0
   129
voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
sl@0
   130
{
sl@0
   131
    voidpf buf = opaque; /* just to make some compilers happy */
sl@0
   132
    ulg bsize = (ulg)items*size;
sl@0
   133
sl@0
   134
    /* If we allocate less than 65520 bytes, we assume that farmalloc
sl@0
   135
     * will return a usable pointer which doesn't have to be normalized.
sl@0
   136
     */
sl@0
   137
    if (bsize < 65520L) {
sl@0
   138
        buf = farmalloc(bsize);
sl@0
   139
        if (*(ush*)&buf != 0) return buf;
sl@0
   140
    } else {
sl@0
   141
        buf = farmalloc(bsize + 16L);
sl@0
   142
    }
sl@0
   143
    if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
sl@0
   144
    table[next_ptr].org_ptr = buf;
sl@0
   145
sl@0
   146
    /* Normalize the pointer to seg:0 */
sl@0
   147
    *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
sl@0
   148
    *(ush*)&buf = 0;
sl@0
   149
    table[next_ptr++].new_ptr = buf;
sl@0
   150
    return buf;
sl@0
   151
}
sl@0
   152
sl@0
   153
void  zcfree (voidpf opaque, voidpf ptr)
sl@0
   154
{
sl@0
   155
    int n;
sl@0
   156
    if (*(ush*)&ptr != 0) { /* object < 64K */
sl@0
   157
        farfree(ptr);
sl@0
   158
        return;
sl@0
   159
    }
sl@0
   160
    /* Find the original pointer */
sl@0
   161
    for (n = 0; n < next_ptr; n++) {
sl@0
   162
        if (ptr != table[n].new_ptr) continue;
sl@0
   163
sl@0
   164
        farfree(table[n].org_ptr);
sl@0
   165
        while (++n < next_ptr) {
sl@0
   166
            table[n-1] = table[n];
sl@0
   167
        }
sl@0
   168
        next_ptr--;
sl@0
   169
        return;
sl@0
   170
    }
sl@0
   171
    ptr = opaque; /* just to make some compilers happy */
sl@0
   172
    Assert(0, "zcfree: ptr not found");
sl@0
   173
}
sl@0
   174
#endif
sl@0
   175
#endif /* __TURBOC__ */
sl@0
   176
sl@0
   177
sl@0
   178
#if defined(M_I86) && !defined(__32BIT__)
sl@0
   179
/* Microsoft C in 16-bit mode */
sl@0
   180
sl@0
   181
#  define MY_ZCALLOC
sl@0
   182
sl@0
   183
#if (!defined(_MSC_VER) || (_MSC_VER <= 600))
sl@0
   184
#  define _halloc  halloc
sl@0
   185
#  define _hfree   hfree
sl@0
   186
#endif
sl@0
   187
sl@0
   188
voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
sl@0
   189
{
sl@0
   190
    if (opaque) opaque = 0; /* to make compiler happy */
sl@0
   191
    return _halloc((long)items, size);
sl@0
   192
}
sl@0
   193
sl@0
   194
void  zcfree (voidpf opaque, voidpf ptr)
sl@0
   195
{
sl@0
   196
    if (opaque) opaque = 0; /* to make compiler happy */
sl@0
   197
    _hfree(ptr);
sl@0
   198
}
sl@0
   199
sl@0
   200
#endif /* MSC */
sl@0
   201
sl@0
   202
sl@0
   203
#ifndef MY_ZCALLOC /* Any system without a special alloc function */
sl@0
   204
sl@0
   205
#ifndef STDC
sl@0
   206
extern voidp  calloc OF((uInt items, uInt size));
sl@0
   207
extern void   free   OF((voidpf ptr));
sl@0
   208
#endif
sl@0
   209
sl@0
   210
voidpf zcalloc (
sl@0
   211
    voidpf opaque,
sl@0
   212
    unsigned items,
sl@0
   213
    unsigned size)
sl@0
   214
{
sl@0
   215
    if (opaque) items += size - size; /* make compiler happy */
sl@0
   216
//    return (voidpf)calloc(items, size);
sl@0
   217
	TInt bytes = items*size;
sl@0
   218
	TAny *ptr = User::Alloc(bytes);
sl@0
   219
	if (ptr)
sl@0
   220
		Mem::FillZ(ptr,bytes);
sl@0
   221
	return (voidpf) ptr;  // Mark Ryan, Symbian 14/9/99
sl@0
   222
}
sl@0
   223
sl@0
   224
void  zcfree (
sl@0
   225
    voidpf opaque,
sl@0
   226
    voidpf ptr)
sl@0
   227
{
sl@0
   228
    //free(ptr);
sl@0
   229
	User::Free(ptr); // Mark Ryan, Symbian 14/9/99
sl@0
   230
    if (opaque) return; /* make compiler happy */
sl@0
   231
}
sl@0
   232
sl@0
   233
#endif /* MY_ZCALLOC */