X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ecc9d27042d38e53309151e07c1c23cc6331efea..5720b3f8df66478279f271065447e93848437fb7:/emufs_gui/gui.c?ds=inline diff --git a/emufs_gui/gui.c b/emufs_gui/gui.c index 99418b8..3c7cdd9 100644 --- a/emufs_gui/gui.c +++ b/emufs_gui/gui.c @@ -19,6 +19,11 @@ static void finish(int sig); int main_menu(); void menu_articulos(); void menu_facturas(); +void menu_mantenimiento(); +void menu_estadisticas(); +void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg); + +void ver_estadisticas(EMUFS *fp); /* cuadro de msg. w y h son de la ventana padre */ WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...); @@ -136,7 +141,7 @@ int main(int argc, char *argv[]) dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ..."); if (argc == 4) { art_cargar(argv[1], atoi(argv[2]), atoi(argv[3])); - if (!fact_cargar("facturas.xml", 3, 400)) + if (!fact_cargar("facturas.xml", 1, 400)) fprintf(stderr, "ERROR CARGANDO FACTURAS\n"); } else art_cargar(NULL, -1, -1); @@ -160,8 +165,13 @@ int main(int argc, char *argv[]) delwin(dialog); refresh(); break; - // case 3: + case 5: + menu_estadisticas(); + break; case 6: + menu_mantenimiento(); + break; + case 7: fin = 1; break; } @@ -194,7 +204,7 @@ void menu_facturas() items[0] = new_item(opciones[0], "Crear una nueva factura."); set_item_userptr(items[0], fact_agregar); items[1] = new_item(opciones[1], "Eliminar una factura existente."); -/* set_item_userptr(items[1], art_eliminar); */ + set_item_userptr(items[1], fact_eliminar); items[2] = new_item(opciones[2], "Modificar una factura existente."); set_item_userptr(items[2], fact_modificar); items[3] = new_item(opciones[3], "Volver al menu anterior."); @@ -261,7 +271,9 @@ void menu_facturas() free_item(items[2]); free_item(items[3]); free_menu(menu); + free(items); } + void menu_articulos() { WINDOW *menu_win; @@ -347,6 +359,100 @@ void menu_articulos() free_item(items[2]); free_item(items[3]); free_menu(menu); + free(items); +} + +void menu_estadisticas() +{ + WINDOW *menu_win; + MENU *menu; + ITEM **items; + int c, salir; + char *opciones[] = { + "Articulos", + "Facturas", + "Notas", + "Volver" + }; + + items = (ITEM **)calloc(5, sizeof(ITEM *)); + + items[0] = new_item(opciones[0], "Ver datos del archivo de Articulos."); + items[1] = new_item(opciones[1], "Ver datos del archivo de Facturas."); + items[2] = new_item(opciones[2], "Ver datos del archivo de Notas."); + items[3] = new_item(opciones[3], "Volver al menu anterior."); + items[4] = NULL; + + menu = new_menu((ITEM **)items); + menu_win = newwin(8, COLS-2, 3, 1); + keypad(menu_win, TRUE); + set_menu_mark(menu, " > "); + set_menu_win(menu, menu_win); + set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1)); + + box(menu_win, 0, 0); + mvwaddch(menu_win, 2, 0, ACS_LTEE); + mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3); + mvwaddch(menu_win, 2, COLS-3, ACS_RTEE); + wattron(menu_win, COLOR_PAIR(COLOR_RED)); + mvwaddstr(menu_win, 1, 1, "Menu Estadisticas"); + wattroff(menu_win, COLOR_PAIR(COLOR_RED)); + post_menu(menu); + wrefresh(menu_win); + + curs_set(0); + salir = 0; + while((!salir) && (c = getch()) != KEY_F(3)) { + switch(c) { + case KEY_DOWN: + menu_driver(menu, REQ_DOWN_ITEM); + break; + case KEY_UP: + menu_driver(menu, REQ_UP_ITEM); + break; + case 13: + case 10: + { + ITEM *cur; + + cur = current_item(menu); + if (strcmp(item_name(cur), opciones[3]) == 0) { + salir = 1; + } else { + if (strcmp(item_name(cur), opciones[0]) == 0) { + unpost_menu(menu); + ver_estadisticas( art_get_lst()->fp ); + box(menu_win, 0, 0); + post_menu(menu); + } + if (strcmp(item_name(cur), opciones[1]) == 0) { + unpost_menu(menu); + ver_estadisticas( fact_get_lst()->fp ); + box(menu_win, 0, 0); + post_menu(menu); + } + if (strcmp(item_name(cur), opciones[2]) == 0) { + unpost_menu(menu); + ver_estadisticas( fact_get_lst()->fp_texto ); + box(menu_win, 0, 0); + post_menu(menu); + } + } + pos_menu_cursor(menu); + } + } + wrefresh(menu_win); + } + curs_set(1); + + unpost_menu(menu); + delwin(menu_win); + free_item(items[0]); + free_item(items[1]); + free_item(items[2]); + free_item(items[3]); + free_menu(menu); + free(items); } int main_menu() @@ -359,22 +465,24 @@ int main_menu() "Articulos", "Facturas", "Ver Registros", - "Ver Bloques", + "Ver Facturas", + "Ver Notas", "Estadisticas", "Mantenimiento", "Salir" }; - items = (ITEM **)calloc(8, sizeof(ITEM *)); + items = (ITEM **)calloc(9, sizeof(ITEM *)); items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos."); items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas."); - items[2] = new_item(opciones[2], "Ver registros de un archivo."); - items[3] = new_item(opciones[3], "Ver bloques de un archivo."); - items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos."); - items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos."); - items[6] = new_item(opciones[6], "Salir del sistema."); - items[7] = NULL; + items[2] = new_item(opciones[2], "Ver registros/bloques de archivo Articulos."); + items[3] = new_item(opciones[3], "Ver registros/bloques de archivo Facturas."); + items[4] = new_item(opciones[4], "Ver registros/bloques de archivo Notas."); + items[5] = new_item(opciones[5], "Ver estadisticas de ocupacion de archivos."); + items[6] = new_item(opciones[6], "Tareas de mantenimiento de los archivos."); + items[7] = new_item(opciones[7], "Salir del sistema."); + items[8] = NULL; menu = new_menu((ITEM **)items); menu_win = newwin(14, COLS-2, 3, 1); @@ -435,6 +543,7 @@ int main_menu() free_item(items[5]); free_item(items[6]); free_menu(menu); + free(items); return opcion; } @@ -477,3 +586,248 @@ void msg_box_free(WINDOW *padre, WINDOW *win) wrefresh(padre); } +void menu_mantenimiento() +{ + WINDOW *menu_win, *dlg; + MENU *menu; + ITEM **items; + int c, salir, nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro; + char *opciones[] = { + "Compactar Articulos", + "Compactar Facturas", + "Compactar Notas", + "Cambiar tipo Archivo Articulos", + "Cambiar tipo Archivo Facturas", + "Cambiar tipo Archivo Notas", + "Volver" + }; + + items = (ITEM **)calloc(8, sizeof(ITEM *)); + + items[0] = new_item(opciones[0], "Elimina espacio no utilizado."); + items[1] = new_item(opciones[1], "Elimina espacio no utilizado."); + items[2] = new_item(opciones[2], "Elimina espacio no utilizado."); + items[3] = new_item(opciones[3], "Permite cambiar el tipo del archivo."); + items[4] = new_item(opciones[4], "Permite cambiar el tipo del archivo."); + items[5] = new_item(opciones[5], "Permite cambiar el tipo del archivo."); + items[6] = new_item(opciones[6], "Volver al menu anterior."); + items[7] = NULL; + + menu = new_menu((ITEM **)items); + menu_win = newwin(12, COLS-2, 3, 1); + keypad(menu_win, TRUE); + set_menu_mark(menu, " > "); + set_menu_win(menu, menu_win); + set_menu_sub(menu, derwin(menu_win, 8, COLS-4, 3, 1)); + + box(menu_win, 0, 0); + mvwaddch(menu_win, 2, 0, ACS_LTEE); + mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3); + mvwaddch(menu_win, 2, COLS-3, ACS_RTEE); + wattron(menu_win, COLOR_PAIR(COLOR_RED)); + mvwaddstr(menu_win, 1, 1, "Menu Mantenimiento"); + wattroff(menu_win, COLOR_PAIR(COLOR_RED)); + post_menu(menu); + wrefresh(menu_win); + + curs_set(0); + salir = 0; + while((!salir) && (c = getch()) != KEY_F(3)) { + switch(c) { + case KEY_DOWN: + menu_driver(menu, REQ_DOWN_ITEM); + break; + case KEY_UP: + menu_driver(menu, REQ_UP_ITEM); + break; + case 13: + case 10: + { + ITEM *cur; + + cur = current_item(menu); + if (strcmp(item_name(cur), opciones[6]) == 0) { + salir = 1; + } else { + if (strcmp(item_name(cur), opciones[0]) == 0) { + art_get_lst()->fp->compactar(art_get_lst()->fp); + } + if (strcmp(item_name(cur), opciones[1]) == 0) { + fact_get_lst()->fp->compactar(fact_get_lst()->fp); + } + if (strcmp(item_name(cur), opciones[2]) == 0) { + fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto); + } + if (strcmp(item_name(cur), opciones[3]) == 0) { + unpost_menu(menu); + nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */ + preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro); + dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde"); + art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro); + msg_box_free(stdscr, dlg); + box(menu_win, 0, 0); + post_menu(menu); + } + if (strcmp(item_name(cur), opciones[4]) == 0) { + unpost_menu(menu); + nuevo_tam_registro = 0; + preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro); + box(menu_win, 0, 0); + post_menu(menu); + } + if (strcmp(item_name(cur), opciones[5]) == 0) { + unpost_menu(menu); + nuevo_tam_registro = -2; + preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro); + box(menu_win, 0, 0); + post_menu(menu); + } + } + } + } + wrefresh(menu_win); + } + curs_set(1); + + unpost_menu(menu); + delwin(menu_win); + free_item(items[0]); + free_item(items[1]); + free_item(items[2]); + free_item(items[3]); + free_menu(menu); + + free(items); +} + +void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg) +{ + WINDOW *win; + t_Form *form; + char *s; + int n, is_ok; + + win = newwin(LINES/2, COLS/2, LINES/4, COLS/4); + box(win, 0, 0); + + form = form_crear(win); + form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3"); + form_ejecutar(form, 1,1); + + s = form_obtener_valor_char(form, "Tipo de archivo"); + if (strcmp(s, "T1") == 0) n = T1; + if (strcmp(s, "T2") == 0) n = T2; + if (strcmp(s, "T3") == 0) n = T3; + + form_destruir(form); + + werase(win); + box(win, 0, 0); + wrefresh(win); + + (*tipo) = n; + switch (n) { + case T1: + form = form_crear(win); + form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, ""); + is_ok = 0; + do { + form_set_valor(form, "Tamaño de bloque", ""); + form_ejecutar(form, 1,1); + if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1; + } while (!is_ok); + (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque"); + form_destruir(form); + break; + case T2: + break; + case T3: + if (((*tam_reg) != -1) && ((*tam_reg) != -2)) { + mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede"); + mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema."); + } + form = form_crear(win); + form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, ""); + if ((*tam_reg) != -1) + form_agregar_widget(form, INPUT, "Tamaño de registro", 8, ""); + is_ok = 0; + do { + form_set_valor(form, "Tamaño de bloque", ""); + if ((*tam_reg) != -1) + form_set_valor(form, "Tamaño de registro", ""); + form_ejecutar(form, 1,1); + if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1; + if ((*tam_reg) != -1) { + if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0; + } + } while (!is_ok); + (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque"); + if ((*tam_reg) != -1) + (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro"); + form_destruir(form); + } + werase(win); + wrefresh(win); + delwin(win); +} + +void ver_estadisticas(EMUFS *fp) +{ + WINDOW *win; + EMUFS_Estadisticas stats; + char s[40]; + int i=3; + + stats = fp->leer_estadisticas(fp); + + win = newwin(LINES-4, COLS-2, 2, 1); + + mvwaddstr(win, 1, 1, "Tipo de Archivo : "); + switch (fp->tipo) { + case T1: + waddstr(win, "Registro long. variable con bloque parametrizado"); + break; + case T2: + waddstr(win, "Registro long. variable sin bloques"); + break; + case T3: + waddstr(win, "Registro long. fija con bloque parametrizado"); + } + + mvwaddstr(win, i++, 1, "Cant. Registros : "); + sprintf(s, "%lu", stats.tam_archivo); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Tamaño de Archivo (bytes) : "); + sprintf(s, "%lu", stats.tam_archivo_bytes); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Tamaño de Info de Control (bytes) : "); + sprintf(s, "%lu", stats.info_control); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Media de espacio libre : "); + sprintf(s, "%lu", stats.media_fs); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Espacio Libre : "); + sprintf(s, "%lu", stats.total_fs); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Maximo de Espacio libre : "); + sprintf(s, "%lu", stats.max_fs); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Minimo de Espacio libre : "); + sprintf(s, "%lu", stats.min_fs); + waddstr(win, s); + + mvwaddstr(win, i++, 1, "Cantidad de bloques : "); + sprintf(s, "%lu", stats.cant_bloques); + waddstr(win, s); + + werase(win); + wrefresh(win); + delwin(win); +} +