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 get_file_size(const char* filename);
15 int main(int argc, char* argv[])
24 long int volumesize = 0;
25 Uint32 pagesize = 32768; /* 32KB */
29 char *staticmodel = NULL;
31 while ((ch = getopt(argc, argv, "scdzm:t:q:")) != -1) {
51 volumesize = atol(optarg);
57 case 0: pagesize = 1024; /* 1K */
59 case 1: pagesize = 2048; /* 2K */
61 case 2: pagesize = 4096; /* 4K */
63 case 3: pagesize = 8192; /* 8K */
65 case 4: pagesize = 16384; /* 16K */
67 case 5: pagesize = 32768; /* 32K */
69 case 6: pagesize = 65536; /* 64K */
71 case 7: pagesize = 131072; /* 128K */
73 case 8: pagesize = 262144; /* 256K */
75 case 9: pagesize = 524288; /* 512K */
77 default: pagesize = 0; /* error */
81 default: fprintf(stderr, "Usage: %s [-cdzs][-q blksize][-t volsize][-m modeldumpfile] source target\n", argv[0]);
86 if ( (argc == 1) || (cflag & dflag) || !(cflag | dflag) || ((argc - optind) < 2) || (mflag & sflag)) {
87 fprintf(stderr, "Usage: %s [-cdzs][-q compressionquality][-t volsize][-m modeldumpfile] source target\n", argv[0]);
90 if ((tflag) && (volumesize <= 0l)) {
91 fprintf(stderr,"Error: The volume size must be a non-zero value\n");
94 if ((qflag) && (pagesize <= 1u)) {
95 fprintf(stderr,"Error: El nivel de compresiĆ³n debe ser entre 0 (menor) y 9 (mayor).\n");
102 Uint32 i, j, total, k;
104 unsigned char *salida, *data;
108 /* Preparo el compresor huffman */
109 if ((shuff = shuff_init_encoder_bychunk(argv[optind+1],volumesize*1024)) == NULL) return 1;
110 if (mflag == 1) shuff_loadmodel(shuff,staticmodel);
112 /* Preparo el BS alocando mem para la Salida: V(vector) + K(colnum) */
113 data = malloc(sizeof(unsigned char)*pagesize);
114 salida = malloc(sizeof(unsigned char)*pagesize+sizeof(Uint32));
115 bs = bs_create(pagesize);
117 /* Abrimos el archivo a comprimir y encodeamos bloques */
118 fp = fopen(argv[optind], "rb");
120 /* Guardamos el pagesize como header (huffencoded) */
121 shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(Uint32));
123 /* Guardamos cabecera para indicar si usamos ZG (huffencoded) */
124 if (zflag) shuff_scanfreq_chunk(shuff, "\001", 1);
125 else shuff_scanfreq_chunk(shuff, "\000", 1);
130 while ((!feof(fp)) && (i < pagesize)) {
131 data[i++] = fgetc(fp);
135 /* Saco un EOF que lee de mas */
138 /* Aplico BS guardando su resultado + el K en salida */
139 bs_solve(data, salida, bs, &k, i);
141 /* Le aplico el MTF a salida */
142 mtf = jacu_mtf(salida, i+sizeof(Uint32), &z, &z_len);
144 /* Guardo el z_len y el Z */
145 shuff_scanfreq_chunk(shuff,(char*)&z_len,sizeof(int));
146 shuff_scanfreq_chunk(shuff,z,z_len);
148 /* Si me lo piden, aplico ZG. */
150 Uint32 len,total_len = 0;
152 Uint32 total_size = i + sizeof(Uint32);
154 /* Guardo la salida del MTF con ceros agrupados (ZG) */
156 for (j = 0; j < total_size; ++j)
157 if ((len = zg_group(&zg, buff, mtf[j]))) {
158 shuff_scanfreq_chunk(shuff, buff, len);
161 /* Flusheo ultimo zgrouping */
162 if ((len = zg_group_finish(&zg,buff))) {
163 shuff_scanfreq_chunk(shuff, buff, len);
166 printf ("Saved %ld zgbytes\n",total_len);
168 /* Comprimo la salida del MTF */
169 shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
179 /* Comprimo con Huffman */
180 shuff_encode_file(shuff);
181 if (sflag == 1) shuff_savemodel(shuff);
182 /* Shutdown Huffman */
183 shuff_deinit_encoder(shuff);
187 printf("Comprimido a %.04f bpb.\n", get_file_size(argv[optind+1])*8.0/get_file_size(argv[optind]));
194 Uint32 block_size = 0,zgungrouped = 0, zgread = 0,k;
195 unsigned char *block, *mtf, *orig;
196 unsigned char *z, *zgbuffer;
197 int zgmoved = 0,z_len=0,moredata = 0,decoded = 0;
198 unsigned char use_zg = 0,zgbyte = 0,retbytes = 0;
201 /* Inicializo el descompresor */
202 if ((shuff = shuff_init_decoder(argv[optind],NULL)) == NULL) return 1;
204 /* Abrimos el archivo de salida */
205 fp_out = fopen(argv[optind+1], "wb");
207 /* Descomprimo primero que nada el pagesize utilizado para comprimir */
208 if (!(moredata = shuff_decode_chunk(shuff,(char*)&block_size,sizeof(Uint32),&decoded))) return 1;
210 /* Descomprimo byte que indica si se usa ZG */
211 if (!(moredata = shuff_decode_chunk(shuff, &use_zg, 1, &decoded))) return 1;
212 if (use_zg) zg_init(&zg);
215 zgbuffer = malloc(sizeof(unsigned char)*256);
216 block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32));
217 orig = malloc(block_size*sizeof(unsigned char));
219 /* Descomprimimos de a chunks segun convenga */
221 if (block_size > 0) {
222 /* Descomprimo el Zlen y el Z del MTF*/
223 moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
224 z = malloc(sizeof(unsigned char)*z_len);
225 moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
227 /* Veo si se uso Zero Grouping para comprimir */
231 /* Me fijo si tengo que copiar leftovers del zgbuffer anterior DEPRECATED? */
232 while (zgmoved < retbytes) block[zgungrouped++] = zgbuffer[zgmoved++];
233 /* Desagrupo bytes hasta completar la pagina or End of Source File */
235 /* Levanto un byte zerogrouped y lo paso por el zg_ungroup */
237 moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
239 retbytes = zg_ungroup(&zg,zgbuffer,zgbyte);
240 /* Muevo del zgbuffer a mi bloque lo que corresponda */
241 while ((zgmoved < retbytes) && (zgungrouped < block_size+sizeof(Uint32))) {
242 block[zgungrouped++] = zgbuffer[zgmoved++];
243 /*if ((zgungrouped % 500) == 0) printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);*/
245 /*if ((zgungrouped % 500) == 0) printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);*/
246 } while ((moredata) && (zgungrouped < block_size+sizeof(Uint32)));
248 /* Normalizo variables para continuar en common code */
249 printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);
250 decoded = zgungrouped;
253 /* Levanto una salida de MTF */
254 moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
257 /* Le aplico MTF inverso a la salida de MTF levantada previamente */
258 mtf = jacu_mtf_inv(z, block, decoded);
260 /* Ya tengo la salida del BS, tonces levanto su K */
261 memcpy(&k, mtf, sizeof(Uint32));
263 /* Obtengo el chunk original aplicando BS Inverso */
264 bs_restore(orig, mtf+sizeof(Uint32), k, decoded - sizeof(Uint32));
266 fwrite(orig, decoded - sizeof(Uint32), sizeof(unsigned char), fp_out);
273 /* Close up files and free mem */
279 /* Shutdown Huffman */
280 shuff_deinit_decoder(shuff);
287 long get_file_size(const char* filename)
292 if (!(file = fopen(filename, "ab"))) return -1;
293 file_size = ftell(file);