X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/680e5a7fe45a3d3aedb27d618e5072af672415f9..a293398508dd82716cabed67614d1692fe689457:/src/jacu.c diff --git a/src/jacu.c b/src/jacu.c index bc56a41..62939f4 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,57 +96,43 @@ 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 *z; + unsigned char *mtf; + unsigned char *salida, *data; + unsigned char *z; int z_len; - - data = malloc(sizeof(char)*pagesize); - /* Reservo lugar tambien para guardar el k y el tamaño */ - salida = malloc(sizeof(char)*pagesize+sizeof(Uint32)*2); + + /* 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(unsigned char)*pagesize); + salida = malloc(sizeof(unsigned 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 */ - bs_solve(data, salida, bs, &k, i); + /* Saco un EOF que lee de mas */ + if (i 0) { - block = malloc(block_size*sizeof(char)+sizeof(Uint32)); - orig = malloc(block_size*sizeof(char)); - fread(block, block_size+sizeof(Uint32), sizeof(char), fp_in); + 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); - printf("Antes MTF_inv = ["); - { - int ii; - for(ii=0; ii