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