]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
* Agrego arboles B sobre archivos (TEST MODE, no se integra con indice aun).
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index dc9a176441fc4e145da6e40bc1d4c1f4d530d934..42a5330c4bedd53870bb810a78812593fb731580 100644 (file)
@@ -1,5 +1,4 @@
 
 
-
 #include <stdlib.h>
 #include <curses.h>
 #include <menu.h>
 #include <stdlib.h>
 #include <curses.h>
 #include <menu.h>
@@ -268,33 +267,7 @@ int main(int argc, char *argv[])
 
        msg_box_free(stdscr, dialog);
 
 
        msg_box_free(stdscr, dialog);
 
-       /* CICLO PRINCIPAL DE LA APLICACION */
-       while ((c = main_menu()) != -1) {
-               switch (c) {
-                       case 0:
-                               menu_articulos();
-                       break;
-                       case 1:
-                               menu_facturas();
-                       break;
-                       case 2:
-                               menu_ver_registros();
-                       break;
-                       case 3:
-                               menu_ver_bloques();
-                       break;
-                       case 4:
-                               menu_estadisticas();
-                       break;
-                       case 5:
-                               menu_mantenimiento();
-                       break;
-                       case 6:
-                               fin = 1;
-                       break;
-               }
-               if (fin == 1) break;
-       }
+       main_menu();
 
        endwin();
 
 
        endwin();
 
@@ -450,7 +423,29 @@ int main_menu()
                MENU_OPCION("Salir", "Salir del sistema.")
        };
 
                MENU_OPCION("Salir", "Salir del sistema.")
        };
 
-       return menu_ejecutar(mi_menu, 7, "Menu Principal");
+       while (menu_ejecutar(mi_menu, 7, "Menu Principal")) {
+               switch (c) {
+                       case 0:
+                               menu_articulos();
+                       break;
+                       case 1:
+                               menu_facturas();
+                       break;
+                       case 2:
+                               menu_ver_registros();
+                       break;
+                       case 3:
+                               menu_ver_bloques();
+                       break;
+                       case 4:
+                               menu_estadisticas();
+                       break;
+                       case 5:
+                               menu_mantenimiento();
+               }
+       }
+
+       return 0;
 }
 
 
 }
 
 
@@ -500,7 +495,7 @@ void menu_mantenimiento()
                MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
                MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
                MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
                MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
                MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
                MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
-               MENU_OPCION("Exportar Facturas", "Genera un archivo XML con las facturas."),
+               MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
 
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
 
@@ -682,23 +677,23 @@ void ver_estadisticas(EMUFS *fp)
 
 
        wattron(win, A_BOLD);
 
 
        wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
+       mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
        wattroff(win, A_BOLD);
        wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes (%.2f %%)", 
-                       stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,
+       sprintf(s, "%lu/%lu bytes (%.2f %%)", 
+                       stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
                        (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
        waddstr(win, s);
        
        wattron(win, A_BOLD);
                        (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
        waddstr(win, s);
        
        wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de campos de control de datos: ");
+       mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
        wattroff(win, A_BOLD);
        wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes (%.2f %%)", stats.tam_info_control_dat, stats.tam_info_control_dat*100.0f/(float)stats.tam_archivo);
+       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);
        waddstr(win, s);
 
        wattron(win, A_BOLD);
        waddstr(win, s);
 
        wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Espacio Libre : ");
+       mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
        wattroff(win, A_BOLD);
        wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes (%.2f %%)", stats.total_fs, stats.total_fs*100.0f/(float)stats.tam_archivo);
+       sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
        waddstr(win, s);
        
        wattron(win, A_BOLD);
        waddstr(win, s);
        
        wattron(win, A_BOLD);
@@ -731,6 +726,12 @@ void ver_estadisticas(EMUFS *fp)
        sprintf(s, "%lu bytes", stats.tam_archivos_aux);
        waddstr(win, s);
        
        sprintf(s, "%lu bytes", stats.tam_archivos_aux);
        waddstr(win, s);
        
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_info_control_dat);
+       waddstr(win, s);
+       
        if ((fp->tipo == T1) || (fp->tipo == T3)) {
                wattron(win, A_BOLD);
                mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
        if ((fp->tipo == T1) || (fp->tipo == T3)) {
                wattron(win, A_BOLD);
                mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
@@ -745,6 +746,10 @@ void ver_estadisticas(EMUFS *fp)
        sprintf(s, "%lu", stats.cant_registros);
        waddstr(win, s);
        
        sprintf(s, "%lu", stats.cant_registros);
        waddstr(win, s);
        
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
+       wattroff(win, A_BOLD);
+       
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
        wattroff(win, A_BLINK);
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
        wattroff(win, A_BLINK);