X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/816b508c140a36259ad9864d1b655b8336e9ac30..1e857d6dff5bd9eadd7b59a2deb323eb5d644ccf:/src/jacu.c?ds=sidebyside diff --git a/src/jacu.c b/src/jacu.c index 3d18ed3..ba8daf1 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -1,24 +1,29 @@ -#include "statichuff/statichuff.h" #include "blocksorting/bs.h" #include "mtf/mtf.h" +#include "zerogrouping/zerogrouping.h" +#include "statichuff/statichuff.h" #include "vfile/vfile.h" +#include "vfile/common.h" #include #include #include +long get_file_size(const char* filename); + int main(int argc, char* argv[]) { int cflag = 0; int dflag = 0; + int zflag = 0; int tflag = 0; - int pflag = 0; + int qflag = 0; long int volumesize = 0; size_t pagesize = 32768; /* 32KB */ int ch; t_BlockSort *bs; - while ((ch = getopt(argc, argv, "cdt:p:")) != -1) { + while ((ch = getopt(argc, argv, "cdzt:q:")) != -1) { switch (ch) { case 'c': cflag = 1; @@ -27,13 +32,39 @@ int main(int argc, char* argv[]) case 'd': dflag = 1; break; - case 't': tflag = 1; - volumesize = atol(optarg); + case 'z': zflag = 1; break; - case 'p': pflag = 1; - pagesize = atoi(optarg); - break; + case 't': tflag = 1; + volumesize = atol(optarg); + break; + + case 'q': qflag = 1; + switch (atoi(optarg)) + { + case 0: pagesize = 1024; /* 1K */ + break; + case 1: pagesize = 2048; /* 2K */ + break; + case 2: pagesize = 4096; /* 4K */ + break; + case 3: pagesize = 8192; /* 8K */ + break; + case 4: pagesize = 16384; /* 16K */ + break; + case 5: pagesize = 32768; /* 32K */ + break; + case 6: pagesize = 65536; /* 64K */ + break; + case 7: pagesize = 131072; /* 128K */ + break; + case 8: pagesize = 262144; /* 256K */ + break; + case 9: pagesize = 524288; /* 512K */ + break; + default: pagesize = 0; /* error */ + } + break; default: fprintf(stderr, "Usage: %s [-cdpt] sourcefile targetfile\n", argv[0]); return(2); @@ -48,8 +79,8 @@ int main(int argc, char* argv[]) fprintf(stderr,"Error: The volume size must be a non-zero value\n"); return (4); } - if ((pflag) && (pagesize <= 1u)) { - fprintf(stderr,"Error: El tamaño de página debe ser mayor a 1 byte.\n"); + if ((qflag) && (pagesize <= 1u)) { + fprintf(stderr,"Error: El nivel de compresión debe ser entre 0 (menor) y 9 (mayor).\n"); return (5); } @@ -57,12 +88,15 @@ int main(int argc, char* argv[]) /* Comprimo */ /* No me gusta el tmpfile ... es para probar como anda todo junto */ FILE *fp, *fp_out; - unsigned long int i, j, total, k; + Uint32 i, j, total, k; char *mtf; char *salida, *data, c; + 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(unsigned long int)*2); + salida = malloc(sizeof(char)*(pagesize)+sizeof(Uint32)*2); bs = bs_create(pagesize); fp = fopen(argv[optind], "rb"); @@ -82,10 +116,33 @@ int main(int argc, char* argv[]) bs_solve(data, salida, bs, &k, i); /* Le aplico el MTF, salteo el tamaño del bloque para que no se pierda. */ - mtf = jacu_mtf(salida+sizeof(unsigned long int), i+sizeof(unsigned long int)); - for(j=0; j 0) { - block = malloc((block_size+sizeof(unsigned long int))*sizeof(char)); + block = malloc(block_size*sizeof(char)+sizeof(Uint32)); orig = malloc(block_size*sizeof(char)); - vfread(block, block_size, sizeof(char), fp_in); + fread(block, block_size, sizeof(char), fp_in); - mtf = jacu_mtf_inv(block, /*XXX NO LO TENGO XXX */pos, block_size); + /* Hago el MTF inverso */ + mtf = jacu_mtf_inv(z, block, block_size); - memcpy(&k, block, sizeof(unsigned long int)); + /* Luego de hacer el MTF inverso ya puedo recuperar el k */ + memcpy(&k, block, sizeof(Uint32)); - bs_restore(orig, block+sizeof(unsigned long int), k, block_size); + bs_restore(orig, block+sizeof(Uint32), k, block_size); fwrite(orig, block_size, sizeof(char), fp_out); free(block); @@ -133,9 +201,21 @@ int main(int argc, char* argv[]) free(mtf); } } - vfclose(fp_in); + fclose(fp_in); fclose(fp_out); } return 0; } + +long get_file_size(const char* filename) +{ + FILE* file; + long file_size; + + if (!(file = fopen(filename, "ab"))) return -1; + file_size = ftell(file); + fclose(file); + return file_size; +} +