12 #include "articulos.h"
16 #include "tree_viewer.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(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
30 char *preguntar_file();
32 void ver_estadisticas(EMUFS *fp);
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!!! */
45 void print_help(char *s)
47 printf("EMUFS - 1v0\n");
48 printf("Modo de uso :%s -a <archivo XML> tipo -f <archivo XML> tipo [tam_bloque] tipo_n [tam_bloque_n]\n", s);
49 printf(" -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
50 printf(" tipo_n == Tipo de archivo para el archivo de notas\n");
51 printf(" tam_bloque_n == Tamaño de bloque para el archivo de notas (si corresponde)\n");
52 printf(" -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
53 printf(" 'tipo' es el modo de archivo. Siendo :\n");
54 printf(" 1 - Registros long. variables con bloque parametrizado\n");
55 printf(" 2 - Registros long. variables sin bloque\n");
56 printf(" 3 - Registros long fija con bloque parametrizado\n");
57 printf(" tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
60 void leer_param_art(t_Parametros *param, xmlNode *padre)
64 node = padre->children;
66 if (node->type == XML_ELEMENT_NODE) {
67 if (strcmp(node->name, "fuente")==0) {
68 strcpy(param->xml_art, XML_GET_CONTENT(node->children));
69 } else if (strcmp(node->name, "datos")==0) {
70 tmp = xml_get_prop(node, "tipo");
71 param->tipo_arch_art = atoi(tmp)-1;
73 tmp = xml_get_prop(node, "bloque");
74 param->tam_bloque_art = atoi(tmp);
82 void leer_param_fac(t_Parametros *param, xmlNode *padre)
86 nodo = padre->children;
88 if (nodo->type == XML_ELEMENT_NODE) {
89 if (strcmp(nodo->name, "fuente")==0) {
90 strcpy(param->xml_fact, XML_GET_CONTENT(nodo->children));
91 } else if (strcmp(nodo->name, "datos")==0) {
92 tmp = xml_get_prop(nodo, "tipo");
93 param->tipo_arch_fact = atoi(tmp)-1;
95 tmp = xml_get_prop(nodo, "bloque");
96 param->tam_bloque_fact = atoi(tmp);
98 } else if (strcmp(nodo->name, "datos_notas")==0) {
99 tmp = xml_get_prop(nodo, "tipo");
100 param->tipo_arch_nota = atoi(tmp)-1;
102 tmp = xml_get_prop(nodo, "bloque");
103 param->tam_bloque_nota = atoi(tmp);
111 void param_xml(char *s, t_Parametros *param)
114 xmlNode *node, *inicio;
116 document = xmlReadFile(s, NULL,0);
117 if (document == NULL) {
121 node = xmlDocGetRootElement(document);
122 /* Busco el TAG principal "EMUFS" */
124 if (node->type == XML_ELEMENT_NODE) {
126 if (strcmp(node->name, "emufs") == 0) {
127 inicio = node->children;
133 if (inicio == NULL) {
134 PERR("NO ENCONTRE TAG PRINCIPAL");
135 xmlFreeDoc(document);
142 if (node->type == XML_ELEMENT_NODE) {
143 if (strcmp(node->name, "articulos")==0) {
144 leer_param_art(param, node);
145 } else if (strcmp(node->name, "facturas")==0) {
146 leer_param_fac(param, node);
153 int main(int argc, char *argv[])
156 t_Parametros parametros;
162 param_xml(argv[1], ¶metros);
165 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
166 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
167 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
168 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
169 printf("el programa de la siguiente manera :\n");
170 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
171 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
172 printf("visualizacion de la aplicacion.\n");
173 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
178 signal(SIGINT, finish);
180 keypad(stdscr, TRUE);
184 /* Si se soporta color, los inicializo */
187 /* Simple color assignment, often all we need. */
188 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
189 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
190 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
191 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
192 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
193 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
194 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
195 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
198 /* Verifico un tamaño minimo de consola */
199 if ((LINES < 25) || (COLS < 80)) {
201 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
205 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
206 box(stdscr, ACS_VLINE, ACS_HLINE);
207 /* Ventana, Y, X, Texto */
208 mvwaddstr(stdscr, 1, 1, "EMUFS");
209 attron(COLOR_PAIR(2));
210 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
211 attroff(COLOR_PAIR(2));
214 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
216 /* if (parametros.xml_art != -1) {*/
217 art_cargar(¶metros);
221 if (parametros.xml_fact != -1) {*/
222 fact_cargar(¶metros);
227 msg_box_free(stdscr, dialog);
242 MENU_OPCION("Alta", "Crear una nueva factura."),
243 MENU_OPCION("Baja", "Elimina una factura existente."),
244 MENU_OPCION("Modificacion", "Modifica una factura existente."),
245 MENU_OPCION("Consultas", "Consulta varias de articulo."),
246 MENU_OPCION("Volver", "Volver al menu anterior.")
250 while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
259 fact_modificar(NULL);
261 fact_consultas(NULL);
266 void menu_articulos()
269 MENU_OPCION("Alta", "Crear un nuevo articulo."),
270 MENU_OPCION("Baja", "Elimina un articulo existente."),
271 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
272 MENU_OPCION("Consultas", "Consulta varias de articulo."),
273 MENU_OPCION("Volver", "Volver al menu anterior.")
277 while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
295 void menu_estadisticas()
298 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
299 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
300 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
301 MENU_OPCION("Volver", "Ir al menu anterior.")
305 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
308 ver_estadisticas( art_get_lst()->fp );
311 ver_estadisticas( fact_get_lst()->fp );
314 ver_estadisticas( fact_get_lst()->fp_texto );
319 void menu_ver_registros()
322 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
323 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
324 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
325 MENU_OPCION("Volver", "Ir al menu anterior.")
330 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
331 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
332 ver_registros(dialog, COLS-2, LINES-4, opt);
340 void menu_ver_bloques()
343 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
344 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
345 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
346 MENU_OPCION("Volver", "Ir al menu anterior.")
351 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
354 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
355 ver_bloques(dialog, COLS-2, LINES-4, 0);
362 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
363 ver_bloques(dialog, COLS-2, LINES-4, 1);
370 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
371 ver_bloques(dialog, COLS-2, LINES-4, 2);
385 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
386 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
387 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
388 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
389 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
390 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
391 MENU_OPCION("DEBUG", "Debug de Arbol B"),
392 MENU_OPCION("Salir", "Salir del sistema.")
395 while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
404 menu_ver_registros();
413 menu_mantenimiento();
418 win = newwin(h, w, 1, 1);
419 emufs_indice_b_ver(art_get_lst()->fp->indices, win, w, h, 0);
428 static void finish(int sig)
432 /* do your non-curses wrapup here */
436 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
442 va_start(ap, format);
443 vsprintf(txt, format, ap);
448 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
450 mvwaddstr(dialog, 1, 1, txt);
456 void msg_box_free(WINDOW *padre, WINDOW *win)
465 void menu_mantenimiento()
468 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
469 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
470 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
471 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
472 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
473 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
474 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
475 MENU_OPCION("Volver", "Volver al menu anterior.")
479 int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
480 int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
484 while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
487 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
488 art_get_lst()->fp->compactar(art_get_lst()->fp);
489 msg_box_free(stdscr, dlg);
492 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
493 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
494 msg_box_free(stdscr, dlg);
497 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
498 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
499 msg_box_free(stdscr, dlg);
502 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
503 preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
504 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
505 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
506 msg_box_free(stdscr, dlg);
509 nuevo_tam_registro = 0;
510 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
511 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
512 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
513 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
514 msg_box_free(stdscr, dlg);
517 s = preguntar_file();
519 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
522 msg_box_free(stdscr, dlg);
527 s = preguntar_file();
529 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
531 fact_exportar_xml(s);
532 msg_box_free(stdscr, dlg);
539 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
546 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
549 mvwaddstr(win, 0, 1, title);
550 form = form_crear(win);
551 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
552 form_ejecutar(form, 1,1);
554 s = form_obtener_valor_char(form, "Tipo de archivo");
555 if (strcmp(s, "T1") == 0) n = T1;
556 if (strcmp(s, "T2") == 0) n = T2;
557 if (strcmp(s, "T3") == 0) n = T3;
568 form = form_crear(win);
569 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
572 form_set_valor(form, "Tamaño de bloque", "");
573 form_ejecutar(form, 1,1);
574 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
576 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
582 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
583 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
584 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
586 form = form_crear(win);
587 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
588 if ((*tam_reg) != -1)
589 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
592 form_set_valor(form, "Tamaño de bloque", "");
593 if ((*tam_reg) != -1)
594 form_set_valor(form, "Tamaño de registro", "");
595 form_ejecutar(form, 1,1);
596 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
597 if ((*tam_reg) != -1) {
598 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
601 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
602 if ((*tam_reg) != -1)
603 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
611 void ver_estadisticas(EMUFS *fp)
614 EMUFS_Estadisticas stats;
618 stats = fp->leer_estadisticas(fp);
620 win = newwin(LINES-4, COLS-2, 2, 1);
623 wattron(win, COLOR_PAIR(COLOR_YELLOW));
624 wattron(win, A_BOLD);
625 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
626 wattroff(win, A_BOLD);
627 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
630 waddstr(win, "Registro long. variable con bloque parametrizado");
631 wattron(win, A_BOLD);
632 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
633 wattroff(win, A_BOLD);
634 sprintf(s, "%lu bytes", fp->tam_bloque);
638 waddstr(win, "Registro long. variable sin bloques");
641 waddstr(win, "Registro long. fija con bloque parametrizado");
642 wattron(win, A_BOLD);
643 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
644 wattroff(win, A_BOLD);
645 sprintf(s, "%lu bytes", fp->tam_bloque);
647 wattron(win, A_BOLD);
648 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
649 wattroff(win, A_BOLD);
650 sprintf(s, "%lu bytes", fp->tam_reg);
655 wattron(win, A_BOLD);
656 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
657 wattroff(win, A_BOLD);
658 sprintf(s, "%lu/%lu bytes (%.2f %%)",
659 stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
660 (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
663 wattron(win, A_BOLD);
664 mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
665 wattroff(win, A_BOLD);
666 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);
669 wattron(win, A_BOLD);
670 mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
671 wattroff(win, A_BOLD);
672 sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
675 wattron(win, A_BOLD);
676 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
677 wattroff(win, A_BOLD);
678 sprintf(s, "%lu bytes/bloque", stats.media_fs);
681 wattron(win, A_BOLD);
682 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
683 wattroff(win, A_BOLD);
684 sprintf(s, "%lu bytes", stats.max_fs);
687 wattron(win, A_BOLD);
688 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
689 wattroff(win, A_BOLD);
690 sprintf(s, "%lu bytes", stats.min_fs);
693 wattron(win, A_BOLD);
694 mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
695 wattroff(win, A_BOLD);
696 sprintf(s, "%lu bytes", stats.tam_archivo);
699 wattron(win, A_BOLD);
700 mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
701 wattroff(win, A_BOLD);
702 sprintf(s, "%lu bytes", stats.tam_archivos_aux);
705 wattron(win, A_BOLD);
706 mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
707 wattroff(win, A_BOLD);
708 sprintf(s, "%lu bytes", stats.tam_info_control_dat);
711 if ((fp->tipo == T1) || (fp->tipo == T3)) {
712 wattron(win, A_BOLD);
713 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
714 wattroff(win, A_BOLD);
715 sprintf(s, "%lu", stats.cant_bloques);
719 wattron(win, A_BOLD);
720 mvwaddstr(win, i++, 1, "Cant. Registros : ");
721 wattroff(win, A_BOLD);
722 sprintf(s, "%lu", stats.cant_registros);
725 wattron(win, A_BOLD);
726 mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
727 wattroff(win, A_BOLD);
729 wattron(win, A_BLINK);
730 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
731 wattroff(win, A_BLINK);
741 char *preguntar_file()
747 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
750 form = form_crear(win);
751 form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
752 form_ejecutar(form, 1,1);
754 s = form_obtener_valor_char(form, "Nombre de archivo");
756 if (strlen(s) == 0) {
760 t = (char *)malloc(sizeof(char*)*(strlen(s)+1));