X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/4f49d5af508818404abb40c3008cbeb3f9273843..1a91316f990d419553dcad3b40074f6484d28b28:/emufs_gui/articulos.c diff --git a/emufs_gui/articulos.c b/emufs_gui/articulos.c index af4536f..f3df42d 100644 --- a/emufs_gui/articulos.c +++ b/emufs_gui/articulos.c @@ -14,6 +14,11 @@ static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num); static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo); static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo); +t_LstArticulos *art_get_lst() +{ + return lst_articulos; +} + int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo) { if (nodo == NULL) return 0; @@ -65,6 +70,7 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque) xmlDocPtr document; xmlNode *node, *inicio; int error = 0, i; + char *prop; EMUFS_REG_SIZE size; t_LstArticulos *tmp; lst_articulos = NULL; @@ -76,8 +82,11 @@ 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); + lst_articulos = NULL; return NULL; } @@ -94,6 +103,7 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque) 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) { @@ -101,16 +111,19 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque) 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) { + error = 0; id = tmp->fp->grabar_registro(tmp->fp, save, size, &error); agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero)); free(save); @@ -121,13 +134,21 @@ 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; ifp->leer_registro(tmp->fp, indices[i], &size, &error); if (procesar_leer_articulo(&art, save, size, tmp) == 1) { agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero)); @@ -144,9 +165,14 @@ int art_liberar(t_LstArticulos *l) { if (l == NULL) l = lst_articulos; if (l == NULL) return 1; + t_Reg_Articulo *del; emufs_destruir(l->fp); - /* TODO : Liberar lista */ + while (l->primero) { + del = l->primero; + l->primero = l->primero->sig; + free(del); + } free(l); lst_articulos = NULL; @@ -366,6 +392,7 @@ void art_agregar(char *s) /* 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) { + error = 0; id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error); if (error) { wattron(win, COLOR_PAIR(COLOR_YELLOW)); @@ -400,6 +427,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, 0, sizeof(t_Articulo)); memcpy(&dst->numero, ini, sizeof(unsigned int)); ini+=sizeof(unsigned int); /* Ahora empieza el juego */ @@ -411,6 +439,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, "INI=%s\n", ini); memcpy(dst->presentacion, ini, fin-ini+1); ini = fin+1; @@ -425,7 +454,7 @@ int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_Ls ini = fin+1; fin = (char *)src+size; - memcpy(dst->emin, ini, fin-ini+1); + memcpy(dst->emin, ini, fin-ini); break; case T3: @@ -454,6 +483,7 @@ void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArti (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]; tmp = (char *)malloc((*size)); if (tmp == NULL) return NULL; + memset(tmp, 0, *size); memcpy(tmp, &src->numero, i[0]); memcpy(tmp+i[0], src->desc, i[1]); memcpy(tmp+i[0]+i[1], src->presentacion, i[2]); @@ -466,9 +496,87 @@ void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArti * registro se vea bien */ tmp = (char *)malloc(sizeof(t_Articulo)); + memset(tmp, '*', sizeof(t_Articulo)); memcpy(tmp, from, sizeof(t_Articulo)); (*size) = sizeof(t_Articulo); } return tmp; } +void art_reformatear(int tipo, int tam_bloque, int tam_reg) +{ + EMUFS *nuevo, *old; + EMUFS_REG_ID *indices, id; + EMUFS_REG_SIZE indices_total, i, size; + t_Articulo art; + t_LstArticulos *lst_nueva; + int error; + char *save; + + PERR("==== EMPIEZO ====\n"); + old = lst_articulos->fp; + + /* Si el tipo es el mismo, no tengo que hacer nada! */ + if (old->tipo == tipo) return; + + /* Creo el nuevo file */ + 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"); + return; + } + + /* Creo la nueva lista */ + lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos)); + lst_nueva->primero = NULL; + lst_nueva->fp = nuevo; + + /* Leo los indices del archivo viejo */ + PERR("Obtengo Indices\n"); + indices = emufs_idx_get(old, &indices_total); + if (indices == NULL) { + art_liberar(lst_nueva); + return; + } + + PERR("Proceso datos\n"); + for(i=0; ileer_registro(old, indices[i], &size, &error); + if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) { + free(save); + /* Lei un registro Ok. Lo salvo en el archivo nuevo */ + save = procesar_guardar_articulo(&art, &size, lst_nueva); + if (save) { + error = 0; + id = nuevo->grabar_registro(nuevo, save, size, &error); + agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero)); + free(save); + } + } + } + + free(indices); + + PERR("Libero lo viejo\n"); + art_liberar(lst_articulos); + + PERR("Ahora tengo lo nuevo\n"); + lst_articulos = lst_nueva; + + /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */ + free(lst_articulos->fp->nombre); + lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1)); + strcpy(lst_articulos->fp->nombre, "articulos"); + + /* Muevo los archivos! */ + /* TODO : Poner en otro lugar mas generico! */ + PERR("Renombre!!\n"); + rename("emufs_tmp.dat", "articulos.dat"); + rename("emufs_tmp.idx", "articulos.idx"); + rename("emufs_tmp.fsc", "articulos.fsc"); + rename("emufs_tmp.did", "articulos.did"); + PERR("==== TERMINE ====\n"); +} +