]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
super test, cargando 10000 registros con claves random y el arbol se arma, al parecer...
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
1
2 #include "articulos.h"
3 #include "idx.h"
4 #include "gui.h"
5 #include "common.h"
6 #include "lista.h"
7 #include "menu.h"
8
9 static t_LstArticulos *lst_articulos;
10
11 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
12
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);
15
16 #ifdef TP_PRIMER_ENTREGA
17 /* Manejo de la lista doble */
18 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
19 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
20 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
21
22 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
23 {
24         if (nodo == NULL) return 0;
25         if (nodo->ant == NULL) {
26                 /* Me piden borrar el primer nodo */
27                 if (nodo->sig) {
28                         nodo->sig->ant = NULL;
29                 }
30                 lst->primero = nodo->sig;
31         } else {
32                 if (nodo->sig) {
33                         nodo->sig->ant = nodo->ant;
34                 }
35                 nodo->ant->sig = nodo->sig;
36         }
37         free(nodo);
38         return 1;
39 }
40
41 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
42 {
43         t_Reg_Articulo *tmp;
44         if (reg == EMUFS_NOT_FOUND) return NULL;
45         tmp = malloc(sizeof(t_Reg_Articulo));
46         if (tmp == NULL) return NULL;
47         tmp->sig = tmp->ant = NULL;
48         tmp->num_reg = reg;
49         tmp->numero = num;
50
51         return tmp;
52 }
53
54 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
55 {
56         if (nodo == NULL) return 0;
57
58         if (lst->primero) {
59                 lst->primero->ant = nodo;
60                 nodo->sig = lst->primero;
61                 lst->primero = nodo;
62         } else {
63                 lst->primero = nodo;
64         }
65         return 1;
66 }
67 #endif /* TP_PRIMER_ENTREGA */
68
69 t_LstArticulos *art_get_lst()
70 {
71         return lst_articulos;
72 }
73
74 t_LstArticulos *art_cargar(t_Parametros *param)
75 {
76         xmlDocPtr document;
77         xmlNode *node, *inicio;
78         int error = 0;
79         char *prop;
80         EMUFS_REG_SIZE size;
81         t_LstArticulos *tmp;
82         t_Articulo *un_articulo;
83         lst_articulos = NULL;
84
85         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
86         if (tmp == NULL) return NULL;
87         lst_articulos = tmp;
88         tmp->primero = NULL;
89
90         if (param != NULL) {
91                 PERR("Voy a crear desde un XML");
92                 document = xmlReadFile(param->xml_art, "ISO-8859-1",0);
93                 if (document == NULL) {
94                         free(tmp);
95                         lst_articulos = NULL;
96                         return NULL;
97                 }
98
99                 inicio = NULL;
100                 node = xmlDocGetRootElement(document);
101                 /* Busco el TAG principal "ARTICULOS" */
102                 while (node) {
103                         if (node->type == XML_ELEMENT_NODE) {
104                                 if (strcmp(node->name, "ARTICULOS") == 0) {
105                                         inicio = node->children;
106                                         break;
107                                 }
108                         }
109                         node = node->next;
110                 }
111                 /* Creo el FS */
112                 tmp->fp = emufs_crear("articulos", param->tipo_arch_art, param->tam_bloque_art, sizeof(t_Articulo));
113                 /* Agrego los indices */
114                 PERR("Voy a agregar un indice");
115                 emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, presentacion), 20480);
116                 emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 2048);
117                 emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
118                 if (!tmp->fp) {
119                         PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
120                         free(tmp);
121                         xmlFreeDoc(document);
122                         xmlCleanupParser();
123                         lst_articulos = NULL;
124                         return NULL;
125                 }
126                 for (node=inicio ; node ; node = node->next) {
127                         if (node->type == XML_ELEMENT_NODE) {
128                                 if (strcmp(node->name, "ARTICULO") == 0) {
129                                         t_Articulo art;
130                                         void *save;
131                                         memset(&art, 0, sizeof(t_Articulo));
132                                         prop = xml_get_prop(node, "NroArtículo");
133                                         art.numero = atoi(prop);
134                                         xmlFree(prop);
135                                         strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
136                                         art.desc[50] = '\0'; /* Me aseguro de que este */
137                                         strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
138                                         art.presentacion[30] = '\0'; /* Me aseguro de que este */
139                                         strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
140                                         art.existencia[8] = '\0'; /* Me aseguro de que este */
141                                         strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
142                                         strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
143                                         art.pvu[8] = '\0'; /* Me aseguro de que este */
144                                         strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
145                                         art.emin[8] = '\0'; /* Me aseguro de que este */
146                                         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
147                                         save = procesar_guardar_articulo(&art, &size, lst_articulos);
148                                         if (save != NULL) {
149                                                 error = 0;
150                                                 tmp->fp->grabar_registro(tmp->fp, save, size, &error);
151                                                 free(save);
152                                         }
153                                 }
154                         }
155                 }
156                 xmlFreeDoc(document);
157                 xmlCleanupParser();
158         } else {
159 /*      XXX Ahora no necesito leer nada del archivo cuando lo cargo
160  *      pues tengo todo en los indices
161  *
162  *      PERR("Voy a recuperar desde un archivo");
163                 tmp->fp = emufs_abrir("articulos");
164                 if (tmp->fp == NULL) {
165                         PERR("No se pudo cargar archivo de articulos.");
166                         free(tmp);
167                         lst_articulos = NULL;
168                         return NULL;
169                 }
170                  Ahora trato de recuperar la info
171                 indices = emufs_idx_get(tmp->fp, &indices_cant);
172                 for(i=0; i<indices_cant; i++) {
173                         t_Articulo art;
174                         void *save;
175                          Leo el registro
176                         error = 0;
177                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
178                         if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
179                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
180                                 free(save);
181                         }
182                 }
183                 free(indices);
184 */
185         }
186
187         return tmp;
188 }
189
190 int art_liberar(t_LstArticulos *l)
191 {
192         t_Reg_Articulo *del;
193         if (l == NULL) l = lst_articulos;
194         if (l == NULL) return 1;
195
196         emufs_destruir(l->fp);
197         while (l->primero) {
198                 del = l->primero;
199                 l->primero = l->primero->sig;
200                 free(del);
201         }
202         free(l);
203
204         lst_articulos = NULL;
205         return 0;
206 }
207
208 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
209 {
210         t_Articulo *art;
211         void *tmp;
212         int error = 0;
213         EMUFS_REG_SIZE size;
214         CLAVE k;
215
216         if (lst == NULL) lst = lst_articulos;
217         if (lst == NULL) return NULL;
218
219         (*id) = -1; /* XXX Ver que se hacia con esto */
220         art = (t_Articulo *)malloc(sizeof(t_Articulo));
221         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
222         error = 0;
223         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
224         tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
225         if (error) {
226                 free(art);
227                 return NULL;
228         }
229
230         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
231                 free(art);
232                 free(tmp);
233                 return NULL;
234         }
235
236         free(tmp);
237         return art;
238 }
239
240 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
241 {
242         t_Form *form;
243         t_Articulo *articulo;
244
245         form = form_crear(win);
246         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
247         form_ejecutar(form, 1,1);
248         articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
249         form_destruir(form);
250
251         return articulo;
252 }
253
254 void art_modificar(char *s)
255 {
256         WINDOW *win;
257         t_Form *form;
258         t_Articulo *articulo;
259         char num[11];
260         void *tmp;
261         int error;
262         EMUFS_REG_SIZE size;
263         EMUFS_REG_ID codigo;
264
265         win = newwin(9, COLS-2, 13, 1);
266         box(win, 0, 0);
267         wrefresh(win);
268
269         if (s == NULL) {
270                 PERR("Voy a buscar con el formulario");
271                 articulo = art_form_buscar(win, &codigo);
272                 PERR("Ya lo tengo!!!!!!");
273         } else {
274                 codigo = atoi(s);
275                 /* Leo el registro directamente */
276                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
277                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
278                 error = 0;
279                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
280                                                 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
281                 if (error) {
282                         free(articulo);
283                         articulo = NULL;
284                 } else {
285                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
286                                 free(articulo);
287                                 articulo = NULL;
288                         }
289                         free(tmp);
290                 }
291         }
292
293         if (articulo != NULL) {
294                 form = form_crear(win);
295                 sprintf(num, "%08d", articulo->numero);
296                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
297                 form_es_modificable(form, "Numero de Artículo" , 0);
298                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
299                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
300                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
301                 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
302                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
303                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
304                 form_ejecutar(form, 1,1);
305
306                 /* Actualizar registro */
307                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
308                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
309                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
310                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
311                 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
312                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
313                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
314                 /* Ya actualice los datos, ahora veo de grabarlos */
315                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
316                 if (tmp) {
317                         CLAVE k;
318                         INDICE_DATO dummy1;
319                         error = 0;
320                         k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&articulo->numero);
321                         /* dummy se pasa porque esto se hace por clave primaria, y el INDICE_DATO que se
322                          * pasa solo es requerido cuando son claves multiples
323                          */
324                         lst_articulos->fp->modificar_registro(lst_articulos->fp, k, tmp, size, &error, dummy1);
325                         free(tmp);
326                 }
327                 
328                 form_destruir(form);
329                 free(articulo);
330         } else {        
331                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
332                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
333                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
334                 wrefresh(win);
335                 getch();
336         }
337         werase(win);
338         wrefresh(win);
339         delwin(win);
340 }
341
342 void art_eliminar(char *s)
343 {
344         WINDOW *win;
345         t_Articulo *articulo;
346         EMUFS_REG_ID id;
347         CLAVE k;
348
349         win = newwin(8, COLS-2, 13, 1);
350         box(win, 0, 0);
351         wrefresh(win);
352
353         articulo = art_form_buscar(win, &id);
354
355         if (articulo == NULL) {
356                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
357                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
358                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
359                 wrefresh(win);
360                 getch();
361         } else {
362                 INDICE_DATO dummy;
363                 k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&(articulo->numero));
364                 PERR("Borrando ARTICULO")
365                 lst_articulos->fp->borrar_registro(lst_articulos->fp, k, dummy);
366                 PERR("LISTO BORRADO");
367                 free(articulo);
368         }
369
370         werase(win);
371         wrefresh(win);
372         delwin(win);
373 }
374
375 void art_agregar(char *s)
376 {
377         WINDOW *win;
378         t_Form *form;
379         t_Articulo art;
380         void *save;
381         int error = 0, existe;
382         EMUFS_REG_SIZE size;
383         EMUFS_REG_ID id;
384         INDICE_DATO dato;
385         CLAVE k;
386
387         win = newwin(9, COLS-2, 13, 1);
388         box(win, 0, 0);
389         wrefresh(win);
390
391         form = form_crear(win);
392         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
393         form_agregar_widget(form, INPUT, "Descripción", 50, "");
394         form_agregar_widget(form, INPUT, "Presentación", 30, "");
395         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
396         form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
397         form_agregar_widget(form, INPUT, "PVU", 8, "");
398         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
399         form_ejecutar(form, 1,1);
400         
401         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
402         existe = 0;
403         /* Me dijo que no existe el codigo */
404         k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
405         dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
406         if (dato.id != -1) existe = 1;
407
408         if (!existe) {
409                 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
410                 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
411                 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
412                 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
413                 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
414                 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
415
416                 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
417                 save = procesar_guardar_articulo(&art, &size, lst_articulos);
418                 if (save != NULL) {
419                         error = 0;
420                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
421                         if (error) {
422                                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
423                                 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
424                                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
425                                 wrefresh(win);
426                                 getch();
427                         }
428                         free(save);
429                 }
430         } else {
431                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
432                 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
433                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
434                 wrefresh(win);
435                 getch();
436         }
437         form_destruir(form);
438
439         werase(win);
440         wrefresh(win);
441         delwin(win);
442 }
443
444 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
445 {
446         char *fin, *ini;
447         switch (lst->fp->tipo) {
448                 case T1:
449                 case T2:
450                         ini = (char *)src;
451                         /* Copio el primer campo, esto es facil :-) */
452                         memset(dst, 0, sizeof(t_Articulo));
453                         memcpy(&dst->numero, ini, sizeof(unsigned int));
454                         ini+=sizeof(unsigned int);
455                         /* Ahora empieza el juego */
456                         /* Los \0 son los delimitadores de campo! */
457                         fin = ini;
458                         while (*fin!='\0') fin++;
459                         memcpy(dst->desc, ini, fin-ini+1);
460                         
461                         ini = fin+1;
462                         fin = ini;
463                         while (*fin!='\0') fin++;
464                         memcpy(dst->presentacion, ini, fin-ini+1);
465                         
466                         ini = fin+1;
467                         fin = ini;
468                         while (*fin!='\0') fin++;
469                         memcpy(dst->existencia, ini, fin-ini+1);
470                         
471                         ini = fin+1;
472                         fin = ini;
473                         while (*fin!='\0') fin++;
474                         memcpy(dst->ubicacion, ini, fin-ini+1);
475                         
476                         ini = fin+1;
477                         fin = ini;
478                         while (*fin!='\0') fin++;
479                         memcpy(dst->pvu, ini, fin-ini+1);
480                         
481                         ini = fin+1;
482                         fin = (char *)src+size;
483                         memcpy(dst->emin, ini, fin-ini);
484
485                         break;
486                 case T3:
487                         memcpy(dst, src, sizeof(t_Articulo));
488         }
489
490         return 1; /* Todo ok */
491 }
492
493 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
494 {
495         char *tmp=NULL;
496         int i[7];
497         char *from = (char *)src;
498         switch(lst->fp->tipo) {
499                 case T1:
500                 case T2:
501                         /* Calculo el tamaño que voy a necesitar */
502                         i[0] = sizeof(unsigned int);
503                         i[1] = sizeof(char)*(strlen(src->desc)+1);
504                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
505                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
506                         i[4] = sizeof(char)*(strlen(src->ubicacion)+1); 
507                         i[5] = sizeof(char)*(strlen(src->pvu)+1);
508                         i[6] = sizeof(char)*(strlen(src->emin)+1);
509                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
510                         tmp = (char *)malloc((*size));
511                         if (tmp == NULL) return NULL;
512                         memset(tmp, 0, *size);
513                         memcpy(tmp, &src->numero, i[0]);
514                         memcpy(tmp+i[0], src->desc, i[1]);
515                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
516                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
517                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
518                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
519                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
520                 break;
521                 case T3:
522                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
523                          * registro se vea bien 
524                          */
525                         tmp = (char *)malloc(sizeof(t_Articulo));
526                         memset(tmp, '*', sizeof(t_Articulo));
527                         memcpy(tmp, from, sizeof(t_Articulo));
528                         (*size) = sizeof(t_Articulo);
529         }
530         return tmp;
531 }
532
533 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
534 {
535 #ifdef NO_SE_PUEDE_USAR
536         EMUFS *nuevo, *old;
537         EMUFS_REG_ID *indices, id;
538         EMUFS_REG_SIZE indices_total, i, size;
539         t_Articulo art;
540         t_LstArticulos *lst_nueva;
541         int error;
542         char *save;
543
544         PERR("==== EMPIEZO ====\n");
545         old = lst_articulos->fp;
546
547         /* Creo el nuevo file */
548         PERR("Creo el archivo\n");
549         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
550         if (nuevo == NULL) {
551                 PERR("ARCHIVO NUEVO NO CREADO");
552                 return;
553         }
554
555         /* Creo la nueva lista */
556         lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
557         lst_nueva->primero = NULL;
558         lst_nueva->fp = nuevo;
559
560         /* Leo los indices del archivo viejo */
561         PERR("Obtengo Indices\n");
562         indices = emufs_idx_get(old, &indices_total);
563         if (indices == NULL) {
564                 art_liberar(lst_nueva);
565                 return;
566         }
567
568         PERR("Proceso datos\n");
569         for(i=0; i<indices_total; i++) {
570                 error = 0;
571                 save = old->leer_registro(old, indices[i], &size, &error);
572                 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
573                         free(save);
574                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
575                         save = procesar_guardar_articulo(&art, &size, lst_nueva);
576                         if (save) {
577                                 error = 0;
578                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
579                                 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
580                                 free(save);
581                         }
582                 }
583         }
584
585         free(indices);
586
587         PERR("Libero lo viejo\n");
588         art_liberar(lst_articulos);
589
590         PERR("Ahora tengo lo nuevo\n");
591         lst_articulos = lst_nueva;
592
593         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
594         free(lst_articulos->fp->nombre);
595         lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
596         strcpy(lst_articulos->fp->nombre, "articulos");
597         
598         /* Muevo los archivos! */
599         /* TODO : Poner en otro lugar mas generico! */
600         PERR("Renombre!!\n");
601         rename("emufs_tmp.dat", "articulos.dat");
602         rename("emufs_tmp.idx", "articulos.idx");
603         rename("emufs_tmp.fsc", "articulos.fsc");
604         rename("emufs_tmp.did", "articulos.did");
605         PERR("==== TERMINE ====\n");
606 #endif
607 }
608
609 int art_exportar_xml(const char *filename)
610 {
611         t_Reg_Articulo *nodo;
612         t_Articulo *art;
613         EMUFS_REG_ID id;
614         FILE *fp;
615
616         if (lst_articulos->primero == NULL) return 0;
617
618         nodo = lst_articulos->primero;
619
620         if (!(fp = fopen(filename, "wt"))) return 0;
621         
622         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
623         fprintf(fp, "<ARTICULOS>\n");
624         while (nodo) {
625                 art = art_obtener(lst_articulos, nodo->numero, &id);
626                 if (art != NULL) {
627                         fprintf(fp, "\t<ARTICULO ");
628                         fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
629                         fprintf(fp, "Descripción=\"%s\" ", art->desc);
630                         fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
631                         fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
632                         fprintf(fp, "Existencia=\"%s\" ", art->existencia);
633                         fprintf(fp, "PVU=\"%s\" ", art->pvu);
634                         fprintf(fp, "Emín=\"%s\" />\n", art->emin);
635                         free(art);
636                 }
637                 nodo = nodo->sig;
638         }
639         fprintf(fp, "</ARTICULOS>\n");
640
641         fclose(fp);
642         return 1;
643 }
644
645 /* Dejo el test para que no se pierda */
646 void art_consultas_old(char *s)
647 {
648         /* TEST DE LISTA! */
649         char txt[80];
650         int i;
651         t_Lista *lista;
652         WINDOW *win, *win1;
653
654         win = newwin(LINES-4, COLS-2, 2, 1);
655         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
656         werase(win);
657         box(win, 0, 0);
658         wrefresh(win);
659         
660         /* Creo la lista */
661         lista = lista_crear(3, win1, COLS-4, LINES-6);
662
663         /* Creo las columnas */
664         lista_agregar_columna(lista, "Col1", DATO_INT, 0, 8);
665         lista_agregar_columna(lista, "Col2", DATO_STR, 10, 45);
666         lista_agregar_columna(lista, "Col3", DATO_FLOAT, 60, 10);
667
668         /* Agrego unos datos a ver que pasa */
669         /* Pongo 100 y rezo */
670         for(i=0; i<100; i++) {
671                 sprintf(txt, "Texto del item %d", i);
672                 lista_agregar_fila(lista, i, txt, (rand()%100)/100.0f);
673         }
674         curs_set(0);
675         lista_ejecutar(lista);
676         curs_set(1);
677         wrefresh(win1);
678         wrefresh(win);
679         werase(win1);
680         werase(win);
681         wrefresh(win);
682         delwin(win);
683 }
684
685 void art_consultas_codigos(char *s, t_Lista *lista)
686 {
687         EMUFS_REG_ID dummy;
688         int desde_codigo, hasta_codigo;
689         CLAVE k, menor, mayor;
690         t_Articulo *articulo;
691         t_Form *form;
692         INDICE *idx;
693
694         idx = lst_articulos->fp->indices;
695
696         /* El usuario ingresa rango a listar */
697         form = form_crear(lista->win);
698         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
699         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
700
701         form_ejecutar(form, 2, 2);
702
703         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
704         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
705
706         form_destruir(form);
707         werase(lista->win);
708         wrefresh(lista->win);
709
710         /* Leo los datos desde el archivo */
711         k = emufs_indice_generar_clave_desde_valor(idx, (char *)&desde_codigo);
712
713         menor = idx->obtener_menor_clave(idx);
714         mayor = idx->obtener_mayor_clave(idx);
715
716         if (k.i_clave < menor.i_clave)
717                 k = menor;
718         if (k.i_clave > mayor.i_clave)
719                 hasta_codigo = mayor.i_clave;
720         fprintf(stderr, "k.i_clave = %d  -- hasta_codigo = %d\n", k.i_clave, hasta_codigo);
721         while ((k.i_clave != -1) && (k.i_clave <= hasta_codigo)) {
722                 articulo = art_obtener(lst_articulos, k.i_clave, &dummy);
723                 if (articulo != NULL) {
724                         lista_agregar_fila(lista,
725                                                                 articulo->numero,
726                                                                 articulo->desc,
727                                                                 articulo->existencia,
728                                                                 articulo->emin
729                                                 );
730                         free(articulo);
731                 }
732                 k = idx->obtener_sig_clave(idx, k); 
733                 fprintf(stderr, "k.i_clave = %d  -- hasta_codigo = %d\n", k.i_clave, hasta_codigo);
734         }
735
736         curs_set(0);
737         lista_ejecutar(lista);
738         curs_set(1);
739 }
740
741 void art_consultas_stock(char *s, t_Lista *lista)
742 {
743         CLAVE k, menor;
744         t_Articulo articulo;
745         t_Form *form;
746         INDICE *idx;
747         float por;
748
749         idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, "desc");
750         if (idx == NULL) PERR("NO SE ENCUENTRA INDICE DESC!!!");
751
752         /* El usuario ingresa rango a listar */
753         form = form_crear(lista->win);
754         form_agregar_widget(form, INPUT, "Ingrese %", 8, "0");
755
756         form_ejecutar(form, 2, 2);
757
758         por = form_obtener_valor_float(form, "Ingrese %");
759
760         form_destruir(form);
761         werase(lista->win);
762         wrefresh(lista->win);
763
764         menor = idx->obtener_menor_clave(idx);
765
766         k = menor;
767         while (k.i_clave != -1) {
768                 char *tmp;
769                 EMUFS_REG_SIZE size;
770                 int error, cant, i;
771                 INDICE_DATO *datos;
772                 CLAVE k1;
773                 datos = idx->buscar_entradas(idx, k, &cant);
774                 for(i=0; i<cant; i++) {
775                         error = 1;
776                         k1.i_clave = datos[i].id;
777                         tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, k1, &size, &error);
778
779                         if (tmp != NULL) {
780                                 procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
781                         
782                                 if (atof(articulo.existencia) <= (1.0f+por)*atof(articulo.emin)) {
783                                         lista_agregar_fila(lista,
784                                                 articulo.numero,
785                                                 articulo.desc,
786                                                 articulo.existencia,
787                                                 articulo.emin
788                                         );
789                                 }
790                                 free(tmp);
791                         }
792                 }
793                 if (datos) free(datos);
794                 k = idx->obtener_sig_clave(idx, k); 
795         }
796
797         curs_set(0);
798         lista_ejecutar(lista);
799         curs_set(1);
800 }
801
802 void art_consultas_cambiar_precio(char *s, t_Lista *lista)
803 {
804         CLAVE k, menor;
805         t_Articulo articulo;
806         t_Form *form;
807         INDICE *idx;
808         float por, pvu;
809         char desc[51], uno_solo;
810
811         idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, "desc");
812         if (idx == NULL) PERR("NO SE ENCUENTRA INDICE DESC!!!");
813
814         /* El usuario ingresa rango a listar */
815         form = form_crear(lista->win);
816         form_agregar_widget(form, INPUT, "Desc. Articulo (nulo==Todos)", 50, "");
817         form_agregar_widget(form, INPUT, "Ingrese %", 8, "0");
818
819         form_ejecutar(form, 2, 2);
820
821         por = form_obtener_valor_float(form, "Ingrese %");
822         strcpy(desc, form_obtener_valor_char(form, "Desc. Articulo (nulo==Todos)"));
823
824         form_destruir(form);
825         werase(lista->win);
826         wrefresh(lista->win);
827
828         uno_solo = 1;
829         if (strlen(desc) == 0) {
830                 uno_solo = 0;
831                 k = menor = idx->obtener_menor_clave(idx);
832         } else {
833                 k.i_clave = 1;
834         }
835
836         while (k.i_clave != -1) {
837                 char *tmp;
838                 EMUFS_REG_SIZE size;
839                 int error, cant, i;
840                 INDICE_DATO *datos;
841                 CLAVE k1;
842                 if (uno_solo == 0)
843                         datos = idx->buscar_entradas(idx, k, &cant);
844                 else
845                         datos = emufs_buscar_registros(lst_articulos->fp, "desc", desc, &cant);
846                 fprintf(stderr, "obtuve %d claves para %s\n", cant, desc);
847                 for(i=0; i<cant; i++) {
848                         error = 1;
849                         k1.i_clave = datos[i].id;
850                         tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, k1, &size, &error);
851
852                         if (tmp != NULL) {
853                                 procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
854                                 free(tmp);
855                         
856                                 /* XXX */
857                                 pvu = atof(articulo.pvu);
858                                 pvu += pvu*por;
859
860                                 sprintf(articulo.pvu, "%.2f", pvu);
861                                 tmp = procesar_guardar_articulo(&articulo, &size, lst_articulos);
862                                 error = 0;
863                                 /* README : Aca si tengo que pasar el INDICE_DATO correcto, para que la funcion
864                                  * borrar sea capaz de eliminar solo el item que corresponde en las
865                                  * claves con repeticion
866                                  */
867                                 lst_articulos->fp->modificar_registro(lst_articulos->fp, k1, tmp, size, &error, datos[i]);
868                         }
869                 }
870                 if (datos) free(datos);
871                 if (uno_solo == 0)
872                         k = idx->obtener_sig_clave(idx, k); 
873                 else
874                         k.i_clave = -1;
875         }
876 }
877
878 void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
879 {
880         int i, cant, error;
881         char desc[51], *tmp;
882         t_Articulo articulo;
883         t_Form *form;
884         INDICE_DATO *datos;
885         CLAVE k;
886         EMUFS *fs;
887         EMUFS_REG_SIZE size;
888
889         fs = lst_articulos->fp;
890
891         /* El usuario ingresa rango a listar */
892         form = form_crear(lista->win);
893         form_agregar_widget(form, INPUT, titulo, 50, "");
894
895         werase(lista->win);
896         form_ejecutar(form, 2, 2);
897
898         tmp = form_obtener_valor_char(form, titulo);
899         strcpy(desc, tmp);
900
901         form_destruir(form);
902         werase(lista->win);
903         wrefresh(lista->win);
904
905         /* Leo los datos desde el archivo */
906         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
907         for(i=0; i<cant; i++) {
908                 k.i_clave = datos[i].id;
909                 error = 1;
910                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
911                 if (tmp != NULL) {
912                         procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
913                         lista_agregar_fila(lista,
914                                                         articulo.numero,
915                                                         articulo.desc,
916                                                         articulo.existencia,
917                                                         articulo.emin
918                                         );
919                         free(tmp);
920                 } else {
921                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
922                 }
923         }
924         if (datos) free(datos);
925         curs_set(0);
926         lista_ejecutar(lista);
927         curs_set(1);
928         
929 }
930
931 void art_consultas(char *s)
932 {
933         t_Lista *lista;
934         WINDOW *win1, *win;
935         MENU(mi_menu) {
936                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
937                 MENU_OPCION("por Descripcion", "Consulta por descripcion"),
938                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
939                 MENU_OPCION("por Sock Faltante", "Consulta de articulos por stock"),
940                 MENU_OPCION("Modificar Precios", "Permite Modificar los PVU"),
941                 MENU_OPCION("Volver", "Volver al menu anterior.")
942         };
943         int opt;
944         
945         win = newwin(LINES-4, COLS-2, 2, 1);
946         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
947         werase(win);
948         box(win, 0, 0);
949         wrefresh(win);
950         
951         /* Creo la lista donde mostrar la consulta*/
952         /* Muestro solo info relevante */
953         lista = lista_crear(4, win1, COLS-4, LINES-6);
954
955         /* Creo las columnas */
956         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
957         lista_agregar_columna(lista, "Descripcion", DATO_STR, 10, 51);  /* desc       */
958         lista_agregar_columna(lista, "Existencia", DATO_STR, 55, 9);   /* existencia */
959         lista_agregar_columna(lista, "S. Minimo", DATO_STR, 66, 9);   /* enim       */
960
961         while ((opt = menu_ejecutar(mi_menu, 6, "Consulta de Articulos")) != 5) {
962                 switch (opt) {
963                         case 0:
964                                 art_consultas_codigos(s, lista);
965                         break;
966                         case 1:
967                                 art_consultas_varias("desc", "Descripcion", lista);
968                         break;
969                         case 2:
970                                 art_consultas_varias("presentacion", "Presentacion", lista);
971                         break;
972                         case 3:
973                                 art_consultas_stock(s, lista);
974                         break;
975                         case 4:
976                                 art_consultas_cambiar_precio(s, lista);
977                 }
978                 lista_clear(lista);
979                 werase(win1);
980                 werase(win);
981                 wrefresh(win1);
982                 box(win, 0, 0);
983                 wrefresh(win);
984         }
985         werase(win1);
986         werase(win);
987         wrefresh(win);
988         delwin(win);
989 }
990