int sflag = 0;
int mflag = 0;
long int volumesize = 0;
- size_t pagesize = 32768; /* 32KB */
+ Uint32 pagesize = 32768; /* 32KB */
int ch;
t_BlockSort *bs;
HUFF_STATE *shuff;
fp = fopen(argv[optind], "rb");
/* Guardamos el pagesize como header (huffencoded) */
- shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(size_t));
+ shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(Uint32));
/* Guardamos cabecera para indicar si usamos ZG (huffencoded) */
if (zflag) shuff_scanfreq_chunk(shuff, "\001", 1);
- else shuff_scanfreq_chunk(shuff, "\000", 1);
+ else shuff_scanfreq_chunk(shuff, "\000", 1);
total = 0;
while (!feof(fp)) {
/* Le aplico el MTF a salida */
mtf = jacu_mtf(salida, i+sizeof(Uint32), &z, &z_len);
-
+
/* Guardo el z_len y el Z */
shuff_scanfreq_chunk(shuff,(char*)&z_len,sizeof(int));
- shuff_scanfreq_chunk(shuff,z,z_len);
+ shuff_scanfreq_chunk(shuff,z,z_len);
/* Si me lo piden, aplico ZG. */
if (zflag) {
- size_t len;
+ Uint32 len,total_len = 0;
char buff[2];
Uint32 total_size = i + sizeof(Uint32);
- ZG zg;
+ ZG zg;
+ /* Guardo la salida del MTF con ceros agrupados (ZG) */
zg_init(&zg);
- /* Guardo la salida del MTF con ceros agrupados (ZG) */
for (j = 0; j < total_size; ++j)
- if ((len = zg_group(&zg, buff, mtf[j])))
+ if ((len = zg_group(&zg, buff, mtf[j]))) {
shuff_scanfreq_chunk(shuff, buff, len);
+ total_len += len;
+ }
+ /* Flusheo ultimo zgrouping */
+ if ((len = zg_group_finish(&zg,buff))) {
+ shuff_scanfreq_chunk(shuff, buff, len);
+ total_len += len;
+ }
+ printf ("Saved %ld zgbytes\n",total_len);
} else {
/* Comprimo la salida del MTF */
- shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
+ shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
}
free(mtf);
free(z);
if (dflag == 1) {
/* Descomprimo */
FILE *fp_out;
- /*FILE *fp_in;*/
- Uint32 block_size = 0, k;
+ Uint32 block_size = 0,zgungrouped = 0, zgread = 0,k;
unsigned char *block, *mtf, *orig;
- unsigned char *z;
- int z_len,moredata = 0,decoded = 0;
- char use_zg;
+ unsigned char *z, *zgbuffer;
+ int zgmoved = 0,z_len=0,moredata = 0,decoded = 0;
+ unsigned char use_zg = 0,zgbyte = 0,retbytes = 0;
+ ZG zg;
/* Inicializo el descompresor */
if ((shuff = shuff_init_decoder(argv[optind],NULL)) == NULL) return 1;
/* Descomprimo byte que indica si se usa ZG */
if (!(moredata = shuff_decode_chunk(shuff, &use_zg, 1, &decoded))) return 1;
+ if (use_zg) zg_init(&zg);
/* Creo buffers */
+ zgbuffer = malloc(sizeof(unsigned char)*256);
block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32));
orig = malloc(block_size*sizeof(unsigned char));
/* Descomprimimos de a chunks segun convenga */
do {
if (block_size > 0) {
- /* Descomprimo el Zlen y el Z del MTF */
- moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
+ /* Descomprimo el Zlen y el Z del MTF*/
+ moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded);
z = malloc(sizeof(unsigned char)*z_len);
- moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
+ moredata = shuff_decode_chunk(shuff,z,z_len,&decoded);
+
+ /* Veo si se uso Zero Grouping para comprimir */
+ if (use_zg) {
+ zgungrouped = 0;
+ zgread = 0;
+ /* Me fijo si tengo que copiar leftovers del zgbuffer anterior DEPRECATED? */
+ while (zgmoved < retbytes) block[zgungrouped++] = zgbuffer[zgmoved++];
+ /* Desagrupo bytes hasta completar la pagina or End of Source File */
+ do {
+ /* Levanto un byte zerogrouped y lo paso por el zg_ungroup */
+ zgmoved = 0;
+ moredata = shuff_decode_chunk(shuff,&zgbyte,1,&decoded);
+ ++zgread;
+ retbytes = zg_ungroup(&zg,zgbuffer,zgbyte);
+ /* Muevo del zgbuffer a mi bloque lo que corresponda */
+ while ((zgmoved < retbytes) && (zgungrouped < block_size+sizeof(Uint32))) {
+ block[zgungrouped++] = zgbuffer[zgmoved++];
+ /*if ((zgungrouped % 500) == 0) printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);*/
+ }
+ /*if ((zgungrouped % 500) == 0) printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);*/
+ } while ((moredata) && (zgungrouped < block_size+sizeof(Uint32)));
+
+ /* Normalizo variables para continuar en common code */
+ printf("At source byte %ld we have processed %ld zgbytes\n",zgungrouped,zgread);
+ decoded = zgungrouped;
+ }
+ else {
+ /* Levanto una salida de MTF */
+ moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
+ }
- /* Levanto una salida de MTF y le aplico MTF Inverso */
- moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded);
+ /* Le aplico MTF inverso a la salida de MTF levantada previamente */
mtf = jacu_mtf_inv(z, block, decoded);
/* Ya tengo la salida del BS, tonces levanto su K */
fwrite(orig, decoded - sizeof(Uint32), sizeof(unsigned char), fp_out);
free(mtf);
- free(z);
+ free(z);
}
else return 1;
} while (moredata);
fclose(fp_out);
free(block);
free(orig);
+ free(zgbuffer);
/* Shutdown Huffman */
shuff_deinit_decoder(shuff);