3 #include "blocksorting/bs.h"
5 #include "zerogrouping/zerogrouping.h"
6 #include "statichuff/statichuff.h"
7 #include "vfile/vfile.h"
8 #include "vfile/common.h"
13 long fsize(const char* filename);
15 typedef struct _flags_ {
25 int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags *flags, char *staticmodel);
26 int descomprimir(char *src, char *dst);
28 int main(int argc, char* argv[])
30 long int volumesize = 0;
31 Uint32 pagesize = 32768; /* 32KB */
34 char *staticmodel = NULL;
36 memset(&flags, 0, sizeof(t_Flags));
38 while ((ch = getopt(argc, argv, "scdzm:t:q:")) != -1) {
41 case 'c': flags.cflag = 1;
44 case 'd': flags.dflag = 1;
47 case 'z': flags.zflag = 1;
50 case 'm': flags.mflag = 1;
54 case 's': flags.sflag = 1;
57 case 't': flags.tflag = 1;
58 volumesize = atol(optarg);
61 case 'q': flags.qflag = 1;
64 case 0: pagesize = 1024; /* 1K */
66 case 1: pagesize = 2048; /* 2K */
68 case 2: pagesize = 4096; /* 4K */
70 case 3: pagesize = 8192; /* 8K */
72 case 4: pagesize = 16384; /* 16K */
74 case 5: pagesize = 32768; /* 32K */
76 case 6: pagesize = 65536; /* 64K */
78 case 7: pagesize = 131072; /* 128K */
80 case 8: pagesize = 262144; /* 256K */
82 case 9: pagesize = 524288; /* 512K */
84 default: pagesize = 0; /* error */
88 default: fprintf(stderr, "Usage: %s [-cdzs][-q blksize][-t volsize][-m modeldumpfile] source target\n", argv[0]);
93 if ( (argc == 1) || (flags.cflag & flags.dflag) || !(flags.cflag | flags.dflag) || ((argc - optind) < 2) || (flags.mflag & flags.sflag)) {
94 fprintf(stderr, "Usage: %s [-cdzs][-q compressionquality][-t volsize][-m modeldumpfile] source target\n", argv[0]);
97 if ((flags.tflag) && (volumesize <= 0l)) {
98 fprintf(stderr,"Error: The volume size must be a non-zero value\n");
101 if ((flags.qflag) && (pagesize <= 1u)) {
102 fprintf(stderr,"Error: El nivel de compresiĆ³n debe ser entre 0 (menor) y 9 (mayor).\n");
106 if (flags.cflag == 1) {
107 return comprimir(argv[optind], argv[optind+1], pagesize, volumesize, &flags, staticmodel);
110 if (flags.dflag == 1) {
111 return descomprimir(argv[optind], argv[optind+1]);
117 long fsize(const char* filename)
122 if (!(file = fopen(filename, "ab"))) return -1;
123 file_size = ftell(file);
128 int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags *flags, char *staticmodel)
134 Uint32 i, j, total, k;
136 unsigned char *salida, *data;
140 /* Preparo el compresor huffman */
141 if ((shuff = shuff_init_encoder_bychunk(dst, volumesize*1024)) == NULL) return 1;
142 if (flags->mflag == 1) shuff_loadmodel(shuff, staticmodel);
144 /* Preparo el BS alocando mem para la Salida: V(vector) + K(colnum) */
145 data = malloc(sizeof(unsigned char)*pagesize);
146 salida = malloc(sizeof(unsigned char)*pagesize+sizeof(Uint32));
147 bs = bs_create(pagesize);
149 /* Abrimos el archivo a comprimir y encodeamos bloques */
150 fp = fopen(src, "rb");
152 /* Guardamos el pagesize como header (huffencoded) */
153 shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(Uint32));
155 /* Guardamos cabecera para indicar si usamos ZG (huffencoded) */
157 shuff_scanfreq_chunk(shuff, "\001", 1);
159 shuff_scanfreq_chunk(shuff, "\000", 1);
164 i = bs_readblock(fp, data, pagesize);
168 /* Aplico BS guardando su resultado + el K en salida */
169 bs_solve(data, salida, bs, &k, i);
171 /* Le aplico el MTF a salida */
172 mtf = jacu_mtf(salida, i+sizeof(Uint32), &z, &z_len);
174 /* Guardo el z_len y el Z */
175 shuff_scanfreq_chunk(shuff,(char*)&z_len,sizeof(int));
176 shuff_scanfreq_chunk(shuff,z,z_len);
178 /* Si me lo piden, aplico ZG. */
181 unsigned char buff[2];
182 Uint32 total_size = i + sizeof(Uint32);
184 /* Guardo la salida del MTF con ceros agrupados (ZG) */
186 for (j = 0; j < total_size; ++j)
187 if ((len = zg_group(&zg, buff, mtf[j])))
188 shuff_scanfreq_chunk(shuff, buff, len);
190 /* Flusheo ultimo zgrouping */
191 if ((len = zg_group_finish(&zg,buff)))
192 shuff_scanfreq_chunk(shuff, buff, len);
194 /* Comprimo la salida del MTF */
195 shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
202 if (fclose(fp)) fprintf(stderr, "Error al cerrar archivo de entrada!\n");
205 /* Comprimo con Huffman */
206 shuff_encode_file(shuff);
207 if (flags->sflag == 1) shuff_savemodel(shuff);
208 /* Shutdown Huffman */
209 shuff_deinit_encoder(shuff);
213 printf("%s: %.04f bits/byte.\n", dst, vfsize(dst)*8.0f/fsize(src));
217 int descomprimir(char *src, char *dst)
221 Uint32 block_size = 0,zgungrouped = 0, k;
222 unsigned char *block, *mtf, *orig;
223 unsigned char *z, *zgbuffer;
224 int zgmoved = 0,z_len=0,moredata = 0,decoded = 0;
225 unsigned char use_zg = 0,zgbyte = 0,retbytes = 0;
229 /* Inicializo el descompresor */
230 if ((shuff = shuff_init_decoder(src, NULL)) == NULL) return 1;
232 /* Abrimos el archivo de salida */
233 fp_out = fopen(dst, "wb");
235 /* Descomprimo primero que nada el pagesize utilizado para comprimir */
236 if (!(moredata = shuff_decode_chunk(shuff,(char*)&block_size,sizeof(Uint32),&decoded))) return 1;
238 /* Descomprimo byte que indica si se usa ZG */
239 if (!(moredata = shuff_decode_chunk(shuff, &use_zg, 1, &decoded))) return 1;
240 if (use_zg) zg_init(&zg);
243 zgbuffer = malloc(sizeof(unsigned char)*256);
244 block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32));
245 orig = malloc(block_size*sizeof(unsigned char));
247 /* Descomprimimos de a chunks segun convenga */
249 if (block_size > 0) {
250 /* Descomprimo el Zlen y el Z del MTF*/
251 moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
252 z = malloc(sizeof(unsigned char)*z_len);
253 moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
255 /* Veo si se uso Zero Grouping para comprimir */
257 /* Desagrupo bytes hasta completar la pagina or End of Source File */
260 /* Levanto un byte zerogrouped y lo paso por el zg_ungroup */
262 moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
263 retbytes = zg_ungroup(&zg,zgbuffer,zgbyte);
264 /* Muevo del zgbuffer a mi bloque lo que corresponda */
265 while ((zgmoved < retbytes) && (zgungrouped < block_size+sizeof(Uint32))) {
266 block[zgungrouped++] = zgbuffer[zgmoved++];
268 } while ((moredata) && (zgungrouped < block_size+sizeof(Uint32)));
270 /* Me fijo si el ultimo byte procesado que me completo la pagina fue un 0 */
272 /* Leo un byte mas (un 0 seguro) y zg_ungroup cambiara su estado */
273 moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
274 zg_ungroup(&zg,zgbuffer,zgbyte);
277 /* Normalizo variables para continuar en common code */
278 decoded = zgungrouped;
281 /* Levanto una salida de MTF */
282 moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
285 /* Le aplico MTF inverso a la salida de MTF levantada previamente */
286 mtf = jacu_mtf_inv(z, block, decoded);
288 /* Ya tengo la salida del BS, tonces levanto su K */
289 memcpy(&k, mtf, sizeof(Uint32));
291 /* Obtengo el chunk original aplicando BS Inverso */
292 bs_restore(orig, mtf+sizeof(Uint32), k, decoded - sizeof(Uint32));
294 fwrite(orig, decoded - sizeof(Uint32), sizeof(unsigned char), fp_out);
301 /* Close up files and free mem */
307 /* Shutdown Huffman */
308 shuff_deinit_decoder(shuff);