X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/9e5f9df91ca96fb4cf179841cea17c9b4fb0f99c..6d6d7068e6cde94ff373ccfd25f1f9533fc75e70:/src/jacu.c?ds=sidebyside diff --git a/src/jacu.c b/src/jacu.c index 8e74812..ee98a05 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -1,16 +1,20 @@ -#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 #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; long int volumesize = 0; @@ -18,7 +22,7 @@ int main(int argc, char* argv[]) int ch; t_BlockSort *bs; - while ((ch = getopt(argc, argv, "cdt:p:")) != -1) { + while ((ch = getopt(argc, argv, "cdzt:p:")) != -1) { switch (ch) { case 'c': cflag = 1; @@ -27,6 +31,9 @@ int main(int argc, char* argv[]) case 'd': dflag = 1; break; + case 'z': zflag = 1; + break; + case 't': tflag = 1; volumesize = atol(optarg); break; @@ -57,15 +64,20 @@ 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; - int *mtf; + 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 */ - salida = malloc(sizeof(char)*(pagesize)+sizeof(unsigned long int)*2); + /* 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"); + c = fgetc(fp); total = 0; while (!feof(fp)) { @@ -75,26 +87,107 @@ int main(int argc, char* argv[]) c = fgetc(fp); total++; } + /* Hago el BS */ bs_solve(data, salida, bs, &k, i); - /* Le aplico el MTF */ - mtf = jacu_mtf(salida, i+sizeof(unsigned long int)*2); - for(j=0; j 0) { + block = malloc(block_size*sizeof(char)+sizeof(Uint32)); + orig = malloc(block_size*sizeof(char)); + fread(block, block_size, sizeof(char), fp_in); + + mtf = jacu_mtf_inv(z, block, block_size); + + memcpy(&k, block, sizeof(Uint32)); + + bs_restore(orig, block+sizeof(Uint32), k, block_size); + + fwrite(orig, block_size, sizeof(char), fp_out); + free(block); + free(orig); + free(mtf); + } + } + 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; +} +