static t_LstArticulos *lst_articulos;
-static t_Articulo *art_form_buscar(WINDOW *win);
+static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
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)
+/* Manejo de la lista doble */
+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);
+
+int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
+{
+ if (nodo == NULL) return 0;
+ if (nodo->ant == NULL) {
+ /* Me piden borrar el primer nodo */
+ if (nodo->sig) {
+ nodo->sig->ant = NULL;
+ }
+ lst->primero = nodo->sig;
+ } else {
+ if (nodo->sig) {
+ nodo->sig->ant = nodo->ant;
+ }
+ nodo->ant->sig = nodo->sig;
+ }
+ free(nodo);
+ return 1;
+}
+
+t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
+{
+ t_Reg_Articulo *tmp;
+ if (reg == EMUFS_NOT_FOUND) return NULL;
+ tmp = malloc(sizeof(t_Reg_Articulo));
+ if (tmp == NULL) return NULL;
+ tmp->sig = tmp->ant = NULL;
+ tmp->num_reg = reg;
+ tmp->numero = num;
+
+ return tmp;
+}
+
+int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
+{
+ if (nodo == NULL) return 0;
+
+ if (lst->primero) {
+ lst->primero->ant = nodo;
+ nodo->sig = lst->primero;
+ lst->primero = nodo;
+ } else {
+ lst->primero = nodo;
+ }
+ return 1;
+}
+
+t_LstArticulos *art_cargar(const char *filename, int tipo)
{
xmlDocPtr document;
xmlNode *node, *inicio;
- int cant, error = 0, i, id;
+ int cant, error = 0, i;
EMUFS_REG_SIZE size;
- void *save;
t_LstArticulos *tmp;
lst_articulos = NULL;
+ EMUFS_REG_ID id;
tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
if (tmp == NULL) return NULL;
lst_articulos = tmp;
- tmp->cant = 0;
- /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
-
- if (tmp->array == NULL) {
- free(tmp);
- return NULL;
- }
+ tmp->primero = NULL;
if (filename != NULL) {
document = xmlReadFile(filename, "ISO-8859-1",0);
node = node->next;
}
- /* Cuento la cantidad de articulos en el archivo */
- cant = 0;
- for ( ; node ; node = node->next) {
- if (node->type == XML_ELEMENT_NODE) {
- if (strcmp(node->name, "ARTICULO") == 0) {
- ++cant;
- }
- }
- }
-
- /* 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", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
+ tmp->fp = emufs_crear("articulos", tipo-1, 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) {
t_Articulo art;
+ void *save;
art.numero = atoi(xmlGetProp(node, "NroArtículo"));
strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
/* 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) {
- tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
- tmp->array[cant].numero = art.numero;
- ++cant;
+ id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
+ agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
free(save);
}
}
}
}
- tmp->cant = cant;
xmlFreeDoc(document);
xmlCleanupParser();
} else {
cant = emufs_idx_get_count(tmp->fp);
for(i=0; i<cant; i++) {
t_Articulo art;
+ void *save;
id = emufs_idx_get_id_at(tmp->fp, 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;
+ agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
free(save);
}
}
- tmp->cant = cant;
}
return tmp;
if (l == NULL) return 1;
emufs_destruir(l->fp);
-/* free(l->array); */
+ /* TODO : Liberar lista */
free(l);
lst_articulos = NULL;
return 0;
}
-t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
+t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
{
- /* FIXME : NO ME GUSTA :-/ */
t_Articulo *art;
+ t_Reg_Articulo *nodo;
void *tmp;
- int i, error = 0;
+ int error = 0;
EMUFS_REG_SIZE size;
int n = atoi(numero);
if (lst == NULL) lst = lst_articulos;
if (lst == NULL) return NULL;
-
- for(i=0; i<lst->cant; i++) {
- if (n == lst->array[i].numero) {
+ nodo = lst->primero;
+ while (nodo) {
+ if (n == nodo->numero) {
+ (*id) = nodo->num_reg;
art = (t_Articulo *)malloc(sizeof(t_Articulo));
/* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
- tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
+ error = 0;
+ tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
if (error) {
free(art);
free(tmp);
return art;
}
+ nodo = nodo->sig;
}
return NULL;
}
-t_Articulo *art_form_buscar(WINDOW *win)
+t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
{
t_Form *form;
t_Articulo *articulo;
form = form_crear(win);
form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
form_ejecutar(form, 1,1);
- articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
+ articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
form_destruir(form);
return articulo;
WINDOW *win;
t_Form *form;
t_Articulo *articulo;
- char num[8];
+ char num[11];
+ void *tmp;
+ int error;
+ EMUFS_REG_SIZE size;
+ EMUFS_REG_ID id;
win = newwin(8, COLS-2, 13, 1);
box(win, 0, 0);
wrefresh(win);
- articulo = art_form_buscar(win);
+ if (s == NULL) {
+ articulo = art_form_buscar(win, &id);
+ } else {
+ id = atoi(s);
+ /* Leo el registro directamente */
+ articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
+ /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
+ error = 0;
+ tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
+ if (error) {
+ free(articulo);
+ articulo = NULL;
+ } else {
+ if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
+ free(articulo);
+ articulo = NULL;
+ }
+ free(tmp);
+ }
+ }
if (articulo != NULL) {
form = form_crear(win);
- sprintf(num, "%07d", articulo->numero);
+ sprintf(num, "%08d", articulo->numero);
form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
+ form_es_modificable(form, "Numero de Artículo" , 0);
form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
form_ejecutar(form, 1,1);
- /* TODO : Actualizar registro */
+ /* Actualizar registro */
+ articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
+ strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
+ strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
+ strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
+ strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
+ strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
+ /* Ya actualice los datos, ahora veo de grabarlos */
+ tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
+ if (tmp) {
+ error = 0;
+ lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
+ free(tmp);
+ }
form_destruir(form);
free(articulo);
{
WINDOW *win;
t_Articulo *articulo;
- int i;
+ t_Reg_Articulo *nodo;
+ EMUFS_REG_ID id;
+
win = newwin(8, COLS-2, 13, 1);
box(win, 0, 0);
wrefresh(win);
- articulo = art_form_buscar(win);
+ articulo = art_form_buscar(win, &id);
if (articulo == NULL) {
wattron(win, COLOR_PAIR(COLOR_YELLOW));
wrefresh(win);
getch();
} else {
- for(i=0; i<lst_articulos->cant; 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);
+ nodo = lst_articulos->primero;
+ while (nodo) {
+ if (nodo->numero == articulo->numero) {
+ lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
+ eliminar_nodo_articulo(lst_articulos, nodo);
break;
}
+ nodo = nodo->sig;
}
free(articulo);
}
WINDOW *win;
t_Form *form;
t_Articulo art;
+ t_Reg_Articulo *nuevo;
void *save;
- int error = 0, existe, i;
+ int error = 0, existe;
EMUFS_REG_SIZE size;
+ EMUFS_REG_ID id;
win = newwin(8, COLS-2, 13, 1);
box(win, 0, 0);
art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
existe = 0;
- for(i=0; i<lst_articulos->cant; i++) {
- if (art.numero == lst_articulos->array[i].numero) {
+ nuevo = lst_articulos->primero;
+ while (nuevo) {
+ if (art.numero == nuevo->numero) {
existe = 1;
break;
}
+ nuevo = nuevo->sig;
}
if (!existe) {
/* 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) {
- lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
+ id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
if (error) {
wattron(win, COLOR_PAIR(COLOR_YELLOW));
mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
wattroff(win, COLOR_PAIR(COLOR_YELLOW));
wrefresh(win);
getch();
+ } else {
+ agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
}
- lst_articulos->array[lst_articulos->cant].numero = art.numero;
- lst_articulos->cant++;
free(save);
}
} else {
break;
case T3:
- if (size != sizeof(t_Articulo)) {
- return 0; /* El tamaño no encaja!! */
- }
- memcpy(dst, src, size);
+ memcpy(dst, src, sizeof(t_Articulo));
}
return 1; /* Todo ok */
{
char *tmp=NULL;
int i[6];
+ char *from = (char *)src;
switch(lst->fp->tipo) {
case T1:
case T2:
memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
break;
case T3:
+ /* 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));
if (tmp == NULL) return NULL;
- memcpy(tmp, src, sizeof(t_Articulo));
+ 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]);
+
(*size) = sizeof(t_Articulo);
}
return tmp;