aboutsummaryrefslogtreecommitdiffstats
path: root/xfile.h
blob: c915e2871cecb81220d5a9c8b39bbe1f13fc09dd (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
179
180
181
#include <magic.h>
#include <lzma.h>
#include <zlib.h>

#define kBufferSize (1 << 15)

typedef struct lzma_file {
    uint8_t buf[kBufferSize];
    lzma_stream strm;
    FILE *fp;
    lzma_bool eof;
} lzma_FILE;

typedef enum xFile_e {
    XF_ASCII,
    XF_GZIP,
    XF_LZMA,
    XF_XZ,
    XF_FAIL
} xFile_t;

typedef struct xFile_s {
    xFile_t type;
    lzma_bool eof;
    union {
	gzFile gz;
	lzma_FILE *xz;
    } f;
    FILE *fp;
} xFile;

static lzma_FILE *lzma_open(lzma_ret *lzma_error, FILE *fp, uint64_t memlimit)
{
	lzma_ret *ret = lzma_error;
	lzma_FILE *lzma_file;
	lzma_stream tmp = LZMA_STREAM_INIT;
    
	lzma_file = calloc(1, sizeof(*lzma_file));

	lzma_file->fp = fp;
	lzma_file->eof = 0;
	lzma_file->strm = tmp;

	*ret = lzma_auto_decoder(&lzma_file->strm, memlimit, 0);

	if (*ret != LZMA_OK) {
		(void) fclose(lzma_file->fp);
		free(lzma_file);
		return NULL;
	}
	return lzma_file;
}

static ssize_t lzma_read(lzma_ret *lzma_error, lzma_FILE *lzma_file, void *buf, size_t len)
{
	lzma_ret *ret = lzma_error;
	lzma_bool eof = 0;
    
	if (!lzma_file)
		return -1;
	if (lzma_file->eof)
		return 0;

	lzma_file->strm.next_out = buf;
	lzma_file->strm.avail_out = len;
	for (;;) {
		if (!lzma_file->strm.avail_in) {
			lzma_file->strm.next_in = (uint8_t *)lzma_file->buf;
			lzma_file->strm.avail_in = fread(lzma_file->buf, 1, kBufferSize, lzma_file->fp);
			if (!lzma_file->strm.avail_in)
				eof = 1;
		}
		*ret = lzma_code(&lzma_file->strm, LZMA_RUN);
		if (*ret == LZMA_STREAM_END) {
			lzma_file->eof = 1;
			return len - lzma_file->strm.avail_out;
		}
		if (*ret != LZMA_OK)
			return -1;
		if (!lzma_file->strm.avail_out)
			return len;
		if (eof)
			return -1;
	}
}


static xFile xOpen(const char *path) {
    xFile xF = {XF_FAIL, 0, {NULL}, NULL};
    lzma_ret ret = LZMA_OK;
    const char *message, *tmp;
    magic_t cookie;
    if ((cookie = magic_open(MAGIC_NONE)) && !magic_load(cookie, NULL)) {
	message = magic_file(cookie, path);
	if(message == NULL)
	    xF.type = XF_FAIL;
	else if(strstr(message, "gzip compressed"))
	    xF.type = XF_GZIP;
	else if(strstr(message, "xz compressed"))
	    xF.type = XF_XZ;
	else if(strstr(message, "LZMA compressed"))
	    xF.type = XF_LZMA;
	else if(strstr(message, "ASCII"))
	    xF.type = XF_ASCII;
	magic_close(cookie);
    }
    if(xF.type == XF_FAIL && (tmp = rindex(path, '.'))) {
	if(!strcmp(tmp, ".cz") || !strcmp(tmp, ".cz"))
	    xF.type = XF_GZIP;
	else if(!strcmp(tmp, ".xz"))
	    xF.type = XF_XZ;
	else if(!strcmp(tmp, ".lzma"))
	    xF.type = XF_LZMA;
    }

    switch(xF.type) {
	case XF_GZIP:
	    xF.f.gz = gzopen(path, "rb");
	    if(xF.f.gz == NULL)
		xF.type = XF_FAIL;
	    break;
	case XF_ASCII:
	case XF_LZMA:
	case XF_XZ:
	    xF.fp = fopen(path, "rb");
	    if(xF.fp == NULL)
		xF.type = XF_FAIL;
	    if(xF.type == XF_ASCII || xF.type == XF_FAIL) break;
	    xF.f.xz = lzma_open(&ret, xF.fp, -1);
	    if(ret != LZMA_OK)
		xF.type = XF_FAIL;
	    break;
	default:
	    break;
    }

    return xF;
}

static int xClose(xFile *xF) {
    int ret = -1;
    switch(xF->type) {
	case XF_GZIP:
	    ret = gzclose(xF->f.gz);
	    break;
	case XF_LZMA:
	case XF_XZ:
    	    lzma_end(&xF->f.xz->strm);
	    free(xF->f.xz);
	case XF_ASCII:
	    ret = fclose(xF->fp);
	    break;
	default:
	    break;
    }
    return ret;
}

static ssize_t xRead(xFile *xF, lzma_ret *ret, void *buf, size_t len) {
    ssize_t sz;
    switch(xF->type) {
	case XF_GZIP:
	    sz = gzread(xF->f.gz, buf, len);
	    xF->eof = gzeof(xF->f.gz);
	    break;
	case XF_LZMA:
	case XF_XZ:
	    sz = lzma_read(ret, xF->f.xz, buf, len);
	    xF->eof = xF->f.xz->eof;
	    break;
	case XF_ASCII:
	    sz = fread(buf, 1, len, xF->fp);
	    xF->eof = feof(xF->fp);
	    break;
	default:
	    break;
    }
    return sz;
}