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