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 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
110 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
111 for (node=inicio ; node ; node = node->next) {
112 if (node->type == XML_ELEMENT_NODE) {
113 if (strcmp(node->name, "ARTICULO") == 0) {
116 memset(&art, '*', sizeof(t_Articulo));
117 prop = xml_get_prop(node, "NroArtículo");
118 art.numero = atoi(prop);
120 strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
121 art.desc[50] = '\0'; /* Me aseguro de que este */
122 strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
123 art.presentacion[30] = '\0'; /* Me aseguro de que este */
124 strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
125 art.existencia[8] = '\0'; /* Me aseguro de que este */
126 strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
127 strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
128 art.pvu[8] = '\0'; /* Me aseguro de que este */
129 strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
130 art.emin[8] = '\0'; /* Me aseguro de que este */
131 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
132 save = procesar_guardar_articulo(&art, &size, lst_articulos);
135 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
136 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
142 xmlFreeDoc(document);
145 PERR("Voy a recuperar desde un archivo");
146 tmp->fp = emufs_abrir("articulos");
147 if (tmp->fp == NULL) {
148 PERR("No se pudo cargar archivo de articulos.");
150 lst_articulos = NULL;
153 /* Ahora trato de recuperar la info */
154 indices = emufs_idx_get(tmp->fp, &indices_cant);
155 for(i=0; i<indices_cant; i++) {
158 /* Leo el registro */
160 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
161 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
162 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
172 int art_liberar(t_LstArticulos *l)
175 if (l == NULL) l = lst_articulos;
176 if (l == NULL) return 1;
178 emufs_destruir(l->fp);
181 l->primero = l->primero->sig;
186 lst_articulos = NULL;
190 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
193 t_Reg_Articulo *nodo;
199 if (lst == NULL) lst = lst_articulos;
200 if (lst == NULL) return NULL;
203 if (n == nodo->numero) {
204 (*id) = nodo->num_reg;
205 art = (t_Articulo *)malloc(sizeof(t_Articulo));
206 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
208 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
215 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
229 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
232 t_Articulo *articulo;
234 form = form_crear(win);
235 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
236 form_ejecutar(form, 1,1);
237 articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
243 void art_modificar(char *s)
247 t_Articulo *articulo;
254 win = newwin(9, COLS-2, 13, 1);
259 articulo = art_form_buscar(win, &id);
262 /* Leo el registro directamente */
263 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
264 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
266 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
271 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
279 if (articulo != NULL) {
280 form = form_crear(win);
281 sprintf(num, "%08d", articulo->numero);
282 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
283 form_es_modificable(form, "Numero de Artículo" , 0);
284 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
285 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
286 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
287 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
288 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
289 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
290 form_ejecutar(form, 1,1);
292 /* Actualizar registro */
293 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
294 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
295 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
296 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
297 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
298 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
299 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
300 /* Ya actualice los datos, ahora veo de grabarlos */
301 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
304 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
311 wattron(win, COLOR_PAIR(COLOR_YELLOW));
312 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
313 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
322 void art_eliminar(char *s)
325 t_Articulo *articulo;
326 t_Reg_Articulo *nodo;
329 win = newwin(8, COLS-2, 13, 1);
333 articulo = art_form_buscar(win, &id);
335 if (articulo == NULL) {
336 wattron(win, COLOR_PAIR(COLOR_YELLOW));
337 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
338 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
342 nodo = lst_articulos->primero;
344 if (nodo->numero == articulo->numero) {
345 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
346 eliminar_nodo_articulo(lst_articulos, nodo);
359 void art_agregar(char *s)
364 t_Reg_Articulo *nuevo;
366 int error = 0, existe;
370 win = newwin(9, COLS-2, 13, 1);
374 form = form_crear(win);
375 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
376 form_agregar_widget(form, INPUT, "Descripción", 50, "");
377 form_agregar_widget(form, INPUT, "Presentación", 30, "");
378 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
379 form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
380 form_agregar_widget(form, INPUT, "PVU", 8, "");
381 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
382 form_ejecutar(form, 1,1);
384 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
386 nuevo = lst_articulos->primero;
388 if (art.numero == nuevo->numero) {
396 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
397 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
398 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
399 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
400 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
401 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
403 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
404 save = procesar_guardar_articulo(&art, &size, lst_articulos);
407 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
409 wattron(win, COLOR_PAIR(COLOR_YELLOW));
410 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
411 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
415 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
420 wattron(win, COLOR_PAIR(COLOR_YELLOW));
421 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
422 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
433 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
436 switch (lst->fp->tipo) {
440 /* Copio el primer campo, esto es facil :-) */
441 memset(dst, 0, sizeof(t_Articulo));
442 memcpy(&dst->numero, ini, sizeof(unsigned int));
443 ini+=sizeof(unsigned int);
444 /* Ahora empieza el juego */
445 /* Los \0 son los delimitadores de campo! */
447 while (*fin!='\0') fin++;
448 memcpy(dst->desc, ini, fin-ini+1);
452 while (*fin!='\0') fin++;
453 memcpy(dst->presentacion, ini, fin-ini+1);
457 while (*fin!='\0') fin++;
458 memcpy(dst->existencia, ini, fin-ini+1);
462 while (*fin!='\0') fin++;
463 memcpy(dst->ubicacion, ini, fin-ini+1);
467 while (*fin!='\0') fin++;
468 memcpy(dst->pvu, ini, fin-ini+1);
471 fin = (char *)src+size;
472 memcpy(dst->emin, ini, fin-ini);
476 memcpy(dst, src, sizeof(t_Articulo));
479 return 1; /* Todo ok */
482 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
486 char *from = (char *)src;
487 switch(lst->fp->tipo) {
490 /* Calculo el tamaño que voy a necesitar */
491 i[0] = sizeof(unsigned int);
492 i[1] = sizeof(char)*(strlen(src->desc)+1);
493 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
494 i[3] = sizeof(char)*(strlen(src->existencia)+1);
495 i[4] = sizeof(char)*(strlen(src->ubicacion)+1);
496 i[5] = sizeof(char)*(strlen(src->pvu)+1);
497 i[6] = sizeof(char)*(strlen(src->emin)+1);
498 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
499 tmp = (char *)malloc((*size));
500 if (tmp == NULL) return NULL;
501 memset(tmp, 0, *size);
502 memcpy(tmp, &src->numero, i[0]);
503 memcpy(tmp+i[0], src->desc, i[1]);
504 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
505 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
506 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
507 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
508 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
511 /* Lleno el lugar no ocupado de los strings con *, para que el ver
512 * registro se vea bien
514 tmp = (char *)malloc(sizeof(t_Articulo));
515 memset(tmp, '*', sizeof(t_Articulo));
516 memcpy(tmp, from, sizeof(t_Articulo));
517 (*size) = sizeof(t_Articulo);
522 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
525 EMUFS_REG_ID *indices, id;
526 EMUFS_REG_SIZE indices_total, i, size;
528 t_LstArticulos *lst_nueva;
532 PERR("==== EMPIEZO ====\n");
533 old = lst_articulos->fp;
535 /* Creo el nuevo file */
536 PERR("Creo el archivo\n");
537 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
539 PERR("ARCHIVO NUEVO NO CREADO");
543 /* Creo la nueva lista */
544 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
545 lst_nueva->primero = NULL;
546 lst_nueva->fp = nuevo;
548 /* Leo los indices del archivo viejo */
549 PERR("Obtengo Indices\n");
550 indices = emufs_idx_get(old, &indices_total);
551 if (indices == NULL) {
552 art_liberar(lst_nueva);
556 PERR("Proceso datos\n");
557 for(i=0; i<indices_total; i++) {
559 save = old->leer_registro(old, indices[i], &size, &error);
560 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
562 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
563 save = procesar_guardar_articulo(&art, &size, lst_nueva);
566 id = nuevo->grabar_registro(nuevo, save, size, &error);
567 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
575 PERR("Libero lo viejo\n");
576 art_liberar(lst_articulos);
578 PERR("Ahora tengo lo nuevo\n");
579 lst_articulos = lst_nueva;
581 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
582 free(lst_articulos->fp->nombre);
583 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
584 strcpy(lst_articulos->fp->nombre, "articulos");
586 /* Muevo los archivos! */
587 /* TODO : Poner en otro lugar mas generico! */
588 PERR("Renombre!!\n");
589 rename("emufs_tmp.dat", "articulos.dat");
590 rename("emufs_tmp.idx", "articulos.idx");
591 rename("emufs_tmp.fsc", "articulos.fsc");
592 rename("emufs_tmp.did", "articulos.did");
593 PERR("==== TERMINE ====\n");
596 int art_exportar_xml(const char *filename)
598 t_Reg_Articulo *nodo;
603 if (lst_articulos->primero == NULL) return 0;
605 nodo = lst_articulos->primero;
607 if (!(fp = fopen(filename, "wt"))) return 0;
609 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
610 fprintf(fp, "<ARTICULOS>\n");
612 art = art_obtener(lst_articulos, nodo->numero, &id);
614 fprintf(fp, "\t<ARTICULO ");
615 fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
616 fprintf(fp, "Descripción=\"%s\" ", art->desc);
617 fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
618 fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
619 fprintf(fp, "Existencia=\"%s\" ", art->existencia);
620 fprintf(fp, "PVU=\"%s\" ", art->pvu);
621 fprintf(fp, "Emín=\"%s\" />\n", art->emin);
626 fprintf(fp, "</ARTICULOS>\n");