summaryrefslogtreecommitdiffstats
blob: 5f04442c2b99ea42ffcab622f6040c5e313bcf0b (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
/*
 * Copyright (c) 2010 Remko Tron¨on
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
/*
 * Copyright (c) 2011, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.compress;

import com.isode.stroke.base.ByteArray;
import com.jcraft.jzlib.JZlib;
import com.jcraft.jzlib.ZStream;

public abstract class ZLibCodecompressor {
    protected final int CHUNK_SIZE = 1024;
    protected final ZStream stream_ = new ZStream();

    public ByteArray process(ByteArray input) throws ZLibException {
        ByteArray output = new ByteArray();
	stream_.avail_in = input.getSize();
	stream_.next_in = input.getData();
        stream_.next_in_index = 0;
        do {
            byte[] outputArray = new byte[CHUNK_SIZE];
            stream_.avail_out = CHUNK_SIZE;
            stream_.next_out = outputArray;
            stream_.next_out_index = 0;
            int result = processZStream();
            if (result != JZlib.Z_OK && result != JZlib.Z_BUF_ERROR) {
                throw new ZLibException(/* stream_.msg */);
            }
            output.append(outputArray, CHUNK_SIZE - stream_.avail_out);
	}
	while (stream_.avail_out == 0);
	if (stream_.avail_in != 0) {
		throw new ZLibException();
	}
	return output;
    }

    protected abstract int processZStream();
}