]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Muestro el tipo de archivo que se esta mirando en Ver Registros
authorRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 21:41:18 +0000 (21:41 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 21:41:18 +0000 (21:41 +0000)
 * Agrego otro parametro a la GUI : el tamaño de bloque. Ahora
 si el archivo es T1 o T3 la GUI obliga a pasar por parametro
 el tamaño de registro que se desea para la creacion del archivo.

 * Mejoro el Makefile para compilar incremental

emufs_gui/Makefile
emufs_gui/articulos.c
emufs_gui/articulos.h
emufs_gui/gui.c
emufs_gui/registros.c

index 4eddd9b3cef26f135e1686dd21d978ae2a1e7c47..3a925f7eb23d738c1f894176677f73b53141c20d 100644 (file)
@@ -1,9 +1,10 @@
 CFLAGS=-Wall -g -I/usr/include/libxml2 -I../emufs -DDEBUG
 LDFLAGS= -lmenu -lncurses -lxml2
 
 CFLAGS=-Wall -g -I/usr/include/libxml2 -I../emufs -DDEBUG
 LDFLAGS= -lmenu -lncurses -lxml2
 
+OBJ=form.o gui.o articulos.o facturas.o registros.o ../emufs/libemufs.a
 all: gui 
 
 all: gui 
 
-gui: form.c gui.c articulos.c facturas.c registros.c ../emufs/libemufs.a
+gui: $(OBJ)
 
 clean:
        @$(RM) -vf *.o gui
 
 clean:
        @$(RM) -vf *.o gui
index 83b5fb82ead05c318de94b84d733dd80eb823c91..dd4e29a20b1852916436d5b4da530e71295f2e6b 100644 (file)
@@ -60,7 +60,7 @@ int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
        return 1;
 }
 
        return 1;
 }
 
-t_LstArticulos *art_cargar(const char *filename, int tipo)
+t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
 {
        xmlDocPtr document;
        xmlNode *node, *inicio;
 {
        xmlDocPtr document;
        xmlNode *node, *inicio;
@@ -94,7 +94,8 @@ t_LstArticulos *art_cargar(const char *filename, int tipo)
                        node = node->next;
                }
 
                        node = node->next;
                }
 
-               tmp->fp = emufs_crear("articulos", tipo-1, sizeof(t_Articulo)*40+128, sizeof(t_Articulo));
+               fprintf(stderr, "bloque = %d\n", tam_bloque);
+               tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
index 6ea5693cae966ef68a232613df16dd1f264167ec..8d7ecedd0b8efd6ade1361ba371f05d7641f3a2f 100644 (file)
@@ -32,7 +32,7 @@ typedef struct _lista_articulos_ {
        EMUFS *fp; /* Filepointer al archivo donde estan los datos */
 } t_LstArticulos;
 
        EMUFS *fp; /* Filepointer al archivo donde estan los datos */
 } t_LstArticulos;
 
-t_LstArticulos *art_cargar(const char *filename, int tipo);
+t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_registro);
 int art_liberar(t_LstArticulos *l);
 t_Articulo *art_obtener(t_LstArticulos *, const char *numero, EMUFS_REG_ID *id);
 void art_agregar(char *);
 int art_liberar(t_LstArticulos *l);
 t_Articulo *art_obtener(t_LstArticulos *, const char *numero, EMUFS_REG_ID *id);
 void art_agregar(char *);
index 7bebab5d98fe49876785050da4d1f080b6ab314c..ec90147567c7c9294ea0fce2de298ae85e9808ee 100644 (file)
@@ -22,7 +22,7 @@ void menu_articulos();
 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
 void msg_box_free(WINDOW *padre, WINDOW *win);
 
 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
 void msg_box_free(WINDOW *padre, WINDOW *win);
 
-typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO} t_Param;
+typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param;
 
 /* Verifica Argumentos */
 t_Param param_ok(int argc, char *argv[])
 
 /* Verifica Argumentos */
 t_Param param_ok(int argc, char *argv[])
@@ -33,9 +33,11 @@ t_Param param_ok(int argc, char *argv[])
 
                if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
                        /* Luego del archivo XML debe seguir el tipo */
 
                if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
                        /* Luego del archivo XML debe seguir el tipo */
