aboutsummaryrefslogtreecommitdiff
path: root/src/libflate/deflateblock.c
blob: b16c3f3b900c03f549144ab0cf7cb32d9b916325 (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
#include <u.h>
#include <libc.h>
#include <flate.h>

typedef struct Block	Block;

struct Block
{
	uchar	*pos;
	uchar	*limit;
};

static int
blread(void *vb, void *buf, int n)
{
	Block *b;

	b = vb;
	if(n > b->limit - b->pos)
		n = b->limit - b->pos;
	memmove(buf, b->pos, n);
	b->pos += n;
	return n;
}

static int
blwrite(void *vb, void *buf, int n)
{
	Block *b;

	b = vb;

	if(n > b->limit - b->pos)
		n = b->limit - b->pos;
	memmove(b->pos, buf, n);
	b->pos += n;
	return n;
}

int
deflateblock(uchar *dst, int dsize, uchar *src, int ssize, int level, int debug)
{
	Block bd, bs;
	int ok;

	bs.pos = src;
	bs.limit = src + ssize;

	bd.pos = dst;
	bd.limit = dst + dsize;

	ok = deflate(&bd, blwrite, &bs, blread, level, debug);
	if(ok != FlateOk)
		return ok;
	return bd.pos - dst;
}