summaryrefslogtreecommitdiff
path: root/filter/flate.c
blob: f70464740e3efa97ff76a74b4ede8ed9e80e1fa4 (plain)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <fitz.h>

#include <zlib.h>

typedef struct fz_flate_s fz_flate;

struct fz_flate_s
{
	fz_filter super;
	z_stream z;
};

static void *
zmalloc(void *opaque, unsigned int items, unsigned int size)
{
	fz_memorycontext *mctx = (fz_memorycontext*)opaque;
	return mctx->malloc(mctx, items * size);
}

fz_error *
fz_newflated(fz_filter **fp, fz_obj *params)
{
	fz_error *eo;
	int ei;

	FZ_NEWFILTER(fz_flate, f, flated);

	f->z.zalloc = zmalloc;
	f->z.zfree = (void(*)(void*,void*))fz_currentmemorycontext()->free;
	f->z.opaque = fz_currentmemorycontext();
	f->z.next_in = nil;
	f->z.avail_in = 0;

	ei = inflateInit(&f->z);
	if (ei != Z_OK) {
		eo = fz_throw("ioerror: inflateInit: %s", f->z.msg);
		fz_free(f);
		return eo;
	}

	return nil;
}

void
fz_freeflated(fz_filter *f)
{
	z_streamp zp = &((fz_flate*)f)->z;
	int err;

	err = inflateEnd(zp);
	if (err != Z_OK)
		fprintf(stderr, "inflateEnd: %s", zp->msg);

	fz_free(f);
}

fz_error *
fz_processflated(fz_filter *f, fz_buffer *in, fz_buffer *out)
{
	z_streamp zp = &((fz_flate*)f)->z;
	int err;

	if (in->rp == in->wp && !in->eof)
		return fz_ioneedin;
	if (out->wp == out->ep)
		return fz_ioneedout;

	zp->next_in = in->rp;
	zp->avail_in = in->wp - in->rp;

	zp->next_out = out->wp;
	zp->avail_out = out->ep - out->wp;

	err = inflate(zp, Z_NO_FLUSH);

	in->rp = in->wp - zp->avail_in;
	out->wp = out->ep - zp->avail_out;

	if (err == Z_STREAM_END) {
		out->eof = 1;
		return fz_iodone;
	}
	else if (err == Z_OK) {
		if (in->rp == in->wp && !in->eof)
			return fz_ioneedin;
		if (out->wp == out->ep)
			return fz_ioneedout;
		return fz_ioneedin; /* hmm, what's going on here? */
	}
	else {
		return fz_throw("ioerror: inflate: %s", zp->msg);
	}
}

fz_error *
fz_newflatee(fz_filter **fp, fz_obj *params)
{
	fz_obj *obj;
	fz_error *eo;
	int effort;
	int ei;

	FZ_NEWFILTER(fz_flate, f, flatee);

	effort = -1;

	if (params) {
		obj = fz_dictgets(params, "Effort");
		if (obj) effort = fz_toint(obj);
	}

	f->z.zalloc = zmalloc;
	f->z.zfree = (void(*)(void*,void*))fz_currentmemorycontext()->free;
	f->z.opaque = fz_currentmemorycontext();
	f->z.next_in = nil;
	f->z.avail_in = 0;

	ei = deflateInit(&f->z, effort);
	if (ei != Z_OK) {
		eo = fz_throw("ioerror: deflateInit: %s", f->z.msg);
		fz_free(f);
		return eo;
	}

	return nil;
}

void
fz_freeflatee(fz_filter *f)
{
	z_streamp zp = &((fz_flate*)f)->z;
	int err;

	err = deflateEnd(zp);
	if (err != Z_OK)
		fprintf(stderr, "deflateEnd: %s", zp->msg);
	
	fz_free(f);
}

fz_error *
fz_processflatee(fz_filter *f, fz_buffer *in, fz_buffer *out)
{
	z_streamp zp = &((fz_flate*)f)->z;
	int err;

	if (in->rp == in->wp && !in->eof)
		return fz_ioneedin;
	if (out->wp == out->ep)
		return fz_ioneedout;

	zp->next_in = in->rp;
	zp->avail_in = in->wp - in->rp;

	zp->next_out = out->wp;
	zp->avail_out = out->ep - out->wp;

	err = deflate(zp, in->eof ? Z_FINISH : Z_NO_FLUSH);

	in->rp = in->wp - zp->avail_in;
	out->wp = out->ep - zp->avail_out;

	if (err == Z_STREAM_END) {
		out->eof = 1;
		return fz_iodone;
	}
	else if (err == Z_OK) {
		if (in->rp == in->wp && !in->eof)
			return fz_ioneedin;
		if (out->wp == out->ep)
			return fz_ioneedout;
		return fz_ioneedin; /* hmm? */
	}
	else {
		return fz_throw("ioerror: deflate: %s", zp->msg);
	}
}