X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ba651f45167f9205c0f9851d54bc205fd40b6e1a..d72d964935fcfb67aa0be2b123ed60ef03a0d1db:/emufs_gui/articulos.c?ds=inline diff --git a/emufs_gui/articulos.c b/emufs_gui/articulos.c index 78dc4f9..5e65a17 100644 --- a/emufs_gui/articulos.c +++ b/emufs_gui/articulos.c @@ -1,18 +1,20 @@ #include "articulos.h" +#include "idx.h" static t_LstArticulos *lst_articulos; static t_Articulo *art_form_buscar(WINDOW *win); -static void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst); -static int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst); +static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst); +static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst); t_LstArticulos *art_cargar(const char *filename) { xmlDocPtr document; xmlNode *node, *inicio; - int cant, size, error; + int cant, error = 0, i, id; + EMUFS_REG_SIZE size; void *save; t_LstArticulos *tmp; lst_articulos = NULL; @@ -60,7 +62,7 @@ t_LstArticulos *art_cargar(const char *filename) /* leo los datos y los guardo en el archivo*/ cant = 0; /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/ - tmp->fp = emufs_crear("articulos", T1, sizeof(t_Articulo)*2, sizeof(t_Articulo)); + tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo)); for (node=inicio ; node ; node = node->next) { if (node->type == XML_ELEMENT_NODE) { if (strcmp(node->name, "ARTICULO") == 0) { @@ -88,7 +90,20 @@ t_LstArticulos *art_cargar(const char *filename) xmlCleanupParser(); } else { tmp->fp = emufs_abrir("articulos"); - /* TODO Cargar registros desde el archivo */ + /* Ahora trato de recuperar la info */ + cant = emufs_idx_get_count(tmp->fp); + for(i=0; ifp, i); + /* Leo el registro */ + save = tmp->fp->leer_registro(tmp->fp, id, &size, &error); + if (procesar_leer_articulo(&art, save, size, tmp) == 1) { + tmp->array[i].num_reg = i; + tmp->array[i].numero = art.numero; + free(save); + } + } + tmp->cant = cant; } return tmp; @@ -112,7 +127,7 @@ t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero) /* FIXME : NO ME GUSTA :-/ */ t_Articulo *art; void *tmp; - int i,error; + int i, error = 0; EMUFS_REG_SIZE size; int n = atoi(numero); @@ -201,7 +216,7 @@ void art_eliminar(char *s) { WINDOW *win; t_Articulo *articulo; - + int i; win = newwin(8, COLS-2, 13, 1); box(win, 0, 0); wrefresh(win); @@ -215,7 +230,14 @@ void art_eliminar(char *s) wrefresh(win); getch(); } else { - /* TODO : Eliminar un registro */ + for(i=0; icant; i++) { + if (lst_articulos->array[i].numero == articulo->numero) { + lst_articulos->array[i].numero = -1; + lst_articulos->fp->borrar_registro(lst_articulos->fp, lst_articulos->array[i].num_reg); + break; + } + } + free(articulo); } werase(win); @@ -229,7 +251,8 @@ void art_agregar(char *s) t_Form *form; t_Articulo art; void *save; - int error, size, existe, i; + int error = 0, existe, i; + EMUFS_REG_SIZE size; win = newwin(8, COLS-2, 13, 1); box(win, 0, 0); @@ -290,7 +313,7 @@ void art_agregar(char *s) delwin(win); } -int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst) +int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst) { char *fin, *ini; switch (lst->fp->tipo) { @@ -336,7 +359,7 @@ int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos return 1; /* Todo ok */ } -void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst) +void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst) { char *tmp=NULL; int i[6];