X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/3049ab6329e341f04df98e6605d1b017f09e219e..f8b9eb5ec2722be52af3b5cbd58ad4cd6b0893dc:/src/jacu.c diff --git a/src/jacu.c b/src/jacu.c index bc95e0a..75ca87c 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -10,7 +10,7 @@ #include #include -long get_file_size(const char* filename); +long fsize(const char* filename); typedef struct _flags_ { int cflag; @@ -22,7 +22,7 @@ typedef struct _flags_ { int mflag; } t_Flags; -int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumensize, t_Flags *flags, char *staticmodel); +int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags *flags, char *staticmodel); int descomprimir(char *src, char *dst); int main(int argc, char* argv[]) @@ -114,7 +114,7 @@ int main(int argc, char* argv[]) return 0; } -long get_file_size(const char* filename) +long fsize(const char* filename) { FILE* file; long file_size; @@ -137,6 +137,9 @@ int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags unsigned char *z; int z_len; + /* Abrimos el archivo a comprimir y encodeamos bloques */ + if ((fp = fopen(src, "rb")) == NULL) return 1; + /* Preparo el compresor huffman */ if ((shuff = shuff_init_encoder_bychunk(dst, volumesize*1024)) == NULL) return 1; if (flags->mflag == 1) shuff_loadmodel(shuff, staticmodel); @@ -146,9 +149,6 @@ int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags salida = malloc(sizeof(unsigned char)*pagesize+sizeof(Uint32)); bs = bs_create(pagesize); - /* Abrimos el archivo a comprimir y encodeamos bloques */ - fp = fopen(src, "rb"); - /* Guardamos el pagesize como header (huffencoded) */ shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(Uint32)); @@ -161,13 +161,9 @@ int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags total = 0; while (!feof(fp)) { i = 0; - while ((!feof(fp)) && (i < pagesize)) { - data[i++] = fgetc(fp); - total++; - } + i = bs_readblock(fp, data, pagesize); + total += i; - /* Saco un EOF que lee de mas */ - if (i