]> git.llucax.com Git - z.facultad/75.06/jacu.git/blobdiff - src/jacu.c
Bugfix. Habían muchos int* que debían ser char*, por favor fijense si estoy errado...
[z.facultad/75.06/jacu.git] / src / jacu.c
index 45b314cd12595c370bbce74f558143f6855d4b1c..fc4188f0f0b2916c7ab52734c0a35bc7bd4709cf 100644 (file)
@@ -1,7 +1,9 @@
 
 
-#include "statichuff/statichuff.h"
 #include "blocksorting/bs.h"
 #include "mtf/mtf.h"
 #include "blocksorting/bs.h"
 #include "mtf/mtf.h"
+#include "zerogrouping/zerogrouping.h"
+#include "statichuff/statichuff.h"
+#include "vfile/vfile.h"
 #include <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
@@ -10,68 +12,109 @@ int main(int argc, char* argv[])
 {      
        int cflag = 0;
        int dflag = 0;
 {      
        int cflag = 0;
        int dflag = 0;
+       int zflag = 0;
        int tflag = 0;
        int tflag = 0;
+       int pflag = 0;
        long int volumesize = 0;
        long int volumesize = 0;
+       size_t pagesize = 32768; /* 32KB */
        int ch;
        t_BlockSort *bs;
                        
        int ch;
        t_BlockSort *bs;
                        
-       while ((ch = getopt(argc, argv, "cdt:")) != -1) { 
+       while ((ch = getopt(argc, argv, "cdzt:p:")) != -1) { 
                 
                switch (ch) { 
                        case 'c': cflag = 1; 
                                          break;
                 
                switch (ch) { 
                        case 'c': cflag = 1; 
                                          break;
-                       
+
                        case 'd': dflag = 1; 
                                          break; 
                        case 'd': dflag = 1; 
                                          break; 
-                       
+
+                       case 'z': zflag = 1; 
+                                         break; 
+
                        case 't': tflag = 1; 
                        case 't': tflag = 1; 
-                                         volumesize = atoi(optarg);                                      
+                                         volumesize = atol(optarg);
                                          break; 
                                          break; 
-                       
-                       default: fprintf(stderr, "Usage: %s [-cdt] sourcefile targetfile\n", argv[0]); 
+
+                       case 'p': pflag = 1; 
+                                         pagesize = atoi(optarg);
+                                         break; 
+
+                       default: fprintf(stderr, "Usage: %s [-cdpt] sourcefile targetfile\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]); 
                                         return(2);
                }
        }
                
        if ( (argc == 1) || (cflag & dflag) || !(cflag | dflag) || ((argc - optind) < 2) ) {
                fprintf(stderr, "Usage: %s [-cdt] sourcefile targetfile\n", argv[0]); 
-               if ((tflag == 1) && (volumesize <= 0)) fprintf(stderr,"Error: The volume size must be a non-zero value\n");
-               return (2);             
+               return (3);
+       }
+       if ((tflag) && (volumesize <= 0l)) {
+               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");
+               return (5);
        }
                
        if (cflag == 1) {
                /* Comprimo */
                /* No me gusta el tmpfile ... es para probar como anda todo junto */
                FILE *fp, *fp_out;
        }
                
        if (cflag == 1) {
                /* Comprimo */
                /* No me gusta el tmpfile ... es para probar como anda todo junto */
                FILE *fp, *fp_out;
-               unsigned long int len, i, j, total, k;
-               int *mtf;
+               unsigned long int i, j, total, k;
+               char *mtf;
                char *salida, *data, c;
                char *salida, *data, c;
-               len = 4096;
-               data = malloc(sizeof(char)*len);
-               salida = malloc(sizeof(char)*(len));
-               bs = bs_create(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);
+               bs = bs_create(pagesize);
+
                fp = fopen(argv[optind], "rb");
                fp_out = fopen("tmp.comp", "wb");
                fp = fopen(argv[optind], "rb");
                fp_out = fopen("tmp.comp", "wb");
+
                c = fgetc(fp);
                total = 0;
                while (!feof(fp)) {
                        i = 0;
                c = fgetc(fp);
                total = 0;
                while (!feof(fp)) {
                        i = 0;
-                       while ((!feof(fp)) && (i < len)) {
+                       while ((!feof(fp)) && (i < pagesize)) {
                                data[i++] = c;
                                c = fgetc(fp);
                                total++;
                        }
                                data[i++] = c;
                                c = fgetc(fp);
                                total++;
                        }
+
                        /* Hago el BS */
                        bs_solve(data, salida, bs, &k, i);
                        /* Hago el BS */
                        bs_solve(data, salida, bs, &k, i);
-                       /* Le aplico el MTF */
-                       mtf = jacu_mtf(salida, i);
-                       for(j=0; j<i; j++)
-                               fputc(mtf[j], fp_out);
+
+                       /* 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));
+
+                       /* Si me lo piden, aplico ZG. */
+                       if (zflag)
+                       {
+                               size_t len;
+                               char buff[2];
+                               ZG zg;
+                               zg_init(&zg);
+                               for (j = 0; j < i; ++j)
+                                       if ((len = zg_group(&zg, buff, mtf[j]))) fwrite(buff, 1, len, fp_out);
+                       }
+                       else
+                       {
+                               for(j=0; j<i; j++)
+                                       fputc(mtf[j], fp_out);
+                       }
+                       free(mtf);
                }
                }
+
+               /* Limpiando */
                fclose(fp);
                fclose(fp_out);
                bs_destroy(bs);
                fclose(fp);
                fclose(fp_out);
                bs_destroy(bs);
-               i = shuff_encode_file("tmp.comp",argv[optind+1]);
+
+               /* Comprimo con huffman */
+               i = shuff_encode_file("tmp.comp",argv[optind+1], volumesize);
+
                /* borro el temporal */
                unlink("tmp.comp");
                return i;
                /* borro el temporal */
                unlink("tmp.comp");
                return i;
@@ -79,8 +122,39 @@ int main(int argc, char* argv[])
        
        if (dflag == 1) { 
                /* Descomprimo */
        
        if (dflag == 1) { 
                /* Descomprimo */
-               return shuff_decode_file(argv[optind],argv[optind+1]);
+               FILE *fp_out;
+               VFILE *fp_in;
+               unsigned long int block_size, k;
+               char *block, *mtf, *orig;
+               int *pos;
+
+               shuff_decode_file(argv[optind], "tmp.comp"); /*argv[optind+1]);*/
+               fp_in = vfopen("tmp.comp", "r", 0);
+               fp_out = fopen(argv[optind+1], "wb");
+
+               while (!vfeof(fp_in)) {
+                       block_size = 0;
+                       vfread(&block_size, sizeof(unsigned long int), 1, fp_in);
+                       if (block_size > 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;
 }
        return 0;
 }