-                       if ((i+2)<argc) {
+                       if ((i+1)<argc) {
                                n = atoi(argv[i+1]);
                                if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
                                n = atoi(argv[i+1]);
                                if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
+                               if (((n == 1) || (n == 3)) && ((i+2)>=argc))
+                                       return BLOQUE_NO_DEFINIDO;
                        } else {
                                /* Ops, no hay mas parametros */
                                return TIPO_NO_DEFINIDO;
                        } else {
                                /* Ops, no hay mas parametros */
                                return TIPO_NO_DEFINIDO;
@@ -64,7 +66,10 @@ int main(int argc, char *argv[])
                        print_help(argv[0]);
                        return 0;
                case TIPO_NO_DEFINIDO:
                        print_help(argv[0]);
                        return 0;
                case TIPO_NO_DEFINIDO:
-                       printf("Falta parámetro requerido. Luego del nombre del archivo debe especificar el tipo de archivo\n");
+                       printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
+                       return 1;
+               case BLOQUE_NO_DEFINIDO:
+                       printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
                        return 1;
                case TIPO_INVALIDO:
                        printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
                        return 1;
                case TIPO_INVALIDO:
                        printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
@@ -127,11 +132,11 @@ int main(int argc, char *argv[])
        wrefresh(stdscr);
 
        dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
        wrefresh(stdscr);
 
        dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
-       if (argc == 3) {
-               art_cargar(argv[1], atoi(argv[2]));
+       if (argc == 4) {
+               art_cargar(argv[1], atoi(argv[2]), atoi(argv[3]));
                fact_cargar(argv[1]);
        } else
                fact_cargar(argv[1]);
        } else
-               art_cargar(NULL, -1);
+               art_cargar(NULL, -1, -1);
 
        msg_box_free(stdscr, dialog);
 
 
        msg_box_free(stdscr, dialog);
 
index 9f816a12273f0d9884206b0643d2bdfdac588d90..69d73b66e4a2d71978271ff96dfd8cec9e1b9fd7 100644 (file)
@@ -60,18 +60,25 @@ void ver_registros(WINDOW *padre, int w, int h)
        EMUFS *fp;
        int pos_actual, ancho_registro, offset, pos;
        fp = emufs_abrir("articulos");
        EMUFS *fp;
        int pos_actual, ancho_registro, offset, pos;
        fp = emufs_abrir("articulos");
+       wattron(padre, COLOR_PAIR(COLOR_BLUE));
+       mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
+       wattroff(padre, COLOR_PAIR(COLOR_BLUE));
        switch (fp->tipo) {
                case T1:
        switch (fp->tipo) {
                case T1:
-               case T2:
+                       waddstr(padre, "Registro variable con bloque parametrizado.");
                        procesar = procesar_registro_articulo_tipo1;
                break;
                        procesar = procesar_registro_articulo_tipo1;
                break;
+               case T2:
+                       waddstr(padre, "Registro variable sin bloques.");
+               break;
                case T3:
                        procesar = procesar_registro_articulo_tipo3;
                case T3:
                        procesar = procesar_registro_articulo_tipo3;
+                       waddstr(padre, "Registro fijo con bloque parametrizado.");
        }
 
        total_indice = emufs_idx_get_count(fp);
 
        }
 
        total_indice = emufs_idx_get_count(fp);
 
-       ant_indice = 1;
+       ant_indice = 0;
        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
        data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
        data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
@@ -87,7 +94,7 @@ void ver_registros(WINDOW *padre, int w, int h)
 
        curs_set(0);
 
 
        curs_set(0);
 
-       mostrar_info(padre, h, actual_ancho);
+       mostrar_info(padre, h, offset_alto);
        
        mvwaddnstr(actual[1], 0, 0, data, pos_actual);
        wattron(actual[1], A_BOLD);
        
        mvwaddnstr(actual[1], 0, 0, data, pos_actual);
        wattron(actual[1], A_BOLD);
@@ -124,7 +131,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                total_indice = emufs_idx_get_count(fp);
 
                                /* Tengo que re-pintar algunas cosas */
                                total_indice = emufs_idx_get_count(fp);
 
                                /* Tengo que re-pintar algunas cosas */
-                               mostrar_info(padre, h, actual_ancho);
+                               mostrar_info(padre, h, offset_alto);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;                  
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;                  
@@ -139,7 +146,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
                                /* Tengo que re-pintar algunas cosas */
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
                                /* Tengo que re-pintar algunas cosas */
-                               mostrar_info(padre, h, actual_ancho);
+                               mostrar_info(padre, h, offset_alto);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;