X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/2ea01495176fc0d471d75a01354d3f630ee5328a..cb53166758c12a09e9911769ce89c94cee4cc0f0:/src/jacu.c?ds=sidebyside diff --git a/src/jacu.c b/src/jacu.c index ca93ae6..ab4c79d 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -1,4 +1,5 @@ +/* Jacu Team - GPL */ #include "blocksorting/bs.h" #include "mtf/mtf.h" #include "zerogrouping/zerogrouping.h" @@ -18,12 +19,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 +39,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 +78,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,24 +97,29 @@ 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 1; + if (mflag == 1) shuff_loadmodel(shuff,staticmodel); + + /* Preparo el BS alocando mem para la Salida: V(vector) + K(colnum) */ + data = malloc(sizeof(unsigned char)*pagesize); + salida = malloc(sizeof(unsigned char)*pagesize+sizeof(Uint32)); bs = bs_create(pagesize); + /* Abrimos el archivo a comprimir y encodeamos bloques */ fp = fopen(argv[optind], "rb"); - fp_out = fopen("tmp.comp", "wb"); - /*c = fgetc(fp);*/ + /* Guardamos el pagesize como header (huffencoded) */ + shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(size_t)); + total = 0; while (!feof(fp)) { i = 0; @@ -114,30 +131,12 @@ int main(int argc, char* argv[]) /* Saco un EOF que lee de mas */ if (i 0) { - printf("PageSize = %ld\n", block_size); - 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