]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Ver Registro ahora desplaza y resalta los registros, valida movimiento
authorRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 05:37:46 +0000 (05:37 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 05:37:46 +0000 (05:37 +0000)
 * GUI ahora toma algo de marametros :
    -h Muestra ayuda
archivo.xml tipo <-- genera articulos a partir del XML y el archivo es de tipo "tipo"
NADA <- trata de leer el archivo existente.

Miren los registros para distintos tipo de archivos. Claro que tipo1 y 2 ni
se notan que son distintos, pero el tipo3 si  hay muchos ***** :-D

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

index c7dc232fddbd02381d957a55fd9f06764a8318c7..e5535537e63da7e86f2acd51971424dc5fd664e9 100644 (file)
@@ -1,4 +1,4 @@
-CFLAGS=-Wall -g -DDEBUG -I/usr/include/libxml2 -I../emufs
+CFLAGS=-Wall -g -I/usr/include/libxml2 -I../emufs
 LDFLAGS= -lmenu -lncurses -lxml2
 
 all: gui 
index 517e0cf4f2ba979f5491174eaaeae47dada555fb..422bbb786da2e28a0af2b22a5073620f40b0f078 100644 (file)
@@ -60,7 +60,7 @@ int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
        return 1;
 }
 
-t_LstArticulos *art_cargar(const char *filename)
+t_LstArticulos *art_cargar(const char *filename, int tipo)
 {
        xmlDocPtr document;
        xmlNode *node, *inicio;
@@ -94,7 +94,7 @@ t_LstArticulos *art_cargar(const char *filename)
                        node = node->next;
                }
 
-               tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo)); 
+               tmp->fp = emufs_crear("articulos", tipo-1, sizeof(t_Articulo)*2, sizeof(t_Articulo)); 
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
index 4182256d25e6d78412a41dbb05a3f35b6906ebe2..53aa7504d2d84d48d604198b8812773c91f6e83b 100644 (file)
@@ -32,7 +32,7 @@ typedef struct _lista_articulos_ {
        EMUFS *fp; /* Filepointer al archivo donde estan los datos */
 } t_LstArticulos;
 
-t_LstArticulos *art_cargar(const char *filename);
+t_LstArticulos *art_cargar(const char *filename, int tipo);
 int art_liberar(t_LstArticulos *l);
 t_Articulo *art_obtener(t_LstArticulos *, const char *numero);
 void art_agregar(char *);
index f6f2e7cfdfb9f10f3a8c72deed10fc2e59728632..0016c9f1c805f4adb970edfdba704153217ec48c 100644 (file)
@@ -8,7 +8,7 @@ static int al_azar(int min, int max);
 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, int *size);
 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
