X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/784073eb4d4dba1995c35bf35d479c04e5f96e66..2ab683271e74b5cffc675da7f5b9e4b34bb4047c:/src/jacu.c diff --git a/src/jacu.c b/src/jacu.c index 21f31c5..fe94998 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; @@ -83,8 +90,22 @@ int main(int argc, char* argv[]) /* 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)); + orig = malloc(block_size*sizeof(char)); + vfread(block, block_size, sizeof(char), fp_in); + + mtf = jacu_mtf_inv(block, /*XXX NO LO TENGO XXX */pos, block_size); + + memcpy(&k, block, sizeof(unsigned long int)); + + bs_restore(orig, block+sizeof(unsigned long int), k, block_size); + + fwrite(orig, block_size, sizeof(char), fp_out); + free(block); + free(orig); + free(mtf); + } + } + vfclose(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; +} +