12 #include "articulos.h"
15 #include "registros.h"
19 static void finish(int sig);
22 void menu_articulos();
24 void menu_mantenimiento();
25 void menu_estadisticas();
26 void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg);
28 void ver_estadisticas(EMUFS *fp);
30 /* cuadro de msg. w y h son de la ventana padre */
31 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
32 void msg_box_free(WINDOW *padre, WINDOW *win);
34 typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param;
36 /* Verifica Argumentos */
37 t_Param param_ok(int argc, char *argv[])
40 for(i=1; i<argc; i++) {
41 if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
43 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
44 /* Luego del archivo XML debe seguir el tipo */
47 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
48 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
49 return BLOQUE_NO_DEFINIDO;
51 /* Ops, no hay mas parametros */
52 return TIPO_NO_DEFINIDO;
60 void print_help(char *s)
62 printf("EMUFS - 1v0\n");
63 printf("Modo de uso : %s [<archivo articulos XML> tipo=[1|2|3]]\n", s);
64 printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo");
65 printf(" de archivo a crear, siendo 1, 2, 3\n");
68 int main(int argc, char *argv[])
73 switch (param_ok(argc, argv)) {
77 case TIPO_NO_DEFINIDO:
78 printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
80 case BLOQUE_NO_DEFINIDO:
81 printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
84 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
85 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
86 printf("\t2 - Archivo de registros variables sin bloques.\n");
87 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
94 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
95 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
96 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
97 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
98 printf("el programa de la siguiente manera :\n");
99 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
100 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
101 printf("visualizacion de la aplicacion.\n");
102 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
107 signal(SIGINT, finish);
109 keypad(stdscr, TRUE);
113 /* Si se soporta color, los inicializo */
116 /* Simple color assignment, often all we need. */
117 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
118 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
119 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
120 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
121 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
122 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
123 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
124 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
127 /* Verifico un tamaño minimo de consola */
128 if ((LINES < 25) || (COLS < 80)) {
130 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
134 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
135 box(stdscr, ACS_VLINE, ACS_HLINE);
136 /* Ventana, Y, X, Texto */
137 mvwaddstr(stdscr, 1, 1, "EMUFS");
138 attron(COLOR_PAIR(2));
139 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
140 attroff(COLOR_PAIR(2));
143 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
145 art_cargar(argv[1], atoi(argv[2]), atoi(argv[3]));
146 if (!fact_cargar("facturas.xml", 1, 400))
147 fprintf(stderr, "ERROR CARGANDO FACTURAS\n");
149 art_cargar(NULL, -1, -1);
151 msg_box_free(stdscr, dialog);
153 /* CICLO PRINCIPAL DE LA APLICACION */
154 while ((c = main_menu()) != -1) {
163 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
164 ver_registros(dialog, COLS-2, LINES-4);
174 menu_mantenimiento();
194 MENU_OPCION("Alta", "Crear una nueva factura."),
195 MENU_OPCION("Baja", "Elimina una factura existente."),
196 MENU_OPCION("Modificacion", "Modifica una factura existente."),
197 MENU_OPCION("Volver", "Volver al menu anterior.")
201 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
210 fact_modificar(NULL);
215 void menu_articulos()
218 MENU_OPCION("Alta", "Crear un nuevo articulo."),
219 MENU_OPCION("Baja", "Elimina un articulo existente."),
220 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
221 MENU_OPCION("Volver", "Volver al menu anterior.")
225 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
240 void menu_estadisticas()
243 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
244 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
245 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
246 MENU_OPCION("Volver", "Ir al menu anterior.")
250 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
253 ver_estadisticas( art_get_lst()->fp );
256 ver_estadisticas( fact_get_lst()->fp );
259 ver_estadisticas( fact_get_lst()->fp_texto );
267 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
268 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
269 MENU_OPCION("Ver Registros","Ver registros/bloques de archivo Articulos."),
270 MENU_OPCION("Ver Facturas","Ver registros/bloques de archivo Facturas."),
271 MENU_OPCION("Ver Notas","Ver registros/bloques de archivo Notas."),
272 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
273 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
274 MENU_OPCION("Salir", "Salir del sistema.")
277 return menu_ejecutar(mi_menu, 8, "Menu Principal");
281 static void finish(int sig)
285 /* do your non-curses wrapup here */
289 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
295 va_start(ap, format);
296 vsprintf(txt, format, ap);
301 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
303 mvwaddstr(dialog, 1, 1, txt);
309 void msg_box_free(WINDOW *padre, WINDOW *win)
318 void menu_mantenimiento()
321 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
322 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
323 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
324 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
325 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
326 MENU_OPCION("Cambiar tipo Archivo Notas","Permite cambiar el tipo del archivo."),
327 MENU_OPCION("Volver", "Volver al menu anterior.")
331 int nuevo_tam_registro, nuevo_tam_bloque;
335 while ((opt = menu_ejecutar(mi_menu, 7, "Menu Mantenimiento")) != 6) {
338 art_get_lst()->fp->compactar(art_get_lst()->fp);
341 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
344 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
347 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
348 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
349 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
350 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
351 msg_box_free(stdscr, dlg);
354 nuevo_tam_registro = 0;
355 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
358 nuevo_tam_registro = -2;
359 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
364 void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg)
371 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
374 form = form_crear(win);
375 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
376 form_ejecutar(form, 1,1);
378 s = form_obtener_valor_char(form, "Tipo de archivo");
379 if (strcmp(s, "T1") == 0) n = T1;
380 if (strcmp(s, "T2") == 0) n = T2;
381 if (strcmp(s, "T3") == 0) n = T3;
392 form = form_crear(win);
393 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
396 form_set_valor(form, "Tamaño de bloque", "");
397 form_ejecutar(form, 1,1);
398 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
400 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
406 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
407 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
408 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
410 form = form_crear(win);
411 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
412 if ((*tam_reg) != -1)
413 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
416 form_set_valor(form, "Tamaño de bloque", "");
417 if ((*tam_reg) != -1)
418 form_set_valor(form, "Tamaño de registro", "");
419 form_ejecutar(form, 1,1);
420 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
421 if ((*tam_reg) != -1) {
422 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
425 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
426 if ((*tam_reg) != -1)
427 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
435 void ver_estadisticas(EMUFS *fp)
438 EMUFS_Estadisticas stats;
442 stats = fp->leer_estadisticas(fp);
444 win = newwin(LINES-4, COLS-2, 2, 1);
446 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
449 waddstr(win, "Registro long. variable con bloque parametrizado");
452 waddstr(win, "Registro long. variable sin bloques");
455 waddstr(win, "Registro long. fija con bloque parametrizado");
458 mvwaddstr(win, i++, 1, "Cant. Registros : ");
459 sprintf(s, "%lu", stats.tam_archivo);
462 mvwaddstr(win, i++, 1, "Tamaño de Archivo (bytes) : ");
463 sprintf(s, "%lu", stats.tam_archivo_bytes);
466 mvwaddstr(win, i++, 1, "Tamaño de Info de Control (bytes) : ");
467 sprintf(s, "%lu", stats.info_control);
470 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
471 sprintf(s, "%lu", stats.media_fs);
474 mvwaddstr(win, i++, 1, "Espacio Libre : ");
475 sprintf(s, "%lu", stats.total_fs);
478 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
479 sprintf(s, "%lu", stats.max_fs);
482 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
483 sprintf(s, "%lu", stats.min_fs);
486 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
487 sprintf(s, "%lu", stats.cant_bloques);