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