]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/viewer.c
Borro parte redundante.
[z.facultad/75.06/emufs.git] / emufs_gui / viewer.c
index 17ee34a9f2c95f7ea0d3a2f05228a950664a41d0..0699dfdc29d44508f0ddc467f70ae7e9b3d8ab5c 100644 (file)
@@ -58,10 +58,9 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
        wattroff(padre, A_BOLD);
        wattroff(padre, COLOR_PAIR(COLOR_RED));
        mvwaddstr(padre, h-offset_alto+2, 48, "  |   = Separador de campo");
-       mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
-       mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
-       mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
-       mvwaddstr(padre, h-offset_alto+6, 48, "  .   = Esp. Libre");
+       mvwaddstr(padre, h-offset_alto+3, 48, "(XXX) = ID de registro");
+       mvwaddstr(padre, h-offset_alto+4, 48, "{XXX} = Tam. de registro");
+       mvwaddstr(padre, h-offset_alto+5, 48, "  .   = Esp. Libre");
 }
 
 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
@@ -111,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));
@@ -118,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;
@@ -128,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.");
@@ -188,12 +193,20 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
                                box(dlg, 0, 0);
                                indices_actual = preguntar_id(dlg, fp);
                                if (indices_actual < 0) indices_actual = 0;
-                               if (indices_actual > indices_total) indices_actual = indices_total-1;
+                               if (indices_actual >= indices_total) indices_actual = indices_total-1;
                                werase(dlg);
                                wrefresh(dlg);
                                delwin(dlg);
                                wrefresh(padre);
                                curs_set(0);
+                               if (data) free(data);
+                               fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
+                               bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
+                               bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
+                               bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
+                               pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
+                               ancho_registro = size_actual;
+                               data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
                        break;
                        case 'a': /* Scroll */
                                scroll--;
@@ -236,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);
                }
 
@@ -274,25 +284,31 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
        char *data; /* Registros a mostrar en pantalla */
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS *fp;
-       int pos_actual, ancho_registro, offset, pos;
+       int pos_actual, ancho_registro, offset, pos, n, i;
 
        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.");
@@ -338,7 +354,20 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                        case 'B':
                                dlg = newwin(4, 50, h/2-2, w/2-25);
                                box(dlg, 0, 0);
-                               preguntar_id(dlg, fp);
+                               n = preguntar_id(dlg, fp);
+                               /* Busco la posicion dentro del id */
+                               for(i=0; i< indices_total; i++) {
+                                       if (indices[i] == n) {
+                                               n = -1; /* LO ENCONTRE! */
+                                               indices_actual = i;
+                                               break;
+                                       }
+                               }
+                               if (n == -1) {
+                                       if (data) free(data);
+                                       data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
+                                       data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
+                               }
                                werase(dlg);
                                wrefresh(dlg);
                                delwin(dlg);
@@ -348,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);
@@ -361,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
@@ -379,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);  
@@ -461,7 +492,7 @@ int preguntar_id(WINDOW *win, EMUFS *fp)
                form_ejecutar(form, 1,1);
 
                n = form_obtener_valor_int(form, "ID a buscar");
-       } while (n>0);
+       } while (n<0);
 
        form_destruir(form);
        return n;
@@ -509,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)){
@@ -664,13 +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 */
@@ -691,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");