-static int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
+int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
 
 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
 {
index 2233c050e471b9b4ec14bba6b833a2b90fb2b9b7..ccc93116833b5bcab3276554b835461317b37040 100644 (file)
@@ -22,16 +22,43 @@ void menu_articulos();
 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
 void msg_box_free(WINDOW *padre, WINDOW *win);
 
+/* Verifica Argumentos */
+int param_ok(int argc, char *argv[])
+{
+       int n;
+       switch (argc) {
+               case 1:
+                       return 1;
+               case 2:
+                       if (strcmp("-h", argv[1]) == 0) {
+                               return 0;
+                       }
+               case 3:
+                       n = atoi(argv[2]);
+                       if ((n<1) || (n>3))
+                               return 0;
+       }
+       return 1;
+}
+
+void print_help(char *s)
+{
+       printf("EMUFS - 1v0\n");
+       printf("Modo de uso : %s [<archivo articulos XML> tipo=[1|2|3]]\n", s);
+       printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo");
+       printf(" de archivo a crear, siendo 1, 2, 3\n");
+}
+
 int main(int argc, char *argv[])
 {
        int c, fin=0;
        WINDOW *dialog;
 
-       /*art_cargar(argv[1]);
+       if (!param_ok(argc, argv)) {
+               print_help(argv[0]);
+               return -1;
+       }
 
-       art_liberar(NULL);
-       return 1;
-*/
        /* Inicio Curses */
        signal(SIGINT, finish);
        initscr();
@@ -70,11 +97,11 @@ int main(int argc, char *argv[])
        wrefresh(stdscr);
 
        dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
-       if (argc == 2) {
-               art_cargar(argv[1]);
+       if (argc == 3) {
+               art_cargar(argv[1], atoi(argv[2]));
                fact_cargar(argv[1]);
        } else
-               art_cargar(NULL);
+               art_cargar(NULL, -1);
 
        msg_box_free(stdscr, dialog);
 
index 0a9324f6cd2a268665a4661c02317717a895c4ac..b231339111280de3b556372dd502f5e55c0b0c40 100644 (file)
@@ -1,35 +1,60 @@
 
 #include "registros.h"
+#include "idx.h"
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
-static char *procesar_registro(char *ptr, size_t size);
+static char *procesar_registro(char *ptr, EMUFS_REG_SIZE *size);
+
+#define ACT 0
+#define ANT 1
+#define SIG 2
 
 void ver_registros(WINDOW *padre, int w, int h)
 {
        /* Ventanas donde mostrar las cosas */
        WINDOW *actual[2], *ant[2], *sig[2];
-       int c, scroll, actual_ancho;
-       char *data;
+       EMUFS_REG_SIZE size;
+       int scroll, actual_ancho;
+       int max_scroll, c;
+       EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
+       char *data[3];
        EMUFS *fp;
+       int error;
        fp = emufs_abrir("articulos");
 
-       data = (char *)fp->leer_registro(fp, 0, &c, &scroll);
+       total_indice = emufs_idx_get_count(fp);
 
-       data = procesar_registro(data, c);
+       ant_indice = 0;
+       data[ANT] = (char *)fp->leer_registro(fp, ant_indice, &size, &error);
+       data[ANT] = procesar_registro(data[ANT], &size);
+       
+       data[ACT] = (char *)fp->leer_registro(fp, ant_indice+1, &size, &error);
+       data[ACT] = procesar_registro(data[ACT], &size);
+       
+       data[SIG] = (char *)fp->leer_registro(fp, ant_indice+2, &size, &error);
+       data[SIG] = procesar_registro(data[SIG], &size);
+
+       max_scroll = size / (w/3-2) - (h-4);
+       if (max_scroll < 0) max_scroll = 0;
 
        actual[0] = derwin(padre, h-2, w/3, 1, w/3);
        actual_ancho = w/3-2;
        actual[1] = derwin(actual[0], h-4, w/3-2, 1, 1);
        box(actual[0], 0, 0);
        ant[0] = derwin(padre, h-2, w/3, 1, 0);
+       ant[1] = derwin(ant[0], h-4, w/3-2, 1, 1);
        box(ant[0], 0, 0);
        sig[0] = derwin(padre, h-2, w/3, 1, w/3*2);
+       sig[1] = derwin(sig[0], h-4, w/3-2, 1, 1);
        box(sig[0], 0, 0);
 
        wattron(actual[1], A_BOLD);
-       mvwaddstr(actual[1], 0, 0, data);
+       mvwaddstr(actual[1], 0, 0, data[ACT]);
        wattroff(actual[1], A_BOLD);
        
+       mvwaddstr(sig[1], 0, 0, data[SIG]);
+       mvwaddstr(ant[1], 0, 0, data[ANT]);
+       
        wrefresh(sig[0]);
        wrefresh(ant[0]);
        wrefresh(actual[0]);
@@ -44,11 +69,52 @@ void ver_registros(WINDOW *padre, int w, int h)
                        break;
                        case 'z':
                                scroll++;
+                               if (scroll > max_scroll) scroll = max_scroll;
+                       case 'k': /* Desplano los registros a derecha! */
+                               if (ant_indice != EMUFS_NOT_FOUND) {
+                                       if (data[ANT]) free(data[ANT]);
+                                       if (data[ACT]) free(data[ACT]);
+                                       if (data[SIG]) free(data[SIG]);
+                                       ant_indice--;
+
+                                       data[ANT] = (char *)fp->leer_registro(fp, ant_indice, &size, &error);
+                                       data[ANT] = procesar_registro(data[ANT], &size);
+                                       data[ACT] = (char *)fp->leer_registro(fp, ant_indice+1, &size, &error);
+                                       data[ACT] = procesar_registro(data[ACT], &size);
+                                       data[SIG] = (char *)fp->leer_registro(fp, ant_indice+2, &size, &error);
+                                       data[SIG] = procesar_registro(data[SIG], &size);
+                               }
+                       break;
+                       case 'l': /* Desplazo los registros a izquieda!! */
+                               if (ant_indice+1 < total_indice-1) {
+                                       if (data[ANT]) free(data[ANT]);
+                                       if (data[ACT]) free(data[ACT]);
+                                       if (data[SIG]) free(data[SIG]);
+                                       ant_indice++;
+
+                                       data[ANT] = (char *)fp->leer_registro(fp, ant_indice, &size, &error);
+                                       data[ANT] = procesar_registro(data[ANT], &size);
+                                       data[ACT] = (char *)fp->leer_registro(fp, ant_indice+1, &size, &error);
+                                       data[ACT] = procesar_registro(data[ACT], &size);
+                                       data[SIG] = (char *)fp->leer_registro(fp, ant_indice+2, &size, &error);
+                                       data[SIG] = procesar_registro(data[SIG], &size);
+                               }
                }
+               /* Borro las ventanas */
                werase(actual[1]);
+               werase(sig[1]);
+               werase(ant[1]);
+
+               /* Imprimo los registros */
                wattron(actual[1], A_BOLD);
-               mvwaddstr(actual[1], 0, 0, data+actual_ancho*scroll);
+               if (data[ACT]) mvwaddstr(actual[1], 0, 0, data[ACT]+actual_ancho*scroll);
                wattroff(actual[1], A_BOLD);
+               if (data[SIG]) mvwaddstr(sig[1], 0, 0, data[SIG]);
+               if (data[ANT]) mvwaddstr(ant[1], 0, 0, data[ANT]);
+       
+               /* Refrescos para todos!! */
+               wrefresh(sig[1]);
+               wrefresh(ant[1]);
                wrefresh(actual[1]);
                wrefresh(actual[0]);
                wrefresh(padre);
@@ -57,6 +123,8 @@ void ver_registros(WINDOW *padre, int w, int h)
        delwin(actual[1]);
        werase(actual[0]);
        delwin(actual[0]);
+       delwin(ant[1]);
+       delwin(sig[1]);
        werase(sig[0]);
        delwin(sig[0]);
        werase(ant[0]);
@@ -64,14 +132,15 @@ void ver_registros(WINDOW *padre, int w, int h)
        wrefresh(padre);
 }
 
-static char *procesar_registro(char *ptr, size_t size)
+static char *procesar_registro(char *ptr, EMUFS_REG_SIZE *size)
 {
        char *tmp, *salida, *tmp1;
-       salida = (char *)malloc(size-sizeof(unsigned int)+10+1);
+       if (ptr == NULL) return NULL;
+       salida = (char *)malloc((*size)-sizeof(unsigned int)+11);
        sprintf(salida, "(%08d)", *((unsigned int *)ptr));
        tmp1 = salida+10;
        tmp = ptr+sizeof(unsigned int);
-       while (tmp < (ptr+size)) {
+       while (tmp < (ptr + (*size))) {
                if (*tmp == '\0') {
                        (*tmp1) = '|';
                } else {
@@ -81,6 +150,8 @@ static char *procesar_registro(char *ptr, size_t size)
                tmp1++;
        }
        free(ptr);
+       (*tmp1) = '\0';
+       (*size) = (*size)-sizeof(unsigned int)+11;
        return salida;
 }