]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/viewer.c
* Actualizo leer_registro_raw de tipo1
[z.facultad/75.06/emufs.git] / emufs_gui / viewer.c
index 1b4c5419f0f50e3f1000b5a6e3d154d1670feacb..5d325dabd357fcda9e847bfdea98ce7f18012c68 100644 (file)
@@ -4,9 +4,12 @@
 #include "articulos.h"
 #include "facturas.h"
 #include "gui.h"
+#include "common.h"
+#include <ctype.h>
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
+static char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 
 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
@@ -14,7 +17,15 @@ static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SI
 
 static int preguntar_id(WINDOW *win, EMUFS *fp);
 
-void mostrar_info(WINDOW *padre, int h, int offset_alto)
+void copy_char(char *dst, char *src)
+{
+       /* Todos los espacidores los pongo iguales */
+       if (isspace(*src)) *dst = ' ';
+       else if (iscntrl(*src)) *dst = '*';
+       else *dst = *src;
+}
+
+void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
 {
        /* Info de teclas */
        wattron(padre, A_BOLD);
@@ -25,20 +36,22 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto)
        mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
        mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
        mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
-       mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
-       waddstr(padre, "A");
-       wattron(padre, A_BOLD);
-       waddch(padre, 'g');
-       wattroff(padre, A_BOLD);
-       waddstr(padre, "regar ");
-       wattron(padre, A_BOLD);
-       waddstr(padre, "M");
-       wattroff(padre, A_BOLD);
-       waddstr(padre, "ofidicar ");
-       wattron(padre, A_BOLD);
-       waddstr(padre, "E");
-       wattroff(padre, A_BOLD);
-       waddstr(padre, "liminar ");
+       if (opt) {
+               mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
+               waddstr(padre, "A");
+               wattron(padre, A_BOLD);
+               waddch(padre, 'g');
+               wattroff(padre, A_BOLD);
+               waddstr(padre, "regar ");
+               wattron(padre, A_BOLD);
+               waddstr(padre, "M");
+               wattroff(padre, A_BOLD);
+               waddstr(padre, "ofidicar ");
+               wattron(padre, A_BOLD);
+               waddstr(padre, "E");
+               wattroff(padre, A_BOLD);
+               waddstr(padre, "liminar ");
+       }
        mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
        
        /* Info de leyenda */
@@ -52,7 +65,6 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto)
        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+7, 48, " < >  = Separador Bloques");
 }
 
 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
@@ -70,9 +82,9 @@ char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int siz
                        return NULL;
        }
 
-       if (s1) memcpy(salida, s1, size1);
-       if (s2) memcpy(salida+size2, s2, size2);
-       if (s3) memcpy(salida+size2+size3, s3, size3);
+       if (s1) memcpy(salida, s1, size1); else size1 = 0;
+       if (s2) memcpy(salida+size1, s2, size2); else size2 = 0;
+       if (s3) memcpy(salida+size1+size2, s3, size3);
        if (s1) free(s1);
        if (s2) free(s2);
        if (s3) free(s3);
@@ -165,7 +177,7 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual)
 
        curs_set(0);
 
-       mostrar_info(padre, h, offset_alto);
+       mostrar_info(padre, h, offset_alto, 0);
        
        mvwaddnstr(actual[1], 0, 0, data, pos_actual);
        wattron(actual[1], A_BOLD);
@@ -183,7 +195,9 @@ void ver_bloques(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);
+                               indices_actual = preguntar_id(dlg, fp);
+                               if (indices_actual < 0) indices_actual = 0;
+                               if (indices_actual > indices_total) indices_actual = indices_total-1;
                                werase(dlg);
                                wrefresh(dlg);
                                delwin(dlg);
@@ -288,7 +302,11 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                                procesar = procesar_registro_factura_tipo1;
                break;
                case T2:
-                       waddstr(padre, "Registro variable sin bloques.");
+                       waddstr(padre, "Registro variable con sin bloques.");
+                       if (cual == 0)
+                               procesar = procesar_registro_articulo_tipo2;
+                       else
+                               procesar = procesar_registro_factura_tipo1;
                break;
                case T3:
                        if (cual == 0)
