]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
littles correcciones, lo que esta escrito no es necesariamente cierto pero es lo...
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index cccd03648aeefe1f89ae72a0e9d9ba50dcc7a8d7..1b6844d002e6e4032422b971b83dc99448f2f515 100644 (file)
@@ -28,7 +28,6 @@ void menu_ver_registros();
 void menu_ver_bloques();
 void menu_ver_indices();
 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
-char *preguntar_file();
 
 void ver_estadisticas(EMUFS *fp);
 
@@ -45,23 +44,15 @@ typedef enum {
 
 void print_help(char *s)
 {
-       printf("EMUFS - 1v0\n");
-       printf("Modo de uso :%s -a <archivo XML> tipo -f <archivo XML> tipo [tam_bloque] tipo_n [tam_bloque_n]\n", s);
-       printf("  -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
-       printf("     tipo_n == Tipo de archivo para el archivo de notas\n");
-       printf("     tam_bloque_n == Tamaño de bloque para el archivo de notas (si corresponde)\n");
-       printf("  -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
-       printf("  'tipo' es el modo de archivo. Siendo :\n");
-       printf("     1 - Registros long. variables con bloque parametrizado\n");
-       printf("     2 - Registros long. variables sin bloque\n");
-       printf("     3 - Registros long fija con bloque parametrizado\n");
-       printf("  tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
+       printf("EMUFS - 2v0\n");
+       printf("Modo de uso :%s [<emufs.xml>|-h] \n", s);
+       printf("\temufs.xml es el archivo XML que cumple con emufs.dtd con la configuracion a usar.\n");
+       printf("\t-h Muestra este msg de ayuda.\n");
 }
 
 int leer_tipo_arbol(char *s) {
        if (strcmp(s, "B") == 0) return 0;
        if (strcmp(s, "BA") == 0) return 1;
-       if (strcmp(s, "BP") == 0) return 2;
 
        /* Por defecto es un B */
        return 0;
@@ -270,13 +261,61 @@ int main(int argc, char *argv[])
 {
        WINDOW *dialog;
 
-       if (argc != 2) {
+       if (argc > 2) {
                print_help(argv[0]);
+               exit(0);
        }
 
-       if (argc == 2)
+       if (argc == 2) {
+               if (strcmp(argv[1], "-h")==0) {
+                       print_help(argv[0]);
+                       exit(0);
+               }
                param_xml(argv[1], &parametros);
 
+               /* Valido que los tamaños de los bloques sean multiplos de 512 */
+               if ((parametros.tam_bloque_art%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.tam_bloque_fact%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_art[0].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_art[1].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_art[2].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_fac[0].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_fac[1].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_fac[2].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_fac[3].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+               if ((parametros.ind_fac[4].tam_bloque%512) != 0) {
+                       PERR("Los tamaños de bloque deben ser multiplos de 512!!");
+                       exit(1);
+               }
+       }
+
 #ifdef DEBUG
        printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
        printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
@@ -361,7 +400,7 @@ void menu_facturas()
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
+       while ((opt = menu_ejecutar(mi_menu, 6, "Menu Facturas")) != 5) {
                switch (opt) {
                        case 0:
                                fact_agregar(NULL);
@@ -374,6 +413,7 @@ void menu_facturas()
                        break;
                        case 3:
                                fact_consultas(NULL);
+                       break;
                        case 4:
                                fact_recorrer();
                }
@@ -684,7 +724,11 @@ void menu_mantenimiento()
                                preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
                                preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
                                dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
-                               fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
+                               parametros.tipo_arch_fact = nuevo_tipo;
+                               parametros.tam_bloque_fact = nuevo_tam_bloque;
+                               parametros.tipo_arch_nota = nuevo_tipo1;
+                               parametros.tam_bloque_nota = nuevo_tam_bloque1;
+                               fact_reformatear(&parametros);
                                msg_box_free(stdscr, dlg);
                        break;
                        case 5:
@@ -717,18 +761,20 @@ void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *ta
        char *s;
        int n, is_ok;
 
-       win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
+       win = newwin(LINES/2, 2*COLS/3, LINES/4, 2*COLS/6);
        box(win, 0, 0);
 
        mvwaddstr(win, 0, 1, title);
        form = form_crear(win);
-       form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
+       form_agregar_widget(form, RADIO, "Tipo de archivo", 5, "T1,T2,T3,T4,T5");
        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;
+       if (strcmp(s, "T4") == 0) n = T4;
+       if (strcmp(s, "T5") == 0) n = T5;
 
        form_destruir(form);
 
@@ -776,6 +822,19 @@ void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *ta
                        if ((*tam_reg) != -1)
                                (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
                        form_destruir(form);
+                       break;
+               case T4:
+               case T5:
+                       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);
        }
        werase(win);
        wrefresh(win);
@@ -823,6 +882,27 @@ void ver_estadisticas(EMUFS *fp)
                        wattroff(win, A_BOLD);
                        sprintf(s, "%lu bytes", fp->tam_reg);
                        waddstr(win, s);
+               break;
+               case T5:
+                       waddstr(win, "Registro long. fija con bloque parametrizado (Seq. Indexado)");
+                       wattron(win, A_BOLD);
+                       mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
+                       wattroff(win, A_BOLD);
+                       sprintf(s, "%lu bytes", fp->tam_bloque);
+                       waddstr(win, s);
+                       wattron(win, A_BOLD);
+                       mvwaddstr(win, i++, 1, "Tamaño de registro : ");
+                       wattroff(win, A_BOLD);
+                       sprintf(s, "%lu bytes", fp->tam_reg);
+                       waddstr(win, s);
+               break;
+               case T4:
+                       waddstr(win, "Registro long. variable con bloque parametrizado (Seq. Indexado)");
+                       wattron(win, A_BOLD);
+                       mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
+                       wattroff(win, A_BOLD);
+                       sprintf(s, "%lu bytes", fp->tam_bloque);
+                       waddstr(win, s);
        }