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)
66 xmlNode *node, *inicio;
67 int cant, error = 0, i;
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, sizeof(t_Articulo)*4+128, 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 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
104 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
105 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
106 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
107 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
108 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
109 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
110 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
111 save = procesar_guardar_articulo(&art, &size, lst_articulos);
113 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
114 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
120 xmlFreeDoc(document);
123 tmp->fp = emufs_abrir("articulos");
124 /* Ahora trato de recuperar la info */
125 cant = emufs_idx_get_count(tmp->fp);
126 for(i=0; i<cant; i++) {
129 id = emufs_idx_get_id_at(tmp->fp, i);
130 /* Leo el registro */
131 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
132 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
133 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
142 int art_liberar(t_LstArticulos *l)
144 if (l == NULL) l = lst_articulos;
145 if (l == NULL) return 1;
147 emufs_destruir(l->fp);
148 /* TODO : Liberar lista */
151 lst_articulos = NULL;
155 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
158 t_Reg_Articulo *nodo;
162 int n = atoi(numero);
164 if (lst == NULL) lst = lst_articulos;
165 if (lst == NULL) return NULL;
168 if (n == nodo->numero) {
169 (*id) = nodo->num_reg;
170 art = (t_Articulo *)malloc(sizeof(t_Articulo));
171 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
173 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
180 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
194 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
197 t_Articulo *articulo;
199 form = form_crear(win);
200 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
201 form_ejecutar(form, 1,1);
202 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
208 void art_modificar(char *s)
212 t_Articulo *articulo;
219 win = newwin(8, COLS-2, 13, 1);
224 articulo = art_form_buscar(win, &id);
227 /* Leo el registro directamente */
228 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
229 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
231 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
236 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
244 if (articulo != NULL) {
245 form = form_crear(win);
246 sprintf(num, "%08d", articulo->numero);
247 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
248 form_es_modificable(form, "Numero de Artículo" , 0);
249 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
250 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
251 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
252 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
253 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
254 form_ejecutar(form, 1,1);
256 /* Actualizar registro */
257 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
258 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
259 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
260 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
261 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
262 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
263 /* Ya actualice los datos, ahora veo de grabarlos */
264 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
267 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
274 wattron(win, COLOR_PAIR(COLOR_YELLOW));
275 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
276 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
285 void art_eliminar(char *s)
288 t_Articulo *articulo;
289 t_Reg_Articulo *nodo;
292 win = newwin(8, COLS-2, 13, 1);
296 articulo = art_form_buscar(win, &id);
298 if (articulo == NULL) {
299 wattron(win, COLOR_PAIR(COLOR_YELLOW));
300 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
301 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
305 nodo = lst_articulos->primero;
307 if (nodo->numero == articulo->numero) {
308 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
309 eliminar_nodo_articulo(lst_articulos, nodo);
322 void art_agregar(char *s)
327 t_Reg_Articulo *nuevo;
329 int error = 0, existe;
333 win = newwin(8, COLS-2, 13, 1);
337 form = form_crear(win);
338 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
339 form_agregar_widget(form, INPUT, "Descripción", 50, "");
340 form_agregar_widget(form, INPUT, "Presentación", 30, "");
341 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
342 form_agregar_widget(form, INPUT, "PVU", 8, "");
343 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
344 form_ejecutar(form, 1,1);
346 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
348 nuevo = lst_articulos->primero;
350 if (art.numero == nuevo->numero) {
358 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
359 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
360 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
361 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
362 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
363 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
365 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
366 save = procesar_guardar_articulo(&art, &size, lst_articulos);
368 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
370 wattron(win, COLOR_PAIR(COLOR_YELLOW));
371 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
372 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
376 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
381 wattron(win, COLOR_PAIR(COLOR_YELLOW));
382 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
383 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
394 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
397 switch (lst->fp->tipo) {
401 /* Copio el primer campo, esto es facil :-) */
402 memcpy(&dst->numero, ini, sizeof(unsigned int));
403 ini+=sizeof(unsigned int);
404 /* Ahora empieza el juego */
405 /* Los \0 son los delimitadores de campo! */
407 while (*fin!='\0') fin++;
408 memcpy(dst->desc, ini, fin-ini+1);
412 while (*fin!='\0') fin++;
413 memcpy(dst->presentacion, ini, fin-ini+1);
417 while (*fin!='\0') fin++;
418 memcpy(dst->existencia, ini, fin-ini+1);
422 while (*fin!='\0') fin++;
423 memcpy(dst->pvu, ini, fin-ini+1);
426 fin = (char *)src+size;
427 memcpy(dst->emin, ini, fin-ini+1);
431 memcpy(dst, src, sizeof(t_Articulo));
434 return 1; /* Todo ok */
437 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
441 char *from = (char *)src;
442 switch(lst->fp->tipo) {
445 /* Calculo el tamaño que voy a necesitar */
446 i[0] = sizeof(unsigned int);
447 i[1] = sizeof(char)*(strlen(src->desc)+1);
448 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
449 i[3] = sizeof(char)*(strlen(src->existencia)+1);
450 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
451 i[4] = sizeof(char)*(strlen(src->pvu)+1);
452 i[5] = sizeof(char)*(strlen(src->emin)+1);
453 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
454 tmp = (char *)malloc((*size));
455 if (tmp == NULL) return NULL;
456 memcpy(tmp, &src->numero, i[0]);
457 memcpy(tmp+i[0], src->desc, i[1]);
458 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
459 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
460 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
461 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
464 /* Lleno el lugar no ocupado de los strings con *, para que el ver
465 * registro se vea bien
467 i[0] = sizeof(unsigned int);
468 i[1] = sizeof(char)*(strlen(src->desc)+1);
469 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
470 i[3] = sizeof(char)*(strlen(src->existencia)+1);
471 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
472 i[4] = sizeof(char)*(strlen(src->pvu)+1);
473 i[5] = sizeof(char)*(strlen(src->emin)+1);
474 tmp = (char *)malloc(sizeof(t_Articulo));
475 if (tmp == NULL) return NULL;
476 memcpy(tmp, from, i[0]);
477 memcpy(tmp+i[0], from+i[0], i[1]); memset(tmp+i[0]+i[1], '*', 51-i[1]);
478 memcpy(tmp+i[0]+51, from+i[0]+51, i[2]); memset(tmp+i[0]+51+i[2], '*', 31-i[2]);
479 memcpy(tmp+i[0]+82, from+i[0]+82, i[3]); memset(tmp+i[0]+82+i[3], '*', 9-i[3]);
480 memcpy(tmp+i[0]+91, from+i[0]+91, i[4]); memset(tmp+i[0]+91+i[4], '*', 9-i[4]);
481 memcpy(tmp+i[0]+100, from+i[0]+100, i[5]); memset(tmp+i[0]+100+i[5], '*', 9-i[5]);
483 (*size) = sizeof(t_Articulo);