@@ -318,13 +336,15 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
 
        curs_set(0);
 
-       mostrar_info(padre, h, offset_alto);
-       
-       mvwaddnstr(actual[1], 0, 0, data, pos_actual);
-       wattron(actual[1], A_BOLD);
-       waddnstr(actual[1], data+pos_actual, ancho_registro);
-       wattroff(actual[1], A_BOLD);
-       waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
+       mostrar_info(padre, h, offset_alto, 1);
+
+       if (data) {
+               mvwaddnstr(actual[1], 0, 0, data, pos_actual);
+               wattron(actual[1], A_BOLD);
+               waddnstr(actual[1], data+pos_actual, ancho_registro);
+               wattroff(actual[1], A_BOLD);
+               waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
+       }
        
        wrefresh(actual[1]);
        wrefresh(actual[0]);
@@ -371,7 +391,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                                indices = emufs_idx_get(fp, &indices_total);
 
                                /* Tengo que re-pintar algunas cosas */
-                               mostrar_info(padre, h, offset_alto);
+                               mostrar_info(padre, h, offset_alto, 1);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;                  
@@ -389,7 +409,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
                                /* Tengo que re-pintar algunas cosas */
-                               mostrar_info(padre, h, offset_alto);
+                               mostrar_info(padre, h, offset_alto, 1);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
@@ -455,25 +475,19 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        if (ptr == NULL) return NULL;
 
        /* Calculo cuantos headers de registros va a haber en el archivo */
-       if (emu->tam_bloque > emu->tam_reg) {
-               cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
-               if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
-               tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
-       } else {
-               cant_header = 1;
-               tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
-       }
+       cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+       if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
+       tam_data = sizeof(t_Articulo);
 
-       /* El tamaño del nuevo array lo calculo asi :
-        *   
-        *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
-        *               + 10*(cant_headers+cant_registros) +1
-        *
-        *   En tipo3, la cantidad de headers y cant de registros es la misma
-        *   El 10 es por : (XXXXXXXX)
-        *   +1 == Por el \0
-        */
-       salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
+       (*size) = (*size)-sizeof(EMUFS_REG_ID)*cant_header*2 + 2*cant_header*10+1;
+       (*ancho) = sizeof(t_Articulo)-sizeof(EMUFS_REG_ID)+10;
+       if ((*ancho) > (*size))
+               (*ancho) = (*size);
+       if ((tam_data) > ((*size)-sizeof(EMUFS_REG_ID))) {
+               tam_data = (*size) - sizeof(EMUFS_REG_ID);
+       }
+       salida = (char *)malloc(*size);
+       memset(salida, '.', *size);
        if (salida == NULL) {
                return NULL;
        }
@@ -492,10 +506,6 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
                tmp1 += 10;
                tmp += sizeof(EMUFS_REG_ID);
-               /* Pongo el campo numero del registro */
-               sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
-               tmp1 += 10;
-               tmp += sizeof(unsigned int);
                j = 0;
                while (j < (tam_data)) {
                        if (*tmp == '\0') {
@@ -504,7 +514,7 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                                else
                                        (*tmp1) = '|';
                        } else {
-                               (*tmp1) = (*tmp);
+                               copy_char(tmp1, tmp);
                        }
                        ant = (*tmp);
                        tmp++;
@@ -515,14 +525,6 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        }
        free(ptr);
        
