13 #include "articulos.h"
20 static void finish(int sig);
23 void menu_articulos();
25 void menu_mantenimiento();
26 void menu_estadisticas();
27 void menu_ver_registros();
28 void menu_ver_bloques();
29 void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg);
31 void ver_estadisticas(EMUFS *fp);
34 PARAM_OK, /* Parametros estan ok */
35 NO_ART_FILE, /* No se especifico nombre de archivo Articulos */
36 NO_FACT_FILE, /* No se especifico nombre de archivo Facturas */
37 SHOW_HELP, /* Mostrar ayuda encontrado */
38 TIPO_NO_DEFINIDO, /* No se definio tipo de archivo */
39 TIPO_INVALIDO, /* El valor de tipo de archivo no es valido */
40 BLOQUE_NO_DEFINIDO, /* No se especifico tamaño de bloque */
41 NULL_BLOCK_FOUND /* Tamaño de bloque <= 0!!! */
45 int xml_fact; /* Pos en argv del archivo XML a usar para facturas */
46 int xml_art; /* Pos en argv del archivo XML a usar para articulos */
47 char tipo_arch_fact; /* Tipo de archivo para Facturas */
48 char tipo_arch_art; /* Tipo de archivo para Articulos */
49 EMUFS_BLOCK_SIZE tam_bloque_fact;
50 EMUFS_BLOCK_SIZE tam_bloque_art;
53 /* Verifica Argumentos */
54 t_Param param_ok(int argc, char *argv[])
57 for(i=1; i<argc; i++) {
58 if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
60 if (strcmp(argv[i], "-a") == 0) { /* Articulos! */
62 if (i >= argc) return SHOW_HELP;
63 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
64 /* Luego del archivo XML debe seguir el tipo */
67 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
68 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
69 return BLOQUE_NO_DEFINIDO;
70 parametros.tipo_arch_art = n;
72 if ((i+2) >= argc) return NULL_BLOCK_FOUND;
73 parametros.tam_bloque_art = atoi(argv[i+2]);
74 if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
76 parametros.xml_art = i;
78 /* Ops, no hay mas parametros */
79 return TIPO_NO_DEFINIDO;
86 if (strcmp(argv[i], "-f") == 0) { /* Facturas! */
88 if (i >= argc) return SHOW_HELP;
89 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
90 /* Luego del archivo XML debe seguir el tipo */
93 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
94 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
95 return BLOQUE_NO_DEFINIDO;
96 parametros.tipo_arch_fact = n;
98 parametros.tam_bloque_fact = atoi(argv[i+2]);
99 if (parametros.tam_bloque_fact <= 0) return NULL_BLOCK_FOUND;
101 parametros.xml_fact = i;
103 /* Ops, no hay mas parametros */
104 return TIPO_NO_DEFINIDO;
115 void print_help(char *s)
117 printf("EMUFS - 1v0\n");
118 printf("Modo de uso : %s [-[f|a] <archivo articulos XML> tipo [tamaño bloque]] \n", s);
119 printf(" -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
120 printf(" -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
121 printf(" 'tipo' es el modo de archivo. Siendo :\n");
122 printf(" 1 - Registros long. variables con bloque parametrizado\n");
123 printf(" 2 - Registros long. variables sin bloque\n");
124 printf(" 3 - Registros long fija con bloque parametrizado\n");
125 printf(" tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
128 int main(int argc, char *argv[])
133 parametros.xml_art = parametros.xml_fact = -1;
134 switch (param_ok(argc, argv)) {
138 case TIPO_NO_DEFINIDO:
139 printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
141 case BLOQUE_NO_DEFINIDO:
142 printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
145 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
146 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
147 printf("\t2 - Archivo de registros variables sin bloques.\n");
148 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
151 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");
154 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");
156 case NULL_BLOCK_FOUND:
157 printf("Error de parámerto.\nHa ingresado un valor nulo como tamaño de bloque.\n");
164 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
165 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
166 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
167 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
168 printf("el programa de la siguiente manera :\n");
169 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
170 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
171 printf("visualizacion de la aplicacion.\n");
172 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
177 signal(SIGINT, finish);
179 keypad(stdscr, TRUE);
183 /* Si se soporta color, los inicializo */
186 /* Simple color assignment, often all we need. */
187 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
188 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
189 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
190 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
191 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
192 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
193 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
194 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
197 /* Verifico un tamaño minimo de consola */
198 if ((LINES < 25) || (COLS < 80)) {
200 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
204 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
205 box(stdscr, ACS_VLINE, ACS_HLINE);
206 /* Ventana, Y, X, Texto */
207 mvwaddstr(stdscr, 1, 1, "EMUFS");
208 attron(COLOR_PAIR(2));
209 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
210 attroff(COLOR_PAIR(2));
213 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
215 if (parametros.xml_art != -1) {
216 art_cargar(argv[parametros.xml_art], parametros.tipo_arch_art, parametros.tam_bloque_art);
218 art_cargar(NULL, -1, -1);
220 if (parametros.xml_fact != -1) {
221 fact_cargar(argv[parametros.xml_fact], parametros.tipo_arch_fact, parametros.tam_bloque_fact);
223 fact_cargar(NULL, -1, -1);
226 msg_box_free(stdscr, dialog);
228 /* CICLO PRINCIPAL DE LA APLICACION */
229 while ((c = main_menu()) != -1) {
238 menu_ver_registros();
247 menu_mantenimiento();
267 MENU_OPCION("Alta", "Crear una nueva factura."),
268 MENU_OPCION("Baja", "Elimina una factura existente."),
269 MENU_OPCION("Modificacion", "Modifica una factura existente."),
270 MENU_OPCION("Volver", "Volver al menu anterior.")
274 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
283 fact_modificar(NULL);
288 void menu_articulos()
291 MENU_OPCION("Alta", "Crear un nuevo articulo."),
292 MENU_OPCION("Baja", "Elimina un articulo existente."),
293 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
294 MENU_OPCION("Volver", "Volver al menu anterior.")
298 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
313 void menu_estadisticas()
316 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
317 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
318 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
319 MENU_OPCION("Volver", "Ir al menu anterior.")
323 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
326 ver_estadisticas( art_get_lst()->fp );
329 ver_estadisticas( fact_get_lst()->fp );
332 ver_estadisticas( fact_get_lst()->fp_texto );
337 void menu_ver_registros()
340 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
341 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
342 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
343 MENU_OPCION("Volver", "Ir al menu anterior.")
348 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
349 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
350 ver_registros(dialog, COLS-2, LINES-4, opt);
358 void menu_ver_bloques()
361 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
362 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
363 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
364 MENU_OPCION("Volver", "Ir al menu anterior.")
369 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
372 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
373 ver_bloques(dialog, COLS-2, LINES-4, 0);
380 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
381 ver_bloques(dialog, COLS-2, LINES-4, 1);
388 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
389 ver_bloques(dialog, COLS-2, LINES-4, 2);
401 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
402 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
403 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
404 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
405 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
406 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
407 MENU_OPCION("Salir", "Salir del sistema.")
410 return menu_ejecutar(mi_menu, 7, "Menu Principal");
414 static void finish(int sig)
418 /* do your non-curses wrapup here */
422 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
428 va_start(ap, format);
429 vsprintf(txt, format, ap);
434 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
436 mvwaddstr(dialog, 1, 1, txt);
442 void msg_box_free(WINDOW *padre, WINDOW *win)
451 void menu_mantenimiento()
454 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
455 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
456 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
457 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
458 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
459 MENU_OPCION("Cambiar tipo Archivo Notas","Permite cambiar el tipo del archivo."),
460 MENU_OPCION("Volver", "Volver al menu anterior.")
464 int nuevo_tam_registro, nuevo_tam_bloque;
468 while ((opt = menu_ejecutar(mi_menu, 7, "Menu Mantenimiento")) != 6) {
471 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
472 art_get_lst()->fp->compactar(art_get_lst()->fp);
473 msg_box_free(stdscr, dlg);
476 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
477 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
478 msg_box_free(stdscr, dlg);
481 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
482 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
483 msg_box_free(stdscr, dlg);
486 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
487 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
488 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
489 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
490 msg_box_free(stdscr, dlg);
493 nuevo_tam_registro = 0;
494 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
495 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
496 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
497 msg_box_free(stdscr, dlg);
500 nuevo_tam_registro = -2;
501 preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
506 void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg)
513 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
516 form = form_crear(win);
517 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
518 form_ejecutar(form, 1,1);
520 s = form_obtener_valor_char(form, "Tipo de archivo");
521 if (strcmp(s, "T1") == 0) n = T1;
522 if (strcmp(s, "T2") == 0) n = T2;
523 if (strcmp(s, "T3") == 0) n = T3;
534 form = form_crear(win);
535 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
538 form_set_valor(form, "Tamaño de bloque", "");
539 form_ejecutar(form, 1,1);
540 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
542 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
548 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
549 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
550 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
552 form = form_crear(win);
553 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
554 if ((*tam_reg) != -1)
555 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
558 form_set_valor(form, "Tamaño de bloque", "");
559 if ((*tam_reg) != -1)
560 form_set_valor(form, "Tamaño de registro", "");
561 form_ejecutar(form, 1,1);
562 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
563 if ((*tam_reg) != -1) {
564 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
567 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
568 if ((*tam_reg) != -1)
569 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
577 void ver_estadisticas(EMUFS *fp)
580 EMUFS_Estadisticas stats;
584 stats = fp->leer_estadisticas(fp);
586 win = newwin(LINES-4, COLS-2, 2, 1);
589 wattron(win, COLOR_PAIR(COLOR_YELLOW));
590 wattron(win, A_BOLD);
591 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
592 wattroff(win, A_BOLD);
593 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
596 waddstr(win, "Registro long. variable con bloque parametrizado");
597 wattron(win, A_BOLD);
598 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
599 wattroff(win, A_BOLD);
600 sprintf(s, "%lu bytes", fp->tam_bloque);
604 waddstr(win, "Registro long. variable sin bloques");
607 waddstr(win, "Registro long. fija con bloque parametrizado");
608 wattron(win, A_BOLD);
609 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
610 wattroff(win, A_BOLD);
611 sprintf(s, "%lu bytes", fp->tam_bloque);
613 wattron(win, A_BOLD);
614 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
615 wattroff(win, A_BOLD);
616 sprintf(s, "%lu bytes", fp->tam_reg);
620 if ((fp->tipo == T1) || (fp->tipo == T3)) {
621 wattron(win, A_BOLD);
622 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
623 wattroff(win, A_BOLD);
624 sprintf(s, "%lu", stats.cant_bloques);
628 wattron(win, A_BOLD);
629 mvwaddstr(win, i++, 1, "Cant. Registros : ");
630 wattroff(win, A_BOLD);
631 sprintf(s, "%lu", stats.cant_registros);
634 wattron(win, A_BOLD);
635 mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
636 wattroff(win, A_BOLD);
637 sprintf(s, "%lu bytes", stats.tam_archivo);
640 wattron(win, A_BOLD);
641 mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
642 wattroff(win, A_BOLD);
643 sprintf(s, "%lu bytes", stats.tam_archivos_aux);
646 wattron(win, A_BOLD);
647 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
648 wattroff(win, A_BOLD);
649 sprintf(s, "%lu bytes (%.2f %%)", stats.tam_archivo - stats.tam_info_control_dat, (stats.tam_archivo-stats.tam_info_control_dat)*100.0f/(float)stats.tam_archivo);
652 wattron(win, A_BOLD);
653 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos de control : ");
654 wattroff(win, A_BOLD);
655 sprintf(s, "%lu bytes (%.2f %%)", stats.tam_info_control_dat, stats.tam_info_control_dat*100.0f/(float)stats.tam_archivo);
658 wattron(win, A_BOLD);
659 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
660 wattroff(win, A_BOLD);
661 sprintf(s, "%lu bytes/bloque", stats.media_fs);
664 wattron(win, A_BOLD);
665 mvwaddstr(win, i++, 1, "Espacio Libre : ");
666 wattroff(win, A_BOLD);
667 sprintf(s, "%lu bytes", stats.total_fs);
670 wattron(win, A_BOLD);
671 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
672 wattroff(win, A_BOLD);
673 sprintf(s, "%lu bytes", stats.max_fs);
676 wattron(win, A_BOLD);
677 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
678 wattroff(win, A_BOLD);
679 sprintf(s, "%lu bytes", stats.min_fs);
683 wattron(win, A_BLINK);
684 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
685 wattroff(win, A_BLINK);