]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Se arreglar procesar_guardar_articulo que era donde se estaba
authorRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 15 Apr 2004 18:53:32 +0000 (18:53 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 15 Apr 2004 18:53:32 +0000 (18:53 +0000)
 metiendo basura cuando se grababa en tipo3.

 Igualmente sigo con el problema de bloques mayores a 500 bytes.

emufs_gui/articulos.c
emufs_gui/registros.c

index 241547f1aa14320d620b0c19410d06adc6b3018e..af4536fbb9ee25dc228d28d348a8507ed38fed16 100644 (file)
@@ -94,21 +94,20 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
                        node = node->next;
                }
 
                        node = node->next;
                }
 
-               fprintf(stderr, "bloque = %d\n", tam_bloque);
                tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
                                        t_Articulo art;
                                        void *save;
                tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
                                        t_Articulo art;
                                        void *save;
-                                       memset(&art, 0, sizeof(t_Articulo));
+                                       memset(&art, '*', sizeof(t_Articulo));
                                        art.numero = atoi(xmlGetProp(node, "NroArtículo"));
                                        art.numero = atoi(xmlGetProp(node, "NroArtículo"));
-                                       strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
-                                       strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
-                                       strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
+                                       strcpy(art.desc, xmlGetProp(node, "Descripción"));
+                                       strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
+                                       strcpy(art.existencia, xmlGetProp(node, "Existencia"));
                                        /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
                                        /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
-                                       strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
-                                       strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
+                                       strcpy(art.pvu, xmlGetProp(node, "PVU"));
+                                       strcpy(art.emin, xmlGetProp(node, "Emín"));
                                        /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
                                        save = procesar_guardar_articulo(&art, &size, lst_articulos);
                                        if (save != NULL) {
                                        /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
                                        save = procesar_guardar_articulo(&art, &size, lst_articulos);
                                        if (save != NULL) {
@@ -466,22 +465,8 @@ void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArti
                        /* Lleno el lugar no ocupado de los strings con *, para que el ver
                         * registro se vea bien 
                         */
                        /* Lleno el lugar no ocupado de los strings con *, para que el ver
                         * registro se vea bien 
                         */
-                       i[0] = sizeof(unsigned int);
-                       i[1] = sizeof(char)*(strlen(src->desc)+1);
-                       i[2] = sizeof(char)*(strlen(src->presentacion)+1);
-                       i[3] = sizeof(char)*(strlen(src->existencia)+1);
-/*                     i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
-                       i[4] = sizeof(char)*(strlen(src->pvu)+1);
-                       i[5] = sizeof(char)*(strlen(src->emin)+1);
                        tmp = (char *)malloc(sizeof(t_Articulo));
                        tmp = (char *)malloc(sizeof(t_Articulo));
-                       if (tmp == NULL) return NULL;
-                       memcpy(tmp, from, i[0]);
-                       memcpy(tmp+i[0], from+i[0], i[1]); memset(tmp+i[0]+i[1], '*', 51-i[1]);
-                       memcpy(tmp+i[0]+51, from+i[0]+51, i[2]); memset(tmp+i[0]+51+i[2], '*', 31-i[2]);
-                       memcpy(tmp+i[0]+82, from+i[0]+82, i[3]); memset(tmp+i[0]+82+i[3], '*', 9-i[3]);
-                       memcpy(tmp+i[0]+91, from+i[0]+91, i[4]); memset(tmp+i[0]+91+i[4], '*', 9-i[4]);
-                       memcpy(tmp+i[0]+100, from+i[0]+100, i[5]); memset(tmp+i[0]+100+i[5], '*', 9-i[5]);
-
+                       memcpy(tmp, from, sizeof(t_Articulo));
                        (*size) = sizeof(t_Articulo);
        }
        return tmp;
                        (*size) = sizeof(t_Articulo);
        }
        return tmp;
index 911c43d0c23aa25302b7fe2abfc2619b08df034e..a94b4be63e02c432d41c83e7d9cca5dc6abf7e8f 100644 (file)
@@ -46,7 +46,7 @@ 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+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+6, 48, " < >  = Separador Bloques");
+       mvwaddstr(padre, h-offset_alto+7, 48, " < >  = Separador Bloques");
 }
        
 void ver_registros(WINDOW *padre, int w, int h)
 }
        
 void ver_registros(WINDOW *padre, int w, int h)
@@ -300,7 +300,7 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        
        if (emu->tam_bloque > emu->tam_reg) {
                (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
        
        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;
+               (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
        } else {
                (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
                (*ancho) = (*size);
        } else {
                (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
                (*ancho) = (*size);