-       if (emu->tam_bloque > emu->tam_reg) {
-               (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
-               (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
-       } else {
-               (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
-               (*ancho) = (*size);
-       }
-       memset(tmp1, '.', (*size)-(tmp1-salida)); 
        salida[*size-1] = '\0';
 
        return salida;
@@ -538,6 +540,7 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        /* Cuento la cantidad de registros en este bloque */
        cant_header = 0;
        offset = 0;
+       PERR("Voy a contar la cantidad de headers");
        do {
                /* Me salto el ID, que no me interesa saber su valor */
                offset += sizeof(EMUFS_REG_ID);
@@ -546,6 +549,9 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                offset += sizeof(EMUFS_REG_SIZE);
 
                /* Desplazo el offset */
+#ifdef DEBUG
+               fprintf(stderr, "Tamaño Registro = %lu\n", curr_size);
+#endif
                if (curr_size == 0) {
                        /* Si el tamaño de registro es 0, quiere decir que llegue a la
                         * parte que esta vacia */
@@ -557,7 +563,8 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
 
        /* Proceso */
-       salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
+       salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
+       memset(salida, '.',(*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
        tmp = ptr;
        tmp1 = salida;
        pos_actualizada = 0;
@@ -577,17 +584,13 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
                curr_size = *((EMUFS_REG_SIZE *)tmp);
                if (pos_actualizada == 1) {
-                       (*ancho) = curr_size-sizeof(unsigned int)+30;
+                       (*ancho) = curr_size+20;
                        pos_actualizada = 2;
                }
                tmp1 += 10;
                tmp += sizeof(EMUFS_REG_SIZE);
-               /* Pongo el campo numero del registro */
-               sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
-               tmp1 += 10;
-               tmp += sizeof(unsigned int);
-               j = sizeof(unsigned int);
                PERR("Voy aca");
+               j = 0;
                while (j < curr_size) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp))
@@ -595,7 +598,7 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                                else
                                        (*tmp1) = '|';
                        } else {
-                               (*tmp1) = (*tmp);
+                               copy_char(tmp1, tmp);
                        }
                        ant = (*tmp);
                        tmp++;
@@ -606,8 +609,7 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                i++;
        }
        /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
-       (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
-       memset(tmp1, '.', (*size)-(tmp1-salida)); 
+       (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
        free(ptr);
        salida[*size-1] = '\0';
        
@@ -616,28 +618,16 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
 
 int preguntar_id(WINDOW *win, EMUFS *fp)
 {
-       int n=-1, j=0;
+       int n=-1;
        t_Form *form = form_crear(win);
        form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
 
        do {
-               if (j != 0) {
-                       curs_set(0);
-                       wattron(win, COLOR_PAIR(COLOR_YELLOW));
-                       wattron(win, A_BOLD);
-                       mvwaddstr(win, 2, 1, "Registro no encontrado!!");
-                       wattroff(win, A_BOLD);
-                       wattroff(win, COLOR_PAIR(COLOR_YELLOW));
-                       wrefresh(win);
-                       getch();
-                       werase(win);
-                       box(win, 0, 0);
-               }
+               form_set_valor(form, "ID a buscar", "");
                form_ejecutar(form, 1,1);
 
                n = form_obtener_valor_int(form, "ID a buscar");
-               j = 1;
-       } while (emufs_idx_existe_id(fp, n) != 0);
+       } while (n>0);
 
        form_destruir(form);
        return n;
@@ -933,3 +923,56 @@ char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
        return salida;
 }
 
+char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+       char *salida, *tmp;
+       char *in;
+       int i;
+       EMUFS_REG_SIZE tam_data;
+       if (ptr == NULL) return NULL;
+
+       (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
+       (*ancho) = *size-101;
+       salida = (char *)malloc(*size);
+       memset(salida, '.', *size);
+
+       PERR("Voy por el espacio antes");
+       for(i=0; i < *pos_actual; i++) {
+               /* Los datos que tengo por ahora los pongo enmascarados! */
+               copy_char(&salida[i], in);
+               in++;
+       }
+       tmp = salida + *pos_actual;
+       in = ptr + *pos_actual;
+
+       PERR("Voy por el header");
+       /* ID de registro */
+       sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
+       tmp += 10;
+       in += sizeof(EMUFS_REG_ID);
+       /* Tamaño de registro */
+       sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
+       tam_data = *((EMUFS_REG_SIZE *)in);
+       tmp += 10;
+       in += sizeof(EMUFS_REG_SIZE);
+       PERR("Voy por la data");
+       i = 0;
+       while (i < tam_data) {
+               copy_char(tmp, in);
+               tmp++;
+               in++;
+               i++;
+       }
+       PERR("Voy por el espacio despues");
+       for(i=0; i < 100-*pos_actual; i++) {
+               copy_char(tmp, in);
+               tmp++;
+               in++;
+       }
+
+       free(ptr);
+       PERR("LISTO");
+       salida[*size-1] = '\0';
+       return salida;
+}
+