]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/articulos.c
Se agrega un archivo con codigos de error.
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
index 8fcd2eed259e705d9d53e0998e054e4d9f712dff..2e3602a47ba59bdec5fa1d4f90150ba35224c684 100644 (file)
@@ -82,6 +82,7 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
        tmp->primero = NULL;
 
        if (filename != NULL) {
+               PERR("Voy a crear desde un XML");
                document = xmlReadFile(filename, "ISO-8859-1",0);
                if (document == NULL) {
                        free(tmp);
@@ -112,12 +113,17 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
                                        prop = xmlGetProp(node, "NroArtículo");
                                        art.numero = atoi(prop);
                                        xmlFree(prop);
-                                       strcpy(art.desc, prop = xmlGetProp(node, "Descripción")); xmlFree(prop);
-                                       strcpy(art.presentacion, prop = xmlGetProp(node, "Presentación")); xmlFree(prop);
-                                       strcpy(art.existencia, prop = xmlGetProp(node, "Existencia")); xmlFree(prop);
+                                       strncpy(art.desc, prop = xmlGetProp(node, "Descripción"), 50); xmlFree(prop);
+                                       art.desc[50] = '\0'; /* Me aseguro de que este */
+                                       strncpy(art.presentacion, prop = xmlGetProp(node, "Presentación"), 30); xmlFree(prop);
+                                       art.presentacion[30] = '\0'; /* Me aseguro de que este */
+                                       strncpy(art.existencia, prop = xmlGetProp(node, "Existencia"), 8); xmlFree(prop);
+                                       art.existencia[8] = '\0'; /* Me aseguro de que este */
                                        /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
-                                       strcpy(art.pvu, prop = xmlGetProp(node, "PVU")); xmlFree(prop);
-                                       strcpy(art.emin, prop = xmlGetProp(node, "Emín")); xmlFree(prop);
+                                       strncpy(art.pvu, prop = xmlGetProp(node, "PVU"), 8); xmlFree(prop);
+                                       art.pvu[8] = '\0'; /* Me aseguro de que este */
+                                       strncpy(art.emin, prop = xmlGetProp(node, "Emín"), 8); xmlFree(prop);
+                                       art.emin[8] = '\0'; /* Me aseguro de que este */
                                        /* 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) {
@@ -132,7 +138,14 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
                xmlFreeDoc(document);
                xmlCleanupParser();
        } else {
+               PERR("Voy a recuperar desde un archivo");
                tmp->fp = emufs_abrir("articulos");
+               if (tmp->fp == NULL) {
+                       PERR("No se pudo cargar archivo de articulos.");
+                       free(tmp);
+                       lst_articulos = NULL;
+                       return NULL;
+               }
                /* Ahora trato de recuperar la info */
                indices = emufs_idx_get(tmp->fp, &indices_cant);
                for(i=0; i<indices_cant; i++) {
@@ -154,9 +167,9 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
 
 int art_liberar(t_LstArticulos *l)
 {
+       t_Reg_Articulo *del;
        if (l == NULL) l = lst_articulos;
        if (l == NULL) return 1;
-       t_Reg_Articulo *del;
 
        emufs_destruir(l->fp);
        while (l->primero) {
@@ -418,7 +431,7 @@ int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_Ls
                case T2:
                        ini = (char *)src;
                        /* Copio el primer campo, esto es facil :-) */
-                       memset(dst, '*', sizeof(t_Articulo));
+                       memset(dst, 0, sizeof(t_Articulo));
                        memcpy(&dst->numero, ini, sizeof(unsigned int));
                        ini+=sizeof(unsigned int);
                        /* Ahora empieza el juego */
@@ -435,6 +448,7 @@ int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_Ls
                        ini = fin+1;
                        fin = ini;
                        while (*fin!='\0') fin++;
+                       fprintf(stderr, "Presentacion = %s\n", dst->presentacion);
                        memcpy(dst->existencia, ini, fin-ini+1);
                        
                        ini = fin+1;
@@ -477,6 +491,7 @@ void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArti
                        memcpy(tmp, &src->numero, i[0]);
                        memcpy(tmp+i[0], src->desc, i[1]);
                        memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
+                       fprintf(stderr, "ACA: %s\n", src->presentacion);
                        memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
                        memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
                        memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
@@ -513,7 +528,7 @@ void art_reformatear(int tipo, int tam_bloque, int tam_reg)
        PERR("Creo el archivo\n");
        nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
        if (nuevo == NULL) {
-               fprintf(stderr, "ARCHIVO NUEVO NO CREADO\n");
+               PERR("ARCHIVO NUEVO NO CREADO");
                return;
        }