]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/emufs_view.c
Ordenamiento externo integrado a la GUI y funcionando 10 puntos :-)
[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
65         /* Por defecto es un B */
66         return 0;
67 }
68
69 void leer_param_ind_art(t_Parametros *param, xmlNode *padre)
70 {
71         xmlNode *node;
72         char *tmp, *nombre;
73         node = padre->children;
74         while (node) {
75                 if (node->type == XML_ELEMENT_NODE) {
76                         if (strcmp(node->name, "indice")==0) {
77                                 PERR("  LEO INDICE");
78                                 nombre = xml_get_prop(node, "nombre");
79
80                                 if (strcmp(nombre, "codigo")==0) {
81                                         tmp = xml_get_prop(node, "tipo");
82                                         param->ind_art[0].tipo_arbol = leer_tipo_arbol(tmp);
83                                         free(tmp);
84                                         tmp = xml_get_prop(node, "bloque");
85                                         param->ind_art[0].tam_bloque = atoi(tmp);
86                                         free(tmp);
87                                 } else if (strcmp(nombre, "desc")==0) {
88                                         tmp = xml_get_prop(node, "tipo");
89                                         param->ind_art[1].tipo_arbol = leer_tipo_arbol(tmp);
90                                         free(tmp);
91                                         tmp = xml_get_prop(node, "bloque");
92                                         param->ind_art[1].tam_bloque = atoi(tmp);
93                                         free(tmp);
94                                 } else if (strcmp(nombre, "presentacion")==0) {
95                                         tmp = xml_get_prop(node, "tipo");
96                                         param->ind_art[2].tipo_arbol = leer_tipo_arbol(tmp);
97                                         free(tmp);
98                                         tmp = xml_get_prop(node, "bloque");
99                                         param->ind_art[2].tam_bloque = atoi(tmp);
100                                         free(tmp);
101                                 }
102                                 PERR("  LISTO");
103                                 free(nombre);
104                         }
105                 }
106                 node = node->next;
107         }
108 }
109
110 void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
111 {
112         xmlNode *node;
113         char *tmp, *nombre;
114         node = padre->children;
115         while (node) {
116                 if (node->type == XML_ELEMENT_NODE) {
117                         if (strcmp(node->name, "indice")==0) {
118                                 PERR("  LEO INDICE");
119                                 nombre = xml_get_prop(node, "nombre");
120
121                                 if (strcmp(nombre, "numero")==0) {
122                                         tmp = xml_get_prop(node, "tipo");
123                                         param->ind_fac[0].tipo_arbol = leer_tipo_arbol(tmp);
124                                         free(tmp);
125                                         tmp = xml_get_prop(node, "bloque");
126                                         param->ind_fac[0].tam_bloque = atoi(tmp);
127                                         free(tmp);
128                                 } else if (strcmp(nombre, "emision")==0) {
129                                         tmp = xml_get_prop(node, "tipo");
130                                         param->ind_fac[1].tipo_arbol = leer_tipo_arbol(tmp);
131                                         free(tmp);
132                                         tmp = xml_get_prop(node, "bloque");
133                                         param->ind_fac[1].tam_bloque = atoi(tmp);
134                                         free(tmp);
135                                 } else if (strcmp(nombre, "vto")==0) {
136                                         tmp = xml_get_prop(node, "tipo");
137                                         param->ind_fac[2].tipo_arbol = leer_tipo_arbol(tmp);
138                                         free(tmp);
139                                         tmp = xml_get_prop(node, "bloque");
140                                         param->ind_fac[2].tam_bloque = atoi(tmp);
141                                         free(tmp);
142                                 } else if (strcmp(nombre, "cheque")==0) {
143                                         tmp = xml_get_prop(node, "tipo");
144                                         param->ind_fac[3].tipo_arbol = leer_tipo_arbol(tmp);
145                                         free(tmp);
146                                         tmp = xml_get_prop(node, "bloque");
147                                         param->ind_fac[3].tam_bloque = atoi(tmp);
148                                         free(tmp);
149                                 } else if (strcmp(nombre, "ctacte")==0) {
150                                         tmp = xml_get_prop(node, "tipo");
151                                         param->ind_fac[4].tipo_arbol = leer_tipo_arbol(tmp);
152                                         free(tmp);
153                                         tmp = xml_get_prop(node, "bloque");
154                                         param->ind_fac[4].tam_bloque = atoi(tmp);
155                                         free(tmp);
156                                 }
157                                 PERR("  LISTO");
158                                 free(nombre);
159                         }
160                 }
161                 node = node->next;
162         }
163 }
164
165 void leer_param_art(t_Parametros *param, xmlNode *padre)
166 {
167         xmlNode *node;
168         char *tmp;
169         node = padre->children;
170         while (node) {
171                 if (node->type == XML_ELEMENT_NODE) {
172                         if (strcmp(node->name, "fuente")==0) {
173                                 strcpy(param->xml_art, XML_GET_CONTENT(node->children));
174                         } else if (strcmp(node->name, "datos")==0) {
175                                 tmp = xml_get_prop(node, "tipo");
176                                 param->tipo_arch_art = atoi(tmp)-1;
177                                 free(tmp);
178                                 tmp = xml_get_prop(node, "bloque");
179                                 param->tam_bloque_art = atoi(tmp);
180                                 free(tmp);
181                         } else if (strcmp(node->name, "indices")==0) {
182                                 PERR("LEO INDICES")
183                                 leer_param_ind_art(param, node);
184                                 PERR("LISTO");
185                         }
186                 }
187                 node = node->next;
188         }
189 }
190
191 void leer_param_fac(t_Parametros *param, xmlNode *padre)
192 {
193         xmlNode *nodo;
194         char *tmp;
195         nodo = padre->children;
196         while (nodo) {
197                 if (nodo->type == XML_ELEMENT_NODE) {
198                         if (strcmp(nodo->name, "fuente")==0) {
199                                 strcpy(param->xml_fact, XML_GET_CONTENT(nodo->children));
200                         } else if (strcmp(nodo->name, "datos")==0) {
201                                 tmp = xml_get_prop(nodo, "tipo");
202                                 param->tipo_arch_fact = atoi(tmp)-1;
203                                 free(tmp);
204                                 tmp = xml_get_prop(nodo, "bloque");
205                                 param->tam_bloque_fact = atoi(tmp);
206                                 free(tmp);
207                         } else if (strcmp(nodo->name, "datos_notas")==0) {
208                                 tmp = xml_get_prop(nodo, "tipo");
209                                 param->tipo_arch_nota = atoi(tmp)-1;
210                                 free(tmp);
211                                 tmp = xml_get_prop(nodo, "bloque");
212                                 param->tam_bloque_nota = atoi(tmp);
213                                 free(tmp);
214                         } else if (strcmp(nodo->name, "indices")==0) {
215                                 PERR("LEO INDICES")
216                                 leer_param_ind_fact(param, nodo);
217                                 PERR("LISTO");
218                         }
219                 }
220                 nodo = nodo->next;
221         }
222 }
223
224 void param_xml(char *s, t_Parametros *param)
225 {
226         xmlDocPtr document;
227         xmlNode *node, *inicio;
228
229         document = xmlReadFile(s, NULL,0);
230         if (document == NULL) {
231                 return;
232         }
233         inicio = NULL;
234         node = xmlDocGetRootElement(document);
235         /* Busco el TAG principal "EMUFS" */
236         while (node) {
237                 if (node->type == XML_ELEMENT_NODE) {
238                         PERR(node->name);
239                         if (strcmp(node->name, "emufs") == 0) {
240                                 inicio = node->children;
241                                 break;
242                         }
243                 }
244                 node = node->next;
245         }
246         if (inicio == NULL) {
247                         PERR("NO ENCONTRE TAG PRINCIPAL");
248                         xmlFreeDoc(document);
249                         xmlCleanupParser();
250                         return;
251         }
252
253         node = inicio;
254         while (node) {
255                 if (node->type == XML_ELEMENT_NODE) {
256                         if (strcmp(node->name, "articulos")==0) {
257                                 leer_param_art(param, node);
258                         } else if (strcmp(node->name, "facturas")==0) {
259                                 leer_param_fac(param, node);
260                         }
261                 }
262                 node = node->next;
263         }
264 }
265
266 static t_Parametros parametros;
267
268 int main(int argc, char *argv[])
269 {
270         WINDOW *dialog;
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 Facturas")) != 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                         break;
377                         case 4:
378                                 fact_recorrer();
379                 }
380         }
381 }
382
383 void menu_articulos()
384 {
385         MENU(mi_menu) {
386                 MENU_OPCION("Alta", "Crear un nuevo articulo."),
387                 MENU_OPCION("Baja", "Elimina un articulo existente."),
388                 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
389                 MENU_OPCION("Consultas", "Consulta varias de articulo."),
390                 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
391                 MENU_OPCION("Ver ventas", "Ver venta de articulos entre 2 fechas."),
392                 MENU_OPCION("Volver", "Volver al menu anterior.")
393         };
394         int opt;
395                 
396         while ((opt = menu_ejecutar(mi_menu, 7, "Menu Articulos")) != 6) {
397                 switch (opt) {
398                         case 0:
399                                 art_agregar(NULL);
400                         break;
401                         case 1:
402                                 art_eliminar(NULL);
403                         break;
404                         case 2:
405                                 art_modificar(NULL);
406                         break;
407                         case 3:
408                                 art_consultas(NULL);
409                         break;
410                         case 4:
411                                 art_recorrer();
412                         break;
413                         case 5:
414                                 art_ver_ventas();
415                 }
416         }
417
418 }
419
420 void menu_estadisticas()
421 {
422         MENU(mi_menu) {
423                 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
424                 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
425                 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
426                 MENU_OPCION("Volver", "Ir al menu anterior.")
427         };
428         int opt;
429
430         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
431                 switch (opt) {
432                         case 0:
433                                 ver_estadisticas( art_get_lst()->fp );
434                         break;
435                         case 1:
436                                 ver_estadisticas( fact_get_lst()->fp );
437                         break;
438                         case 2:
439                                 ver_estadisticas( fact_get_lst()->fp_texto );
440                 }
441         }
442 }
443
444 void menu_ver_registros()
445 {
446         MENU(mi_menu) {
447                 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
448                 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
449                 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
450                 MENU_OPCION("Volver", "Ir al menu anterior.")
451         };
452         int opt;
453         WINDOW *dialog;
454
455         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
456                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
457                 ver_registros(dialog, COLS-2, LINES-4, opt);
458                 werase(dialog);
459                 wrefresh(dialog);
460                 delwin(dialog);
461                 refresh();
462         }
463 }
464
465 void menu_ver_bloques()
466 {
467         MENU(mi_menu) {
468                 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
469                 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
470                 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
471                 MENU_OPCION("Volver", "Ir al menu anterior.")
472         };
473         int opt;
474         WINDOW *dialog;
475
476         while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
477                 switch (opt) {
478                         case 0:
479                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
480                                 ver_bloques(dialog, COLS-2, LINES-4, 0);
481                                 werase(dialog);
482                                 wrefresh(dialog);
483                                 delwin(dialog);
484                                 refresh();
485                         break;
486                         case 1:
487                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
488                                 ver_bloques(dialog, COLS-2, LINES-4, 1);
489                                 werase(dialog);
490                                 wrefresh(dialog);
491                                 delwin(dialog);
492                                 refresh();
493                         break; 
494                 case 2: 
495                                 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
496                                 ver_bloques(dialog, COLS-2, LINES-4, 2);
497                                 werase(dialog);
498                                 wrefresh(dialog);
499                                 delwin(dialog);
500                                 refresh();
501                 }
502         }
503 }
504
505 void ver_indice(int arch, char *indice)
506 {
507         INDICE *idx;
508         int w, h;
509         WINDOW *win;
510         switch (arch) {
511                 case 0:
512                         idx = emufs_buscar_indice_por_nombre(art_get_lst()->fp, indice);
513                 break;
514                 case 1:
515                         idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, indice);
516         }
517         h = LINES-4;
518         w = COLS-2;
519         win = newwin(h, w, 2, 1);
520
521         if ((idx != NULL) && (idx->tipo != IND_B_PLUS)) {
522                 emufs_indice_b_ver(idx, win, w, h, 0);
523         } else {
524                 if (idx != NULL) {
525                         WINDOW *dlg;
526                         dlg = msg_box(win, w, h, "El tipo de arbol B+ no esta soportado en el visor");
527                         getch();
528                         msg_box_free(win, dlg);
529                 }
530         }
531         delwin(win);
532 }
533
534 void menu_ver_indices()
535 {
536         int arch[8] = {0, 0, 0, 1, 1, 1, 1, 1};
537         char *nombres[8] = {"codigo", "desc", "presentacion",
538                         "numero", "emision", "vto", "cheque", "ctacte"};
539         MENU(mi_menu) {
540                 MENU_OPCION("Articulos->codigo",""),
541                 MENU_OPCION("Articulos->desc",""),
542                 MENU_OPCION("Articulos->presentacion",""),
543                 MENU_OPCION("Facturas->numero",""),
544                 MENU_OPCION("Facturas->emision",""),
545                 MENU_OPCION("Facturas->vto",""),
546                 MENU_OPCION("Facturas->cheque", ""),
547                 MENU_OPCION("Facturas->ctacte", ""),
548                 MENU_OPCION("Volver", "Volver al menu anterior.")
549         };
550         int c;
551
552         while ((c=menu_ejecutar(mi_menu, 9, "Menu Principal"))!=8) {
553                 ver_indice(arch[c], nombres[c]);
554         }
555 }
556
557 int main_menu()
558 {
559         int c;
560         MENU(mi_menu) {
561                 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
562                 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
563                 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
564                 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
565                 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
566                 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
567                 MENU_OPCION("Ver Indices", "Permite ver y recorrer los indices"),
568                 MENU_OPCION("Salir", "Salir del sistema.")
569         };
570
571         while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
572                 switch (c) {
573                         case 0:
574                                 menu_articulos();
575                         break;
576                         case 1:
577                                 menu_facturas();
578                         break;
579                         case 2:
580                                 menu_ver_registros();
581                         break;
582                         case 3:
583                                 menu_ver_bloques();
584                         break;
585                         case 4:
586                                 menu_estadisticas();
587                         break;
588                         case 5:
589                                 menu_mantenimiento();
590                         break;
591                         case 6:
592                                 menu_ver_indices();
593                 }
594         }
595
596         return 0;
597 }
598
599
600 static void finish(int sig)
601 {
602         endwin();
603
604         /* do your non-curses wrapup here */
605         exit(0);
606 }
607
608 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
609 {
610         va_list ap;
611         char txt[255];
612         int mw, mh;
613         WINDOW *dialog;
614         va_start(ap, format);
615         vsprintf(txt, format, ap);
616         va_end(ap);
617
618         mw = strlen(txt)+2;
619         mh = 3;
620         dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
621         box(dialog, 0 ,0);
622         mvwaddstr(dialog, 1, 1, txt);
623         wrefresh(dialog);
624         curs_set(0);
625         return dialog;
626 }
627
628 void msg_box_free(WINDOW *padre, WINDOW *win)
629 {
630         werase(win);
631         wrefresh(win);
632         delwin(win);
633         curs_set(1);
634         wrefresh(padre);
635 }
636
637 void menu_mantenimiento()
638 {
639         MENU(mi_menu) {
640                 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
641                 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
642                 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
643                 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
644                 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
645                 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
646                 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
647                 MENU_OPCION("Volver", "Volver al menu anterior.")
648         };
649
650         int opt;
651         int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
652         int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
653         WINDOW *dlg;
654         char *s;
655
656         while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
657                 switch (opt) {
658                         case 0:
659                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
660                                 art_get_lst()->fp->compactar(art_get_lst()->fp);
661                                 msg_box_free(stdscr, dlg);
662                         break;
663                         case 1:
664                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
665                                 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
666                                 msg_box_free(stdscr, dlg);
667                         break;
668                         case 2:
669                                 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
670                                 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
671                                 msg_box_free(stdscr, dlg);
672                         break;
673                         case 3:
674                                 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
675                                 preguntar_nuevo_tipo("Parametros para  Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
676                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
677                                 parametros.tipo_arch_art = nuevo_tipo;
678                                 parametros.tam_bloque_art = nuevo_tam_bloque;
679                                 art_reformatear(&parametros);
680                                 msg_box_free(stdscr, dlg);
681                         break;
682                         case 4:
683                                 nuevo_tam_registro = 0;
684                                 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
685                                 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
686                                 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
687                                 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
688                                 msg_box_free(stdscr, dlg);
689                         break;
690                         case 5:
691                                 s = preguntar_file();
692                                 if (s) {
693                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
694                                         PERR("Exportando");
695                                         art_exportar_xml(s);
696                                         msg_box_free(stdscr, dlg);
697                                         free(s);
698                                 }
699                                 break;
700                         case 6:
701                                 s = preguntar_file();
702                                 if (s) {
703                                         dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
704                                         PERR("Exportando");
705                                         fact_exportar_xml(s);
706                                         msg_box_free(stdscr, dlg);
707                                         free(s);
708                                 }
709                 }
710         }
711 }
712
713 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
714 {
715         WINDOW *win;
716         t_Form *form;
717         char *s;
718         int n, is_ok;
719
720         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
721         box(win, 0, 0);
722
723         mvwaddstr(win, 0, 1, title);
724         form = form_crear(win);
725         form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3,T4,T5");
726         form_ejecutar(form, 1,1);
727
728         s = form_obtener_valor_char(form, "Tipo de archivo");
729         if (strcmp(s, "T1") == 0) n = T1;
730         if (strcmp(s, "T2") == 0) n = T2;
731         if (strcmp(s, "T3") == 0) n = T3;
732         if (strcmp(s, "T4") == 0) n = T4;
733         if (strcmp(s, "T5") == 0) n = T5;
734
735         form_destruir(form);
736
737         werase(win);
738         box(win, 0, 0);
739         wrefresh(win);
740
741         (*tipo) = n;
742         switch (n) {
743                 case T1:
744                         form = form_crear(win);
745                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
746                         is_ok = 0;
747                         do {
748                                 form_set_valor(form, "Tamaño de bloque", "");
749                                 form_ejecutar(form, 1,1);
750                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
751                         } while (!is_ok);
752                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
753                         form_destruir(form);
754                 break;
755                 case T2:
756                         break;
757                 case T3:
758                         if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
759                                 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
760                                 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
761                         }
762                         form = form_crear(win);
763                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
764                         if ((*tam_reg) != -1)
765                                 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
766                         is_ok = 0;
767                         do {
768                                 form_set_valor(form, "Tamaño de bloque", "");
769                                 if ((*tam_reg) != -1)
770                                         form_set_valor(form, "Tamaño de registro", "");
771                                 form_ejecutar(form, 1,1);
772                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
773                                 if ((*tam_reg) != -1) {
774                                         if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
775                                 }
776                         } while (!is_ok);
777                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
778                         if ((*tam_reg) != -1)
779                                 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
780                         form_destruir(form);
781                         break;
782                 case T4:
783                 case T5:
784                         form = form_crear(win);
785                         form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
786                         is_ok = 0;
787                         do {
788                                 form_set_valor(form, "Tamaño de bloque", "");
789                                 form_ejecutar(form, 1,1);
790                                 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
791                         } while (!is_ok);
792                         (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
793                         form_destruir(form);
794         }
795         werase(win);
796         wrefresh(win);
797         delwin(win);
798 }
799
800 void ver_estadisticas(EMUFS *fp)
801 {
802         WINDOW *win;
803         EMUFS_Estadisticas stats;
804         char s[40];
805         int i=3;
806
807         stats = fp->leer_estadisticas(fp);
808
809         win = newwin(LINES-4, COLS-2, 2, 1);
810         curs_set(0);
811
812         wattron(win, COLOR_PAIR(COLOR_YELLOW));
813         wattron(win, A_BOLD);
814         mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
815         wattroff(win, A_BOLD);
816         wattroff(win, COLOR_PAIR(COLOR_YELLOW));
817         switch (fp->tipo) {
818                 case T1:
819                         waddstr(win, "Registro long. variable con bloque parametrizado");
820                         wattron(win, A_BOLD);
821                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
822                         wattroff(win, A_BOLD);
823                         sprintf(s, "%lu bytes", fp->tam_bloque);
824                         waddstr(win, s);
825                 break;
826                 case T2:
827                         waddstr(win, "Registro long. variable sin bloques");
828                 break;
829                 case T3:
830                         waddstr(win, "Registro long. fija con bloque parametrizado");
831                         wattron(win, A_BOLD);
832                         mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
833                         wattroff(win, A_BOLD);
834                         sprintf(s, "%lu bytes", fp->tam_bloque);
835                         waddstr(win, s);
836                         wattron(win, A_BOLD);
837                         mvwaddstr(win, i++, 1, "Tamaño de registro : ");
838                         wattroff(win, A_BOLD);
839                         sprintf(s, "%lu bytes", fp->tam_reg);
840                         waddstr(win, s);
841         }
842
843
844         wattron(win, A_BOLD);
845         mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
846         wattroff(win, A_BOLD);
847         sprintf(s, "%lu/%lu bytes (%.2f %%)", 
848                         stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
849                         (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
850         waddstr(win, s);
851         
852         wattron(win, A_BOLD);
853         mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
854         wattroff(win, A_BOLD);
855         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);
856         waddstr(win, s);
857
858         wattron(win, A_BOLD);
859         mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
860         wattroff(win, A_BOLD);
861         sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
862         waddstr(win, s);
863         
864         wattron(win, A_BOLD);
865         mvwaddstr(win, i++, 1, "Media de espacio libre : ");
866         wattroff(win, A_BOLD);
867         sprintf(s, "%lu bytes/bloque", stats.media_fs);
868         waddstr(win, s);
869
870         wattron(win, A_BOLD);
871         mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
872         wattroff(win, A_BOLD);
873         sprintf(s, "%lu bytes", stats.max_fs);
874         waddstr(win, s);
875
876         wattron(win, A_BOLD);
877         mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
878         wattroff(win, A_BOLD);
879         sprintf(s, "%lu bytes", stats.min_fs);
880         waddstr(win, s);
881
882         wattron(win, A_BOLD);
883         mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
884         wattroff(win, A_BOLD);
885         sprintf(s, "%lu bytes", stats.tam_archivo);
886         waddstr(win, s);
887         
888         wattron(win, A_BOLD);
889         mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
890         wattroff(win, A_BOLD);
891         sprintf(s, "%lu bytes", stats.tam_archivos_aux);
892         waddstr(win, s);
893         
894         wattron(win, A_BOLD);
895         mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
896         wattroff(win, A_BOLD);
897         sprintf(s, "%lu bytes", stats.tam_info_control_dat);
898         waddstr(win, s);
899         
900         if ((fp->tipo == T1) || (fp->tipo == T3)) {
901                 wattron(win, A_BOLD);
902                 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
903                 wattroff(win, A_BOLD);
904                 sprintf(s, "%lu", stats.cant_bloques);
905                 waddstr(win, s);
906         }
907         
908         wattron(win, A_BOLD);
909         mvwaddstr(win, i++, 1, "Cant. Registros : ");
910         wattroff(win, A_BOLD);
911         sprintf(s, "%lu", stats.cant_registros);
912         waddstr(win, s);
913         
914         wattron(win, A_BOLD);
915         mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
916         wattroff(win, A_BOLD);
917         
918         wattron(win, A_BLINK);
919         mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
920         wattroff(win, A_BLINK);
921
922         wrefresh(win);
923
924         getch();
925         werase(win);
926         wrefresh(win);
927         delwin(win);
928 }
929
930 char *preguntar_file()
931 {
932         WINDOW *win;
933         t_Form *form;
934         char *s, *t;
935
936         win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
937         box(win, 0, 0);
938
939         form = form_crear(win);
940         form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
941         form_ejecutar(form, 1,1);
942
943         s = form_obtener_valor_char(form, "Nombre de archivo");
944
945         if (strlen(s) == 0) {
946                 form_destruir(form);
947                 return NULL;
948         }
949         t = (char *)malloc(sizeof(char*)*(strlen(s)+1));
950         strcpy(t, s);
951         form_destruir(form);
952         return t;
953 }
954