]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/viewer.c
* chamullo conclusiones
[z.facultad/75.06/emufs.git] / emufs_gui / viewer.c
index 9e2e0adf6572125669a3aad608e38a501f460ea0..0699dfdc29d44508f0ddc467f70ae7e9b3d8ab5c 100644 (file)
@@ -110,6 +110,10 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
        else if (cual == 2)
                fp = emufs_abrir("notas");
        
+       if (fp == NULL) {
+               return;
+       }
+       
        stats = fp->leer_estadisticas(fp);
                                        
        wattron(padre, COLOR_PAIR(COLOR_BLUE));
@@ -117,6 +121,7 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
        wattroff(padre, COLOR_PAIR(COLOR_BLUE));
        switch (fp->tipo) {
                case T1:
+               case T4:
                        waddstr(padre, "Registro variable con bloque parametrizado.");
                        procesar = procesar_registro_tipo1;
                break;
@@ -127,6 +132,7 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
                        msg_box_free(padre, actual[0]);
                        return;
                break;
+               case T5:
                case T3:
                        procesar = procesar_registro_tipo3;
                        waddstr(padre, "Registro fijo con bloque parametrizado.");
@@ -243,17 +249,14 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
 
                /* Imprimo los registros */
                if (data) {
-                       offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
-                       pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
+                       offset = scroll*actual_ancho;
+                       pos = pos_actual - offset;
                        mvwaddnstr(actual[1], 0, 0, data+offset, pos);
-                       if (pos > 0)
-                               offset += pos;
-                       else
-                               offset -= pos;
+                       offset += pos;
                        wattron(actual[1], A_BOLD);
-                       waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
+                       waddnstr(actual[1], data+offset, ancho_registro);
                        wattroff(actual[1], A_BOLD);
-                       offset += ancho_registro+((pos<0)?pos:0);
+                       offset += ancho_registro;
                        waddnstr(actual[1], data+offset, size-offset);
                }
 
@@ -285,21 +288,27 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
 
        if (cual == 0)
                fp = emufs_abrir("articulos");
-       else
-               fp = emufs_abrir("facturas");
+       else if (cual == 1) fp = emufs_abrir("facturas");
+       else if (cual == 2) fp = emufs_abrir("notas");
+
+       if (fp == NULL) {
+               return;
+       }
 
        wattron(padre, COLOR_PAIR(COLOR_BLUE));
        mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
        wattroff(padre, COLOR_PAIR(COLOR_BLUE));
        switch (fp->tipo) {
+               case T4:
                case T1:
                        waddstr(padre, "Registro variable con bloque parametrizado.");
                        procesar = procesar_registro_tipo1;
                break;
                case T2:
-                       waddstr(padre, "Registro variable con sin bloques.");
+                       waddstr(padre, "Registro variable sin bloques.");
                        procesar = procesar_registro_tipo2;
                break;
+               case T5:
                case T3:
                        procesar = procesar_registro_tipo3;
                        waddstr(padre, "Registro fijo con bloque parametrizado.");
@@ -368,7 +377,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                        case 'e':
                        case 'E':
                                if (indices_actual != EMUFS_NOT_FOUND)
-                                       fp->borrar_registro(fp, indices[indices_actual]);
+                                       /*fp->borrar_registro(fp, indices[indices_actual]); XXX*/
        
                                free(indices);
                                indices = emufs_idx_get(fp, &indices_total);
@@ -381,6 +390,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                        break;
                        case 'g':
                        case 'G':
+                               if (cual == 2) break;
                                if (cual == 0)
                                        art_agregar(NULL);
                                else
@@ -399,6 +409,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                        break;                  
                        case 'M':
                        case 'm': /* Quiero editar !!! */
+                               if (cual == 2) break;
                                sprintf(codigo, "%lu", indices[indices_actual]);
                                if (cual == 0)
                                        art_modificar(codigo);  
@@ -529,6 +540,7 @@ char *procesar_registro_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *
                        (*ancho) = 10;
                }
                j = 0;
+               ant = -1;
                while (j < (tam_data)) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp)){
@@ -684,14 +696,16 @@ char *procesar_registro_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *
        memset(salida, '.', *size);
 
        PERR("Voy por el espacio antes");
+#ifdef DEBUG
        fprintf(stderr, "Pos Inicial %d\n", *pos_actual);
+#endif
+       tmp = salida;
+       in = ptr;
        for(i=0; i < *pos_actual; i++) {
-               /* Los datos que tengo por ahora los pongo enmascarados! */
-               copy_char(&salida[i], in);
+               copy_char(tmp, in);
                in++;
+               tmp++;
        }
-       tmp = salida + *pos_actual;
-       in = ptr + *pos_actual;
 
        PERR("Voy por el header");
        /* ID de registro */
@@ -712,6 +726,11 @@ char *procesar_registro_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *
                i++;
        }
        PERR("Voy por el espacio despues");
+       for(i=0; i < 100-*pos_actual; i++) {
+               copy_char(tmp, in);
+               in++;
+               tmp++;
+       }
 
        free(ptr);
        PERR("LISTO");