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 menu_ver_indices();
30 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
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 - 2v0\n");
48 printf("Modo de uso :%s [<emufs.xml>|-h] \n", s);
49 printf("\temufs.xml es el archivo XML que cumple con emufs.dtd con la configuracion a usar.\n");
50 printf("\t-h Muestra este msg de ayuda.\n");
53 int leer_tipo_arbol(char *s) {
54 if (strcmp(s, "B") == 0) return 0;
55 if (strcmp(s, "BA") == 0) return 1;
57 /* Por defecto es un B */
61 void leer_param_ind_art(t_Parametros *param, xmlNode *padre)
65 node = padre->children;
67 if (node->type == XML_ELEMENT_NODE) {
68 if (strcmp(node->name, "indice")==0) {
70 nombre = xml_get_prop(node, "nombre");
72 if (strcmp(nombre, "codigo")==0) {
73 tmp = xml_get_prop(node, "tipo");
74 param->ind_art[0].tipo_arbol = leer_tipo_arbol(tmp);
76 tmp = xml_get_prop(node, "bloque");
77 param->ind_art[0].tam_bloque = atoi(tmp);
79 } else if (strcmp(nombre, "desc")==0) {
80 tmp = xml_get_prop(node, "tipo");
81 param->ind_art[1].tipo_arbol = leer_tipo_arbol(tmp);
83 tmp = xml_get_prop(node, "bloque");
84 param->ind_art[1].tam_bloque = atoi(tmp);
86 } else if (strcmp(nombre, "presentacion")==0) {
87 tmp = xml_get_prop(node, "tipo");
88 param->ind_art[2].tipo_arbol = leer_tipo_arbol(tmp);
90 tmp = xml_get_prop(node, "bloque");
91 param->ind_art[2].tam_bloque = atoi(tmp);
102 void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
106 node = padre->children;
108 if (node->type == XML_ELEMENT_NODE) {
109 if (strcmp(node->name, "indice")==0) {
111 nombre = xml_get_prop(node, "nombre");
113 if (strcmp(nombre, "numero")==0) {
114 tmp = xml_get_prop(node, "tipo");
115 param->ind_fac[0].tipo_arbol = leer_tipo_arbol(tmp);
117 tmp = xml_get_prop(node, "bloque");
118 param->ind_fac[0].tam_bloque = atoi(tmp);
120 } else if (strcmp(nombre, "emision")==0) {
121 tmp = xml_get_prop(node, "tipo");
122 param->ind_fac[1].tipo_arbol = leer_tipo_arbol(tmp);
124 tmp = xml_get_prop(node, "bloque");
125 param->ind_fac[1].tam_bloque = atoi(tmp);
127 } else if (strcmp(nombre, "vto")==0) {
128 tmp = xml_get_prop(node, "tipo");
129 param->ind_fac[2].tipo_arbol = leer_tipo_arbol(tmp);
131 tmp = xml_get_prop(node, "bloque");
132 param->ind_fac[2].tam_bloque = atoi(tmp);
134 } else if (strcmp(nombre, "cheque")==0) {
135 tmp = xml_get_prop(node, "tipo");
136 param->ind_fac[3].tipo_arbol = leer_tipo_arbol(tmp);
138 tmp = xml_get_prop(node, "bloque");
139 param->ind_fac[3].tam_bloque = atoi(tmp);
141 } else if (strcmp(nombre, "ctacte")==0) {
142 tmp = xml_get_prop(node, "tipo");
143 param->ind_fac[4].tipo_arbol = leer_tipo_arbol(tmp);
145 tmp = xml_get_prop(node, "bloque");
146 param->ind_fac[4].tam_bloque = atoi(tmp);
157 void leer_param_art(t_Parametros *param, xmlNode *padre)
161 node = padre->children;
163 if (node->type == XML_ELEMENT_NODE) {
164 if (strcmp(node->name, "fuente")==0) {
165 strcpy(param->xml_art, XML_GET_CONTENT(node->children));
166 } else if (strcmp(node->name, "datos")==0) {
167 tmp = xml_get_prop(node, "tipo");
168 param->tipo_arch_art = atoi(tmp)-1;
170 tmp = xml_get_prop(node, "bloque");
171 param->tam_bloque_art = atoi(tmp);
173 } else if (strcmp(node->name, "indices")==0) {
175 leer_param_ind_art(param, node);
183 void leer_param_fac(t_Parametros *param, xmlNode *padre)
187 nodo = padre->children;
189 if (nodo->type == XML_ELEMENT_NODE) {
190 if (strcmp(nodo->name, "fuente")==0) {
191 strcpy(param->xml_fact, XML_GET_CONTENT(nodo->children));
192 } else if (strcmp(nodo->name, "datos")==0) {
193 tmp = xml_get_prop(nodo, "tipo");
194 param->tipo_arch_fact = atoi(tmp)-1;
196 tmp = xml_get_prop(nodo, "bloque");
197 param->tam_bloque_fact = atoi(tmp);
199 } else if (strcmp(nodo->name, "datos_notas")==0) {
200 tmp = xml_get_prop(nodo, "tipo");
201 param->tipo_arch_nota = atoi(tmp)-1;
203 tmp = xml_get_prop(nodo, "bloque");
204 param->tam_bloque_nota = atoi(tmp);
206 } else if (strcmp(nodo->name, "indices")==0) {
208 leer_param_ind_fact(param, nodo);
216 void param_xml(char *s, t_Parametros *param)
219 xmlNode *node, *inicio;
221 document = xmlReadFile(s, NULL,0);
222 if (document == NULL) {
226 node = xmlDocGetRootElement(document);
227 /* Busco el TAG principal "EMUFS" */
229 if (node->type == XML_ELEMENT_NODE) {
231 if (strcmp(node->name, "emufs") == 0) {
232 inicio = node->children;
238 if (inicio == NULL) {
239 PERR("NO ENCONTRE TAG PRINCIPAL");
240 xmlFreeDoc(document);
247 if (node->type == XML_ELEMENT_NODE) {
248 if (strcmp(node->name, "articulos")==0) {
249 leer_param_art(param, node);
250 } else if (strcmp(node->name, "facturas")==0) {
251 leer_param_fac(param, node);
258 static t_Parametros parametros;
260 int main(int argc, char *argv[])
270 if (strcmp(argv[1], "-h")==0) {
274 param_xml(argv[1], ¶metros);
276 /* Valido que los tamaños de los bloques sean multiplos de 512 */
277 if ((parametros.tam_bloque_art%512) != 0) {
278 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
281 if ((parametros.tam_bloque_fact%512) != 0) {
282 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
285 if ((parametros.ind_art[0].tam_bloque%512) != 0) {
286 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
289 if ((parametros.ind_art[1].tam_bloque%512) != 0) {
290 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
293 if ((parametros.ind_art[2].tam_bloque%512) != 0) {
294 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
297 if ((parametros.ind_fac[0].tam_bloque%512) != 0) {
298 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
301 if ((parametros.ind_fac[1].tam_bloque%512) != 0) {
302 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
305 if ((parametros.ind_fac[2].tam_bloque%512) != 0) {
306 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
309 if ((parametros.ind_fac[3].tam_bloque%512) != 0) {
310 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
313 if ((parametros.ind_fac[4].tam_bloque%512) != 0) {
314 PERR("Los tamaños de bloque deben ser multiplos de 512!!");
320 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
321 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
322 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
323 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
324 printf("el programa de la siguiente manera :\n");
325 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
326 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
327 printf("visualizacion de la aplicacion.\n");
328 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
333 signal(SIGINT, finish);
335 keypad(stdscr, TRUE);
339 /* Si se soporta color, los inicializo */
342 /* Simple color assignment, often all we need. */
343 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
344 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
345 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
346 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
347 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
348 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
349 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
350 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
353 /* Verifico un tamaño minimo de consola */
354 if ((LINES < 25) || (COLS < 80)) {
356 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
360 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
361 box(stdscr, ACS_VLINE, ACS_HLINE);
362 /* Ventana, Y, X, Texto */
363 mvwaddstr(stdscr, 1, 1, "EMUFS");
364 attron(COLOR_PAIR(2));
365 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
366 attroff(COLOR_PAIR(2));
370 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
371 art_cargar(¶metros);
372 fact_cargar(¶metros);
374 dialog = msg_box(stdscr, COLS, LINES, "Recuperando archivos ...");
379 msg_box_free(stdscr, dialog);
394 MENU_OPCION("Alta", "Crear una nueva factura."),
395 MENU_OPCION("Baja", "Elimina una factura existente."),
396 MENU_OPCION("Modificacion", "Modifica una factura existente."),
397 MENU_OPCION("Consultas", "Consulta varias de articulo."),
398 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
399 MENU_OPCION("Volver", "Volver al menu anterior.")
403 while ((opt = menu_ejecutar(mi_menu, 6, "Menu Facturas")) != 5) {
412 fact_modificar(NULL);
415 fact_consultas(NULL);
423 void menu_articulos()
426 MENU_OPCION("Alta", "Crear un nuevo articulo."),
427 MENU_OPCION("Baja", "Elimina un articulo existente."),
428 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
429 MENU_OPCION("Consultas", "Consulta varias de articulo."),
430 MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
431 MENU_OPCION("Ver ventas", "Ver venta de articulos entre 2 fechas."),
432 MENU_OPCION("Volver", "Volver al menu anterior.")
436 while ((opt = menu_ejecutar(mi_menu, 7, "Menu Articulos")) != 6) {
460 void menu_estadisticas()
463 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
464 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
465 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
466 MENU_OPCION("Volver", "Ir al menu anterior.")
470 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
473 ver_estadisticas( art_get_lst()->fp );
476 ver_estadisticas( fact_get_lst()->fp );
479 ver_estadisticas( fact_get_lst()->fp_texto );
484 void menu_ver_registros()
487 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
488 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
489 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
490 MENU_OPCION("Volver", "Ir al menu anterior.")
495 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
496 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
497 ver_registros(dialog, COLS-2, LINES-4, opt);
505 void menu_ver_bloques()
508 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
509 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
510 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
511 MENU_OPCION("Volver", "Ir al menu anterior.")
516 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
519 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
520 ver_bloques(dialog, COLS-2, LINES-4, 0);
527 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
528 ver_bloques(dialog, COLS-2, LINES-4, 1);
535 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
536 ver_bloques(dialog, COLS-2, LINES-4, 2);
545 void ver_indice(int arch, char *indice)
552 idx = emufs_buscar_indice_por_nombre(art_get_lst()->fp, indice);
555 idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, indice);
559 win = newwin(h, w, 2, 1);
561 if ((idx != NULL) && (idx->tipo != IND_B_PLUS)) {
562 emufs_indice_b_ver(idx, win, w, h, 0);
566 dlg = msg_box(win, w, h, "El tipo de arbol B+ no esta soportado en el visor");
568 msg_box_free(win, dlg);
574 void menu_ver_indices()
576 int arch[8] = {0, 0, 0, 1, 1, 1, 1, 1};
577 char *nombres[8] = {"codigo", "desc", "presentacion",
578 "numero", "emision", "vto", "cheque", "ctacte"};
580 MENU_OPCION("Articulos->codigo",""),
581 MENU_OPCION("Articulos->desc",""),
582 MENU_OPCION("Articulos->presentacion",""),
583 MENU_OPCION("Facturas->numero",""),
584 MENU_OPCION("Facturas->emision",""),
585 MENU_OPCION("Facturas->vto",""),
586 MENU_OPCION("Facturas->cheque", ""),
587 MENU_OPCION("Facturas->ctacte", ""),
588 MENU_OPCION("Volver", "Volver al menu anterior.")
592 while ((c=menu_ejecutar(mi_menu, 9, "Menu Principal"))!=8) {
593 ver_indice(arch[c], nombres[c]);
601 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
602 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
603 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
604 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
605 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
606 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
607 MENU_OPCION("Ver Indices", "Permite ver y recorrer los indices"),
608 MENU_OPCION("Salir", "Salir del sistema.")
611 while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
620 menu_ver_registros();
629 menu_mantenimiento();
640 static void finish(int sig)
644 /* do your non-curses wrapup here */
648 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
654 va_start(ap, format);
655 vsprintf(txt, format, ap);
660 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
662 mvwaddstr(dialog, 1, 1, txt);
668 void msg_box_free(WINDOW *padre, WINDOW *win)
677 void menu_mantenimiento()
680 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
681 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
682 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
683 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
684 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
685 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
686 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
687 MENU_OPCION("Volver", "Volver al menu anterior.")
691 int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
692 int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
696 while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
699 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
700 art_get_lst()->fp->compactar(art_get_lst()->fp);
701 msg_box_free(stdscr, dlg);
704 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
705 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
706 msg_box_free(stdscr, dlg);
709 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
710 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
711 msg_box_free(stdscr, dlg);
714 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
715 preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
716 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
717 parametros.tipo_arch_art = nuevo_tipo;
718 parametros.tam_bloque_art = nuevo_tam_bloque;
719 art_reformatear(¶metros);
720 msg_box_free(stdscr, dlg);
723 nuevo_tam_registro = 0;
724 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
725 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
726 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
727 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
728 msg_box_free(stdscr, dlg);
731 s = preguntar_file();
733 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
736 msg_box_free(stdscr, dlg);
741 s = preguntar_file();
743 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
745 fact_exportar_xml(s);
746 msg_box_free(stdscr, dlg);
753 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
760 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
763 mvwaddstr(win, 0, 1, title);
764 form = form_crear(win);
765 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3,T4,T5");
766 form_ejecutar(form, 1,1);
768 s = form_obtener_valor_char(form, "Tipo de archivo");
769 if (strcmp(s, "T1") == 0) n = T1;
770 if (strcmp(s, "T2") == 0) n = T2;
771 if (strcmp(s, "T3") == 0) n = T3;
772 if (strcmp(s, "T4") == 0) n = T4;
773 if (strcmp(s, "T5") == 0) n = T5;
784 form = form_crear(win);
785 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
788 form_set_valor(form, "Tamaño de bloque", "");
789 form_ejecutar(form, 1,1);
790 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
792 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
798 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
799 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
800 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
802 form = form_crear(win);
803 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
804 if ((*tam_reg) != -1)
805 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
808 form_set_valor(form, "Tamaño de bloque", "");
809 if ((*tam_reg) != -1)
810 form_set_valor(form, "Tamaño de registro", "");
811 form_ejecutar(form, 1,1);
812 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
813 if ((*tam_reg) != -1) {
814 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
817 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
818 if ((*tam_reg) != -1)
819 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
824 form = form_crear(win);
825 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
828 form_set_valor(form, "Tamaño de bloque", "");
829 form_ejecutar(form, 1,1);
830 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
832 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
840 void ver_estadisticas(EMUFS *fp)
843 EMUFS_Estadisticas stats;
847 stats = fp->leer_estadisticas(fp);
849 win = newwin(LINES-4, COLS-2, 2, 1);
852 wattron(win, COLOR_PAIR(COLOR_YELLOW));
853 wattron(win, A_BOLD);
854 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
855 wattroff(win, A_BOLD);
856 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
859 waddstr(win, "Registro long. variable con bloque parametrizado");
860 wattron(win, A_BOLD);
861 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
862 wattroff(win, A_BOLD);
863 sprintf(s, "%lu bytes", fp->tam_bloque);
867 waddstr(win, "Registro long. variable sin bloques");
870 waddstr(win, "Registro long. fija con bloque parametrizado");
871 wattron(win, A_BOLD);
872 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
873 wattroff(win, A_BOLD);
874 sprintf(s, "%lu bytes", fp->tam_bloque);
876 wattron(win, A_BOLD);
877 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
878 wattroff(win, A_BOLD);
879 sprintf(s, "%lu bytes", fp->tam_reg);
884 wattron(win, A_BOLD);
885 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
886 wattroff(win, A_BOLD);
887 sprintf(s, "%lu/%lu bytes (%.2f %%)",
888 stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
889 (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
892 wattron(win, A_BOLD);
893 mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
894 wattroff(win, A_BOLD);
895 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);
898 wattron(win, A_BOLD);
899 mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
900 wattroff(win, A_BOLD);
901 sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
904 wattron(win, A_BOLD);
905 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
906 wattroff(win, A_BOLD);
907 sprintf(s, "%lu bytes/bloque", stats.media_fs);
910 wattron(win, A_BOLD);
911 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
912 wattroff(win, A_BOLD);
913 sprintf(s, "%lu bytes", stats.max_fs);
916 wattron(win, A_BOLD);
917 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
918 wattroff(win, A_BOLD);
919 sprintf(s, "%lu bytes", stats.min_fs);
922 wattron(win, A_BOLD);
923 mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
924 wattroff(win, A_BOLD);
925 sprintf(s, "%lu bytes", stats.tam_archivo);
928 wattron(win, A_BOLD);
929 mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
930 wattroff(win, A_BOLD);
931 sprintf(s, "%lu bytes", stats.tam_archivos_aux);
934 wattron(win, A_BOLD);
935 mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
936 wattroff(win, A_BOLD);
937 sprintf(s, "%lu bytes", stats.tam_info_control_dat);
940 if ((fp->tipo == T1) || (fp->tipo == T3)) {
941 wattron(win, A_BOLD);
942 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
943 wattroff(win, A_BOLD);
944 sprintf(s, "%lu", stats.cant_bloques);
948 wattron(win, A_BOLD);
949 mvwaddstr(win, i++, 1, "Cant. Registros : ");
950 wattroff(win, A_BOLD);
951 sprintf(s, "%lu", stats.cant_registros);
954 wattron(win, A_BOLD);
955 mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
956 wattroff(win, A_BOLD);
958 wattron(win, A_BLINK);
959 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
960 wattroff(win, A_BLINK);
970 char *preguntar_file()
976 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
979 form = form_crear(win);
980 form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
981 form_ejecutar(form, 1,1);
983 s = form_obtener_valor_char(form, "Nombre de archivo");
985 if (strlen(s) == 0) {
989 t = (char *)malloc(sizeof(char*)*(strlen(s)+1));