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;
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 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
111 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
112 /* Agrego los indices */
113 PERR("Voy a agregar un indice");
114 emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
116 PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
118 xmlFreeDoc(document);
120 lst_articulos = NULL;
123 for (node=inicio ; node ; node = node->next) {
124 if (node->type == XML_ELEMENT_NODE) {
125 if (strcmp(node->name, "ARTICULO") == 0) {
128 memset(&art, 0, sizeof(t_Articulo));
129 prop = xml_get_prop(node, "NroArtículo");
130 art.numero = atoi(prop);
132 strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
133 art.desc[50] = '\0'; /* Me aseguro de que este */
134 strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
135 art.presentacion[30] = '\0'; /* Me aseguro de que este */
136 strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
137 art.existencia[8] = '\0'; /* Me aseguro de que este */
138 strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
139 strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
140 art.pvu[8] = '\0'; /* Me aseguro de que este */
141 strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
142 art.emin[8] = '\0'; /* Me aseguro de que este */
143 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
144 save = procesar_guardar_articulo(&art, &size, lst_articulos);
147 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
148 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
154 xmlFreeDoc(document);
157 /* XXX Ahora no necesito leer nada del archivo cuando lo cargo
158 * pues tengo todo en los indices
160 * PERR("Voy a recuperar desde un archivo");
161 tmp->fp = emufs_abrir("articulos");
162 if (tmp->fp == NULL) {
163 PERR("No se pudo cargar archivo de articulos.");
165 lst_articulos = NULL;
168 Ahora trato de recuperar la info
169 indices = emufs_idx_get(tmp->fp, &indices_cant);
170 for(i=0; i<indices_cant; i++) {
175 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
176 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
177 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
188 int art_liberar(t_LstArticulos *l)
191 if (l == NULL) l = lst_articulos;
192 if (l == NULL) return 1;
194 emufs_destruir(l->fp);
197 l->primero = l->primero->sig;
202 lst_articulos = NULL;
206 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
214 if (lst == NULL) lst = lst_articulos;
215 if (lst == NULL) return NULL;
217 (*id) = -1; /* XXX Ver que se hacia con esto */
218 art = (t_Articulo *)malloc(sizeof(t_Articulo));
219 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
221 k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
222 tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
228 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
238 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
241 t_Articulo *articulo;
243 form = form_crear(win);
244 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
245 form_ejecutar(form, 1,1);
246 articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
252 void art_modificar(char *s)
256 t_Articulo *articulo;
263 win = newwin(9, COLS-2, 13, 1);
268 PERR("Voy a buscar con el formulario");
269 articulo = art_form_buscar(win, &codigo);
270 PERR("Ya lo tengo!!!!!!");
273 /* Leo el registro directamente */
274 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
275 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
277 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
278 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
283 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
291 if (articulo != NULL) {
292 form = form_crear(win);
293 sprintf(num, "%08d", articulo->numero);
294 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
295 form_es_modificable(form, "Numero de Artículo" , 0);
296 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
297 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
298 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
299 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
300 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
301 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
302 form_ejecutar(form, 1,1);
304 /* Actualizar registro */
305 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
306 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
307 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
308 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
309 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
310 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
311 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
312 /* Ya actualice los datos, ahora veo de grabarlos */
313 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
316 lst_articulos->fp->modificar_registro(lst_articulos->fp, codigo, tmp, size, &error);
323 wattron(win, COLOR_PAIR(COLOR_YELLOW));
324 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
325 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
334 void art_eliminar(char *s)
337 t_Articulo *articulo;
338 t_Reg_Articulo *nodo;
341 win = newwin(8, COLS-2, 13, 1);
345 articulo = art_form_buscar(win, &id);
347 if (articulo == NULL) {
348 wattron(win, COLOR_PAIR(COLOR_YELLOW));
349 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
350 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
354 nodo = lst_articulos->primero;
356 if (nodo->numero == articulo->numero) {
357 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
358 eliminar_nodo_articulo(lst_articulos, nodo);
371 void art_agregar(char *s)
377 int error = 0, existe;
383 win = newwin(9, COLS-2, 13, 1);
387 form = form_crear(win);
388 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
389 form_agregar_widget(form, INPUT, "Descripción", 50, "");
390 form_agregar_widget(form, INPUT, "Presentación", 30, "");
391 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
392 form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
393 form_agregar_widget(form, INPUT, "PVU", 8, "");
394 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
395 form_ejecutar(form, 1,1);
397 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
399 /* Me dijo que no existe el codigo */
400 k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
401 dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
402 if (dato.id != -1) existe = 1;
405 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
406 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
407 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
408 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
409 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
410 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
412 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
413 save = procesar_guardar_articulo(&art, &size, lst_articulos);
416 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
418 wattron(win, COLOR_PAIR(COLOR_YELLOW));
419 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
420 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
427 wattron(win, COLOR_PAIR(COLOR_YELLOW));
428 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
429 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
440 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
443 switch (lst->fp->tipo) {
447 /* Copio el primer campo, esto es facil :-) */
448 memset(dst, 0, sizeof(t_Articulo));
449 memcpy(&dst->numero, ini, sizeof(unsigned int));
450 ini+=sizeof(unsigned int);
451 /* Ahora empieza el juego */
452 /* Los \0 son los delimitadores de campo! */
454 while (*fin!='\0') fin++;
455 memcpy(dst->desc, ini, fin-ini+1);
459 while (*fin!='\0') fin++;
460 memcpy(dst->presentacion, ini, fin-ini+1);
464 while (*fin!='\0') fin++;
465 memcpy(dst->existencia, ini, fin-ini+1);
469 while (*fin!='\0') fin++;
470 memcpy(dst->ubicacion, ini, fin-ini+1);
474 while (*fin!='\0') fin++;
475 memcpy(dst->pvu, ini, fin-ini+1);
478 fin = (char *)src+size;
479 memcpy(dst->emin, ini, fin-ini);
483 memcpy(dst, src, sizeof(t_Articulo));
486 return 1; /* Todo ok */
489 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
493 char *from = (char *)src;
494 switch(lst->fp->tipo) {
497 /* Calculo el tamaño que voy a necesitar */
498 i[0] = sizeof(unsigned int);
499 i[1] = sizeof(char)*(strlen(src->desc)+1);
500 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
501 i[3] = sizeof(char)*(strlen(src->existencia)+1);
502 i[4] = sizeof(char)*(strlen(src->ubicacion)+1);
503 i[5] = sizeof(char)*(strlen(src->pvu)+1);
504 i[6] = sizeof(char)*(strlen(src->emin)+1);
505 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
506 tmp = (char *)malloc((*size));
507 if (tmp == NULL) return NULL;
508 memset(tmp, 0, *size);
509 memcpy(tmp, &src->numero, i[0]);
510 memcpy(tmp+i[0], src->desc, i[1]);
511 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
512 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
513 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
514 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
515 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
518 /* Lleno el lugar no ocupado de los strings con *, para que el ver
519 * registro se vea bien
521 tmp = (char *)malloc(sizeof(t_Articulo));
522 memset(tmp, '*', sizeof(t_Articulo));
523 memcpy(tmp, from, sizeof(t_Articulo));
524 (*size) = sizeof(t_Articulo);
529 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
531 #ifdef NO_SE_PUEDE_USAR
533 EMUFS_REG_ID *indices, id;
534 EMUFS_REG_SIZE indices_total, i, size;
536 t_LstArticulos *lst_nueva;
540 PERR("==== EMPIEZO ====\n");
541 old = lst_articulos->fp;
543 /* Creo el nuevo file */
544 PERR("Creo el archivo\n");
545 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
547 PERR("ARCHIVO NUEVO NO CREADO");
551 /* Creo la nueva lista */
552 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
553 lst_nueva->primero = NULL;
554 lst_nueva->fp = nuevo;
556 /* Leo los indices del archivo viejo */
557 PERR("Obtengo Indices\n");
558 indices = emufs_idx_get(old, &indices_total);
559 if (indices == NULL) {
560 art_liberar(lst_nueva);
564 PERR("Proceso datos\n");
565 for(i=0; i<indices_total; i++) {
567 save = old->leer_registro(old, indices[i], &size, &error);
568 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
570 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
571 save = procesar_guardar_articulo(&art, &size, lst_nueva);
574 id = nuevo->grabar_registro(nuevo, save, size, &error);
575 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
583 PERR("Libero lo viejo\n");
584 art_liberar(lst_articulos);
586 PERR("Ahora tengo lo nuevo\n");
587 lst_articulos = lst_nueva;
589 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
590 free(lst_articulos->fp->nombre);
591 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
592 strcpy(lst_articulos->fp->nombre, "articulos");
594 /* Muevo los archivos! */
595 /* TODO : Poner en otro lugar mas generico! */
596 PERR("Renombre!!\n");
597 rename("emufs_tmp.dat", "articulos.dat");
598 rename("emufs_tmp.idx", "articulos.idx");
599 rename("emufs_tmp.fsc", "articulos.fsc");
600 rename("emufs_tmp.did", "articulos.did");
601 PERR("==== TERMINE ====\n");
605 int art_exportar_xml(const char *filename)
607 t_Reg_Articulo *nodo;
612 if (lst_articulos->primero == NULL) return 0;
614 nodo = lst_articulos->primero;
616 if (!(fp = fopen(filename, "wt"))) return 0;
618 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
619 fprintf(fp, "<ARTICULOS>\n");
621 art = art_obtener(lst_articulos, nodo->numero, &id);
623 fprintf(fp, "\t<ARTICULO ");
624 fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
625 fprintf(fp, "Descripción=\"%s\" ", art->desc);
626 fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
627 fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
628 fprintf(fp, "Existencia=\"%s\" ", art->existencia);
629 fprintf(fp, "PVU=\"%s\" ", art->pvu);
630 fprintf(fp, "Emín=\"%s\" />\n", art->emin);
635 fprintf(fp, "</ARTICULOS>\n");