xmlDocPtr document;
xmlNode *node, *inicio;
int error = 0, i;
+ char *prop;
EMUFS_REG_SIZE size;
t_LstArticulos *tmp;
lst_articulos = NULL;
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);
node = node->next;
}
+ fprintf(stderr, "Creando articulos con 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) {
t_Articulo art;
void *save;
memset(&art, '*', sizeof(t_Articulo));
- art.numero = atoi(xmlGetProp(node, "NroArtículo"));
- strcpy(art.desc, xmlGetProp(node, "Descripción"));
- strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
- strcpy(art.existencia, xmlGetProp(node, "Existencia"));
+ 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(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
- strcpy(art.pvu, xmlGetProp(node, "PVU"));
- strcpy(art.emin, xmlGetProp(node, "Emín"));
+ strcpy(art.pvu, prop = xmlGetProp(node, "PVU")); xmlFree(prop);
+ strcpy(art.emin, prop = xmlGetProp(node, "Emín")); xmlFree(prop);
/* 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) {
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++) {
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 */
ini = fin+1;
fin = ini;
while (*fin!='\0') fin++;
+ fprintf(stderr, "INI=%s\n", ini);
memcpy(dst->presentacion, ini, fin-ini+1);
ini = fin+1;