]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
un poco mas de B+
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index f282e7be4d2721ea7ef97540749d07934f4c20d9..98acbe828d1ffde0c6159b29bbe7b27dd2699fcb 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);
 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);
 
 
 void ver_estadisticas(EMUFS *fp);
 
@@ -45,23 +44,15 @@ typedef enum {
 
 void print_help(char *s)
 {
 
 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;
 }
 
 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;
 
        /* Por defecto es un B */
        return 0;
@@ -264,18 +255,67 @@ void param_xml(char *s, t_Parametros *param)
        }
 }
 
        }
 }
 
+static t_Parametros parametros;
+
 int main(int argc, char *argv[])
 {
        WINDOW *dialog;
 int main(int argc, char *argv[])
 {
        WINDOW *dialog;
-       t_Parametros parametros;
 
 
-       if (argc != 2) {
+       if (argc > 2) {
                print_help(argv[0]);
                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);
 
                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 ");
 #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 ");
@@ -360,7 +400,7 @@ void menu_facturas()
        };
        int opt;
                
        };
        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);
                switch (opt) {
                        case 0:
                                fact_agregar(NULL);
@@ -373,6 +413,7 @@ void menu_facturas()
                        break;
                        case 3:
                                fact_consultas(NULL);
                        break;
                        case 3:
                                fact_consultas(NULL);
+                       break;
                        case 4:
                                fact_recorrer();
                }
                        case 4:
                                fact_recorrer();
                }
@@ -387,11 +428,12 @@ void menu_articulos()
                MENU_OPCION("Modificacion", "Modifica un articulo existente."),
                MENU_OPCION("Consultas", "Consulta varias de articulo."),
                MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
                MENU_OPCION("Modificacion", "Modifica un articulo existente."),
                MENU_OPCION("Consultas", "Consulta varias de articulo."),
                MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
+               MENU_OPCION("Ver ventas", "Ver venta de articulos entre 2 fechas."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
+       while ((opt = menu_ejecutar(mi_menu, 7, "Menu Articulos")) != 6) {
                switch (opt) {
                        case 0:
                                art_agregar(NULL);
                switch (opt) {
                        case 0:
                                art_agregar(NULL);
@@ -407,6 +449,9 @@ void menu_articulos()
                        break;
                        case 4:
                                art_recorrer();
                        break;
                        case 4:
                                art_recorrer();
+                       break;
+                       case 5:
+                               art_ver_ventas();
                }
        }
 
                }
        }
 
@@ -669,7 +714,9 @@ void menu_mantenimiento()
                                nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
                                preguntar_nuevo_tipo("Parametros para  Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
                                dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
                                nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
                                preguntar_nuevo_tipo("Parametros para  Articulos", &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);
+                               parametros.tipo_arch_art = nuevo_tipo;
+                               parametros.tam_bloque_art = nuevo_tam_bloque;
+                               art_reformatear(&parametros);
                                msg_box_free(stdscr, dlg);
                        break;
                        case 4:
                                msg_box_free(stdscr, dlg);
                        break;
                        case 4:
@@ -715,13 +762,15 @@ void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *ta
 
        mvwaddstr(win, 0, 1, title);
        form = form_crear(win);
 
        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", 3, "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;
        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);
 
 
        form_destruir(form);
 
@@ -769,6 +818,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);
                        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);
        }
        werase(win);
        wrefresh(win);
@@ -929,3 +991,4 @@ char *preguntar_file()
        form_destruir(form);
        return t;
 }
        form_destruir(form);
        return t;
 }
+