5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
9 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
10 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
12 /* Manejo de la lista doble */
13 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
14 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
15 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
17 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
19 if (nodo == NULL) return 0;
20 if (nodo->ant == NULL) {
21 /* Me piden borrar el primer nodo */
23 nodo->sig->ant = NULL;
25 lst->primero = nodo->sig;
28 nodo->sig->ant = nodo->ant;
30 nodo->ant->sig = nodo->sig;
36 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
39 if (reg == EMUFS_NOT_FOUND) return NULL;
40 tmp = malloc(sizeof(t_Reg_Articulo));
41 if (tmp == NULL) return NULL;
42 tmp->sig = tmp->ant = NULL;
49 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
51 if (nodo == NULL) return 0;
54 lst->primero->ant = nodo;
55 nodo->sig = lst->primero;
63 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
66 xmlNode *node, *inicio;
71 EMUFS_REG_ID id, *indices, indices_cant;
73 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
74 if (tmp == NULL) return NULL;
78 if (filename != NULL) {
79 document = xmlReadFile(filename, "ISO-8859-1",0);
80 if (document == NULL) {
85 node = xmlDocGetRootElement(document);
86 /* Busco el TAG principal "ARTICULOS" */
88 if (node->type == XML_ELEMENT_NODE) {
89 if (strcmp(node->name, "ARTICULOS") == 0) {
90 inicio = node->children;
97 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
98 for (node=inicio ; node ; node = node->next) {
99 if (node->type == XML_ELEMENT_NODE) {
100 if (strcmp(node->name, "ARTICULO") == 0) {
103 memset(&art, '*', sizeof(t_Articulo));
104 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
105 strcpy(art.desc, xmlGetProp(node, "Descripción"));
106 strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
107 strcpy(art.existencia, xmlGetProp(node, "Existencia"));
108 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
109 strcpy(art.pvu, xmlGetProp(node, "PVU"));
110 strcpy(art.emin, xmlGetProp(node, "Emín"));
111 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
112 save = procesar_guardar_articulo(&art, &size, lst_articulos);
114 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
115 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
121 xmlFreeDoc(document);
124 tmp->fp = emufs_abrir("articulos");
125 /* Ahora trato de recuperar la info */
126 indices = emufs_idx_get(tmp->fp, &indices_cant);
127 for(i=0; i<indices_cant; i++) {
130 /* Leo el registro */
131 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
132 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
133 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
143 int art_liberar(t_LstArticulos *l)
145 if (l == NULL) l = lst_articulos;
146 if (l == NULL) return 1;
148 emufs_destruir(l->fp);
149 /* TODO : Liberar lista */
152 lst_articulos = NULL;
156 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
159 t_Reg_Articulo *nodo;
163 int n = atoi(numero);
165 if (lst == NULL) lst = lst_articulos;
166 if (lst == NULL) return NULL;
169 if (n == nodo->numero) {
170 (*id) = nodo->num_reg;
171 art = (t_Articulo *)malloc(sizeof(t_Articulo));
172 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
174 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
181 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
195 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
198 t_Articulo *articulo;
200 form = form_crear(win);
201 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
202 form_ejecutar(form, 1,1);
203 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
209 void art_modificar(char *s)
213 t_Articulo *articulo;
220 win = newwin(8, COLS-2, 13, 1);
225 articulo = art_form_buscar(win, &id);
228 /* Leo el registro directamente */
229 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
230 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
232 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
237 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
245 if (articulo != NULL) {
246 form = form_crear(win);
247 sprintf(num, "%08d", articulo->numero);
248 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
249 form_es_modificable(form, "Numero de Artículo" , 0);
250 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
251 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
252 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
253 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
254 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
255 form_ejecutar(form, 1,1);
257 /* Actualizar registro */
258 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
259 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
260 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
261 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
262 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
263 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
264 /* Ya actualice los datos, ahora veo de grabarlos */
265 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
268 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
275 wattron(win, COLOR_PAIR(COLOR_YELLOW));
276 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
277 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
286 void art_eliminar(char *s)
289 t_Articulo *articulo;
290 t_Reg_Articulo *nodo;
293 win = newwin(8, COLS-2, 13, 1);
297 articulo = art_form_buscar(win, &id);
299 if (articulo == NULL) {
300 wattron(win, COLOR_PAIR(COLOR_YELLOW));
301 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
302 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
306 nodo = lst_articulos->primero;
308 if (nodo->numero == articulo->numero) {
309 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
310 eliminar_nodo_articulo(lst_articulos, nodo);
323 void art_agregar(char *s)
328 t_Reg_Articulo *nuevo;
330 int error = 0, existe;
334 win = newwin(8, COLS-2, 13, 1);
338 form = form_crear(win);
339 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
340 form_agregar_widget(form, INPUT, "Descripción", 50, "");
341 form_agregar_widget(form, INPUT, "Presentación", 30, "");
342 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
343 form_agregar_widget(form, INPUT, "PVU", 8, "");
344 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
345 form_ejecutar(form, 1,1);
347 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
349 nuevo = lst_articulos->primero;
351 if (art.numero == nuevo->numero) {
359 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
360 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
361 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
362 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
363 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
364 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
366 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
367 save = procesar_guardar_articulo(&art, &size, lst_articulos);
369 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
371 wattron(win, COLOR_PAIR(COLOR_YELLOW));
372 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
373 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
377 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
382 wattron(win, COLOR_PAIR(COLOR_YELLOW));
383 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
384 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
395 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
398 switch (lst->fp->tipo) {
402 /* Copio el primer campo, esto es facil :-) */
403 memcpy(&dst->numero, ini, sizeof(unsigned int));
404 ini+=sizeof(unsigned int);
405 /* Ahora empieza el juego */
406 /* Los \0 son los delimitadores de campo! */
408 while (*fin!='\0') fin++;
409 memcpy(dst->desc, ini, fin-ini+1);
413 while (*fin!='\0') fin++;
414 memcpy(dst->presentacion, ini, fin-ini+1);
418 while (*fin!='\0') fin++;
419 memcpy(dst->existencia, ini, fin-ini+1);
423 while (*fin!='\0') fin++;
424 memcpy(dst->pvu, ini, fin-ini+1);
427 fin = (char *)src+size;
428 memcpy(dst->emin, ini, fin-ini+1);
432 memcpy(dst, src, sizeof(t_Articulo));
435 return 1; /* Todo ok */
438 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
442 char *from = (char *)src;
443 switch(lst->fp->tipo) {
446 /* Calculo el tamaño que voy a necesitar */
447 i[0] = sizeof(unsigned int);
448 i[1] = sizeof(char)*(strlen(src->desc)+1);
449 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
450 i[3] = sizeof(char)*(strlen(src->existencia)+1);
451 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
452 i[4] = sizeof(char)*(strlen(src->pvu)+1);
453 i[5] = sizeof(char)*(strlen(src->emin)+1);
454 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
455 tmp = (char *)malloc((*size));
456 if (tmp == NULL) return NULL;
457 memcpy(tmp, &src->numero, i[0]);
458 memcpy(tmp+i[0], src->desc, i[1]);
459 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
460 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
461 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
462 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
465 /* Lleno el lugar no ocupado de los strings con *, para que el ver
466 * registro se vea bien
468 tmp = (char *)malloc(sizeof(t_Articulo));
469 memcpy(tmp, from, sizeof(t_Articulo));
470 (*size) = sizeof(t_Articulo);