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 size_t 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(size_t));
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. */
152 Uint32 total_size = i + sizeof(Uint32);
155 /* 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);
160 /* Comprimo la salida del MTF */
161 shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
171 /* Comprimo con Huffman */
172 shuff_encode_file(shuff);
173 if (sflag == 1) shuff_savemodel(shuff);
174 /* Shutdown Huffman */
175 shuff_deinit_encoder(shuff);
179 printf("Comprimido a %.04f bpb.\n", get_file_size(argv[optind+1])*8.0/get_file_size(argv[optind]));
187 Uint32 block_size = 0, k;
188 unsigned char *block, *mtf, *orig;
190 int z_len,moredata = 0,decoded = 0;
193 /* Inicializo el descompresor */
194 if ((shuff = shuff_init_decoder(argv[optind],NULL)) == NULL) return 1;
196 /* Abrimos el archivo de salida */
197 fp_out = fopen(argv[optind+1], "wb");
199 /* Descomprimo primero que nada el pagesize utilizado para comprimir */
200 if (!(moredata = shuff_decode_chunk(shuff,(char*)&block_size,sizeof(Uint32),&decoded))) return 1;
202 /* Descomprimo byte que indica si se usa ZG */
203 if (!(moredata = shuff_decode_chunk(shuff, &use_zg, 1, &decoded))) return 1;
206 block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32));
207 orig = malloc(block_size*sizeof(unsigned char));
209 /* Descomprimimos de a chunks segun convenga */
211 if (block_size > 0) {
212 /* Descomprimo el Zlen y el Z del MTF */
213 moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
214 z = malloc(sizeof(unsigned char)*z_len);
215 moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
217 /* Levanto una salida de MTF y le aplico MTF Inverso */
218 moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
219 mtf = jacu_mtf_inv(z, block, decoded);
221 /* Ya tengo la salida del BS, tonces levanto su K */
222 memcpy(&k, mtf, sizeof(Uint32));
224 /* Obtengo el chunk original aplicando BS Inverso */
225 bs_restore(orig, mtf+sizeof(Uint32), k, decoded - sizeof(Uint32));
227 fwrite(orig, decoded - sizeof(Uint32), sizeof(unsigned char), fp_out);
234 /* Close up files and free mem */
239 /* Shutdown Huffman */
240 shuff_deinit_decoder(shuff);
247 long get_file_size(const char* filename)
252 if (!(file = fopen(filename, "ab"))) return -1;
253 file_size = ftell(file);