]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/emufs_view.c
5a7e77e753deb9f1fa59b860d7af34f24fe5c051
[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         if (argc == 2)
276                 param_xml(argv[1], &parametros);
277
278 #ifdef DEBUG
279         printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
280         printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
281         printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
282         printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
283         printf("el programa de la siguiente manera :\n");
284         printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
285         printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
286         printf("visualizacion de la aplicacion.\n");
287         printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
288         fgetc(stdin);
289 #endif
290
291         /* Inicio Curses */
292         signal(SIGINT, finish);
293         initscr();
294         keypad(stdscr, TRUE);
295         nonl();
296         cbreak();
297         noecho();
298         /* Si se soporta color, los inicializo */
299         if (has_colors()) {
300                 start_color();
301                 /* Simple color assignment, often all we need. */
302                 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
303                 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
304                 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
305                 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
306                 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
307                 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
308                 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
309                 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
310         }
311         
312         /* Verifico un tamaño minimo de consola */
313         if ((LINES < 25) || (COLS < 80)) {
314                 endwin();
315                 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
316                 return 1;
317         }
318
319         /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
320         box(stdscr, ACS_VLINE, ACS_HLINE);
321         /* Ventana, Y, X, Texto */
322         mvwaddstr(stdscr, 1, 1, "EMUFS");       
323         attron(COLOR_PAIR(2));
324         mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");      
325         attroff(COLOR_PAIR(2));
326         wrefresh(stdscr);
327
328         if (argc == 2) {
329                 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
330                 art_cargar(&parametros);
331                 fact_cargar(&parametros);
332         } else {
333                 dialog = msg_box(stdscr, COLS, LINES, "Recuperando archivos ...");
334                 art_cargar(NULL);
335                 fact_cargar(NULL);
336         }
337
338         msg_box_free(stdscr, dialog);
339
340         main_menu();
341
342         endwin();
343
344         art_liberar(NULL);
345         fact_liberar(NULL);
346
347         return 0;
348 }
349
350 void menu_facturas()
351 {
352         MENU(mi_menu) {
353                 MENU_OPCION("Alta", "Crear una nueva factura."),
354                 MENU_OPCION("Baja", "Elimina una factura existente."),
355                 MENU_OPCION("Modificacion", "Modifica una factura existente."),
356                 MENU_OPCION("Consultas", "Consulta varias de articulo."),
357                 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
358                 MENU_OPCION("Volver", "Volver al menu anterior.")
359         };
360         int opt;
361                 
362         while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
363                 switch (opt) {
364                         case 0:
365                                 fact_agregar(NULL);
366                         break;
367                         case 1:
368                                 fact_eliminar(NULL);
369                         break;
370                         case 2:
371                                 fact_modificar(NULL);
372                         break;
373                         case 3:
374                                 fact_consultas(NULL);
375                         case 4:
376                                 fact_recorrer();
377                 }
378         }
379 }
380
381 void menu_articulos()
382 {
383         MENU(mi_menu) {
384                 MENU_OPCION("Alta", "Crear un nuevo articulo."),
385                 MENU_OPCION("Baja", "Elimina un articulo existente."),
386                 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
387                 MENU_OPCION("Consultas", "Consulta varias de articulo."),
388                 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
389                 MENU_OPCION("Volver", "Volver al menu anterior.")
390         };
391         int opt;
392                 
393         while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
394                 switch (opt) {
395                         case 0:
396                                 art_agregar(NULL);
397                         break;
398                         case 1:
399                                 art_eliminar(NULL);
400                         break;
401                         case 2:
402                                 art_modificar(NULL);
403                         break;
404                         case 3:
405                                 art_consultas(NULL);
406                         break;
407                         case 4:
408                                 art_recorrer();
409                 }
410         }
411
412 }
413
414 void menu_estadisticas()
415 {
416         MENU(mi_menu) {
417                 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
418                 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
419                 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
420                 MENU_OPCION("Volver", "Ir al menu anterior.")
421         };
422         int opt;
423
424         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
425                 switch (opt) {
426                         case 0:
427                                 ver_estadisticas( art_get_lst()->fp );
428                         break;
429                         case 1:
430                                 ver_estadisticas( fact_get_lst()->fp );
431                         break;
432                         case 2:
433                                 ver_estadisticas( fact_get_lst()->fp_texto );
434                 }
435         }
436 }
437
438 void menu_ver_registros()
439 {
440         MENU(mi_menu) {
441                 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
442                 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
443                 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
444                 MENU_OPCION("Volver", "Ir al menu anterior.")
445         };
446         int opt;
447         WINDOW *dialog;
448
449         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
450                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
451                 ver_registros(dialog, COLS-2, LINES-4, opt);
452                 werase(dialog);
453                 wrefresh(dialog);
454                 delwin(dialog);
455                 refresh();
456         }
457 }
458
459 void menu_ver_bloques()
460 {
461         MENU(mi_menu) {
462                 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
463                 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
464                 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
465                 MENU_OPCION("Volver", "Ir al menu anterior.")
466         };
467         int opt;
468         WINDOW *dialog;
469
470         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
471                 switch (opt) {
472                         case 0:
473                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
474                                 ver_bloques(dialog, COLS-2, LINES-4, 0);
475                                 werase(dialog);
476                                 wrefresh(dialog);
477                                 delwin(dialog);
478                                 refresh();
479                         break;
480                         case 1:
481                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
482                                 ver_bloques(dialog, COLS-2, LINES-4, 1);
483                                 werase(dialog);
484                                 wrefresh(dialog);
485                                 delwin(dialog);
486                                 refresh();
487                         break; 
488                 case 2: 
489                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
490                                 ver_bloques(dialog, COLS-2, LINES-4, 2);
491                                 werase(dialog);
492                                 wrefresh(dialog);
493                                 delwin(dialog);
494                                 refresh();
495                 }
496         }
497 }
498
499 int main_menu()
500 {
501         int c, w, h;
502         WINDOW *win;
503         MENU(mi_menu) {
504                 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
505                 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
506                 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
507                 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
508                 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
509                 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
510                 MENU_OPCION("DEBUG", "Debug de Arbol B"),
511                 MENU_OPCION("Salir", "Salir del sistema.")
512         };
513
514         while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
515                 switch (c) {
516                         case 0:
517                                 menu_articulos();
518                         break;
519                         case 1:
520                                 menu_facturas();
521                         break;
522                         case 2:
523                                 menu_ver_registros();
524                         break;
525                         case 3:
526                                 menu_ver_bloques();
527                         break;
528                         case 4:
529                                 menu_estadisticas();
530                         break;
531                         case 5:
532                                 menu_mantenimiento();
533                         break;
534                         case 6:
535                                 h = LINES-2;
536                                 w = COLS-2;
537                                 win = newwin(h, w, 1, 1);
538                                 emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0);
539                                 delwin(win);
540                 }
541         }
542
543         return 0;
544 }
545
546
547 static void finish(int sig)
548 {
549         endwin();
550
551         /* do your non-curses wrapup here */
552         exit(0);
553 }
554
555 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
556 {
557         va_list ap;
558         char txt[255];
559         int mw, mh;
560         WINDOW *dialog;
561         va_start(ap, format);
562         vsprintf(txt, format, ap);
563         va_end(ap);
564
565         mw = strlen(txt)+2;
566         mh = 3;
567         dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
568         box(dialog, 0 ,0);
569         mvwaddstr(dialog, 1, 1, txt);
570         wrefresh(dialog);
571         curs_set(0);
572         return dialog;
573 }
574
575 void msg_box_free(WINDOW *padre, WINDOW *win)
576 {
577         werase(win);
578         wrefresh(win);
579         delwin(win);
580         curs_set(1);
581         wrefresh(padre);
582 }
583
584 void menu_mantenimiento()
585 {
586         MENU(mi_menu) {
587                 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
588                 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
589                 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
590                 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
591                 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
592                 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
593                 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
594                 MENU_OPCION("Volver", "Volver al menu anterior.")
595         };
596
597         int opt;
598         int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
599         int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
600         WINDOW *dlg;
601         char *s;
602
603         while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
604                 switch (opt) {
605                         case 0:
606                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
607                                 art_get_lst()->fp->compactar(art_get_lst()->fp);
608                                 msg_box_free(stdscr, dlg);
609                         break;
610                         case 1:
611                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
612                                 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
613                                 msg_box_free(stdscr, dlg);
614                         break;
615                         case 2:
616                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
617                                 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
618                                 msg_box_free(stdscr, dlg);
619                         break;
620                         case 3:
621                                 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
622                                 preguntar_nuevo_tipo("Parametros para  Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
623                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
624                                 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
625                                 msg_box_free(stdscr, dlg);
626                         break;
627                         case 4:
628                                 nuevo_tam_registro = 0;
629                                 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
630                                 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
631                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
632                                 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
633                                 msg_box_free(stdscr, dlg);
634                         break;
635                         case 5:
636                                 s = preguntar_file();
637                                 if (s) {
638                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
639                                         PERR("Exportando");
640                                         art_exportar_xml(s);
641                                         msg_box_free(stdscr, dlg);
642                                         free(s);
643                                 }
644                                 break;
645                         case 6:
646                                 s = preguntar_file();
647                                 if (s) {
648                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
649                                         PERR("Exportando");
650                                         fact_exportar_xml(s);
651                                         msg_box_free(stdscr, dlg);
652                                         free(s);
653                                 }
654                 }
655         }
656 }
657
658 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
659 {
660         WINDOW *win;
661         t_Form *form;
662         char *s;
663         int n, is_ok;
664
665         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
666         box(win, 0, 0);
667
668         mvwaddstr(win, 0, 1, title);
669         form = form_crear(win);
670         form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
671         form_ejecutar(form, 1,1);
672
673         s = form_obtener_valor_char(form, "Tipo de archivo");
674         if (strcmp(s, "T1") == 0) n = T1;
675         if (strcmp(s, "T2") == 0) n = T2;
676         if (strcmp(s, "T3") == 0) n = T3;
677
678         form_destruir(form);
679
680         werase(win);
681         box(win, 0, 0);
682         wrefresh(win);
683
684         (*tipo) = n;
685         switch (n) {
686                 case T1:
687                         form = form_crear(win);
688                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
689                         is_ok = 0;
690                         do {
691                                 form_set_valor(form, "Tamaño de bloque", "");
692                                 form_ejecutar(form, 1,1);
693                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
694                         } while (!is_ok);
695                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
696                         form_destruir(form);
697                 break;
698                 case T2:
699                         break;
700                 case T3:
701                         if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
702                                 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
703                                 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
704                         }
705                         form = form_crear(win);
706                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
707                         if ((*tam_reg) != -1)
708                                 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
709                         is_ok = 0;
710                         do {
711                                 form_set_valor(form, "Tamaño de bloque", "");
712                                 if ((*tam_reg) != -1)
713                                         form_set_valor(form, "Tamaño de registro", "");
714                                 form_ejecutar(form, 1,1);
715                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
716                                 if ((*tam_reg) != -1) {
717                                         if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
718                                 }
719                         } while (!is_ok);
720                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
721                         if ((*tam_reg) != -1)
722                                 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
723                         form_destruir(form);
724         }
725         werase(win);
726         wrefresh(win);
727         delwin(win);
728 }
729
730 void ver_estadisticas(EMUFS *fp)
731 {
732         WINDOW *win;
733         EMUFS_Estadisticas stats;
734         char s[40];
735         int i=3;
736
737         stats = fp->leer_estadisticas(fp);
738
739         win = newwin(LINES-4, COLS-2, 2, 1);
740         curs_set(0);
741
742         wattron(win, COLOR_PAIR(COLOR_YELLOW));
743         wattron(win, A_BOLD);
744         mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
745         wattroff(win, A_BOLD);
746         wattroff(win, COLOR_PAIR(COLOR_YELLOW));
747         switch (fp->tipo) {
748                 case T1:
749                         waddstr(win, "Registro long. variable con bloque parametrizado");
750                         wattron(win, A_BOLD);
751                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
752                         wattroff(win, A_BOLD);
753                         sprintf(s, "%lu bytes", fp->tam_bloque);
754                         waddstr(win, s);
755                 break;
756                 case T2:
757                         waddstr(win, "Registro long. variable sin bloques");
758                 break;
759                 case T3:
760                         waddstr(win, "Registro long. fija con bloque parametrizado");
761                         wattron(win, A_BOLD);
762                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
763                         wattroff(win, A_BOLD);
764                         sprintf(s, "%lu bytes", fp->tam_bloque);
765                         waddstr(win, s);
766                         wattron(win, A_BOLD);
767                         mvwaddstr(win, i++, 1, "Tamaño de registro : ");
768                         wattroff(win, A_BOLD);
769                         sprintf(s, "%lu bytes", fp->tam_reg);
770                         waddstr(win, s);
771         }
772
773
774         wattron(win, A_BOLD);
775         mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
776         wattroff(win, A_BOLD);
777         sprintf(s, "%lu/%lu bytes (%.2f %%)", 
778                         stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
779                         (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
780         waddstr(win, s);
781         
782         wattron(win, A_BOLD);
783         mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
784         wattroff(win, A_BOLD);
785         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);
786         waddstr(win, s);
787
788         wattron(win, A_BOLD);
789         mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
790         wattroff(win, A_BOLD);
791         sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
792         waddstr(win, s);
793         
794         wattron(win, A_BOLD);
795         mvwaddstr(win, i++, 1, "Media de espacio libre : ");
796         wattroff(win, A_BOLD);
797         sprintf(s, "%lu bytes/bloque", stats.media_fs);
798         waddstr(win, s);
799
800         wattron(win, A_BOLD);
801         mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
802         wattroff(win, A_BOLD);
803         sprintf(s, "%lu bytes", stats.max_fs);
804         waddstr(win, s);
805
806         wattron(win, A_BOLD);
807         mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
808         wattroff(win, A_BOLD);
809         sprintf(s, "%lu bytes", stats.min_fs);
810         waddstr(win, s);
811
812         wattron(win, A_BOLD);
813         mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
814         wattroff(win, A_BOLD);
815         sprintf(s, "%lu bytes", stats.tam_archivo);
816         waddstr(win, s);
817         
818         wattron(win, A_BOLD);
819         mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
820         wattroff(win, A_BOLD);
821         sprintf(s, "%lu bytes", stats.tam_archivos_aux);
822         waddstr(win, s);
823         
824         wattron(win, A_BOLD);
825         mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
826         wattroff(win, A_BOLD);
827         sprintf(s, "%lu bytes", stats.tam_info_control_dat);
828         waddstr(win, s);
829         
830         if ((fp->tipo == T1) || (fp->tipo == T3)) {
831                 wattron(win, A_BOLD);
832                 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
833                 wattroff(win, A_BOLD);
834                 sprintf(s, "%lu", stats.cant_bloques);
835                 waddstr(win, s);
836         }
837         
838         wattron(win, A_BOLD);
839         mvwaddstr(win, i++, 1, "Cant. Registros : ");
840         wattroff(win, A_BOLD);
841         sprintf(s, "%lu", stats.cant_registros);
842         waddstr(win, s);
843         
844         wattron(win, A_BOLD);
845         mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
846         wattroff(win, A_BOLD);
847         
848         wattron(win, A_BLINK);
849         mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
850         wattroff(win, A_BLINK);
851
852         wrefresh(win);
853
854         getch();
855         werase(win);
856         wrefresh(win);
857         delwin(win);
858 }
859
860 char *preguntar_file()
861 {
862         WINDOW *win;
863         t_Form *form;
864         char *s, *t;
865
866         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
867         box(win, 0, 0);
868
869         form = form_crear(win);
870         form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
871         form_ejecutar(form, 1,1);
872
873         s = form_obtener_valor_char(form, "Nombre de archivo");
874
875         if (strlen(s) == 0) {
876                 form_destruir(form);
877                 return NULL;
878         }
879         t = (char *)malloc(sizeof(char*)*(strlen(s)+1));
880         strcpy(t, s);
881         form_destruir(form);
882         return t;
883 }