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 int leer_tipo_arbol(char *s) {
61 if (strcmp(s, "B") == 0) return 0;
62 if (strcmp(s, "BA") == 0) return 1;
63 if (strcmp(s, "BP") == 0) return 2;
65 /* Por defecto es un B */
69 void leer_param_ind_art(t_Parametros *param, xmlNode *padre)
73 node = padre->children;
75 if (node->type == XML_ELEMENT_NODE) {
76 if (strcmp(node->name, "indice")==0) {
78 nombre = xml_get_prop(node, "nombre");
80 if (strcmp(nombre, "codigo")==0) {
81 tmp = xml_get_prop(node, "tipo");
82 param->ind_art[0].tipo_arbol = leer_tipo_arbol(tmp);
84 tmp = xml_get_prop(node, "bloque");
85 param->ind_art[0].tam_bloque = atoi(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);
91 tmp = xml_get_prop(node, "bloque");
92 param->ind_art[1].tam_bloque = atoi(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);
98 tmp = xml_get_prop(node, "bloque");
99 param->ind_art[2].tam_bloque = atoi(tmp);
110 void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
114 node = padre->children;
116 if (node->type == XML_ELEMENT_NODE) {
117 if (strcmp(node->name, "indice")==0) {
119 nombre = xml_get_prop(node, "nombre");
121 if (strcmp(nombre, "numero")==0) {
122 tmp = xml_get_prop(node, "tipo");
123 param->ind_fac[0].tipo_arbol = leer_tipo_arbol(tmp);
125 tmp = xml_get_prop(node, "bloque");
126 param->ind_fac[0].tam_bloque = atoi(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);
132 tmp = xml_get_prop(node, "bloque");
133 param->ind_fac[1].tam_bloque = atoi(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);
139 tmp = xml_get_prop(node, "bloque");
140 param->ind_fac[2].tam_bloque = atoi(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);
146 tmp = xml_get_prop(node, "bloque");
147 param->ind_fac[3].tam_bloque = atoi(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);
153 tmp = xml_get_prop(node, "bloque");
154 param->ind_fac[4].tam_bloque = atoi(tmp);
165 void leer_param_art(t_Parametros *param, xmlNode *padre)
169 node = padre->children;
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;
178 tmp = xml_get_prop(node, "bloque");
179 param->tam_bloque_art = atoi(tmp);
181 } else if (strcmp(node->name, "indices")==0) {
183 leer_param_ind_art(param, node);
191 void leer_param_fac(t_Parametros *param, xmlNode *padre)
195 nodo = padre->children;
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;
204 tmp = xml_get_prop(nodo, "bloque");
205 param->tam_bloque_fact = atoi(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;
211 tmp = xml_get_prop(nodo, "bloque");
212 param->tam_bloque_nota = atoi(tmp);
214 } else if (strcmp(nodo->name, "indices")==0) {
216 leer_param_ind_fact(param, nodo);
224 void param_xml(char *s, t_Parametros *param)
227 xmlNode *node, *inicio;
229 document = xmlReadFile(s, NULL,0);
230 if (document == NULL) {
234 node = xmlDocGetRootElement(document);
235 /* Busco el TAG principal "EMUFS" */
237 if (node->type == XML_ELEMENT_NODE) {
239 if (strcmp(node->name, "emufs") == 0) {
240 inicio = node->children;
246 if (inicio == NULL) {
247 PERR("NO ENCONTRE TAG PRINCIPAL");
248 xmlFreeDoc(document);
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);
266 int main(int argc, char *argv[])
269 t_Parametros parametros;
276 param_xml(argv[1], ¶metros);
279 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
280 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
281 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
282 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
283 printf("el programa de la siguiente manera :\n");
284 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
285 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
286 printf("visualizacion de la aplicacion.\n");
287 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
292 signal(SIGINT, finish);
294 keypad(stdscr, TRUE);
298 /* Si se soporta color, los inicializo */
301 /* Simple color assignment, often all we need. */
302 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
303 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
304 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
305 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
306 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
307 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
308 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
309 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
312 /* Verifico un tamaño minimo de consola */
313 if ((LINES < 25) || (COLS < 80)) {
315 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
319 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
320 box(stdscr, ACS_VLINE, ACS_HLINE);
321 /* Ventana, Y, X, Texto */
322 mvwaddstr(stdscr, 1, 1, "EMUFS");
323 attron(COLOR_PAIR(2));
324 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
325 attroff(COLOR_PAIR(2));
328 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
331 art_cargar(¶metros);
336 fact_cargar(¶metros);
341 msg_box_free(stdscr, dialog);
356 MENU_OPCION("Alta", "Crear una nueva factura."),
357 MENU_OPCION("Baja", "Elimina una factura existente."),
358 MENU_OPCION("Modificacion", "Modifica una factura existente."),
359 MENU_OPCION("Consultas", "Consulta varias de articulo."),
360 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
361 MENU_OPCION("Volver", "Volver al menu anterior.")
365 while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
374 fact_modificar(NULL);
377 fact_consultas(NULL);
384 void menu_articulos()
387 MENU_OPCION("Alta", "Crear un nuevo articulo."),
388 MENU_OPCION("Baja", "Elimina un articulo existente."),
389 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
390 MENU_OPCION("Consultas", "Consulta varias de articulo."),
391 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
392 MENU_OPCION("Volver", "Volver al menu anterior.")
396 while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
417 void menu_estadisticas()
420 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
421 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
422 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
423 MENU_OPCION("Volver", "Ir al menu anterior.")
427 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
430 ver_estadisticas( art_get_lst()->fp );
433 ver_estadisticas( fact_get_lst()->fp );
436 ver_estadisticas( fact_get_lst()->fp_texto );
441 void menu_ver_registros()
444 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
445 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
446 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
447 MENU_OPCION("Volver", "Ir al menu anterior.")
452 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
453 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
454 ver_registros(dialog, COLS-2, LINES-4, opt);
462 void menu_ver_bloques()
465 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
466 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
467 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
468 MENU_OPCION("Volver", "Ir al menu anterior.")
473 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
476 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
477 ver_bloques(dialog, COLS-2, LINES-4, 0);
484 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
485 ver_bloques(dialog, COLS-2, LINES-4, 1);
492 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
493 ver_bloques(dialog, COLS-2, LINES-4, 2);
507 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
508 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
509 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
510 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
511 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
512 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
513 MENU_OPCION("DEBUG", "Debug de Arbol B"),
514 MENU_OPCION("Salir", "Salir del sistema.")
517 while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
526 menu_ver_registros();
535 menu_mantenimiento();
540 win = newwin(h, w, 1, 1);
541 emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0);
550 static void finish(int sig)
554 /* do your non-curses wrapup here */
558 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
564 va_start(ap, format);
565 vsprintf(txt, format, ap);
570 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
572 mvwaddstr(dialog, 1, 1, txt);
578 void msg_box_free(WINDOW *padre, WINDOW *win)
587 void menu_mantenimiento()
590 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
591 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
592 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
593 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
594 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
595 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
596 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
597 MENU_OPCION("Volver", "Volver al menu anterior.")
601 int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
602 int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
606 while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
609 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
610 art_get_lst()->fp->compactar(art_get_lst()->fp);
611 msg_box_free(stdscr, dlg);
614 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
615 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
616 msg_box_free(stdscr, dlg);
619 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
620 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
621 msg_box_free(stdscr, dlg);
624 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
625 preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
626 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
627 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
628 msg_box_free(stdscr, dlg);
631 nuevo_tam_registro = 0;
632 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
633 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
634 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
635 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
636 msg_box_free(stdscr, dlg);
639 s = preguntar_file();
641 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
644 msg_box_free(stdscr, dlg);
649 s = preguntar_file();
651 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
653 fact_exportar_xml(s);
654 msg_box_free(stdscr, dlg);
661 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
668 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
671 mvwaddstr(win, 0, 1, title);
672 form = form_crear(win);
673 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
674 form_ejecutar(form, 1,1);
676 s = form_obtener_valor_char(form, "Tipo de archivo");
677 if (strcmp(s, "T1") == 0) n = T1;
678 if (strcmp(s, "T2") == 0) n = T2;
679 if (strcmp(s, "T3") == 0) n = T3;
690 form = form_crear(win);
691 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
694 form_set_valor(form, "Tamaño de bloque", "");
695 form_ejecutar(form, 1,1);
696 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
698 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
704 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
705 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
706 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
708 form = form_crear(win);
709 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
710 if ((*tam_reg) != -1)
711 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
714 form_set_valor(form, "Tamaño de bloque", "");
715 if ((*tam_reg) != -1)
716 form_set_valor(form, "Tamaño de registro", "");
717 form_ejecutar(form, 1,1);
718 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
719 if ((*tam_reg) != -1) {
720 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
723 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
724 if ((*tam_reg) != -1)
725 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
733 void ver_estadisticas(EMUFS *fp)
736 EMUFS_Estadisticas stats;
740 stats = fp->leer_estadisticas(fp);
742 win = newwin(LINES-4, COLS-2, 2, 1);
745 wattron(win, COLOR_PAIR(COLOR_YELLOW));
746 wattron(win, A_BOLD);
747 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
748 wattroff(win, A_BOLD);
749 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
752 waddstr(win, "Registro long. variable con bloque parametrizado");
753 wattron(win, A_BOLD);
754 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
755 wattroff(win, A_BOLD);
756 sprintf(s, "%lu bytes", fp->tam_bloque);
760 waddstr(win, "Registro long. variable sin bloques");
763 waddstr(win, "Registro long. fija con bloque parametrizado");
764 wattron(win, A_BOLD);
765 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
766 wattroff(win, A_BOLD);
767 sprintf(s, "%lu bytes", fp->tam_bloque);
769 wattron(win, A_BOLD);
770 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
771 wattroff(win, A_BOLD);
772 sprintf(s, "%lu bytes", fp->tam_reg);
777 wattron(win, A_BOLD);
778 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
779 wattroff(win, A_BOLD);
780 sprintf(s, "%lu/%lu bytes (%.2f %%)",
781 stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
782 (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
785 wattron(win, A_BOLD);
786 mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
787 wattroff(win, A_BOLD);
788 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);
791 wattron(win, A_BOLD);
792 mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
793 wattroff(win, A_BOLD);
794 sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
797 wattron(win, A_BOLD);
798 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
799 wattroff(win, A_BOLD);
800 sprintf(s, "%lu bytes/bloque", stats.media_fs);
803 wattron(win, A_BOLD);
804 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
805 wattroff(win, A_BOLD);
806 sprintf(s, "%lu bytes", stats.max_fs);
809 wattron(win, A_BOLD);
810 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
811 wattroff(win, A_BOLD);
812 sprintf(s, "%lu bytes", stats.min_fs);
815 wattron(win, A_BOLD);
816 mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
817 wattroff(win, A_BOLD);
818 sprintf(s, "%lu bytes", stats.tam_archivo);
821 wattron(win, A_BOLD);
822 mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
823 wattroff(win, A_BOLD);
824 sprintf(s, "%lu bytes", stats.tam_archivos_aux);
827 wattron(win, A_BOLD);
828 mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
829 wattroff(win, A_BOLD);
830 sprintf(s, "%lu bytes", stats.tam_info_control_dat);
833 if ((fp->tipo == T1) || (fp->tipo == T3)) {
834 wattron(win, A_BOLD);
835 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
836 wattroff(win, A_BOLD);
837 sprintf(s, "%lu", stats.cant_bloques);
841 wattron(win, A_BOLD);
842 mvwaddstr(win, i++, 1, "Cant. Registros : ");
843 wattroff(win, A_BOLD);
844 sprintf(s, "%lu", stats.cant_registros);
847 wattron(win, A_BOLD);
848 mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
849 wattroff(win, A_BOLD);
851 wattron(win, A_BLINK);
852 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
853 wattroff(win, A_BLINK);
863 char *preguntar_file()
869 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
872 form = form_crear(win);
873 form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
874 form_ejecutar(form, 1,1);
876 s = form_obtener_valor_char(form, "Nombre de archivo");
878 if (strlen(s) == 0) {
882 t = (char *)malloc(sizeof(char*)*(strlen(s)+1));