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