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");
207 /* Comprimo con Huffman */
208 shuff_encode_file(shuff);
209 if (flags->sflag == 1) shuff_savemodel(shuff);
210 /* Shutdown Huffman */
211 shuff_deinit_encoder(shuff);
215 printf("%s: %.04f bits/byte.\n", dst, vfsize(dst)*8.0f/fsize(src));
219 int descomprimir(char *src, char *dst)
223 Uint32 block_size = 0,zgungrouped = 0, k;
224 unsigned char *block, *mtf, *orig;
225 unsigned char *z, *zgbuffer;
226 int zgmoved = 0,z_len=0,moredata = 0,decoded = 0;
227 unsigned char use_zg = 0,zgbyte = 0,retbytes = 0;
231 /* Inicializo el descompresor */
232 if ((shuff = shuff_init_decoder(src, NULL)) == NULL) return 1;
234 /* Abrimos el archivo de salida */
235 fp_out = fopen(dst, "wb");
237 /* Descomprimo primero que nada el pagesize utilizado para comprimir */
238 if (!(moredata = shuff_decode_chunk(shuff,(char*)&block_size,sizeof(Uint32),&decoded))) return 1;
240 /* Descomprimo byte que indica si se usa ZG */
241 if (!(moredata = shuff_decode_chunk(shuff, &use_zg, 1, &decoded))) return 1;
242 if (use_zg) zg_init(&zg);
245 zgbuffer = malloc(sizeof(unsigned char)*256);
246 block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32));
247 orig = malloc(block_size*sizeof(unsigned char));
249 /* Descomprimimos de a chunks segun convenga */
251 if (block_size > 0) {
252 /* Descomprimo el Zlen y el Z del MTF*/
253 moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
254 z = malloc(sizeof(unsigned char)*z_len);
255 moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
257 /* Veo si se uso Zero Grouping para comprimir */
259 /* Desagrupo bytes hasta completar la pagina or End of Source File */
262 /* Levanto un byte zerogrouped y lo paso por el zg_ungroup */
264 moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
265 retbytes = zg_ungroup(&zg,zgbuffer,zgbyte);
266 /* Muevo del zgbuffer a mi bloque lo que corresponda */
267 while ((zgmoved < retbytes) && (zgungrouped < block_size+sizeof(Uint32))) {
268 block[zgungrouped++] = zgbuffer[zgmoved++];
270 } while ((moredata) && (zgungrouped < block_size+sizeof(Uint32)));
272 /* Me fijo si el ultimo byte procesado que me completo la pagina fue un 0 */
274 /* Leo un byte mas (un 0 seguro) y zg_ungroup cambiara su estado */
275 moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
276 zg_ungroup(&zg,zgbuffer,zgbyte);
279 /* Normalizo variables para continuar en common code */
280 decoded = zgungrouped;
283 /* Levanto una salida de MTF */
284 moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
287 /* Le aplico MTF inverso a la salida de MTF levantada previamente */
288 mtf = jacu_mtf_inv(z, block, decoded);
290 /* Ya tengo la salida del BS, tonces levanto su K */
291 memcpy(&k, mtf, sizeof(Uint32));
293 /* Obtengo el chunk original aplicando BS Inverso */
294 bs_restore(orig, mtf+sizeof(Uint32), k, decoded - sizeof(Uint32));
296 fwrite(orig, decoded - sizeof(Uint32), sizeof(unsigned char), fp_out);
303 /* Close up files and free mem */
309 /* Shutdown Huffman */
310 shuff_deinit_decoder(shuff);