1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* Code common to zlib encoding and decoding streams */
#include "std.h"
#include "gserrors.h"
#include "gstypes.h"
#include "gsmemory.h"
#include "gsstruct.h"
#include "strimpl.h"
#include "szlibxx.h"
#include "zconf.h"
private_st_zlib_block();
private_st_zlib_dynamic_state();
public_st_zlib_state();
/* Set defaults for stream parameters. */
void
s_zlib_set_defaults(stream_state * st)
{
stream_zlib_state *const ss = (stream_zlib_state *)st;
ss->windowBits = MAX_WBITS;
ss->no_wrapper = false;
ss->level = Z_DEFAULT_COMPRESSION;
ss->method = Z_DEFLATED;
/* DEF_MEM_LEVEL should be in zlib.h or zconf.h, but it isn't. */
ss->memLevel = min(MAX_MEM_LEVEL, 8);
ss->strategy = Z_DEFAULT_STRATEGY;
/* Clear pointers */
ss->dynamic = 0;
}
/* Allocate the dynamic state. */
int
s_zlib_alloc_dynamic_state(stream_zlib_state *ss)
{
gs_memory_t *mem = ss->memory;
zlib_dynamic_state_t *zds =
gs_alloc_struct_immovable(mem, zlib_dynamic_state_t,
&st_zlib_dynamic_state,
"s_zlib_alloc_dynamic_state");
ss->dynamic = zds;
if (zds == 0)
return_error(gs_error_VMerror);
zds->blocks = 0;
zds->memory = mem;
zds->zstate.zalloc = (alloc_func)s_zlib_alloc;
zds->zstate.zfree = (free_func)s_zlib_free;
zds->zstate.opaque = (voidpf)zds;
return 0;
}
/* Free the dynamic state. */
void
s_zlib_free_dynamic_state(stream_zlib_state *ss)
{
if (ss->dynamic)
gs_free_object(ss->dynamic->memory, ss->dynamic,
"s_zlib_free_dynamic_state");
}
/* Provide zlib-compatible allocation and freeing functions. */
void *
s_zlib_alloc(void *zmem, uint items, uint size)
{
zlib_dynamic_state_t *const zds = zmem;
gs_memory_t *mem = zds->memory->stable_memory;
zlib_block_t *block =
gs_alloc_struct(mem, zlib_block_t, &st_zlib_block,
"s_zlib_alloc(block)");
void *data =
gs_alloc_byte_array_immovable(mem, items, size, "s_zlib_alloc(data)");
if (block == 0 || data == 0) {
gs_free_object(mem, data, "s_zlib_alloc(data)");
gs_free_object(mem, block, "s_zlib_alloc(block)");
return Z_NULL;
}
block->data = data;
block->next = zds->blocks;
block->prev = 0;
if (zds->blocks)
zds->blocks->prev = block;
zds->blocks = block;
return data;
}
void
s_zlib_free(void *zmem, void *data)
{
zlib_dynamic_state_t *const zds = zmem;
gs_memory_t *mem = zds->memory->stable_memory;
zlib_block_t *block = zds->blocks;
gs_free_object(mem, data, "s_zlib_free(data)");
for (; ; block = block->next) {
if (block == 0) {
#ifdef DEBUG
lprintf1("Freeing unrecorded data "PRI_INTPTR"!\n", (intptr_t)data);
#endif
return;
}
if (block->data == data)
break;
}
if (block->next)
block->next->prev = block->prev;
if (block->prev)
block->prev->next = block->next;
else
zds->blocks = block->next;
gs_free_object(mem, block, "s_zlib_free(block)");
}
|