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 fprintf(stderr, "bloque = %d\n", tam_bloque);
98 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
99 for (node=inicio ; node ; node = node->next) {
100 if (node->type == XML_ELEMENT_NODE) {
101 if (strcmp(node->name, "ARTICULO") == 0) {
104 memset(&art, 0, sizeof(t_Articulo));
105 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
106 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
107 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
108 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
109 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
110 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
111 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
112 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
113 save = procesar_guardar_articulo(&art, &size, lst_articulos);
115 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
116 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
122 xmlFreeDoc(document);
125 tmp->fp = emufs_abrir("articulos");
126 /* Ahora trato de recuperar la info */
127 indices = emufs_idx_get(tmp->fp, &indices_cant);
128 for(i=0; i<indices_cant; i++) {
131 /* Leo el registro */
132 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
133 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
134 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
144 int art_liberar(t_LstArticulos *l)
146 if (l == NULL) l = lst_articulos;
147 if (l == NULL) return 1;
149 emufs_destruir(l->fp);
150 /* TODO : Liberar lista */
153 lst_articulos = NULL;
157 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
160 t_Reg_Articulo *nodo;
164 int n = atoi(numero);
166 if (lst == NULL) lst = lst_articulos;
167 if (lst == NULL) return NULL;
170 if (n == nodo->numero) {
171 (*id) = nodo->num_reg;
172 art = (t_Articulo *)malloc(sizeof(t_Articulo));
173 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
175 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
182 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
196 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
199 t_Articulo *articulo;
201 form = form_crear(win);
202 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
203 form_ejecutar(form, 1,1);
204 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
210 void art_modificar(char *s)
214 t_Articulo *articulo;
221 win = newwin(8, COLS-2, 13, 1);
226 articulo = art_form_buscar(win, &id);
229 /* Leo el registro directamente */
230 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
231 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
233 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
238 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
246 if (articulo != NULL) {
247 form = form_crear(win);
248 sprintf(num, "%08d", articulo->numero);
249 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
250 form_es_modificable(form, "Numero de Artículo" , 0);
251 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
252 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
253 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
254 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
255 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
256 form_ejecutar(form, 1,1);
258 /* Actualizar registro */
259 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
260 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
261 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
262 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
263 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
264 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
265 /* Ya actualice los datos, ahora veo de grabarlos */
266 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
269 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
276 wattron(win, COLOR_PAIR(COLOR_YELLOW));
277 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
278 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
287 void art_eliminar(char *s)
290 t_Articulo *articulo;
291 t_Reg_Articulo *nodo;
294 win = newwin(8, COLS-2, 13, 1);
298 articulo = art_form_buscar(win, &id);
300 if (articulo == NULL) {
301 wattron(win, COLOR_PAIR(COLOR_YELLOW));
302 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
303 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
307 nodo = lst_articulos->primero;
309 if (nodo->numero == articulo->numero) {
310 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
311 eliminar_nodo_articulo(lst_articulos, nodo);
324 void art_agregar(char *s)
329 t_Reg_Articulo *nuevo;
331 int error = 0, existe;
335 win = newwin(8, COLS-2, 13, 1);
339 form = form_crear(win);
340 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
341 form_agregar_widget(form, INPUT, "Descripción", 50, "");
342 form_agregar_widget(form, INPUT, "Presentación", 30, "");
343 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
344 form_agregar_widget(form, INPUT, "PVU", 8, "");
345 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
346 form_ejecutar(form, 1,1);
348 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
350 nuevo = lst_articulos->primero;
352 if (art.numero == nuevo->numero) {
360 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
361 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
362 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
363 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
364 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
365 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
367 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
368 save = procesar_guardar_articulo(&art, &size, lst_articulos);
370 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
372 wattron(win, COLOR_PAIR(COLOR_YELLOW));
373 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
374 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
378 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
383 wattron(win, COLOR_PAIR(COLOR_YELLOW));
384 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
385 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
396 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
399 switch (lst->fp->tipo) {
403 /* Copio el primer campo, esto es facil :-) */
404 memcpy(&dst->numero, ini, sizeof(unsigned int));
405 ini+=sizeof(unsigned int);
406 /* Ahora empieza el juego */
407 /* Los \0 son los delimitadores de campo! */
409 while (*fin!='\0') fin++;
410 memcpy(dst->desc, ini, fin-ini+1);
414 while (*fin!='\0') fin++;
415 memcpy(dst->presentacion, ini, fin-ini+1);
419 while (*fin!='\0') fin++;
420 memcpy(dst->existencia, ini, fin-ini+1);
424 while (*fin!='\0') fin++;
425 memcpy(dst->pvu, ini, fin-ini+1);
428 fin = (char *)src+size;
429 memcpy(dst->emin, ini, fin-ini+1);
433 memcpy(dst, src, sizeof(t_Articulo));
436 return 1; /* Todo ok */
439 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
443 char *from = (char *)src;
444 switch(lst->fp->tipo) {
447 /* Calculo el tamaño que voy a necesitar */
448 i[0] = sizeof(unsigned int);
449 i[1] = sizeof(char)*(strlen(src->desc)+1);
450 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
451 i[3] = sizeof(char)*(strlen(src->existencia)+1);
452 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
453 i[4] = sizeof(char)*(strlen(src->pvu)+1);
454 i[5] = sizeof(char)*(strlen(src->emin)+1);
455 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
456 tmp = (char *)malloc((*size));
457 if (tmp == NULL) return NULL;
458 memcpy(tmp, &src->numero, i[0]);
459 memcpy(tmp+i[0], src->desc, i[1]);
460 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
461 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
462 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
463 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
466 /* Lleno el lugar no ocupado de los strings con *, para que el ver
467 * registro se vea bien
469 i[0] = sizeof(unsigned int);
470 i[1] = sizeof(char)*(strlen(src->desc)+1);
471 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
472 i[3] = sizeof(char)*(strlen(src->existencia)+1);
473 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
474 i[4] = sizeof(char)*(strlen(src->pvu)+1);
475 i[5] = sizeof(char)*(strlen(src->emin)+1);
476 tmp = (char *)malloc(sizeof(t_Articulo));
477 if (tmp == NULL) return NULL;
478 memcpy(tmp, from, i[0]);
479 memcpy(tmp+i[0], from+i[0], i[1]); memset(tmp+i[0]+i[1], '*', 51-i[1]);
480 memcpy(tmp+i[0]+51, from+i[0]+51, i[2]); memset(tmp+i[0]+51+i[2], '*', 31-i[2]);
481 memcpy(tmp+i[0]+82, from+i[0]+82, i[3]); memset(tmp+i[0]+82+i[3], '*', 9-i[3]);
482 memcpy(tmp+i[0]+91, from+i[0]+91, i[4]); memset(tmp+i[0]+91+i[4], '*', 9-i[4]);
483 memcpy(tmp+i[0]+100, from+i[0]+100, i[5]); memset(tmp+i[0]+100+i[5], '*', 9-i[5]);
485 (*size) = sizeof(t_Articulo);