]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/registros.c
* Algunos detalles
[z.facultad/75.06/emufs.git] / emufs_gui / registros.c
index 983858d7c66274e7748301100447694f0ffcf265..325b3e26d800d64c23fa3546399ee508d9ebad9e 100644 (file)
@@ -9,7 +9,7 @@ static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_S
 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);
-/*static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);*/
+static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 
 static int preguntar_id(WINDOW *win, EMUFS *fp);
 
@@ -80,7 +80,10 @@ void ver_registros(WINDOW *padre, int w, int h, int cual)
        switch (fp->tipo) {
                case T1:
                        waddstr(padre, "Registro variable con bloque parametrizado.");
-                       procesar = procesar_registro_articulo_tipo1;
+                       if (cual == 0)
+                               procesar = procesar_registro_articulo_tipo1;
+                       else
+                               procesar = procesar_registro_factura_tipo1;
                break;
                case T2:
                        waddstr(padre, "Registro variable sin bloques.");
@@ -270,14 +273,12 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
         */
        salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
        if (salida == NULL) {
-               fprintf(stderr, "Error de malloc en salida\n");
                return NULL;
        }
        tmp = ptr;
        tmp1 = salida;
        pos_actualizada = 0;
        while (i<cant_header) {
-               fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
                /* Verifico la pos_actual para el resaltado, asi queda coherente 
                 * en el cambio de formato
                 */
@@ -287,12 +288,10 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                }
                /* Pongo el ID del registro */
                sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
-               fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
                tmp1 += 10;
                tmp += sizeof(EMUFS_REG_ID);
                /* Pongo el campo numero del registro */
                sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
-               fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
                tmp1 += 10;
                tmp += sizeof(unsigned int);
                j = 0;
@@ -337,7 +336,6 @@ 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;
-       fprintf(stderr, "Tam = %lu\n", *size);
        do {
                /* Me salto el ID, que no me interesa saber su valor */
                offset += sizeof(EMUFS_REG_ID);
@@ -353,12 +351,10 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                } else {
                        cant_header++;
                        offset += curr_size;
-                       fprintf(stderr, "Sume %lu\n", curr_size);
                }
        } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
 
        /* Proceso */
-       fprintf(stderr, "Cantidad de headers = %d\n", cant_header);
        salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
        tmp = ptr;
        tmp1 = salida;
@@ -390,7 +386,6 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                tmp += sizeof(unsigned int);
                j = sizeof(unsigned int);
                PERR("Voy aca");
-               fprintf(stderr, "son %lu\n", curr_size);
                while (j < curr_size) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp))
@@ -463,10 +458,9 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
                tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
        } else {
                cant_header = 1;
-               tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
+               tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
        }
 
-       fprintf(stderr, "Tengo %d headers\n", cant_header);
        /* El tamaño del nuevo array lo calculo asi :
         *   
         */
@@ -477,6 +471,7 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
        }
        tmp = ptr;
        pos_actualizada = 0;
+       (*ancho) = 0;
        while (i<cant_header) {
                /* Verifico la pos_actual para el resaltado, asi queda coherente 
                 * en el cambio de formato
@@ -508,13 +503,14 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
                tmp1 += 10;
                tmp += sizeof(int);
                /* Pongo reg_nota */
-               sprintf(tmp1, "{%08lu}", *((EMUFS_BLOCK_ID*)tmp));
+               sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
                tmp1 += 10;
                tmp += sizeof(EMUFS_BLOCK_ID);
 
+               if (pos_actualizada == 1) {
+                       (*ancho) = 50+strlen(flotante);
+               }
                j = 0;
-               /* TODO Mostrar en pantalla los items!! */
-               fprintf(stderr, "DATA = %d\n", tam_data-10*sizeof(t_Item));
                while (j < (tam_data-10*sizeof(t_Item))) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp)){
@@ -528,6 +524,8 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
                        ant = (*tmp);
                        tmp++;
                        tmp1++;
+                       if (pos_actualizada == 1)
+                               (*ancho)++;
                        j++;
                }
                /* Ahora proceso los items */
@@ -536,6 +534,8 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
                        sprintf(tmp1, "[%08d]", *((int *)tmp));
                        tmp1 += 10;
                        tmp += sizeof(int);
+                       if (pos_actualizada == 1)
+                               (*ancho)+=10;
                        j = 0;
                        while (j < (sizeof(t_Item)-sizeof(int))) {
                                if (*tmp == '\0') {
@@ -550,25 +550,184 @@ char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *siz
                                ant = (*tmp);
                                tmp++;
                                tmp1++;
+                               if (pos_actualizada == 1)
+                                       (*ancho)++;
                                j++;
                        }
                        k++;
                }
+               if (pos_actualizada == 1)
+                       pos_actualizada = 2;
                i++;
        }
