2 #include "statichuff.h"
6 /** Coloca un bit en un buffer statico */
7 void putbit(char bit, char restart, char flush, VFILE *fp)
9 static unsigned long int bits_buffer = 0;
10 static unsigned char bits_used = 0;
12 /* me obligan a emitir el output */
13 if ((flush == 1) && (bits_used > 0)) {
14 bits_buffer = bits_buffer << ((sizeof(unsigned long int)*8) - bits_used);
15 vfwrite(&bits_buffer,sizeof(unsigned long int),1,fp);
20 /* me indican que comienza un nuevo output */
25 /* inserto el bit en el buffer */
26 bits_buffer = bits_buffer << 1;
30 /* lleno el buffer, escribo */
31 if (bits_used == 32) {
32 vfwrite(&bits_buffer,sizeof(unsigned long int),1,fp);
39 /** Realiza la copia de los datos de un nodo de huffman a otro */
40 void shuff_cpynode(SHUFFNODE *node1, SHUFFNODE *node2)
42 node1->symbol = node2->symbol;
43 node1->freq = node2->freq;
44 node1->lchild = node2->lchild;
45 node1->rchild = node2->rchild;
48 /** Realiza una comparacion de dos nodos de huffman */
49 int shuff_compnode(const void *node1, const void *node2)
51 if (((SHUFFNODE*)node1)->freq < ((SHUFFNODE*)node2)->freq) return 1;
52 if (((SHUFFNODE*)node1)->freq > ((SHUFFNODE*)node2)->freq) return -1;
56 /** Destruye un arbol de huffman recursivamente */
57 void shuff_destroy_tree(SHUFFNODE *node) {
58 /* Si llegue a una hoja, destruyo y vuelvo */
59 if (node->symbol < 256) {
64 /* Desciendo por izq, luego por derecha y luego libero */
65 shuff_destroy_tree(node->lchild);
66 shuff_destroy_tree(node->rchild);
72 /** Reescala las frecuencias de huffman a la mitad */
73 int shuff_rescalefreq(t_freq *freqtable)
78 /* Divido por la mitad las frecuencias, asegurando de no perder */
79 for (i = 0; i < 256; i++) {
80 freqtable[i] = (freqtable[i] >> 2) | 1;
81 totalfreq += freqtable[i];
87 /** Escanea las frecuencias de un chunk de datos */
88 int shuff_scanfreq_chunk(HUFF_STATE *chunkshuff, char* chunk, int chunksize)
92 unsigned char symbol = 0;
94 /* Contamos las frecuencias del chunk a menos que se use un canonico */
95 if (!chunkshuff->canonic) {
96 for (i = 0; i < chunksize; ++i) {
98 chunkshuff->freqtable[symbol] += 1;
99 chunkshuff->sumfreq += 1;
101 /* Si llegue al tope de freq acumulada, halve em */
102 if (chunkshuff->sumfreq == 14930352)
103 chunkshuff->sumfreq = shuff_rescalefreq(chunkshuff->freqtable);
107 /* Dumpeamos el chunk en el temporal homero */
108 fwrite(chunk,chunksize,1,chunkshuff->coderfp);
113 /** Escanea las frecuencias de un archivo y genera el modelo */
114 int shuff_scanfreq(char *inputfile, t_freq *freqtable)
121 /* Inicializamos la tabla de frecuencias */
122 for (i = 0; i < 256; ++i) freqtable[i] = 0;
124 /* Abrimos el file */
125 if ((fp = fopen(inputfile,"r")) == NULL) return 0;
127 /* Contamos las frecuencias */
129 if (symbol == EOF) continue;
134 /* Si llegue al tope de freq acumulada, halve em */
135 if (sumfreq == 14930352)
136 sumfreq = shuff_rescalefreq(freqtable);
143 /** Genera un input list que sera utilizada para generar el arbol */
144 SHUFFNODE *shuff_buildlist(t_freq *freqtable, int *nonzerofreqs)
146 int i,j = 0,nonzero = 0;
147 SHUFFNODE *inputlist;
149 /* Calculo cuantas frequencias > 0 hay y creo la tabla */
150 for (i = 0; i < 256; ++i) if (freqtable[i] > 0) nonzero++;
151 inputlist = (SHUFFNODE*)malloc(sizeof(SHUFFNODE)*nonzero);
153 /* Cargo la inputlist del huffman solo con freqs > 0 */
154 for (i = 0; i < 256; ++i)
155 if (freqtable[i] > 0) {
156 inputlist[j].symbol = i;
157 inputlist[j].freq = freqtable[i];
158 inputlist[j].lchild = NULL;
159 inputlist[j].rchild = NULL;
163 *nonzerofreqs = nonzero;
167 /** Genera el arbol de huffman en base a la tabla de frecuencias */
168 SHUFFNODE *shuff_buildtree(t_freq *ftable)
170 SHUFFNODE *lastsymbol;
171 SHUFFNODE *node1,*node2,*root;
172 SHUFFNODE *inputlist;
175 /* Genero la input list en base a la cual genera el arbol */
176 inputlist = shuff_buildlist(ftable, &freqcount);
177 lastsymbol = inputlist+(freqcount-1);
179 while (lastsymbol > inputlist) {
180 /* Ordeno la lista por frecuencia descendente */
181 qsort(inputlist,freqcount,sizeof(SHUFFNODE),shuff_compnode);
182 /* Tomo los ultimos dos elementos, generando dos nodos del arbol */
183 node1 = (SHUFFNODE*)malloc(sizeof(SHUFFNODE));
184 node2 = (SHUFFNODE*)malloc(sizeof(SHUFFNODE));
185 shuff_cpynode(node1,lastsymbol-1);
186 shuff_cpynode(node2,lastsymbol);
188 /* Nodo ficticio con la suma de las probs y los ptros a childs */
189 lastsymbol->symbol = 256;
190 lastsymbol->freq = node1->freq + node2->freq;
191 lastsymbol->lchild = node1;
192 lastsymbol->rchild = node2;
196 /* Copio la raiz para poder liberar la lista sin perderla */
197 root = (SHUFFNODE*)malloc(sizeof(SHUFFNODE));
198 shuff_cpynode(root,lastsymbol);
203 /* Devuelvo el puntero a la raiz del arbol de huffman */
207 /** Imprime los codigos prefijos generados para los symbolos */
208 void shuff_printcodes(SHUFFCODE *codetable,t_freq *freqtable)
211 unsigned short int auxcode;
214 for (i = 0; i < 256; ++i) {
215 if (codetable[i].codelength > 0) {
216 auxcode = codetable[i].code;
217 printf("Symbol:%i Freq: %lu Code:",i,freqtable[i]);
218 for (j = codetable[i].codelength-1; j >= 0; --j) {
219 auxcode = codetable[i].code;
220 auxcode = auxcode >> j;
224 printf(" Length:%i\n",codetable[i].codelength);
229 /** Inicializa la tabla de codigos prefijos */
230 void shuff_zerocodes(SHUFFCODE *table)
234 /* Inicializo los codigos prefijos */
235 for (i = 0; i < 256; ++i) {
237 table[i].codelength = 0;
241 /** Genera la tabla de codigos prefijos en base al árbol de huffman */
242 void shuff_buildcodes(SHUFFCODE *table, SHUFFNODE *node, int level, int code)
244 if (node->symbol < 256) {
245 /* Guardo el codigo en la tabla */
246 table[node->symbol].code = code;
247 table[node->symbol].codelength = level;
251 shuff_buildcodes(table,node->lchild,level+1,code);
253 shuff_buildcodes(table,node->rchild,level+1,code);
257 /** Realiza la compresion / encoding efectivo de un archivo */
258 int shuff_encode_symbols(HUFF_STATE *shuff, SHUFFCODE *ctable)
263 unsigned long int sourcesize;
265 SHUFFCODE symbolcode;
267 /* Abrimos el source y el destino */
268 if (shuff->coderfp != NULL) {
269 fclose(shuff->coderfp); /* close bychunk temp file */
270 shuff->coderfp = NULL;
272 if ((fpsource = fopen(shuff->sourcefile,"r")) == NULL) return 0;
273 if ((fpdest = vfopen(shuff->targetfile,"w",shuff->volsize)) == NULL) return 0;
275 /* Guardamos el size el archivo original e inputlist como header */
276 fseek(fpsource,0,SEEK_END);
277 sourcesize = ftell(fpsource);
278 vfwrite(&sourcesize,sizeof(unsigned long int),1,fpdest);
279 vfwrite(shuff->freqtable,sizeof(t_freq),256,fpdest);
282 fseek(fpsource,0,SEEK_SET);
283 while (!feof(fpsource)) {
284 /* Levanto un symbolo (byte) */
285 symbol = fgetc(fpsource);
286 if (symbol == EOF) continue;
288 /* Cargamos el codigo y lo emitimos */
289 symbolcode = ctable[symbol];
290 for (i = symbolcode.codelength; i > 0; --i) {
291 bit = (symbolcode.code >> (i-1)) & 1;
292 putbit(bit,0,0,fpdest);
296 /* Hacemos un flush de lo que haya quedado en el buffer de salida */
297 putbit(0,0,1,fpdest);
303 /** Prepara las estructuras de datos necesarias para una compresion */
304 int shuff_encode_file(HUFF_STATE *shuff)
307 SHUFFCODE *codetable = (SHUFFCODE*)malloc(sizeof(SHUFFCODE)*256);
309 /* Veo si debo armar una freqtable o si esta preloaded */
310 if ((!shuff->canonic) && (!shuff->bychunk))
311 if (!shuff_scanfreq(shuff->sourcefile,shuff->freqtable)) return 0;
313 /* Genero el arbol de huffman */
314 shuff->codetree = shuff_buildtree(shuff->freqtable);
316 /* Armo la tabla de codigos prefijos para el encoder */
317 shuff_zerocodes(codetable);
318 shuff_buildcodes(codetable,shuff->codetree,0,0);
319 /*shuff_printcodes(codetable,shuff->freqtable);*/
321 /* Encodeo byte per byte */
322 shuff_encode_symbols(shuff,codetable);
324 /* Free up memory baby yeah */
330 /** Decodifica una serie de bits en un symbolo y lo devuelve */
331 SHUFFNODE *shuff_decode_symbols(SHUFFNODE *entrynode, unsigned long int buffer,
332 int *bitsleft, unsigned short int *symbol)
336 /* Levanto el symbolo y si es uno valido, devuelvo */
337 *symbol = entrynode->symbol;
338 if (*symbol != 256) return entrynode;
339 if (*bitsleft == 0) return entrynode;
341 /* Obtengo otro bit a procesar y me muevo en el arbol */
342 bit = (buffer >> ((*bitsleft)-1)) & 1;
344 if (bit == 0) return shuff_decode_symbols(entrynode->lchild,buffer,bitsleft,symbol);
345 else return shuff_decode_symbols(entrynode->rchild,buffer,bitsleft,symbol);
348 /** Decodifica chunksize symbolos y los devuelve en un chunk de datos */
349 int shuff_decode_chunk(HUFF_STATE *shuff, char *chunk, int chunksize, int *decodedbytes)
351 SHUFFNODE *currnode = shuff->codetree;
352 unsigned short int decoded_symbol;
355 while (!vfeof(shuff->decoderfp) && (shuff->bytesleft > 0) && (*decodedbytes < chunksize)) {
357 /* Leo un buffer de 32 bits si es que quedo vacio el anterior */
358 if (shuff->bitsleft == 0) {
359 if (vfread(&(shuff->codebuffer),sizeof(unsigned long int),1,shuff->decoderfp) != 1) continue;
360 shuff->bitsleft = sizeof(unsigned long int) * 8;
363 /* Proceso el buffer sacando simbolos till se me agote el buffer, file o chunk */
364 while ((shuff->bitsleft > 0) && (shuff->bytesleft > 0) && (*decodedbytes < chunksize)) {
365 currnode = shuff_decode_symbols(currnode,shuff->codebuffer,&(shuff->bitsleft),&decoded_symbol);
366 /* Si obtuve un symbolo valido lo emito*/
367 if (decoded_symbol != 256) {
368 chunk[(*decodedbytes)++] = decoded_symbol;
369 currnode = shuff->codetree;
370 --(shuff->bytesleft);
375 if (shuff->bytesleft == 0) return 0;
379 /** Realiza la descompresión de un archivo comprimido */
380 int shuff_decode_file(HUFF_STATE *shuff)
383 unsigned long int codebuffer;
385 unsigned short int decoded_symbol;
388 /* Comienzo a decodificar, pues la tabla ya la levante en el decinit */
389 if ((fpdest = fopen(shuff->targetfile,"w")) == NULL) return 0;
390 currnode = shuff->codetree;
392 while (!vfeof(shuff->decoderfp) && (shuff->bytesleft > 0)) {
394 /* Leo un buffer de 32 bits */
395 if (vfread(&codebuffer,sizeof(unsigned long int),1,shuff->decoderfp) != 1) continue;
396 bitsleft = sizeof(unsigned long int) * 8;
398 /* Proceso el buffer sacando simbolos hasta que se me agote */
399 while ((bitsleft > 0) && (shuff->bytesleft > 0)) {
400 currnode = shuff_decode_symbols(currnode,codebuffer,&bitsleft,&decoded_symbol);
401 /* Si obtuve un symbolo valido lo emito*/
402 if (decoded_symbol != 256) {
403 fputc(decoded_symbol,fpdest);
404 currnode = shuff->codetree;
405 --(shuff->bytesleft);
410 /* Close destination */
416 /** Inicializa un descompresor de huffman */
417 HUFF_STATE *shuff_init_decoder(char *inputfile, char *outputfile)
420 HUFF_STATE *shuff = (HUFF_STATE*)malloc(sizeof(HUFF_STATE));
421 shuff->freqtable = (t_freq*)malloc(sizeof(t_freq)*256);
424 shuff->codebuffer = 0;
426 shuff->coderfp = NULL;
427 shuff->targetfile = NULL;
428 shuff->sourcefile = (char*)malloc(sizeof(char)*(strlen(inputfile)+1));
429 strcpy(shuff->sourcefile,inputfile);
430 if (outputfile != NULL) {
431 shuff->targetfile = (char*)malloc(sizeof(char)*(strlen(outputfile)+1));
432 strcpy(shuff->targetfile,outputfile);
435 /* Levanto cuantos bytes debo decodificar y la freqtable */
436 if ((shuff->decoderfp = vfopen(shuff->sourcefile,"r",0)) == NULL) return NULL;
437 vfread(&(shuff->bytesleft),sizeof(unsigned long int),1,shuff->decoderfp);
438 vfread(shuff->freqtable,sizeof(t_freq),256,shuff->decoderfp);
439 /* Armo el arbol de huffman que uso para decodificar */
440 shuff->codetree = shuff_buildtree(shuff->freqtable);
445 /** Inicializa compresor de huffman por archivo */
446 HUFF_STATE *shuff_init_encoder_byfile(char *inputfile, char *outputfile, long volsize)
449 HUFF_STATE *fshuff = (HUFF_STATE*)malloc(sizeof(HUFF_STATE));
452 /* Inicializo la estructura para trabajar con Huff Static by File */
453 fshuff->coderfp = NULL;
454 fshuff->decoderfp = NULL;
455 fshuff->sourcefile = (char*)malloc(sizeof(char)*(strlen(inputfile)+1));
456 fshuff->targetfile = (char*)malloc(sizeof(char)*(strlen(outputfile)+1));
457 strcpy(fshuff->sourcefile,inputfile);
458 strcpy(fshuff->targetfile,outputfile);
459 fshuff->volsize = volsize;
462 fshuff->freqtable = (t_freq*)malloc(sizeof(t_freq)*256);
463 for (i = 0; i < 256; ++i) fshuff->freqtable[i] = 0;
465 fshuff->codetree = NULL;
470 /** Inicializa compresor de huffman de a chunks */
471 HUFF_STATE *shuff_init_encoder_bychunk(char *outputfile, long volsize)
474 HUFF_STATE *cshuff = (HUFF_STATE*)malloc(sizeof(HUFF_STATE));
477 /* Inicializo la estructura para trabajar con Huff Static by Chunks */
478 cshuff->decoderfp = NULL;
479 cshuff->sourcefile = (char*)malloc(sizeof(char)*(strlen(outputfile)+2));
480 cshuff->targetfile = (char*)malloc(sizeof(char)*(strlen(outputfile)+1));
481 strcpy(cshuff->targetfile,outputfile);
482 strcpy(cshuff->sourcefile,outputfile);
483 strcat(cshuff->sourcefile,"~");
484 cshuff->volsize = volsize;
487 cshuff->freqtable = (t_freq*)malloc(sizeof(t_freq)*256);
488 for (i = 0; i < 256; ++i) cshuff->freqtable[i] = 0;
490 cshuff->codetree = NULL;
492 /* Abrimos un archivo temporal para ir tirando los chunks */
493 if ((cshuff->coderfp = fopen(cshuff->sourcefile,"w")) == NULL) return NULL;
498 /** Carga un modelo estadistico para huffman */
499 int shuff_loadmodel(HUFF_STATE *shuff, char *modelfile) {
503 if ((shuff) && (shuff->freqtable) && (modelfile)) {
504 /* Cargo el modelo de disco */
505 if ((fp = fopen(modelfile,"r")) == NULL) return 0;
506 if (fread(shuff->freqtable,sizeof(t_freq),256,fp) != 256) return 0;
514 /** Graba un modelo estadístico de huffman */
515 int shuff_savemodel(HUFF_STATE *shuff) {
521 if ((shuff) && (shuff->targetfile) && (shuff->freqtable)) {
522 /* Preparo el nombre del archivo con la tabla */
523 auxfilename = (char*)malloc(strlen(shuff->targetfile)+1);
524 stopchar = strrchr(shuff->targetfile,'.');
525 strncpy(auxfilename,shuff->targetfile,stopchar - shuff->targetfile);
526 auxfilename[stopchar - shuff->targetfile] = 0;
527 strcat(auxfilename,".ftb");
529 /* Lo creamos y dumpeamos la tabla de frecuencias (modelo) */
530 if ((fp = fopen(auxfilename,"w")) == NULL) return 0;
531 fwrite(shuff->freqtable,sizeof(t_freq),256,fp);
539 /** Desinicializa un compresor de huffman */
540 void shuff_deinit_encoder(HUFF_STATE *shuff)
542 /* Libero mallocs y cierro archivos */
543 if (shuff->freqtable) free(shuff->freqtable);
544 if (shuff->coderfp) fclose(shuff->coderfp);
545 if (shuff->bychunk) unlink(shuff->sourcefile);
546 if (shuff->sourcefile) free(shuff->sourcefile);
547 if (shuff->targetfile) free(shuff->targetfile);
549 /* Destruyo recursivamente el arbol de codigos */
550 if (shuff->codetree) shuff_destroy_tree(shuff->codetree);
553 /** Desinicializa un descompresor de huffman */
554 void shuff_deinit_decoder(HUFF_STATE *shuff)
556 /* Libero mallocs y cierro archivos */
557 if (shuff->freqtable) free(shuff->freqtable);
558 if (shuff->sourcefile != NULL) free(shuff->sourcefile);
559 if (shuff->targetfile != NULL) free(shuff->targetfile);
560 if (shuff->decoderfp != NULL) vfclose(shuff->decoderfp);
562 /* Destruyo recursivamente el arbol de codigos */
563 if (shuff->codetree) shuff_destroy_tree(shuff->codetree);