]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
* BUGFIX : Un par de boludeces que hacia que los indices no andaran. El formulario
[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
7 static t_LstArticulos *lst_articulos;
8
9 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
10
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);
13
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);
18
19 t_LstArticulos *art_get_lst()
20 {
21         return lst_articulos;
22 }
23
24 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
25 {
26         if (nodo == NULL) return 0;
27         if (nodo->ant == NULL) {
28                 /* Me piden borrar el primer nodo */
29                 if (nodo->sig) {
30                         nodo->sig->ant = NULL;
31                 }
32                 lst->primero = nodo->sig;
33         } else {
34                 if (nodo->sig) {
35                         nodo->sig->ant = nodo->ant;
36                 }
37                 nodo->ant->sig = nodo->sig;
38         }
39         free(nodo);
40         return 1;
41 }
42
43 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
44 {
45         t_Reg_Articulo *tmp;
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;
50         tmp->num_reg = reg;
51         tmp->numero = num;
52
53         return tmp;
54 }
55
56 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
57 {
58         if (nodo == NULL) return 0;
59
60         if (lst->primero) {
61                 lst->primero->ant = nodo;
62                 nodo->sig = lst->primero;
63                 lst->primero = nodo;
64         } else {
65                 lst->primero = nodo;
66         }
67         return 1;
68 }
69
70 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
71 {
72         xmlDocPtr document;
73         xmlNode *node, *inicio;
74         int error = 0;
75         char *prop;
76         EMUFS_REG_SIZE size;
77         t_LstArticulos *tmp;
78         lst_articulos = NULL;
79         EMUFS_REG_ID id;
80
81         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
82         if (tmp == NULL) return NULL;
83         lst_articulos = tmp;
84         tmp->primero = NULL;
85
86         if (filename != NULL) {
87                 PERR("Voy a crear desde un XML");
88                 document = xmlReadFile(filename, "ISO-8859-1",0);
89                 if (document == NULL) {
90                         free(tmp);
91                         lst_articulos = NULL;
92                         return NULL;
93                 }
94
95                 inicio = NULL;
96                 node = xmlDocGetRootElement(document);
97                 /* Busco el TAG principal "ARTICULOS" */
98                 while (node) {
99                         if (node->type == XML_ELEMENT_NODE) {
100                                 if (strcmp(node->name, "ARTICULOS") == 0) {
101                                         inicio = node->children;
102                                         break;
103                                 }
104                         }
105                         node = node->next;
106                 }
107 #ifdef DEBUG
108                 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
109 #endif
110                 /* Creo el FS */
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);
115                 if (!tmp->fp) {
116                         PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
117                         free(tmp);
118                         xmlFreeDoc(document);
119                         xmlCleanupParser();
120                         lst_articulos = NULL;
121                         return NULL;
122                 }
123                 for (node=inicio ; node ; node = node->next) {
124                         if (node->type == XML_ELEMENT_NODE) {
125                                 if (strcmp(node->name, "ARTICULO") == 0) {
126                                         t_Articulo art;
127                                         void *save;
128                                         memset(&art, 0, sizeof(t_Articulo));
129                                         prop = xml_get_prop(node, "NroArtículo");
130                                         art.numero = atoi(prop);
131                                         xmlFree(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);
145                                         if (save != NULL) {
146                                                 error = 0;
147                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
148                                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
149                                                 free(save);
150                                         }
151                                 }
152                         }
153                 }
154                 xmlFreeDoc(document);
155                 xmlCleanupParser();
156         } else {
157 /*      XXX Ahora no necesito leer nada del archivo cuando lo cargo
158  *      pues tengo todo en los indices
159  *
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.");
164                         free(tmp);
165                         lst_articulos = NULL;
166                         return NULL;
167                 }
168                  Ahora trato de recuperar la info
169                 indices = emufs_idx_get(tmp->fp, &indices_cant);
170                 for(i=0; i<indices_cant; i++) {
171                         t_Articulo art;
172                         void *save;
173                          Leo el registro
174                         error = 0;
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));
178                                 free(save);
179                         }
180                 }
181                 free(indices);
182 */
183         }
184
185         return tmp;
186 }
187
188 int art_liberar(t_LstArticulos *l)
189 {
190         t_Reg_Articulo *del;
191         if (l == NULL) l = lst_articulos;
192         if (l == NULL) return 1;
193
194         emufs_destruir(l->fp);
195         while (l->primero) {
196                 del = l->primero;
197                 l->primero = l->primero->sig;
198                 free(del);
199         }
200         free(l);
201
202         lst_articulos = NULL;
203         return 0;
204 }
205
206 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
207 {
208         t_Articulo *art;
209         void *tmp;
210         int error = 0;
211         EMUFS_REG_SIZE size;
212         CLAVE k;
213
214         if (lst == NULL) lst = lst_articulos;
215         if (lst == NULL) return NULL;
216
217         fprintf(stderr, "Me piden que busque en el indice el codigo=%d\n", numero);
218         (*id) = -1; /* XXX Ver que se hacia con esto */
219         art = (t_Articulo *)malloc(sizeof(t_Articulo));
220         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
221         error = 0;
222         PERR("Genero clave");
223         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
224         PERR("Buscando en archivo");
225         tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
226         PERR("Lo encontre?");
227         if (error) {
228                 free(art);
229                 return NULL;
230         }
231
232         printf("SI LO ENCONTRE!!!!");
233         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
234                 free(art);
235                 free(tmp);
236                 return NULL;
237         }
238
239         printf("RETORNANDO el articulo procesado");
240         free(tmp);
241         return art;
242 }
243
244 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
245 {
246         t_Form *form;
247         t_Articulo *articulo;
248
249         form = form_crear(win);
250         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
251         form_ejecutar(form, 1,1);
252         articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
253         form_destruir(form);
254
255         return articulo;
256 }
257
258 void art_modificar(char *s)
259 {
260         WINDOW *win;
261         t_Form *form;
262         t_Articulo *articulo;
263         char num[11];
264         void *tmp;
265         int error;
266         EMUFS_REG_SIZE size;
267         EMUFS_REG_ID codigo;
268
269         win = newwin(9, COLS-2, 13, 1);
270         box(win, 0, 0);
271         wrefresh(win);
272
273         if (s == NULL) {
274                 PERR("Voy a buscar con el formulario");
275                 articulo = art_form_buscar(win, &codigo);
276                 PERR("Ya lo tengo!!!!!!");
277         } else {
278                 codigo = atoi(s);
279                 /* Leo el registro directamente */
280                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
281                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
282                 error = 0;
283                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
284                                                 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
285                 if (error) {
286                         free(articulo);
287                         articulo = NULL;
288                 } else {
289                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
290                                 free(articulo);
291                                 articulo = NULL;
292                         }
293                         free(tmp);
294                 }
295         }
296
297         if (articulo != NULL) {
298                 form = form_crear(win);
299                 sprintf(num, "%08d", articulo->numero);
300                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
301                 form_es_modificable(form, "Numero de Artículo" , 0);
302                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
303                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
304                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
305                 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
306                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
307                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
308                 form_ejecutar(form, 1,1);
309
310                 /* Actualizar registro */
311                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
312                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
313                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
314                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
315                 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
316                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
317                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
318                 /* Ya actualice los datos, ahora veo de grabarlos */
319                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
320                 if (tmp) {
321                         error = 0;
322                         lst_articulos->fp->modificar_registro(lst_articulos->fp, codigo, tmp, size, &error);
323                         free(tmp);
324                 }
325                 
326                 form_destruir(form);
327                 free(articulo);
328         } else {        
329                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
330                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
331                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
332                 wrefresh(win);
333                 getch();
334         }
335         werase(win);
336         wrefresh(win);
337         delwin(win);
338 }
339
340 void art_eliminar(char *s)
341 {
342         WINDOW *win;
343         t_Articulo *articulo;
344         t_Reg_Articulo *nodo;
345         EMUFS_REG_ID id;
346
347         win = newwin(8, COLS-2, 13, 1);
348         box(win, 0, 0);
349         wrefresh(win);
350
351         articulo = art_form_buscar(win, &id);
352
353         if (articulo == NULL) {
354                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
355                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
356                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
357                 wrefresh(win);
358                 getch();
359         } else {
360                 nodo = lst_articulos->primero;
361                 while (nodo) {
362                         if (nodo->numero == articulo->numero) {
363                                 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
364                                 eliminar_nodo_articulo(lst_articulos, nodo);
365                                 break;
366                         }
367                         nodo = nodo->sig;
368                 }
369                 free(articulo);
370         }
371
372         werase(win);
373         wrefresh(win);
374         delwin(win);
375 }
376
377 void art_agregar(char *s)
378 {
379         WINDOW *win;
380         t_Form *form;
381         t_Articulo art;
382         t_Reg_Articulo *nuevo;
383         void *save;
384         int error = 0, existe;
385         EMUFS_REG_SIZE size;
386         EMUFS_REG_ID id;
387
388         win = newwin(9, COLS-2, 13, 1);
389         box(win, 0, 0);
390         wrefresh(win);
391
392         form = form_crear(win);
393         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
394         form_agregar_widget(form, INPUT, "Descripción", 50, "");
395         form_agregar_widget(form, INPUT, "Presentación", 30, "");
396         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
397         form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
398         form_agregar_widget(form, INPUT, "PVU", 8, "");
399         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
400         form_ejecutar(form, 1,1);
401         
402         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
403         existe = 0;
404         nuevo = lst_articulos->primero;
405         while (nuevo) {
406                 if (art.numero == nuevo->numero) {
407                         existe = 1;
408                         break;
409                 }
410                 nuevo = nuevo->sig;
411         }
412         
413         if (!existe) {
414                 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
415                 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
416                 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
417                 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
418                 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
419                 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
420
421                 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
422                 save = procesar_guardar_articulo(&art, &size, lst_articulos);
423                 if (save != NULL) {
424                         error = 0;
425                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
426                         if (error) {
427                                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
428                                 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
429                                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
430                                 wrefresh(win);
431                                 getch();
432                         } else {
433                                 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
434                         }
435                         free(save);
436                 }
437         } else {
438                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
439                 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
440                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
441                 wrefresh(win);
442                 getch();
443         }
444         form_destruir(form);
445
446         werase(win);
447         wrefresh(win);
448         delwin(win);
449 }
450
451 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
452 {
453         char *fin, *ini;
454         switch (lst->fp->tipo) {
455                 case T1:
456                 case T2:
457                         ini = (char *)src;
458                         /* Copio el primer campo, esto es facil :-) */
459                         memset(dst, 0, sizeof(t_Articulo));
460                         memcpy(&dst->numero, ini, sizeof(unsigned int));
461                         ini+=sizeof(unsigned int);
462                         /* Ahora empieza el juego */
463                         /* Los \0 son los delimitadores de campo! */
464                         fin = ini;
465                         while (*fin!='\0') fin++;
466                         memcpy(dst->desc, ini, fin-ini+1);
467                         
468                         ini = fin+1;
469                         fin = ini;
470                         while (*fin!='\0') fin++;
471                         memcpy(dst->presentacion, ini, fin-ini+1);
472                         
473                         ini = fin+1;
474                         fin = ini;
475                         while (*fin!='\0') fin++;
476                         memcpy(dst->existencia, ini, fin-ini+1);
477                         
478                         ini = fin+1;
479                         fin = ini;
480                         while (*fin!='\0') fin++;
481                         memcpy(dst->ubicacion, ini, fin-ini+1);
482                         
483                         ini = fin+1;
484                         fin = ini;
485                         while (*fin!='\0') fin++;
486                         memcpy(dst->pvu, ini, fin-ini+1);
487                         
488                         ini = fin+1;
489                         fin = (char *)src+size;
490                         memcpy(dst->emin, ini, fin-ini);
491
492                         break;
493                 case T3:
494                         memcpy(dst, src, sizeof(t_Articulo));
495         }
496
497         return 1; /* Todo ok */
498 }
499
500 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
501 {
502         char *tmp=NULL;
503         int i[7];
504         char *from = (char *)src;
505         switch(lst->fp->tipo) {
506                 case T1:
507                 case T2:
508                         /* Calculo el tamaño que voy a necesitar */
509                         i[0] = sizeof(unsigned int);
510                         i[1] = sizeof(char)*(strlen(src->desc)+1);
511                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
512                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
513                         i[4] = sizeof(char)*(strlen(src->ubicacion)+1); 
514                         i[5] = sizeof(char)*(strlen(src->pvu)+1);
515                         i[6] = sizeof(char)*(strlen(src->emin)+1);
516                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
517                         tmp = (char *)malloc((*size));
518                         if (tmp == NULL) return NULL;
519                         memset(tmp, 0, *size);
520                         memcpy(tmp, &src->numero, i[0]);
521                         memcpy(tmp+i[0], src->desc, i[1]);
522                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
523                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
524                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
525                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
526                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
527                 break;
528                 case T3:
529                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
530                          * registro se vea bien 
531                          */
532                         tmp = (char *)malloc(sizeof(t_Articulo));
533                         memset(tmp, '*', sizeof(t_Articulo));
534                         memcpy(tmp, from, sizeof(t_Articulo));
535                         (*size) = sizeof(t_Articulo);
536         }
537         return tmp;
538 }
539
540 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
541 {
542 #ifdef NO_SE_PUEDE_USAR
543         EMUFS *nuevo, *old;
544         EMUFS_REG_ID *indices, id;
545         EMUFS_REG_SIZE indices_total, i, size;
546         t_Articulo art;
547         t_LstArticulos *lst_nueva;
548         int error;
549         char *save;
550
551         PERR("==== EMPIEZO ====\n");
552         old = lst_articulos->fp;
553
554         /* Creo el nuevo file */
555         PERR("Creo el archivo\n");
556         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
557         if (nuevo == NULL) {
558                 PERR("ARCHIVO NUEVO NO CREADO");
559                 return;
560         }
561
562         /* Creo la nueva lista */
563         lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
564         lst_nueva->primero = NULL;
565         lst_nueva->fp = nuevo;
566
567         /* Leo los indices del archivo viejo */
568         PERR("Obtengo Indices\n");
569         indices = emufs_idx_get(old, &indices_total);
570         if (indices == NULL) {
571                 art_liberar(lst_nueva);
572                 return;
573         }
574
575         PERR("Proceso datos\n");
576         for(i=0; i<indices_total; i++) {
577                 error = 0;
578                 save = old->leer_registro(old, indices[i], &size, &error);
579                 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
580                         free(save);
581                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
582                         save = procesar_guardar_articulo(&art, &size, lst_nueva);
583                         if (save) {
584                                 error = 0;
585                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
586                                 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
587                                 free(save);
588                         }
589                 }
590         }
591
592         free(indices);
593
594         PERR("Libero lo viejo\n");
595         art_liberar(lst_articulos);
596
597         PERR("Ahora tengo lo nuevo\n");
598         lst_articulos = lst_nueva;
599
600         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
601         free(lst_articulos->fp->nombre);
602         lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
603         strcpy(lst_articulos->fp->nombre, "articulos");
604         
605         /* Muevo los archivos! */
606         /* TODO : Poner en otro lugar mas generico! */
607         PERR("Renombre!!\n");
608         rename("emufs_tmp.dat", "articulos.dat");
609         rename("emufs_tmp.idx", "articulos.idx");
610         rename("emufs_tmp.fsc", "articulos.fsc");
611         rename("emufs_tmp.did", "articulos.did");
612         PERR("==== TERMINE ====\n");
613 #endif
614 }
615
616 int art_exportar_xml(const char *filename)
617 {
618         t_Reg_Articulo *nodo;
619         t_Articulo *art;
620         EMUFS_REG_ID id;
621         FILE *fp;
622
623         if (lst_articulos->primero == NULL) return 0;
624
625         nodo = lst_articulos->primero;
626
627         if (!(fp = fopen(filename, "wt"))) return 0;
628         
629         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
630         fprintf(fp, "<ARTICULOS>\n");
631         while (nodo) {
632                 art = art_obtener(lst_articulos, nodo->numero, &id);
633                 if (art != NULL) {
634                         fprintf(fp, "\t<ARTICULO ");
635                         fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
636                         fprintf(fp, "Descripción=\"%s\" ", art->desc);
637                         fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
638                         fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
639                         fprintf(fp, "Existencia=\"%s\" ", art->existencia);
640                         fprintf(fp, "PVU=\"%s\" ", art->pvu);
641                         fprintf(fp, "Emín=\"%s\" />\n", art->emin);
642                         free(art);
643                 }
644                 nodo = nodo->sig;
645         }
646         fprintf(fp, "</ARTICULOS>\n");
647
648         fclose(fp);
649         return 1;
650 }
651