9 static t_LstArticulos *lst_articulos;
11 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
13 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
14 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
16 /* Manejo de la lista doble */
17 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
18 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
19 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
21 t_LstArticulos *art_get_lst()
26 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
28 if (nodo == NULL) return 0;
29 if (nodo->ant == NULL) {
30 /* Me piden borrar el primer nodo */
32 nodo->sig->ant = NULL;
34 lst->primero = nodo->sig;
37 nodo->sig->ant = nodo->ant;
39 nodo->ant->sig = nodo->sig;
45 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
48 if (reg == EMUFS_NOT_FOUND) return NULL;
49 tmp = malloc(sizeof(t_Reg_Articulo));
50 if (tmp == NULL) return NULL;
51 tmp->sig = tmp->ant = NULL;
58 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
60 if (nodo == NULL) return 0;
63 lst->primero->ant = nodo;
64 nodo->sig = lst->primero;
72 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
75 xmlNode *node, *inicio;
80 t_Articulo *un_articulo;
84 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
85 if (tmp == NULL) return NULL;
89 if (filename != NULL) {
90 PERR("Voy a crear desde un XML");
91 document = xmlReadFile(filename, "ISO-8859-1",0);
92 if (document == NULL) {
99 node = xmlDocGetRootElement(document);
100 /* Busco el TAG principal "ARTICULOS" */
102 if (node->type == XML_ELEMENT_NODE) {
103 if (strcmp(node->name, "ARTICULOS") == 0) {
104 inicio = node->children;
111 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
114 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
115 /* Agrego los indices */
116 PERR("Voy a agregar un indice");
117 emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512);
118 emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
120 PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
122 xmlFreeDoc(document);
124 lst_articulos = NULL;
127 for (node=inicio ; node ; node = node->next) {
128 if (node->type == XML_ELEMENT_NODE) {
129 if (strcmp(node->name, "ARTICULO") == 0) {
132 memset(&art, 0, sizeof(t_Articulo));
133 prop = xml_get_prop(node, "NroArtículo");
134 art.numero = atoi(prop);
136 strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
137 art.desc[50] = '\0'; /* Me aseguro de que este */
138 strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
139 art.presentacion[30] = '\0'; /* Me aseguro de que este */
140 strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
141 art.existencia[8] = '\0'; /* Me aseguro de que este */
142 strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
143 strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
144 art.pvu[8] = '\0'; /* Me aseguro de que este */
145 strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
146 art.emin[8] = '\0'; /* Me aseguro de que este */
147 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
148 save = procesar_guardar_articulo(&art, &size, lst_articulos);
151 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
152 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
158 xmlFreeDoc(document);
161 /* XXX Ahora no necesito leer nada del archivo cuando lo cargo
162 * pues tengo todo en los indices
164 * PERR("Voy a recuperar desde un archivo");
165 tmp->fp = emufs_abrir("articulos");
166 if (tmp->fp == NULL) {
167 PERR("No se pudo cargar archivo de articulos.");
169 lst_articulos = NULL;
172 Ahora trato de recuperar la info
173 indices = emufs_idx_get(tmp->fp, &indices_cant);
174 for(i=0; i<indices_cant; i++) {
179 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
180 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
181 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
192 int art_liberar(t_LstArticulos *l)
195 if (l == NULL) l = lst_articulos;
196 if (l == NULL) return 1;
198 emufs_destruir(l->fp);
201 l->primero = l->primero->sig;
206 lst_articulos = NULL;
210 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
218 if (lst == NULL) lst = lst_articulos;
219 if (lst == NULL) return NULL;
221 (*id) = -1; /* XXX Ver que se hacia con esto */
222 art = (t_Articulo *)malloc(sizeof(t_Articulo));
223 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
225 k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
226 tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
232 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
242 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
245 t_Articulo *articulo;
247 form = form_crear(win);
248 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
249 form_ejecutar(form, 1,1);
250 articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
256 void art_modificar(char *s)
260 t_Articulo *articulo;
267 win = newwin(9, COLS-2, 13, 1);
272 PERR("Voy a buscar con el formulario");
273 articulo = art_form_buscar(win, &codigo);
274 PERR("Ya lo tengo!!!!!!");
277 /* Leo el registro directamente */
278 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
279 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
281 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
282 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
287 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
295 if (articulo != NULL) {
296 form = form_crear(win);
297 sprintf(num, "%08d", articulo->numero);
298 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
299 form_es_modificable(form, "Numero de Artículo" , 0);
300 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
301 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
302 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
303 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
304 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
305 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
306 form_ejecutar(form, 1,1);
308 /* Actualizar registro */
309 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
310 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
311 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
312 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
313 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
314 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
315 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
316 /* Ya actualice los datos, ahora veo de grabarlos */
317 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
320 lst_articulos->fp->modificar_registro(lst_articulos->fp, codigo, tmp, size, &error);
327 wattron(win, COLOR_PAIR(COLOR_YELLOW));
328 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
329 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
338 void art_eliminar(char *s)
341 t_Articulo *articulo;
345 win = newwin(8, COLS-2, 13, 1);
349 articulo = art_form_buscar(win, &id);
351 if (articulo == NULL) {
352 wattron(win, COLOR_PAIR(COLOR_YELLOW));
353 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
354 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
358 k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&(articulo->numero));
359 lst_articulos->fp->borrar_registro(lst_articulos->fp, k);
368 void art_agregar(char *s)
374 int error = 0, existe;
380 win = newwin(9, COLS-2, 13, 1);
384 form = form_crear(win);
385 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
386 form_agregar_widget(form, INPUT, "Descripción", 50, "");
387 form_agregar_widget(form, INPUT, "Presentación", 30, "");
388 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
389 form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
390 form_agregar_widget(form, INPUT, "PVU", 8, "");
391 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
392 form_ejecutar(form, 1,1);
394 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
396 /* Me dijo que no existe el codigo */
397 k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
398 dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
399 if (dato.id != -1) existe = 1;
402 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
403 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
404 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
405 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
406 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
407 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
409 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
410 save = procesar_guardar_articulo(&art, &size, lst_articulos);
413 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
415 wattron(win, COLOR_PAIR(COLOR_YELLOW));
416 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
417 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
424 wattron(win, COLOR_PAIR(COLOR_YELLOW));
425 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
426 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
437 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
440 switch (lst->fp->tipo) {
444 /* Copio el primer campo, esto es facil :-) */
445 memset(dst, 0, sizeof(t_Articulo));
446 memcpy(&dst->numero, ini, sizeof(unsigned int));
447 ini+=sizeof(unsigned int);
448 /* Ahora empieza el juego */
449 /* Los \0 son los delimitadores de campo! */
451 while (*fin!='\0') fin++;
452 memcpy(dst->desc, ini, fin-ini+1);
456 while (*fin!='\0') fin++;
457 memcpy(dst->presentacion, ini, fin-ini+1);
461 while (*fin!='\0') fin++;
462 memcpy(dst->existencia, ini, fin-ini+1);
466 while (*fin!='\0') fin++;
467 memcpy(dst->ubicacion, ini, fin-ini+1);
471 while (*fin!='\0') fin++;
472 memcpy(dst->pvu, ini, fin-ini+1);
475 fin = (char *)src+size;
476 memcpy(dst->emin, ini, fin-ini);
480 memcpy(dst, src, sizeof(t_Articulo));
483 return 1; /* Todo ok */
486 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
490 char *from = (char *)src;
491 switch(lst->fp->tipo) {
494 /* Calculo el tamaño que voy a necesitar */
495 i[0] = sizeof(unsigned int);
496 i[1] = sizeof(char)*(strlen(src->desc)+1);
497 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
498 i[3] = sizeof(char)*(strlen(src->existencia)+1);
499 i[4] = sizeof(char)*(strlen(src->ubicacion)+1);
500 i[5] = sizeof(char)*(strlen(src->pvu)+1);
501 i[6] = sizeof(char)*(strlen(src->emin)+1);
502 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
503 tmp = (char *)malloc((*size));
504 if (tmp == NULL) return NULL;
505 memset(tmp, 0, *size);
506 memcpy(tmp, &src->numero, i[0]);
507 memcpy(tmp+i[0], src->desc, i[1]);
508 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
509 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
510 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
511 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
512 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
515 /* Lleno el lugar no ocupado de los strings con *, para que el ver
516 * registro se vea bien
518 tmp = (char *)malloc(sizeof(t_Articulo));
519 memset(tmp, '*', sizeof(t_Articulo));
520 memcpy(tmp, from, sizeof(t_Articulo));
521 (*size) = sizeof(t_Articulo);
526 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
528 #ifdef NO_SE_PUEDE_USAR
530 EMUFS_REG_ID *indices, id;
531 EMUFS_REG_SIZE indices_total, i, size;
533 t_LstArticulos *lst_nueva;
537 PERR("==== EMPIEZO ====\n");
538 old = lst_articulos->fp;
540 /* Creo el nuevo file */
541 PERR("Creo el archivo\n");
542 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
544 PERR("ARCHIVO NUEVO NO CREADO");
548 /* Creo la nueva lista */
549 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
550 lst_nueva->primero = NULL;
551 lst_nueva->fp = nuevo;
553 /* Leo los indices del archivo viejo */
554 PERR("Obtengo Indices\n");
555 indices = emufs_idx_get(old, &indices_total);
556 if (indices == NULL) {
557 art_liberar(lst_nueva);
561 PERR("Proceso datos\n");
562 for(i=0; i<indices_total; i++) {
564 save = old->leer_registro(old, indices[i], &size, &error);
565 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
567 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
568 save = procesar_guardar_articulo(&art, &size, lst_nueva);
571 id = nuevo->grabar_registro(nuevo, save, size, &error);
572 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
580 PERR("Libero lo viejo\n");
581 art_liberar(lst_articulos);
583 PERR("Ahora tengo lo nuevo\n");
584 lst_articulos = lst_nueva;
586 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
587 free(lst_articulos->fp->nombre);
588 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
589 strcpy(lst_articulos->fp->nombre, "articulos");
591 /* Muevo los archivos! */
592 /* TODO : Poner en otro lugar mas generico! */
593 PERR("Renombre!!\n");
594 rename("emufs_tmp.dat", "articulos.dat");
595 rename("emufs_tmp.idx", "articulos.idx");
596 rename("emufs_tmp.fsc", "articulos.fsc");
597 rename("emufs_tmp.did", "articulos.did");
598 PERR("==== TERMINE ====\n");
602 int art_exportar_xml(const char *filename)
604 t_Reg_Articulo *nodo;
609 if (lst_articulos->primero == NULL) return 0;
611 nodo = lst_articulos->primero;
613 if (!(fp = fopen(filename, "wt"))) return 0;
615 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
616 fprintf(fp, "<ARTICULOS>\n");
618 art = art_obtener(lst_articulos, nodo->numero, &id);
620 fprintf(fp, "\t<ARTICULO ");
621 fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
622 fprintf(fp, "Descripción=\"%s\" ", art->desc);
623 fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
624 fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
625 fprintf(fp, "Existencia=\"%s\" ", art->existencia);
626 fprintf(fp, "PVU=\"%s\" ", art->pvu);
627 fprintf(fp, "Emín=\"%s\" />\n", art->emin);
632 fprintf(fp, "</ARTICULOS>\n");
638 /* Dejo el test para que no se pierda */
639 void art_consultas_old(char *s)
647 win = newwin(LINES-4, COLS-2, 2, 1);
648 win1 = derwin(win, LINES-6, COLS-4, 1, 1);
654 lista = lista_crear(3, win1, COLS-4, LINES-6);
656 /* Creo las columnas */
657 lista_agregar_columna(lista, DATO_INT, 0, 8);
658 lista_agregar_columna(lista, DATO_STR, 10, 45);
659 lista_agregar_columna(lista, DATO_FLOAT, 60, 10);
661 /* Agrego unos datos a ver que pasa */
662 /* Pongo 100 y rezo */
663 for(i=0; i<100; i++) {
664 sprintf(txt, "Texto del item %d", i);
665 lista_agregar_fila(lista, i, txt, (rand()%100)/100.0f);
668 lista_ejecutar(lista);
678 void art_consultas_codigos(char *s)
681 int desde_codigo, hasta_codigo;
683 t_Articulo *articulo;
688 win = newwin(LINES-4, COLS-2, 2, 1);
689 win1 = derwin(win, LINES-6, COLS-4, 1, 1);
694 /* El usuario ingresa rango a listar */
695 form = form_crear(win1);
696 form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
697 form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
699 form_ejecutar(form, 2, 2);
701 desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
702 hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
708 /* Creo la lista donde mostrar la consulta*/
709 /* Muestro solo info relevante */
710 lista = lista_crear(4, win1, COLS-4, LINES-6);
712 /* Creo las columnas */
713 lista_agregar_columna(lista, DATO_INT, 0, 8); /* numero */
714 lista_agregar_columna(lista, DATO_STR, 10, 51); /* desc */
715 lista_agregar_columna(lista, DATO_STR, 55, 9); /* existencia */
716 lista_agregar_columna(lista, DATO_STR, 65, 9); /* enim */
718 /* Leo los datos desde el archivo */
719 for(i=desde_codigo; i<=hasta_codigo; i++) {
720 articulo = art_obtener(lst_articulos, i, &dummy);
721 if (articulo != NULL) {
722 lista_agregar_fila(lista,
725 articulo->existencia,
732 lista_ejecutar(lista);
743 void art_consultas_desc(char *s)
756 fs = lst_articulos->fp;
758 win = newwin(LINES-4, COLS-2, 2, 1);
759 win1 = derwin(win, LINES-6, COLS-4, 1, 1);
764 /* El usuario ingresa rango a listar */
765 form = form_crear(win1);
766 form_agregar_widget(form, INPUT, "Descripcion", 50, "");
768 form_ejecutar(form, 2, 2);
770 tmp = form_obtener_valor_char(form, "Descripcion");
771 desc = malloc(sizeof(char)*(strlen(tmp)+1));
778 /* Creo la lista donde mostrar la consulta*/
779 /* Muestro solo info relevante */
780 lista = lista_crear(4, win1, COLS-4, LINES-6);
782 /* Creo las columnas */
783 lista_agregar_columna(lista, DATO_INT, 0, 8); /* numero */
784 lista_agregar_columna(lista, DATO_STR, 10, 51); /* desc */
785 lista_agregar_columna(lista, DATO_STR, 55, 9); /* existencia */
786 lista_agregar_columna(lista, DATO_STR, 65, 9); /* enim */
788 /* Leo los datos desde el archivo */
789 datos = emufs_buscar_registros(fs, "desc", desc, &cant);
790 for(i=0; i<cant; i++) {
791 k.i_clave = datos[i].id;
793 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
795 procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
796 lista_agregar_fila(lista,
804 PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
809 lista_ejecutar(lista);
820 void art_consultas(char *s)
823 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
824 MENU_OPCION("por Descripcion", "Consulta por descripcion"),
825 MENU_OPCION("Volver", "Volver al menu anterior.")
829 while ((opt = menu_ejecutar(mi_menu, 3, "Consulta de Articulos")) != 2) {
832 art_consultas_codigos(s);
835 art_consultas_desc(s);