X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/680e5a7fe45a3d3aedb27d618e5072af672415f9..fecff0df7697f3fa9351eee19c4cd30711c2b68e:/src/jacu.c diff --git a/src/jacu.c b/src/jacu.c index bc56a41..f0c3444 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -18,12 +18,16 @@ int main(int argc, char* argv[]) 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; @@ -34,6 +38,13 @@ int main(int argc, char* argv[]) case 'z': zflag = 1; break; + + case 'm': mflag = 1; + staticmodel = optarg; + break; + + case 's': sflag = 1; + break; case 't': tflag = 1; volumesize = atol(optarg); @@ -66,13 +77,13 @@ int main(int argc, char* argv[]) } 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)) { @@ -85,37 +96,41 @@ int main(int argc, char* argv[]) } 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; while ((!feof(fp)) && (i < pagesize)) { - data[i++] = c; - c = fgetc(fp); + data[i++] = fgetc(fp); total++; } - /* Hago el BS */ + /* Saco un EOF que lee de mas */ + if (i 0) { + fread(&z_len, sizeof(int), 1, fp_in); + z = malloc(sizeof(char)*z_len); + fread(z, z_len, sizeof(char), fp_in); + + /*printf("MTF Z (len=%d) = [", z_len); + { + int ii; + for(ii=0; ii