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);
35 PARAM_OK, /* Parametros estan ok */
36 NO_ART_FILE, /* No se especifico nombre de archivo Articulos */
37 NO_FACT_FILE, /* No se especifico nombre de archivo Facturas */
38 SHOW_HELP, /* Mostrar ayuda encontrado */
39 TIPO_NO_DEFINIDO, /* No se definio tipo de archivo */
40 TIPO_INVALIDO, /* El valor de tipo de archivo no es valido */
41 BLOQUE_NO_DEFINIDO, /* No se especifico tamaño de bloque */
42 NULL_BLOCK_FOUND /* Tamaño de bloque <= 0!!! */
46 int xml_fact; /* Pos en argv del archivo XML a usar para facturas */
47 int xml_art; /* Pos en argv del archivo XML a usar para articulos */
48 char tipo_arch_fact; /* Tipo de archivo para Facturas */
49 char tipo_arch_art; /* Tipo de archivo para Articulos */
50 EMUFS_BLOCK_SIZE tam_bloque_fact;
51 EMUFS_BLOCK_SIZE tam_bloque_art;
54 /* Verifica Argumentos */
55 t_Param param_ok(int argc, char *argv[])
58 for(i=1; i<argc; i++) {
59 if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
61 if (strcmp(argv[i], "-a") == 0) { /* Articulos! */
63 if (i >= argc) return SHOW_HELP;
64 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
65 /* Luego del archivo XML debe seguir el tipo */
68 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
69 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
70 return BLOQUE_NO_DEFINIDO;
71 parametros.tipo_arch_art = n;
72 parametros.tam_bloque_art = atoi(argv[i+2]);
73 fprintf(stderr, "%d\n", parametros.tam_bloque_art);
74 if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
75 parametros.xml_art = i;
77 /* Ops, no hay mas parametros */
78 return TIPO_NO_DEFINIDO;
85 if (strcmp(argv[i], "-f") == 0) { /* Facturas! */
87 if (i >= argc) return SHOW_HELP;
88 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
89 /* Luego del archivo XML debe seguir el tipo */
92 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
93 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
94 return BLOQUE_NO_DEFINIDO;
95 parametros.tipo_arch_fact = n;
96 parametros.tam_bloque_fact = atoi(argv[i+2]);
97 if (parametros.tam_bloque_fact <= 0) return NULL_BLOCK_FOUND;
98 parametros.xml_fact = i;
100 /* Ops, no hay mas parametros */
101 return TIPO_NO_DEFINIDO;
112 void print_help(char *s)
114 printf("EMUFS - 1v0\n");
115 printf("Modo de uso : %s [-[f|a] <archivo articulos XML> tipo [tamaño bloque]] \n", s);
116 printf(" -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
117 printf(" -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
118 printf(" 'tipo' es el modo de archivo. Siendo :\n");
119 printf(" 1 - Registros long. variables con bloque parametrizado\n");
120 printf(" 2 - Registros long. variables sin bloque\n");
121 printf(" 3 - Registros long fija con bloque parametrizado\n");
122 printf(" tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
125 int main(int argc, char *argv[])
130 parametros.xml_art = parametros.xml_fact = -1;
131 switch (param_ok(argc, argv)) {
135 case TIPO_NO_DEFINIDO:
136 printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
138 case BLOQUE_NO_DEFINIDO:
139 printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
142 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
143 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
144 printf("\t2 - Archivo de registros variables sin bloques.\n");
145 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
148 printf("Falta parámetro requerido.\nHa utilizado el modificador -a para crear los articulos a partir de un XML pero no ha especificado ningún archivo XML.\n");
151 printf("Falta parámetro requerido.\nHa utilizado el modificador -f para crear las facturas a partir de un XML pero no ha especificado ningún archivo XML.\n");
153 case NULL_BLOCK_FOUND:
154 printf("Error de parámerto.\nHa ingresado un valor nulo como tamaño de bloque.\n");
161 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
162 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
163 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
164 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
165 printf("el programa de la siguiente manera :\n");
166 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
167 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
168 printf("visualizacion de la aplicacion.\n");
169 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
174 signal(SIGINT, finish);
176 keypad(stdscr, TRUE);
180 /* Si se soporta color, los inicializo */
183 /* Simple color assignment, often all we need. */
184 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
185 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
186 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
187 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
188 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
189 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
190 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
191 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
194 /* Verifico un tamaño minimo de consola */
195 if ((LINES < 25) || (COLS < 80)) {
197 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
201 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
202 box(stdscr, ACS_VLINE, ACS_HLINE);
203 /* Ventana, Y, X, Texto */
204 mvwaddstr(stdscr, 1, 1, "EMUFS");
205 attron(COLOR_PAIR(2));
206 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
207 attroff(COLOR_PAIR(2));
210 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
212 if (parametros.xml_art != -1) {
213 art_cargar(argv[parametros.xml_art], parametros.tipo_arch_art, parametros.tam_bloque_art);
215 art_cargar(NULL, -1, -1);
217 if (parametros.xml_fact != -1) {
218 fact_cargar(argv[parametros.xml_fact], parametros.tipo_arch_fact, parametros.tam_bloque_fact);
220 fact_cargar(NULL, -1, -1);
223 msg_box_free(stdscr, dialog);
225 /* CICLO PRINCIPAL DE LA APLICACION */
226 while ((c = main_menu()) != -1) {
235 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
236 ver_registros(dialog, COLS-2, LINES-4);
246 menu_mantenimiento();
266 MENU_OPCION("Alta", "Crear una nueva factura."),
267 MENU_OPCION("Baja", "Elimina una factura existente."),
268 MENU_OPCION("Modificacion", "Modifica una factura existente."),
269 MENU_OPCION("Volver", "Volver al menu anterior.")
273 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
282 fact_modificar(NULL);
287 void menu_articulos()
290 MENU_OPCION("Alta", "Crear un nuevo articulo."),
291 MENU_OPCION("Baja", "Elimina un articulo existente."),
292 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
293 MENU_OPCION("Volver", "Volver al menu anterior.")
297 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
312 void menu_estadisticas()
315 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
316 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
317 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
318 MENU_OPCION("Volver", "Ir al menu anterior.")
322 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
325 ver_estadisticas( art_get_lst()->fp );
328 ver_estadisticas( fact_get_lst()->fp );
331 ver_estadisticas( fact_get_lst()->fp_texto );
339 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
340 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
341 MENU_OPCION("Ver Registros","Ver registros/bloques de archivo Articulos."),
342 MENU_OPCION("Ver Facturas","Ver registros/bloques de archivo Facturas."),
343 MENU_OPCION("Ver Notas","Ver registros/bloques de archivo Notas."),
344 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
345 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
346 MENU_OPCION("Salir", "Salir del sistema.")
349 return menu_ejecutar(mi_menu, 8, "Menu Principal");
353 static void finish(int sig)
357 /* do your non-curses wrapup here */
361 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
367 va_start(ap, format);
368 vsprintf(txt, format, ap);
373 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
375 mvwaddstr(dialog, 1, 1, txt);
381 void msg_box_free(WINDOW *padre, WINDOW *win)
390 void menu_mantenimiento()
393 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
394 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
395 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
396 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
397 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
398 MENU_OPCION("Cambiar tipo Archivo Notas","Permite cambiar el tipo del archivo."),
399 MENU_OPCION("Volver", "Volver al menu anterior.")
403 int nuevo_tam_registro, nuevo_tam_bloque;
407 while ((opt = menu_ejecutar(mi_menu, 7, "Menu Mantenimiento")) != 6) {
410 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
411 art_get_lst()->fp->compactar(art_get_lst()->fp);
412 msg_box_free(stdscr, dlg);
415 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
416 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
417 msg_box_free(stdscr, dlg);
420 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
421 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
422 msg_box_free(stdscr, dlg);
425 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
426 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
427 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
428 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
429 msg_box_free(stdscr, dlg);
432 nuevo_tam_registro = 0;
433 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
436 nuevo_tam_registro = -2;
437 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
442 void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg)
449 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
452 form = form_crear(win);
453 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
454 form_ejecutar(form, 1,1);
456 s = form_obtener_valor_char(form, "Tipo de archivo");
457 if (strcmp(s, "T1") == 0) n = T1;
458 if (strcmp(s, "T2") == 0) n = T2;
459 if (strcmp(s, "T3") == 0) n = T3;
470 form = form_crear(win);
471 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
474 form_set_valor(form, "Tamaño de bloque", "");
475 form_ejecutar(form, 1,1);
476 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
478 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
484 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
485 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
486 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
488 form = form_crear(win);
489 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
490 if ((*tam_reg) != -1)
491 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
494 form_set_valor(form, "Tamaño de bloque", "");
495 if ((*tam_reg) != -1)
496 form_set_valor(form, "Tamaño de registro", "");
497 form_ejecutar(form, 1,1);
498 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
499 if ((*tam_reg) != -1) {
500 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
503 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
504 if ((*tam_reg) != -1)
505 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
513 void ver_estadisticas(EMUFS *fp)
516 EMUFS_Estadisticas stats;
520 stats = fp->leer_estadisticas(fp);
522 win = newwin(LINES-4, COLS-2, 2, 1);
525 wattron(win, COLOR_PAIR(COLOR_YELLOW));
526 wattron(win, A_BOLD);
527 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
528 wattroff(win, A_BOLD);
529 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
532 waddstr(win, "Registro long. variable con bloque parametrizado");
533 wattron(win, A_BOLD);
534 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
535 wattroff(win, A_BOLD);
536 sprintf(s, "%lu bytes", fp->tam_bloque);
540 waddstr(win, "Registro long. variable sin bloques");
543 waddstr(win, "Registro long. fija con bloque parametrizado");
544 wattron(win, A_BOLD);
545 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
546 wattroff(win, A_BOLD);
547 sprintf(s, "%lu bytes", fp->tam_bloque);
549 wattron(win, A_BOLD);
550 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
551 wattroff(win, A_BOLD);
552 sprintf(s, "%lu bytes", fp->tam_reg);
556 wattron(win, A_BOLD);
557 mvwaddstr(win, i++, 1, "Cant. Registros : ");
558 wattroff(win, A_BOLD);
559 sprintf(s, "%lu", stats.tam_archivo);
562 wattron(win, A_BOLD);
563 mvwaddstr(win, i++, 1, "Tamaño de Archivo : ");
564 wattroff(win, A_BOLD);
565 sprintf(s, "%lu bytes", stats.tam_archivo_bytes);
568 wattron(win, A_BOLD);
569 mvwaddstr(win, i++, 1, "Tamaño de Info de Control : ");
570 wattroff(win, A_BOLD);
571 sprintf(s, "%lu bytes", stats.info_control);
574 wattron(win, A_BOLD);
575 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
576 wattroff(win, A_BOLD);
577 sprintf(s, "%lu bytes/bloque", stats.media_fs);
580 wattron(win, A_BOLD);
581 mvwaddstr(win, i++, 1, "Espacio Libre : ");
582 wattroff(win, A_BOLD);
583 sprintf(s, "%lu bytes", stats.total_fs);
586 wattron(win, A_BOLD);
587 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
588 wattroff(win, A_BOLD);
589 sprintf(s, "%lu bytes", stats.max_fs);
592 wattron(win, A_BOLD);
593 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
594 wattroff(win, A_BOLD);
595 sprintf(s, "%lu bytes", stats.min_fs);
598 wattron(win, A_BOLD);
599 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
600 wattroff(win, A_BOLD);
601 sprintf(s, "%lu", stats.cant_bloques);
604 wattron(win, A_BLINK);
605 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
606 wattroff(win, A_BLINK);