-       fprintf(stderr, "%lu =? %d\n", *size, tmp-ptr);
        free(ptr);
 
        PERR("Termine");
        if (emu->tam_bloque > emu->tam_reg) {
                (*size) = tmp1-salida;
-               (*ancho) = tam_data + 15*cant_header + cant_items*10 - cant_items*sizeof(int);
        } else {
-               (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
-               (*ancho) = (*size);
+               (*size) = tmp1-salida;
+               (*ancho) = tmp1-salida;
+       }
+       salida[*size-1] = '\0';
+
+       return salida;
+}
+
+char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+       char *tmp, *salida, *tmp1, pos_actualizada, ant;
+       EMUFS_REG_SIZE offset, curr_size;
+       char flotante[10];
+       int cant_header, i=0, j, tam_data, k;
+       int cant_items;
+       if (ptr == NULL) return NULL;
+
+       PERR("Empieza el baile");
+       cant_header = 0;
+       offset = 0;
+       do {
+               /* Me salto el ID, que no me interesa saber su valor */
+               offset += sizeof(EMUFS_REG_ID);
+               /* Copio el tamaño del registro de la cabecera. */
+               memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
+               offset += sizeof(EMUFS_REG_SIZE);
+
+               /* Desplazo el offset */
+               if (curr_size == 0) {
+                       /* Si el tamaño de registro es 0, quiere decir que llegue a la
+                        * parte que esta vacia */
+                       break;
+               } else {
+                       cant_header++;
+                       offset += curr_size;
+               }
+       } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
+
+       /* El tamaño del nuevo array lo calculo asi :
+        *   
+        */
+       tmp1 = salida = (char *)malloc(1000000); /*(*size)-(sizeof(char *)+sizeof(t_Item *)+sizeof(EMUFS_REG_ID)+sizeof(int)*3+sizeof(float)+sizeof(EMUFS_BLOCK_ID))*cant_header + 5*cant_header*10+1);*/
+       if (salida == NULL) {
+               PERR("Error de malloc en salida");
+               return NULL;
+       }
+       tmp = ptr;
+       pos_actualizada = 0;
+       (*ancho) = 0;
+       i = 0;
+       while (i<cant_header) {
+               /* Verifico la pos_actual para el resaltado, asi queda coherente 
+                * en el cambio de formato
+                */
+               if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+                       (*pos_actual) = tmp1-salida;
+                       pos_actualizada = 1;
+               }
+               /* Pongo el ID del registro */
+               sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(EMUFS_REG_ID);
+               /* Cantidad de espacio que ocupa la data */
+               sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
+               tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
+               tmp1 += 10;
+               tmp += sizeof(EMUFS_REG_SIZE);
+               /* Pongo el campo numero */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo campo procdoi */
+               sprintf(flotante, "[%5.2f]", *((float *)tmp));
+               memcpy(tmp1, flotante, strlen(flotante));
+               tmp1 += strlen(flotante);
+               tmp += sizeof(float);
+               /* Pongo campo numero_remito */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo numero de items */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               cant_items = *((int *)tmp);
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo reg_nota */
+               sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
+               tmp1 += 10;
+               tmp += sizeof(EMUFS_BLOCK_ID);
+
+               if (pos_actualizada == 1) {
+                       (*ancho) = 60+strlen(flotante);
+               }
+               j = 0;
+               PERR("Voy por la data");
+               while (j < (tam_data-cant_items*sizeof(t_Item))) {
+                       if (*tmp == '\0') {
+                               if (ant == (*tmp)){
+                                       (*tmp1) = '.';
+                               } else {
+                                       (*tmp1) = '|';
+                               }
+                       } else {
+                               (*tmp1) = (*tmp);
+                       }
+                       ant = (*tmp);
+                       tmp++;
+                       tmp1++;
+                       if (pos_actualizada == 1)
+                               (*ancho)++;
+                       j++;
+               }
+               /* Ahora proceso los items */
+               k = 0;
+               while (k < cant_items) {
+                       sprintf(tmp1, "[%08d]", *((int *)tmp));
+                       tmp1 += 10;
+                       tmp += sizeof(int);
+                       if (pos_actualizada == 1)
+                               (*ancho)+=10;
+                       j = 0;
+                       while (j < (sizeof(t_Item)-sizeof(int))) {
+                               if (*tmp == '\0') {
+                                       if (ant == (*tmp)){
+                                               (*tmp1) = '.';
+                                       } else {
+                                               (*tmp1) = '|';
+                                       }
+                               } else {
+                                       (*tmp1) = (*tmp);
+                               }
+                               ant = (*tmp);
+                               tmp++;
+                               tmp1++;
+                               if (pos_actualizada == 1)
+                                       (*ancho)++;
+                               j++;
+                       }
+                       k++;
+               }
+               if (pos_actualizada == 1)
+                       pos_actualizada = 2;
+               PERR(salida);
+               i++;
+       }
+       /* llego no . hasta el final */
+       while (tmp < (ptr+(*size))) {
+               (*tmp1) = '.';
+               tmp1++;
+               tmp++;
+       }
+       free(ptr);
+
+       PERR("Termine");
+       if (emu->tam_bloque > emu->tam_reg) {
+               (*size) = tmp1-salida;
+       } else {
+               (*size) = tmp1-salida;
+               (*ancho) = tmp1-salida;
        }
-       memset(tmp1, '.', (*size)-(tmp1-salida)); 
        salida[*size-1] = '\0';
 
        return salida;
 }
+