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