From: Ricardo Markiewicz Date: Sat, 29 May 2004 18:43:52 +0000 (+0000) Subject: * Cambio algunos printf por fprintf(stderr X-Git-Tag: svn_import_r684~117 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/2470cecbf9f0f40714b9f50d9a76d187abe336e6?ds=inline * Cambio algunos printf por fprintf(stderr * Agrego un nuevo campo en INDICE para poder usar claves string en tipos de archivo de registro de long variable * Seguro que algo mas cambie. --- diff --git a/emufs/b_plus_test.c b/emufs/b_plus_test.c index c9ccc83..00f0c6b 100644 --- a/emufs/b_plus_test.c +++ b/emufs/b_plus_test.c @@ -15,7 +15,7 @@ int tam_nodo = SIZE_B_PLUS_HEADER + sizeof(CLAVE)*5 + sizeof(CLAVE)*6; /* Creamos un handler EMUFS, luego un Indice B+ y testing... */ EMUFS *emu = emufs_crear("fact",T1,512,0); -emufs_agregar_indice(emu,"nrofact",IND_PRIMARIO,IND_B_PLUS,IDX_INT,16,tam_nodo); +emufs_agregar_indice(emu,"nrofact",IND_PRIMARIO,IND_B_PLUS,IDX_INT,16,tam_nodo, 0); printf("\nTam Nodo: %i Size Claves: %i Size_Hijos: %i\n",emu->indices->tam_bloque,emu->indices->size_claves,emu->indices->size_hijos); for (i=1;i<34;i = i*2) @@ -48,17 +48,17 @@ printf("Exit Code del get bloque: %i\n",exitcode); querydata.clave.i_clave = 4; querydata.num_bloque = 0; /* al pedo */ exitcode = b_plus_existe_clave(emu->indices,&querydata,0); -if (exitcode == 1) printf("El nodo hoja donde esta la clave %i es %i\n",querydata.clave.i_clave,querydata.num_bloque); +if (exitcode == 1) printf("El nodo hoja donde esta la clave %i es %ld\n",querydata.clave.i_clave,querydata.num_bloque); printf("Exit Code del Buscar Clave: %i\n",exitcode); querydata.clave.i_clave = 4; if ((exitcode = b_plus_buscar_prepost(emu->indices,querydata.clave,0,&postkey,1)) == -1) printf("Busque una clave mayor o igual a la mas grande del arbol\n"); -printf("El Sucesor de la clave %i es %i cuyo hijo es %i\n",querydata.clave.i_clave,postkey.clave.i_clave,postkey.num_bloque); +printf("El Sucesor de la clave %i es %i cuyo hijo es %ld\n",querydata.clave.i_clave,postkey.clave.i_clave,postkey.num_bloque); if ((exitcode = b_plus_buscar_prepost(emu->indices,querydata.clave,0,&prekey,0)) == -1) printf("Busque una clave menor o igual a la mas chica del arbol\n"); -printf("El Predecesor de la clave %i es %i cuyo hijo es %i\n",querydata.clave.i_clave,prekey.clave.i_clave,prekey.num_bloque); +printf("El Predecesor de la clave %i es %i cuyo hijo es %ld\n",querydata.clave.i_clave,prekey.clave.i_clave,prekey.num_bloque); /*exitcode = emufs_b_plus_reemplazar_clave(emu->indices,querydata.clave,prekey);*/ /*querydata.clave.i_clave = 32; diff --git a/emufs/emufs.c b/emufs/emufs.c index 8ad9604..712ae91 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -374,7 +374,7 @@ int debug_ver_estadisticas(EMUFS* efs) return 0; } -int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque) +int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque, int str_offset) { INDICE *tmp; int error=0; @@ -408,7 +408,7 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC /* Creo el nuevo indice */ PERR("Creando indice\n"); - tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque); + tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque, str_offset); /* Guardo la info del indice para poder abrir despues el archivo */ guardar_indice(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque); diff --git a/emufs/emufs.h b/emufs/emufs.h index f9f7b85..b73eaaf 100644 --- a/emufs/emufs.h +++ b/emufs/emufs.h @@ -173,7 +173,7 @@ int ver_archivo_FS(EMUFS *emu); /** muestra estadisticas, para debug. */ int debug_ver_estadisticas(EMUFS *emu); -int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque); +int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque, int str_offset); INDICE_DATO *emufs_buscar_registros(EMUFS *emu, char *indice, char *data, int *cant); diff --git a/emufs/indices.c b/emufs/indices.c index f7a0ff2..33b6f7d 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -4,7 +4,7 @@ #include "indice_b.h" #include "indice_bplus.h" -INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque) +INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque, int str_offset) { int len; INDICE *tmp; @@ -49,6 +49,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND } tmp->offset = offset; + tmp->str_offset = str_offset; tmp->sig = NULL; tmp->size_claves = 0; tmp->size_hijos = 0; @@ -150,6 +151,8 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) { CLAVE k; int error; + int c; + char *ptr; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -159,12 +162,19 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) k.i_clave = *((int *)(data+idx->offset)); break; case IDX_STRING: + /* Tengo que buscar donde empieza el campo */ + ptr = data + idx->offset; + c = idx->str_offset; + + while (c) { + if ((*ptr) == '\0') c--; + ptr++; + } error = 0; - PERR(idx->nombre); - PERR(data+idx->offset); + fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr); k.i_clave = idx->emu_string->grabar_registro(idx->emu_string, - data+idx->offset, - strlen(data+idx->offset)+1, + ptr, + strlen(ptr)+1, &error ); } @@ -214,8 +224,13 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2) case IDX_STRING: error = 0; sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error); + if (sc1 == NULL) return 0; error = 0; sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error); + if (sc2 == NULL) { + free(sc2); + return 0; + } /* Salteo el caracter que indica si la clave en temporal */ a = b = 0; if (*sc1 == '*') a=1; diff --git a/emufs/indices.h b/emufs/indices.h index 0a83bc3..d043ab7 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -54,6 +54,7 @@ typedef struct _indices_h_ { INDICE_TIPO_DATO tipo_dato; /**< Tipo de dato a manejar */ INDICE_FUNCION funcion; /**< Funcion del indice */ int offset; /**< Offset desde el inicio del dato hasta el lugar donde esta la clave */ + int str_offset; /**< Si el campo es de string, aca va el numero de \0 que me tengo que saltar */ unsigned int tam_bloque; /**< Tamaño del bloque (nodo). Deber set multiplo de 512! */ /******NICO********/ @@ -110,7 +111,7 @@ typedef struct _indices_h_ { * \param offset Desplazamiento de la clave dentro del dato * \param tam_bloque Tamaño del bloque (nodo) del arbol */ -INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque); +INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque, int str_offset); /** Destruye un indice * diff --git a/emufs/tipo1_bplus_main.c b/emufs/tipo1_bplus_main.c index 2afbd16..81a0487 100644 --- a/emufs/tipo1_bplus_main.c +++ b/emufs/tipo1_bplus_main.c @@ -22,7 +22,7 @@ void imprimir_reg(char* reg, int off, int len) CLAVE clave; int i; memcpy(&clave, reg+off, sizeof(CLAVE)); - printf("CLAVE = %d\n", clave); + printf("CLAVE = %d\n", clave.i_clave); printf("REGISTRO ="); for(i=0; ifp = emufs_crear("articulos", param->tipo_arch_art, param->tam_bloque_art, sizeof(t_Articulo)); /* Agrego los indices */ PERR("Voy a agregar un indice"); - emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, presentacion), 20480); - emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 2048); - emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512); + emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512, 1); + emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512, 0); + emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512, 0); if (!tmp->fp) { PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS"); free(tmp); @@ -816,6 +816,8 @@ void art_consultas_cambiar_precio(char *s, t_Lista *lista) form_agregar_widget(form, INPUT, "Desc. Articulo (nulo==Todos)", 50, ""); form_agregar_widget(form, INPUT, "Ingrese %", 8, "0"); + werase(lista->win); + wrefresh(lista->win); form_ejecutar(form, 2, 2); por = form_obtener_valor_float(form, "Ingrese %"); @@ -864,7 +866,10 @@ void art_consultas_cambiar_precio(char *s, t_Lista *lista) * borrar sea capaz de eliminar solo el item que corresponde en las * claves con repeticion */ + PERR("=== MODIFICANDO ==="); + fprintf(stderr, "Desc=%s , PVU=%s, Codigo=%d\n", articulo.desc, articulo.pvu, articulo.numero); lst_articulos->fp->modificar_registro(lst_articulos->fp, k1, tmp, size, &error, datos[i]); + PERR("=== FIN ==="); } } if (datos) free(datos); diff --git a/emufs_gui/emufs.xml b/emufs_gui/emufs.xml index 9951e34..4ede2d8 100644 --- a/emufs_gui/emufs.xml +++ b/emufs_gui/emufs.xml @@ -4,7 +4,7 @@ articulos.xml - + diff --git a/emufs_gui/facturas.c b/emufs_gui/facturas.c index a0b529f..c3a82ff 100644 --- a/emufs_gui/facturas.c +++ b/emufs_gui/facturas.c @@ -232,8 +232,8 @@ t_LstFacturas *fact_cargar(t_Parametros *param) cant_items = 0; } tmp->fp = emufs_crear("facturas", param->tipo_arch_fact, param->tam_bloque_fact, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item)); - emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512); - emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512); + emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512, 0); + emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512, 0); tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100); for (node=inicio ; node ; node = node->next) { if (node->type == XML_ELEMENT_NODE) {