int zflag = 0;
int tflag = 0;
int qflag = 0;
+ int sflag = 0;
+ int mflag = 0;
long int volumesize = 0;
size_t pagesize = 32768; /* 32KB */
int ch;
t_BlockSort *bs;
HUFF_STATE *shuff;
+ char *staticmodel = NULL;
- while ((ch = getopt(argc, argv, "cdzt:q:")) != -1) {
+ while ((ch = getopt(argc, argv, "scdzm:t:q:")) != -1) {
switch (ch) {
case 'c': cflag = 1;
case 'z': zflag = 1;
break;
+
+ case 'm': mflag = 1;
+ staticmodel = optarg;
+ break;
+
+ case 's': sflag = 1;
+ break;
case 't': tflag = 1;
volumesize = atol(optarg);
}
break;
- default: fprintf(stderr, "Usage: %s [-cdpt] sourcefile targetfile\n", argv[0]);
+ default: fprintf(stderr, "Usage: %s [-cdzs][-q blksize][-t volsize][-m modeldumpfile] source target\n", argv[0]);
return(2);
}
}
- if ( (argc == 1) || (cflag & dflag) || !(cflag | dflag) || ((argc - optind) < 2) ) {
- fprintf(stderr, "Usage: %s [-cdt] sourcefile targetfile\n", argv[0]);
+ if ( (argc == 1) || (cflag & dflag) || !(cflag | dflag) || ((argc - optind) < 2) || (mflag & sflag)) {
+ fprintf(stderr, "Usage: %s [-cdzs][-q blksize][-t volsize][-m modeldumpfile] source target\n", argv[0]);
return (3);
}
if ((tflag) && (volumesize <= 0l)) {
}
if (cflag == 1) {
- /* Comprimo */
- /* No me gusta el tmpfile ... es para probar como anda todo junto */
- FILE *fp, *fp_out;
+ /* Comprimo */
+ FILE *fp;
Uint32 i, j, total, k;
char *mtf;
- char *salida, *data, c;
+ char *salida, *data;
char *z;
int z_len;
-
+
+ /* Preparo el compresor huffman */
+ if ((shuff = shuff_init_encoder_bychunk(argv[optind+1],volumesize*1024)) == NULL) return 0;
+ if (mflag == 1) shuff_loadmodel(shuff,staticmodel);
+
+ /* Preparo el BS alocando mem para el K, el Block y su Size */
data = malloc(sizeof(char)*pagesize);
- /* Reservo lugar tambien para guardar el k y el tamaño */
salida = malloc(sizeof(char)*pagesize+sizeof(Uint32)*2);
bs = bs_create(pagesize);
- fp = fopen(argv[optind], "rb");
- fp_out = fopen("tmp.comp", "wb");
+ /* Abrimos el archivo a comprimir y encodeamos bloques */
+ fp = fopen(argv[optind], "rb");
- /*c = fgetc(fp);*/
total = 0;
while (!feof(fp)) {
i = 0;
/* Saco un EOF que lee de mas */
if (i<pagesize) i--;
- /* Hago el BS */
+ /* Aplico el BlockSorting */
bs_solve(data, salida, bs, &k, i);
/*printf("BS k=%ld\n", *(Uint32 *)(salida+sizeof(Uint32)));
printf("(%c)", salida[ii+sizeof(Uint32)]);
printf("]\n");
}*/
+
/* Le aplico el MTF, salteo el tamaño del bloque para que no se pierda. */
mtf = jacu_mtf(salida+sizeof(Uint32), i+sizeof(Uint32), &z, &z_len);
/*
zg_init(&zg);
/* TODO HACER LO MISMO QUE EN EL ELSE XXX */
for (j = 0; j < i; ++j)
- if ((len = zg_group(&zg, buff, mtf[j]))) fwrite(buff, 1, len, fp_out);
+ if ((len = zg_group(&zg, buff, mtf[j]))) shuff_scanfreq_chunk(shuff,buff,len);
} else {
/* Guardo el PageSize */
- fwrite(salida, sizeof(Uint32), 1, fp_out);
-
+ shuff_scanfreq_chunk(shuff,salida,sizeof(Uint32));
+
/* Guardo el Z len y el Z */
- fwrite(&z_len, sizeof(int), 1, fp_out);
- fwrite(z, z_len, sizeof(char), fp_out);
+ shuff_scanfreq_chunk(shuff,(char*)&z_len,sizeof(int));
+ shuff_scanfreq_chunk(shuff,z,z_len);
- /* Guardo la salida del MTF */
- /*printf("Despues de MTF : [");*/
- for(j=0; j<(i+sizeof(Uint32)); j++) {
- fputc(mtf[j], fp_out);
- /* putchar('(');
- fputc(mtf[j], stdout);
- putchar(')');*/
- }
- /*printf("]\n");*/
+ /* Guardo la salida del MTF */
+ shuff_scanfreq_chunk(shuff,mtf,i+sizeof(Uint32));
}
free(mtf);
free(z);
}
/* Limpiando */
- fclose(fp);
- fclose(fp_out);
+ fclose(fp);
bs_destroy(bs);
- /* Comprimo con huffman */
- if ((shuff = shuff_init_encoder_byfile("tmp.comp", argv[optind+1], volumesize)) == NULL) return 1;
+ /* Comprimo con Huffman */
shuff_encode_file(shuff);
+ if (sflag == 1) shuff_savemodel(shuff);
+ /* Shutdown Huffman */
shuff_deinit_encoder(shuff);
free(shuff);
- /* borro el temporal */
- remove("tmp.comp");
-
/* Muestro bpb */
printf("Comprimido a %.04f bpb.\n", get_file_size(argv[optind+1])*8.0/get_file_size(argv[optind]));
return 0;