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