7 static t_LstArticulos *lst_articulos;
9 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
11 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
12 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
14 /* Manejo de la lista doble */
15 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
16 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
17 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
19 t_LstArticulos *art_get_lst()
24 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
26 if (nodo == NULL) return 0;
27 if (nodo->ant == NULL) {
28 /* Me piden borrar el primer nodo */
30 nodo->sig->ant = NULL;
32 lst->primero = nodo->sig;
35 nodo->sig->ant = nodo->ant;
37 nodo->ant->sig = nodo->sig;
43 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
46 if (reg == EMUFS_NOT_FOUND) return NULL;
47 tmp = malloc(sizeof(t_Reg_Articulo));
48 if (tmp == NULL) return NULL;
49 tmp->sig = tmp->ant = NULL;
56 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
58 if (nodo == NULL) return 0;
61 lst->primero->ant = nodo;
62 nodo->sig = lst->primero;
70 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
73 xmlNode *node, *inicio;
79 EMUFS_REG_ID id, *indices, indices_cant;
81 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
82 if (tmp == NULL) return NULL;
86 if (filename != NULL) {
87 PERR("Voy a crear desde un XML");
88 document = xmlReadFile(filename, "ISO-8859-1",0);
89 if (document == NULL) {
96 node = xmlDocGetRootElement(document);
97 /* Busco el TAG principal "ARTICULOS" */
99 if (node->type == XML_ELEMENT_NODE) {
100 if (strcmp(node->name, "ARTICULOS") == 0) {
101 inicio = node->children;
108 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
109 for (node=inicio ; node ; node = node->next) {
110 if (node->type == XML_ELEMENT_NODE) {
111 if (strcmp(node->name, "ARTICULO") == 0) {
114 memset(&art, '*', sizeof(t_Articulo));
115 prop = xml_get_prop(node, "NroArtículo");
116 art.numero = atoi(prop);
118 strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
119 art.desc[50] = '\0'; /* Me aseguro de que este */
120 strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
121 art.presentacion[30] = '\0'; /* Me aseguro de que este */
122 strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
123 art.existencia[8] = '\0'; /* Me aseguro de que este */
124 strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicacion"), 30); xmlFree(prop);
125 strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
126 art.pvu[8] = '\0'; /* Me aseguro de que este */
127 strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
128 art.emin[8] = '\0'; /* Me aseguro de que este */
129 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
130 save = procesar_guardar_articulo(&art, &size, lst_articulos);
133 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
134 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
140 xmlFreeDoc(document);
143 PERR("Voy a recuperar desde un archivo");
144 tmp->fp = emufs_abrir("articulos");
145 if (tmp->fp == NULL) {
146 PERR("No se pudo cargar archivo de articulos.");
148 lst_articulos = NULL;
151 /* Ahora trato de recuperar la info */
152 indices = emufs_idx_get(tmp->fp, &indices_cant);
153 for(i=0; i<indices_cant; i++) {
156 /* Leo el registro */
158 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
159 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
160 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
170 int art_liberar(t_LstArticulos *l)
173 if (l == NULL) l = lst_articulos;
174 if (l == NULL) return 1;
176 emufs_destruir(l->fp);
179 l->primero = l->primero->sig;
184 lst_articulos = NULL;
188 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
191 t_Reg_Articulo *nodo;
197 if (lst == NULL) lst = lst_articulos;
198 if (lst == NULL) return NULL;
201 if (n == nodo->numero) {
202 (*id) = nodo->num_reg;
203 art = (t_Articulo *)malloc(sizeof(t_Articulo));
204 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
206 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
213 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
227 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
230 t_Articulo *articulo;
232 form = form_crear(win);
233 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
234 form_ejecutar(form, 1,1);
235 articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
241 void art_modificar(char *s)
245 t_Articulo *articulo;
252 win = newwin(9, COLS-2, 13, 1);
257 articulo = art_form_buscar(win, &id);
260 /* Leo el registro directamente */
261 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
262 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
264 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
269 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
277 if (articulo != NULL) {
278 form = form_crear(win);
279 sprintf(num, "%08d", articulo->numero);
280 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
281 form_es_modificable(form, "Numero de Artículo" , 0);
282 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
283 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
284 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
285 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
286 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
287 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
288 form_ejecutar(form, 1,1);
290 /* Actualizar registro */
291 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
292 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
293 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
294 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
295 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
296 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
297 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
298 /* Ya actualice los datos, ahora veo de grabarlos */
299 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
302 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
309 wattron(win, COLOR_PAIR(COLOR_YELLOW));
310 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
311 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
320 void art_eliminar(char *s)
323 t_Articulo *articulo;
324 t_Reg_Articulo *nodo;
327 win = newwin(8, COLS-2, 13, 1);
331 articulo = art_form_buscar(win, &id);
333 if (articulo == NULL) {
334 wattron(win, COLOR_PAIR(COLOR_YELLOW));
335 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
336 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
340 nodo = lst_articulos->primero;
342 if (nodo->numero == articulo->numero) {
343 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
344 eliminar_nodo_articulo(lst_articulos, nodo);
357 void art_agregar(char *s)
362 t_Reg_Articulo *nuevo;
364 int error = 0, existe;
368 win = newwin(9, COLS-2, 13, 1);
372 form = form_crear(win);
373 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
374 form_agregar_widget(form, INPUT, "Descripción", 50, "");
375 form_agregar_widget(form, INPUT, "Presentación", 30, "");
376 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
377 form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
378 form_agregar_widget(form, INPUT, "PVU", 8, "");
379 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
380 form_ejecutar(form, 1,1);
382 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
384 nuevo = lst_articulos->primero;
386 if (art.numero == nuevo->numero) {
394 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
395 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
396 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
397 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
398 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
399 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
401 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
402 save = procesar_guardar_articulo(&art, &size, lst_articulos);
405 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
407 wattron(win, COLOR_PAIR(COLOR_YELLOW));
408 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
409 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
413 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
418 wattron(win, COLOR_PAIR(COLOR_YELLOW));
419 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
420 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
431 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
434 switch (lst->fp->tipo) {
438 /* Copio el primer campo, esto es facil :-) */
439 memset(dst, 0, sizeof(t_Articulo));
440 memcpy(&dst->numero, ini, sizeof(unsigned int));
441 ini+=sizeof(unsigned int);
442 /* Ahora empieza el juego */
443 /* Los \0 son los delimitadores de campo! */
445 while (*fin!='\0') fin++;
446 memcpy(dst->desc, ini, fin-ini+1);
450 while (*fin!='\0') fin++;
451 memcpy(dst->presentacion, ini, fin-ini+1);
455 while (*fin!='\0') fin++;
456 memcpy(dst->existencia, ini, fin-ini+1);
460 while (*fin!='\0') fin++;
461 memcpy(dst->ubicacion, ini, fin-ini+1);
465 while (*fin!='\0') fin++;
466 memcpy(dst->pvu, ini, fin-ini+1);
469 fin = (char *)src+size;
470 memcpy(dst->emin, ini, fin-ini);
474 memcpy(dst, src, sizeof(t_Articulo));
477 return 1; /* Todo ok */
480 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
484 char *from = (char *)src;
485 switch(lst->fp->tipo) {
488 /* Calculo el tamaño que voy a necesitar */
489 i[0] = sizeof(unsigned int);
490 i[1] = sizeof(char)*(strlen(src->desc)+1);
491 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
492 i[3] = sizeof(char)*(strlen(src->existencia)+1);
493 i[4] = sizeof(char)*(strlen(src->ubicacion)+1);
494 i[5] = sizeof(char)*(strlen(src->pvu)+1);
495 i[6] = sizeof(char)*(strlen(src->emin)+1);
496 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
497 tmp = (char *)malloc((*size));
498 if (tmp == NULL) return NULL;
499 memset(tmp, 0, *size);
500 memcpy(tmp, &src->numero, i[0]);
501 memcpy(tmp+i[0], src->desc, i[1]);
502 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
503 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
504 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
505 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
506 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
509 /* Lleno el lugar no ocupado de los strings con *, para que el ver
510 * registro se vea bien
512 tmp = (char *)malloc(sizeof(t_Articulo));
513 memset(tmp, '*', sizeof(t_Articulo));
514 memcpy(tmp, from, sizeof(t_Articulo));
515 (*size) = sizeof(t_Articulo);
520 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
523 EMUFS_REG_ID *indices, id;
524 EMUFS_REG_SIZE indices_total, i, size;
526 t_LstArticulos *lst_nueva;
530 PERR("==== EMPIEZO ====\n");
531 old = lst_articulos->fp;
533 /* Creo el nuevo file */
534 PERR("Creo el archivo\n");
535 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
537 PERR("ARCHIVO NUEVO NO CREADO");
541 /* Creo la nueva lista */
542 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
543 lst_nueva->primero = NULL;
544 lst_nueva->fp = nuevo;
546 /* Leo los indices del archivo viejo */
547 PERR("Obtengo Indices\n");
548 indices = emufs_idx_get(old, &indices_total);
549 if (indices == NULL) {
550 art_liberar(lst_nueva);
554 PERR("Proceso datos\n");
555 for(i=0; i<indices_total; i++) {
557 save = old->leer_registro(old, indices[i], &size, &error);
558 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
560 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
561 save = procesar_guardar_articulo(&art, &size, lst_nueva);
564 id = nuevo->grabar_registro(nuevo, save, size, &error);
565 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
573 PERR("Libero lo viejo\n");
574 art_liberar(lst_articulos);
576 PERR("Ahora tengo lo nuevo\n");
577 lst_articulos = lst_nueva;
579 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
580 free(lst_articulos->fp->nombre);
581 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
582 strcpy(lst_articulos->fp->nombre, "articulos");
584 /* Muevo los archivos! */
585 /* TODO : Poner en otro lugar mas generico! */
586 PERR("Renombre!!\n");
587 rename("emufs_tmp.dat", "articulos.dat");
588 rename("emufs_tmp.idx", "articulos.idx");
589 rename("emufs_tmp.fsc", "articulos.fsc");
590 rename("emufs_tmp.did", "articulos.did");
591 PERR("==== TERMINE ====\n");
594 int art_exportar_xml(const char *filename)
596 t_Reg_Articulo *nodo;
601 if (lst_articulos->primero == NULL) return 0;
603 nodo = lst_articulos->primero;
605 if (!(fp = fopen(filename, "wt"))) return 0;
607 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
608 fprintf(fp, "<ARTICULOS>\n");
610 art = art_obtener(lst_articulos, nodo->numero, &id);
612 fprintf(fp, "\t<ARTICULO ");
613 fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
614 fprintf(fp, "Descripción=\"%s\" ", art->desc);
615 fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
616 fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
617 fprintf(fp, "Existencia=\"%s\" ", art->existencia);
618 fprintf(fp, "PVU=\"%s\" ", art->pvu);
619 fprintf(fp, "Emín=\"%s\" />\n", art->emin);
624 fprintf(fp, "</ARTICULOS>\n");