From: Ricardo Markiewicz Date: Wed, 14 Apr 2004 05:37:46 +0000 (+0000) Subject: * Ver Registro ahora desplaza y resalta los registros, valida movimiento X-Git-Tag: svn_import_r684~499 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/7c6aeb03b056e8482f70fa8329bafb5d18fab43d?ds=sidebyside * Ver Registro ahora desplaza y resalta los registros, valida movimiento * 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 --- diff --git a/emufs_gui/Makefile b/emufs_gui/Makefile index c7dc232..e553553 100644 --- a/emufs_gui/Makefile +++ b/emufs_gui/Makefile @@ -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 diff --git a/emufs_gui/articulos.c b/emufs_gui/articulos.c index 517e0cf..422bbb7 100644 --- a/emufs_gui/articulos.c +++ b/emufs_gui/articulos.c @@ -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) { diff --git a/emufs_gui/articulos.h b/emufs_gui/articulos.h index 4182256..53aa750 100644 --- a/emufs_gui/articulos.h +++ b/emufs_gui/articulos.h @@ -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 *); diff --git a/emufs_gui/facturas.c b/emufs_gui/facturas.c index f6f2e7c..0016c9f 100644 --- a/emufs_gui/facturas.c +++ b/emufs_gui/facturas.c @@ -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) { diff --git a/emufs_gui/gui.c b/emufs_gui/gui.c index 2233c05..ccc9311 100644 --- a/emufs_gui/gui.c +++ b/emufs_gui/gui.c @@ -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 [ 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); diff --git a/emufs_gui/registros.c b/emufs_gui/registros.c index 0a9324f..b231339 100644 --- a/emufs_gui/registros.c +++ b/emufs_gui/registros.c @@ -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; }