]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/emufs_view.c
Agrego funciones para obtener menor y mayor claves del arbol y las asigno a punteros...
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
1
2 #include <stdlib.h>
3 #include <curses.h>
4 #include <menu.h>
5 #include <signal.h>
6 #include <string.h>
7 #include <stdarg.h>
8
9 #include "gui.h"
10 #include "menu.h"
11 #include "form.h"
12 #include "articulos.h"
13 #include "facturas.h"
14 #include "emufs.h"
15 #include "viewer.h"
16 #include "tree_viewer.h"
17
18 #define CTRLD 4
19
20 static void finish(int sig);
21
22 int main_menu();
23 void menu_articulos();
24 void menu_facturas();
25 void menu_mantenimiento();
26 void menu_estadisticas();
27 void menu_ver_registros();
28 void menu_ver_bloques();
29 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
30 char *preguntar_file();
31
32 void ver_estadisticas(EMUFS *fp);
33
34 typedef enum {
35                 PARAM_OK, /* Parametros estan ok */
36                 NO_ART_FILE,  /* No se especifico nombre de archivo Articulos */
37                 NO_FACT_FILE, /* No se especifico nombre de archivo Facturas */
38                 SHOW_HELP,    /* Mostrar ayuda encontrado */
39                 TIPO_NO_DEFINIDO, /* No se definio tipo de archivo */
40                 TIPO_INVALIDO,    /* El valor de tipo de archivo no es valido */
41                 BLOQUE_NO_DEFINIDO, /* No se especifico tamaño de bloque */
42                 NULL_BLOCK_FOUND    /* Tamaño de bloque <= 0!!! */
43 } t_Param;
44
45 void print_help(char *s)
46 {
47         printf("EMUFS - 1v0\n");
48         printf("Modo de uso :%s -a <archivo XML> tipo -f <archivo XML> tipo [tam_bloque] tipo_n [tam_bloque_n]\n", s);
49         printf("  -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
50         printf("     tipo_n == Tipo de archivo para el archivo de notas\n");
51         printf("     tam_bloque_n == Tamaño de bloque para el archivo de notas (si corresponde)\n");
52         printf("  -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
53         printf("  'tipo' es el modo de archivo. Siendo :\n");
54         printf("     1 - Registros long. variables con bloque parametrizado\n");
55         printf("     2 - Registros long. variables sin bloque\n");
56         printf("     3 - Registros long fija con bloque parametrizado\n");
57         printf("  tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
58 }
59
60 int leer_tipo_arbol(char *s) {
61         if (strcmp(s, "B") == 0) return 0;
62         if (strcmp(s, "BA") == 0) return 1;
63         if (strcmp(s, "BP") == 0) return 2;
64
65         /* Por defecto es un B */
66         return 0;
67 }
68
69 void leer_param_ind_art(t_Parametros *param, xmlNode *padre)
70 {
71         xmlNode *node;
72         char *tmp, *nombre;
73         node = padre->children;
74         while (node) {
75                 if (node->type == XML_ELEMENT_NODE) {
76                         if (strcmp(node->name, "indice")==0) {
77                                 PERR("  LEO INDICE");
78                                 nombre = xml_get_prop(node, "nombre");
79
80                                 if (strcmp(nombre, "codigo")==0) {
81                                         tmp = xml_get_prop(node, "tipo");
82                                         param->ind_art[0].tipo_arbol = leer_tipo_arbol(tmp);
83                                         free(tmp);
84                                         tmp = xml_get_prop(node, "bloque");
85                                         param->ind_art[0].tam_bloque = atoi(tmp);
86                                         free(tmp);
87                                 } else if (strcmp(nombre, "desc")==0) {
88                                         tmp = xml_get_prop(node, "tipo");
89                                         param->ind_art[1].tipo_arbol = leer_tipo_arbol(tmp);
90                                         free(tmp);
91                                         tmp = xml_get_prop(node, "bloque");
92                                         param->ind_art[1].tam_bloque = atoi(tmp);
93                                         free(tmp);
94                                 } else if (strcmp(nombre, "presentacion")==0) {
95                                         tmp = xml_get_prop(node, "tipo");
96                                         param->ind_art[2].tipo_arbol = leer_tipo_arbol(tmp);
97                                         free(tmp);
98                                         tmp = xml_get_prop(node, "bloque");
99                                         param->ind_art[2].tam_bloque = atoi(tmp);
100                                         free(tmp);
101                                 }
102                                 PERR("  LISTO");
103                                 free(nombre);
104                         }
105                 }
106                 node = node->next;
107         }
108 }
109
110 void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
111 {
112         xmlNode *node;
113         char *tmp, *nombre;
114         node = padre->children;
115         while (node) {
116                 if (node->type == XML_ELEMENT_NODE) {
117                         if (strcmp(node->name, "indice")==0) {
118                                 PERR("  LEO INDICE");
119                                 nombre = xml_get_prop(node, "nombre");
120
121                                 if (strcmp(nombre, "numero")==0) {
122                                         tmp = xml_get_prop(node, "tipo");
123                                         param->ind_fac[0].tipo_arbol = leer_tipo_arbol(tmp);
124                                         free(tmp);
125                                         tmp = xml_get_prop(node, "bloque");
126                                         param->ind_fac[0].tam_bloque = atoi(tmp);
127                                         free(tmp);
128                                 } else if (strcmp(nombre, "emision")==0) {
129                                         tmp = xml_get_prop(node, "tipo");
130                                         param->ind_fac[1].tipo_arbol = leer_tipo_arbol(tmp);
131                                         free(tmp);
132                                         tmp = xml_get_prop(node, "bloque");
133                                         param->ind_fac[1].tam_bloque = atoi(tmp);
134                                         free(tmp);
135                                 } else if (strcmp(nombre, "vto")==0) {
136                                         tmp = xml_get_prop(node, "tipo");
137                                         param->ind_fac[2].tipo_arbol = leer_tipo_arbol(tmp);
138                                         free(tmp);
139                                         tmp = xml_get_prop(node, "bloque");
140                                         param->ind_fac[2].tam_bloque = atoi(tmp);
141                                         free(tmp);
142                                 } else if (strcmp(nombre, "cheque")==0) {
143                                         tmp = xml_get_prop(node, "tipo");
144                                         param->ind_fac[3].tipo_arbol = leer_tipo_arbol(tmp);
145                                         free(tmp);
146                                         tmp = xml_get_prop(node, "bloque");
147                                         param->ind_fac[3].tam_bloque = atoi(tmp);
148                                         free(tmp);
149                                 } else if (strcmp(nombre, "ctacte")==0) {
150                                         tmp = xml_get_prop(node, "tipo");
151                                         param->ind_fac[4].tipo_arbol = leer_tipo_arbol(tmp);
152                                         free(tmp);
153                                         tmp = xml_get_prop(node, "bloque");
154                                         param->ind_fac[4].tam_bloque = atoi(tmp);
155                                         free(tmp);
156                                 }
157                                 PERR("  LISTO");
158                                 free(nombre);
159                         }
160                 }
161                 node = node->next;
162         }
163 }
164
165 void leer_param_art(t_Parametros *param, xmlNode *padre)
166 {
167         xmlNode *node;
168         char *tmp;
169         node = padre->children;
170         while (node) {
171                 if (node->type == XML_ELEMENT_NODE) {
172                         if (strcmp(node->name, "fuente")==0) {
173                                 strcpy(param->xml_art, XML_GET_CONTENT(node->children));
174                         } else if (strcmp(node->name, "datos")==0) {
175                                 tmp = xml_get_prop(node, "tipo");
176                                 param->tipo_arch_art = atoi(tmp)-1;
177                                 free(tmp);
178                                 tmp = xml_get_prop(node, "bloque");
179                                 param->tam_bloque_art = atoi(tmp);
180                                 free(tmp);
181                         } else if (strcmp(node->name, "indices")==0) {
182                                 PERR("LEO INDICES")
183                                 leer_param_ind_art(param, node);
184                                 PERR("LISTO");
185                         }
186                 }
187                 node = node->next;
188         }
189 }
190
191 void leer_param_fac(t_Parametros *param, xmlNode *padre)
192 {
193         xmlNode *nodo;
194         char *tmp;
195         nodo = padre->children;
196         while (nodo) {
197                 if (nodo->type == XML_ELEMENT_NODE) {
198                         if (strcmp(nodo->name, "fuente")==0) {
199                                 strcpy(param->xml_fact, XML_GET_CONTENT(nodo->children));
200                         } else if (strcmp(nodo->name, "datos")==0) {
201                                 tmp = xml_get_prop(nodo, "tipo");
202                                 param->tipo_arch_fact = atoi(tmp)-1;
203                                 free(tmp);
204                                 tmp = xml_get_prop(nodo, "bloque");
205                                 param->tam_bloque_fact = atoi(tmp);
206                                 free(tmp);
207                         } else if (strcmp(nodo->name, "datos_notas")==0) {
208                                 tmp = xml_get_prop(nodo, "tipo");
209                                 param->tipo_arch_nota = atoi(tmp)-1;
210                                 free(tmp);
211                                 tmp = xml_get_prop(nodo, "bloque");
212                                 param->tam_bloque_nota = atoi(tmp);
213                                 free(tmp);
214                         } else if (strcmp(nodo->name, "indices")==0) {
215                                 PERR("LEO INDICES")
216                                 leer_param_ind_fact(param, nodo);
217                                 PERR("LISTO");
218                         }
219                 }
220                 nodo = nodo->next;
221         }
222 }
223
224 void param_xml(char *s, t_Parametros *param)
225 {
226         xmlDocPtr document;
227         xmlNode *node, *inicio;
228
229         document = xmlReadFile(s, NULL,0);
230         if (document == NULL) {
231                 return;
232         }
233         inicio = NULL;
234         node = xmlDocGetRootElement(document);
235         /* Busco el TAG principal "EMUFS" */
236         while (node) {
237                 if (node->type == XML_ELEMENT_NODE) {
238                         PERR(node->name);
239                         if (strcmp(node->name, "emufs") == 0) {
240                                 inicio = node->children;
241                                 break;
242                         }
243                 }
244                 node = node->next;
245         }
246         if (inicio == NULL) {
247                         PERR("NO ENCONTRE TAG PRINCIPAL");
248                         xmlFreeDoc(document);
249                         xmlCleanupParser();
250                         return;
251         }
252
253         node = inicio;
254         while (node) {
255                 if (node->type == XML_ELEMENT_NODE) {
256                         if (strcmp(node->name, "articulos")==0) {
257                                 leer_param_art(param, node);
258                         } else if (strcmp(node->name, "facturas")==0) {
259                                 leer_param_fac(param, node);
260                         }
261                 }
262                 node = node->next;
263         }
264 }
265
266 int main(int argc, char *argv[])
267 {
268         WINDOW *dialog;
269         t_Parametros parametros;
270
271         if (argc != 2) {
272                 print_help(argv[0]);
273         }
274         
275         param_xml(argv[1], &parametros);
276
277 #ifdef DEBUG
278         printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
279         printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
280         printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
281         printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
282         printf("el programa de la siguiente manera :\n");
283         printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
284         printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
285         printf("visualizacion de la aplicacion.\n");
286         printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
287         fgetc(stdin);
288 #endif
289
290         /* Inicio Curses */
291         signal(SIGINT, finish);
292         initscr();
293         keypad(stdscr, TRUE);
294         nonl();
295         cbreak();
296         noecho();
297         /* Si se soporta color, los inicializo */
298         if (has_colors()) {
299                 start_color();
300                 /* Simple color assignment, often all we need. */
301                 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
302                 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
303                 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
304                 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
305                 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
306                 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
307                 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
308                 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
309         }
310         
311         /* Verifico un tamaño minimo de consola */
312         if ((LINES < 25) || (COLS < 80)) {
313                 endwin();
314                 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
315                 return 1;
316         }
317
318         /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
319         box(stdscr, ACS_VLINE, ACS_HLINE);
320         /* Ventana, Y, X, Texto */
321         mvwaddstr(stdscr, 1, 1, "EMUFS");       
322         attron(COLOR_PAIR(2));
323         mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");      
324         attroff(COLOR_PAIR(2));
325         wrefresh(stdscr);
326
327         dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
328
329 /*      if (parametros.xml_art != -1) {*/
330                 art_cargar(&parametros);
331 /*      } else {
332                 art_cargar(NULL);
333         }
334         if (parametros.xml_fact != -1) {*/
335                 fact_cargar(&parametros);
336 /*      } else {
337                 fact_cargar(NULL);
338         }*/
339
340         msg_box_free(stdscr, dialog);
341
342         main_menu();
343
344         endwin();
345
346         art_liberar(NULL);
347         fact_liberar(NULL);
348
349         return 0;
350 }
351
352 void menu_facturas()
353 {
354         MENU(mi_menu) {
355                 MENU_OPCION("Alta", "Crear una nueva factura."),
356                 MENU_OPCION("Baja", "Elimina una factura existente."),
357                 MENU_OPCION("Modificacion", "Modifica una factura existente."),
358                 MENU_OPCION("Consultas", "Consulta varias de articulo."),
359                 MENU_OPCION("Volver", "Volver al menu anterior.")
360         };
361         int opt;
362                 
363         while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
364                 switch (opt) {
365                         case 0:
366                                 fact_agregar(NULL);
367                         break;
368                         case 1:
369                                 fact_eliminar(NULL);
370                         break;
371                         case 2:
372                                 fact_modificar(NULL);
373                         case 3:
374                                 fact_consultas(NULL);
375                 }
376         }
377 }
378
379 void menu_articulos()
380 {
381         MENU(mi_menu) {
382                 MENU_OPCION("Alta", "Crear un nuevo articulo."),
383                 MENU_OPCION("Baja", "Elimina un articulo existente."),
384                 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
385                 MENU_OPCION("Consultas", "Consulta varias de articulo."),
386                 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
387                 MENU_OPCION("Volver", "Volver al menu anterior.")
388         };
389         int opt;
390                 
391         while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
392                 switch (opt) {
393                         case 0:
394                                 art_agregar(NULL);
395                         break;
396                         case 1:
397                                 art_eliminar(NULL);
398                         break;
399                         case 2:
400                                 art_modificar(NULL);
401                         break;
402                         case 3:
403                                 art_consultas(NULL);
404                         break;
405                         case 4:
406                                 art_recorrer();
407                 }
408         }
409
410 }
411
412 void menu_estadisticas()
413 {
414         MENU(mi_menu) {
415                 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
416                 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
417                 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
418                 MENU_OPCION("Volver", "Ir al menu anterior.")
419         };
420         int opt;
421
422         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
423                 switch (opt) {
424                         case 0:
425                                 ver_estadisticas( art_get_lst()->fp );
426                         break;
427                         case 1:
428                                 ver_estadisticas( fact_get_lst()->fp );
429                         break;
430                         case 2:
431                                 ver_estadisticas( fact_get_lst()->fp_texto );
432                 }
433         }
434 }
435
436 void menu_ver_registros()
437 {
438         MENU(mi_menu) {
439                 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
440                 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
441                 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
442                 MENU_OPCION("Volver", "Ir al menu anterior.")
443         };
444         int opt;
445         WINDOW *dialog;
446
447         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
448                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
449                 ver_registros(dialog, COLS-2, LINES-4, opt);
450                 werase(dialog);
451                 wrefresh(dialog);
452                 delwin(dialog);
453                 refresh();
454         }
455 }
456
457 void menu_ver_bloques()
458 {
459         MENU(mi_menu) {
460                 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
461                 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
462                 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
463                 MENU_OPCION("Volver", "Ir al menu anterior.")
464         };
465         int opt;
466         WINDOW *dialog;
467
468         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
469                 switch (opt) {
470                         case 0:
471                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
472                                 ver_bloques(dialog, COLS-2, LINES-4, 0);
473                                 werase(dialog);
474                                 wrefresh(dialog);
475                                 delwin(dialog);
476                                 refresh();
477                         break;
478                         case 1:
479                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
480                                 ver_bloques(dialog, COLS-2, LINES-4, 1);
481                                 werase(dialog);
482                                 wrefresh(dialog);
483                                 delwin(dialog);
484                                 refresh();
485                         break; 
486                 case 2: 
487                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
488                                 ver_bloques(dialog, COLS-2, LINES-4, 2);
489                                 werase(dialog);
490                                 wrefresh(dialog);
491                                 delwin(dialog);
492                                 refresh();
493                 }
494         }
495 }
496
497 int main_menu()
498 {
499         int c, w, h;
500         WINDOW *win;
501         MENU(mi_menu) {
502                 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
503                 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
504                 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
505                 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
506                 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
507                 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
508                 MENU_OPCION("DEBUG", "Debug de Arbol B"),
509                 MENU_OPCION("Salir", "Salir del sistema.")
510         };
511
512         while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
513                 switch (c) {
514                         case 0:
515                                 menu_articulos();
516                         break;
517                         case 1:
518                                 menu_facturas();
519                         break;
520                         case 2:
521                                 menu_ver_registros();
522                         break;
523                         case 3:
524                                 menu_ver_bloques();
525                         break;
526                         case 4:
527                                 menu_estadisticas();
528                         break;
529                         case 5:
530                                 menu_mantenimiento();
531                         break;
532                         case 6:
533                                 h = LINES-2;
534                                 w = COLS-2;
535                                 win = newwin(h, w, 1, 1);
536                                 emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0);
537                                 delwin(win);
538                 }
539         }
540
541         return 0;
542 }
543
544
545 static void finish(int sig)
546 {
547         endwin();
548
549         /* do your non-curses wrapup here */
550         exit(0);
551 }
552
553 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
554 {
555         va_list ap;
556         char txt[255];
557         int mw, mh;
558         WINDOW *dialog;
559         va_start(ap, format);
560         vsprintf(txt, format, ap);
561         va_end(ap);
562
563         mw = strlen(txt)+2;
564         mh = 3;
565         dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
566         box(dialog, 0 ,0);
567         mvwaddstr(dialog, 1, 1, txt);
568         wrefresh(dialog);
569         curs_set(0);
570         return dialog;
571 }
572
573 void msg_box_free(WINDOW *padre, WINDOW *win)
574 {
575         werase(win);
576         wrefresh(win);
577         delwin(win);
578         curs_set(1);
579         wrefresh(padre);
580 }
581
582 void menu_mantenimiento()
583 {
584         MENU(mi_menu) {
585                 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
586                 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
587                 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
588                 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
589                 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
590                 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
591                 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
592                 MENU_OPCION("Volver", "Volver al menu anterior.")
593         };
594
595         int opt;
596         int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
597         int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
598         WINDOW *dlg;
599         char *s;
600
601         while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
602                 switch (opt) {
603                         case 0:
604                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
605                                 art_get_lst()->fp->compactar(art_get_lst()->fp);
606                                 msg_box_free(stdscr, dlg);
607                         break;
608                         case 1:
609                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
610                                 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
611                                 msg_box_free(stdscr, dlg);
612                         break;
613                         case 2:
614                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
615                                 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
616                                 msg_box_free(stdscr, dlg);
617                         break;
618                         case 3:
619                                 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
620                                 preguntar_nuevo_tipo("Parametros para  Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
621                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
622                                 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
623                                 msg_box_free(stdscr, dlg);
624                         break;
625                         case 4:
626                                 nuevo_tam_registro = 0;
627                                 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
628                                 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
629                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
630                                 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
631                                 msg_box_free(stdscr, dlg);
632                         break;
633                         case 5:
634                                 s = preguntar_file();
635                                 if (s) {
636                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
637                                         PERR("Exportando");
638                                         art_exportar_xml(s);
639                                         msg_box_free(stdscr, dlg);
640                                         free(s);
641                                 }
642                                 break;
643                         case 6:
644                                 s = preguntar_file();
645                                 if (s) {
646                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
647                                         PERR("Exportando");
648                                         fact_exportar_xml(s);
649                                         msg_box_free(stdscr, dlg);
650                                         free(s);
651                                 }
652                 }
653         }
654 }
655
656 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
657 {
658         WINDOW *win;
659         t_Form *form;
660         char *s;
661         int n, is_ok;
662
663         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
664         box(win, 0, 0);
665
666         mvwaddstr(win, 0, 1, title);
667         form = form_crear(win);
668         form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
669         form_ejecutar(form, 1,1);
670
671         s = form_obtener_valor_char(form, "Tipo de archivo");
672         if (strcmp(s, "T1") == 0) n = T1;
673         if (strcmp(s, "T2") == 0) n = T2;
674         if (strcmp(s, "T3") == 0) n = T3;
675
676         form_destruir(form);
677
678         werase(win);
679         box(win, 0, 0);
680         wrefresh(win);
681
682         (*tipo) = n;
683         switch (n) {
684                 case T1:
685                         form = form_crear(win);
686                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
687                         is_ok = 0;
688                         do {
689                                 form_set_valor(form, "Tamaño de bloque", "");
690                                 form_ejecutar(form, 1,1);
691                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
692                         } while (!is_ok);
693                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
694                         form_destruir(form);
695                 break;
696                 case T2:
697                         break;
698                 case T3:
699                         if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
700                                 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
701                                 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
702                         }
703                         form = form_crear(win);
704                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
705                         if ((*tam_reg) != -1)
706                                 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
707                         is_ok = 0;
708                         do {
709                                 form_set_valor(form, "Tamaño de bloque", "");
710                                 if ((*tam_reg) != -1)
711                                         form_set_valor(form, "Tamaño de registro", "");
712                                 form_ejecutar(form, 1,1);
713                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
714                                 if ((*tam_reg) != -1) {
715                                         if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
716                                 }
717                         } while (!is_ok);
718                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
719                         if ((*tam_reg) != -1)
720                                 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
721                         form_destruir(form);
722         }
723         werase(win);
724         wrefresh(win);
725         delwin(win);
726 }
727
728 void ver_estadisticas(EMUFS *fp)
729 {
730         WINDOW *win;
731         EMUFS_Estadisticas stats;
732         char s[40];
733         int i=3;
734
735         stats = fp->leer_estadisticas(fp);
736
737         win = newwin(LINES-4, COLS-2, 2, 1);
738         curs_set(0);
739
740         wattron(win, COLOR_PAIR(COLOR_YELLOW));
741         wattron(win, A_BOLD);
742         mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
743         wattroff(win, A_BOLD);
744         wattroff(win, COLOR_PAIR(COLOR_YELLOW));
745         switch (fp->tipo) {
746                 case T1:
747                         waddstr(win, "Registro long. variable con bloque parametrizado");
748                         wattron(win, A_BOLD);
749                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
750                         wattroff(win, A_BOLD);
751                         sprintf(s, "%lu bytes", fp->tam_bloque);
752                         waddstr(win, s);
753                 break;
754                 case T2:
755                         waddstr(win, "Registro long. variable sin bloques");
756                 break;
757                 case T3:
758                         waddstr(win, "Registro long. fija con bloque parametrizado");
759                         wattron(win, A_BOLD);
760                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
761                         wattroff(win, A_BOLD);
762                         sprintf(s, "%lu bytes", fp->tam_bloque);
763                         waddstr(win, s);
764                         wattron(win, A_BOLD);
765                         mvwaddstr(win, i++, 1, "Tamaño de registro : ");
766                         wattroff(win, A_BOLD);
767                         sprintf(s, "%lu bytes", fp->tam_reg);
768                         waddstr(win, s);
769         }
770
771
772         wattron(win, A_BOLD);
773         mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
774         wattroff(win, A_BOLD);
775         sprintf(s, "%lu/%lu bytes (%.2f %%)", 
776                         stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
777                         (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
778         waddstr(win, s);
779         
780         wattron(win, A_BOLD);
781         mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
782         wattroff(win, A_BOLD);
783         sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.tam_info_control_dat+stats.tam_archivos_aux, stats.tam_archivo, (stats.tam_info_control_dat+stats.tam_archivos_aux)*100.0f/(float)stats.tam_archivo);
784         waddstr(win, s);
785
786         wattron(win, A_BOLD);
787         mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
788         wattroff(win, A_BOLD);
789         sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
790         waddstr(win, s);
791         
792         wattron(win, A_BOLD);
793         mvwaddstr(win, i++, 1, "Media de espacio libre : ");
794         wattroff(win, A_BOLD);
795         sprintf(s, "%lu bytes/bloque", stats.media_fs);
796         waddstr(win, s);
797
798         wattron(win, A_BOLD);
799         mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
800         wattroff(win, A_BOLD);
801         sprintf(s, "%lu bytes", stats.max_fs);
802         waddstr(win, s);
803
804         wattron(win, A_BOLD);
805         mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
806         wattroff(win, A_BOLD);
807         sprintf(s, "%lu bytes", stats.min_fs);
808         waddstr(win, s);
809
810         wattron(win, A_BOLD);
811         mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
812         wattroff(win, A_BOLD);
813         sprintf(s, "%lu bytes", stats.tam_archivo);
814         waddstr(win, s);
815         
816         wattron(win, A_BOLD);
817         mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
818         wattroff(win, A_BOLD);
819         sprintf(s, "%lu bytes", stats.tam_archivos_aux);
820         waddstr(win, s);
821         
822         wattron(win, A_BOLD);
823         mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
824         wattroff(win, A_BOLD);
825         sprintf(s, "%lu bytes", stats.tam_info_control_dat);
826         waddstr(win, s);
827         
828         if ((fp->tipo == T1) || (fp->tipo == T3)) {
829                 wattron(win, A_BOLD);
830                 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
831                 wattroff(win, A_BOLD);
832                 sprintf(s, "%lu", stats.cant_bloques);
833                 waddstr(win, s);
834         }
835         
836         wattron(win, A_BOLD);
837         mvwaddstr(win, i++, 1, "Cant. Registros : ");
838         wattroff(win, A_BOLD);
839         sprintf(s, "%lu", stats.cant_registros);
840         waddstr(win, s);
841         
842         wattron(win, A_BOLD);
843         mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
844         wattroff(win, A_BOLD);
845         
846         wattron(win, A_BLINK);
847         mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
848         wattroff(win, A_BLINK);
849
850         wrefresh(win);
851
852         getch();
853         werase(win);
854         wrefresh(win);
855         delwin(win);
856 }
857
858 char *preguntar_file()
859 {
860         WINDOW *win;
861         t_Form *form;
862         char *s, *t;
863
864         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
865         box(win, 0, 0);
866
867         form = form_crear(win);
868         form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
869         form_ejecutar(form, 1,1);
870
871         s = form_obtener_valor_char(form, "Nombre de archivo");
872
873         if (strlen(s) == 0) {
874                 form_destruir(form);
875                 return NULL;
876         }
877         t = (char *)malloc(sizeof(char*)*(strlen(s)+1));
878         strcpy(t, s);
879         form_destruir(form);
880         return t;
881 }