-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathminilzo_sample.c
298 lines (243 loc) · 8.36 KB
/
minilzo_sample.c
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
* File : minilzo_sample.c
* this example is a very simple test program for the minilzo library,
* using non-stream compress and decompress. If you want to use stream compress,
* you need at least 100K of ROM for history buffer(not recommend), or you can custom
* header to storage the compress block size, and carry out stream compress by non-stream.
*
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Change Logs:
* Date Author Notes
* 2018-02-05 chenyong first version
* 2018-02-11 Murphy Adapted minilzo
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <rtthread.h>
#include <dfs_posix.h>
#include "minilzo.h"
#define malloc rt_malloc
#define free rt_free
#define BLOCK_HEADER_SIZE 4
/* The output buffer can not be smaller than 66 bytes */
#define COMPRESS_BUFFER_SIZE 4096
#define DCOMPRESS_BUFFER_SIZE 4096
/* we must provide a little more output space in case that compression is not possible */
#define BUFFER_PADDING MINILZO_BUFFER_PADDING(COMPRESS_BUFFER_SIZE)
static int minilzo_compress_file(int fd_in, int fd_out)
{
/* Start to compress file */
rt_uint8_t *cmprs_buffer = RT_NULL, *buffer = RT_NULL;
rt_uint8_t buffer_hdr[BLOCK_HEADER_SIZE] = { 0 };
int cmprs_size = 0, block_size = 0, totle_cmprs_size = 0;
size_t file_size = 0, i = 0;
int ret = 0;
/* Work-memory needed for compression */
lzo_voidp wrkmem = (lzo_voidp)malloc(LZO1X_1_MEM_COMPRESS);
memset(wrkmem, 0x00, LZO1X_1_MEM_COMPRESS);
file_size = lseek(fd_in, 0, SEEK_END);
lseek(fd_in, 0, SEEK_SET);
cmprs_buffer = (rt_uint8_t *) malloc(COMPRESS_BUFFER_SIZE + BUFFER_PADDING);
buffer = (rt_uint8_t *) malloc(COMPRESS_BUFFER_SIZE);
if (!cmprs_buffer || !buffer)
{
rt_kprintf("[minilzo] No memory for cmprs_buffer or buffer!\n");
ret = -1;
goto _exit;
}
rt_kprintf("[minilzo]compress start : ");
for (i = 0; i < file_size; i += COMPRESS_BUFFER_SIZE)
{
if ((file_size - i) < COMPRESS_BUFFER_SIZE)
{
block_size = file_size - i;
}
else
{
block_size = COMPRESS_BUFFER_SIZE;
}
memset(buffer, 0x00, COMPRESS_BUFFER_SIZE);
memset(cmprs_buffer, 0x00, COMPRESS_BUFFER_SIZE + BUFFER_PADDING);
read(fd_in, buffer, block_size);
/* The destination buffer must be at least size + 400 bytes large because incompressible data may increase in size. */
ret = lzo1x_1_compress(buffer, block_size, cmprs_buffer, &cmprs_size, wrkmem);
if (ret != LZO_E_OK)
{
ret = -1;
goto _exit;
}
/* Store compress block size to the block header (4 byte). */
buffer_hdr[3] = cmprs_size % (1 << 8);
buffer_hdr[2] = (cmprs_size % (1 << 16)) / (1 << 8);
buffer_hdr[1] = (cmprs_size % (1 << 24)) / (1 << 16);
buffer_hdr[0] = cmprs_size / (1 << 24);
write(fd_out, buffer_hdr, BLOCK_HEADER_SIZE);
write(fd_out, cmprs_buffer, cmprs_size);
totle_cmprs_size += cmprs_size + BLOCK_HEADER_SIZE;
rt_kprintf(">");
}
rt_kprintf("\n");
rt_kprintf("[minilzo]compressed %d bytes into %d bytes , compression ratio is %d%!\n", file_size, totle_cmprs_size,
(totle_cmprs_size * 100) / file_size);
_exit:
if (cmprs_buffer)
{
free(cmprs_buffer);
}
if (buffer)
{
free(buffer);
}
if (wrkmem)
{
free(wrkmem);
}
return ret;
}
static int minilzo_decompress_file(int fd_in, int fd_out)
{
/* Start to decompress file */
rt_uint8_t *dcmprs_buffer = RT_NULL, *buffer = RT_NULL;
rt_uint8_t buffer_hdr[BLOCK_HEADER_SIZE] = { 0 };
size_t dcmprs_size = 0, block_size = 0, total_dcmprs_size = 0;
size_t file_size = 0, i = 0;
int ret = 0;
file_size = lseek(fd_in, 0, SEEK_END);
lseek(fd_in, 0, SEEK_SET);
if (file_size <= BLOCK_HEADER_SIZE)
{
rt_kprintf("[minilzo] decomprssion file size : %d error!\n", file_size);
ret = -1;
goto _dcmprs_exit;
}
dcmprs_buffer = (rt_uint8_t *) malloc(DCOMPRESS_BUFFER_SIZE);
buffer = (rt_uint8_t *) malloc(DCOMPRESS_BUFFER_SIZE + BUFFER_PADDING);
if (!dcmprs_buffer || !buffer)
{
rt_kprintf("[minilzo] No memory for dcmprs_buffer or buffer!\n");
ret = -1;
goto _dcmprs_exit;
}
rt_kprintf("[minilzo]decompress start : ");
for (i = 0; i < file_size; i += BLOCK_HEADER_SIZE + block_size)
{
/* Get the decompress block size from the block header. */
read(fd_in, buffer_hdr, BLOCK_HEADER_SIZE);
block_size = buffer_hdr[0] * (1 << 24) + buffer_hdr[1] * (1 << 16) + buffer_hdr[2] * (1 << 8) + buffer_hdr[3];
memset(buffer, 0x00, COMPRESS_BUFFER_SIZE + BUFFER_PADDING);
memset(dcmprs_buffer, 0x00, DCOMPRESS_BUFFER_SIZE);
read(fd_in, buffer, block_size);
ret = lzo1x_decompress(buffer, block_size, dcmprs_buffer, &dcmprs_size, NULL);
if (ret != LZO_E_OK)
{
ret = -1;
goto _dcmprs_exit;
}
write(fd_out, dcmprs_buffer, dcmprs_size);
total_dcmprs_size += dcmprs_size;
rt_kprintf(">");
}
rt_kprintf("\n");
rt_kprintf("decompressed %d bytes into %d bytes !\n", file_size, total_dcmprs_size);
_dcmprs_exit:
if (dcmprs_buffer)
{
free(dcmprs_buffer);
}
if(buffer)
{
free(buffer);
}
return ret;
}
int minilzo_test(int argc, char ** argv)
{
int fd_in = -1 , fd_out = -1;
int ret = 0;
if (argc != 4)
{
rt_kprintf("Usage:\n");
rt_kprintf("minilzo_test -c [file] [cmprs_file] -compress \"file\" to \"cmprs_file\" \n");
rt_kprintf("minilzo_test -d [cmprs_file] [dcmprs_file] -dcompress \"cmprs_file\" to \"dcmprs_file\" \n");
ret = -1;
goto _exit;
}
rt_kprintf("\nminiLZO real-time data compression library (v%s, %s).\n",
lzo_version_string(), lzo_version_date());
/*
* Initialize the LZO library
*/
if (lzo_init() != LZO_E_OK)
{
rt_kprintf("internal error - lzo_init() failed !!!\n");
return 3;
}
fd_in = open(argv[2], O_RDONLY, 0);
if (fd_in < 0)
{
rt_kprintf("[minilzo] open the input file : %s error!\n", argv[2]);
ret = -1;
goto _exit;
}
fd_out = open(argv[3], O_WRONLY | O_CREAT | O_TRUNC, 0);
if (fd_out < 0)
{
rt_kprintf("[minilzo] open the output file : %s error!\n", argv[3]);
ret = -1;
goto _exit;
}
if(memcmp("-c", argv[1], strlen(argv[1])) == 0)
{
if(minilzo_compress_file(fd_in, fd_out) < 0)
{
rt_kprintf("[minilzo] minilzo compress file error!\n");
}
}
else if(memcmp("-d", argv[1], strlen(argv[1])) == 0)
{
if(minilzo_decompress_file(fd_in, fd_out) < 0)
{
rt_kprintf("[minilzo] minilzo decompress file error!\n");
}
}
else
{
rt_kprintf("Usage:\n");
rt_kprintf("minilzo_test -c [file] [cmprs_file] -compress \"file\" to \"cmprs_file\" \n");
rt_kprintf("minilzo_test -d [cmprs_file] [dcmprs_file] -dcompress \"cmprs_file\" to \"dcmprs_file\" \n");
ret = -1;
goto _exit;
}
_exit:
if(fd_in >= 0)
{
close(fd_in);
}
if(fd_out >= 0)
{
close(fd_out);
}
return ret;
}
#ifdef RT_USING_FINSH
#ifdef FINSH_USING_MSH
#include <finsh.h>
MSH_CMD_EXPORT(minilzo_test, minilzo compress and decompress test);
#endif
#endif