From: Nicolás Dimov Date: Sun, 30 May 2004 08:08:28 +0000 (+0000) Subject: obtencion de claves en los tipos 4 y 5 finish X-Git-Tag: svn_import_r684~78 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/1ce8a06b37a0daec2f4d3d030ed183f8f88074e4 obtencion de claves en los tipos 4 y 5 finish --- diff --git a/emufs/tipo3.c b/emufs/tipo3.c index db46185..ba43342 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -982,3 +982,42 @@ EMUFS_REG_ID emufs_tipo3_modificar_registro_plus(EMUFS *emu, CLAVE k, void *ptr emufs_tipo3_eliminar_ordenado(emu, k, dato); return emufs_tipo3_insertar_ordenado(emu, ptr, size, err); } + +B_PLUS_KEYBUCKET *emufs_tipo3_obtener_claves_raw(EMUFS *emu, int num_bloque) +{ + B_PLUS_KEYBUCKET *keys; + char *bloque; + int err = 0, cant_reg, i; + EMUFS_REG_SIZE tam_reg = emu->tam_reg; + + keys = (B_PLUS_KEYBUCKET*)malloc(sizeof(B_PLUS_KEYBUCKET)); + if (keys == NULL){ + PERR("NO SE PUDO CREAR EL BUCKET"); + return NULL; + } + /*leo el bloque*/ + bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err); + if ( bloque == NULL ){ + PERR("NO SE PUDO LEER EL BLOQUE"); + return NULL; + } + /*leo la cantidad de registros*/ + memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int)); + /*ya se cuanto guardarle al vector*/ + keys->claves = (CLAVE*)malloc(cant_reg*sizeof(CLAVE)); + if (keys->claves == NULL){ + PERR("NO SE PUDO CREAR EL ARRAY DE CLAVES"); + free(keys); + return NULL; + } + keys->cant_keys = cant_reg; + keys->current_key = 0; + + for (i=0; iclaves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID)); + bloque += tam_reg+sizeof(EMUFS_REG_ID); + } + + free(bloque); + return keys; +} diff --git a/emufs/tipo3.h b/emufs/tipo3.h index 92ee8de..2229796 100644 --- a/emufs/tipo3.h +++ b/emufs/tipo3.h @@ -151,4 +151,6 @@ int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave,INDICE_DATO dato); void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err); EMUFS_REG_ID emufs_tipo3_modificar_registro_plus(EMUFS *emu, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); + +B_PLUS_KEYBUCKET *emufs_tipo3_obtener_claves_raw(EMUFS *emu, int num_bloque); #endif /* _EMUFS_TIPO3_H_ */ diff --git a/emufs/tipo3_bplus_main.c b/emufs/tipo3_bplus_main.c index e1b2942..74f1066 100644 --- a/emufs/tipo3_bplus_main.c +++ b/emufs/tipo3_bplus_main.c @@ -79,7 +79,7 @@ int main (int argc,char* argv[]) int err=0, i, res; INDICE_DATO dato; INDEX_DAT q; - + B_PLUS_KEYBUCKET *v; texto = "PARTE COSNSTANTE, clave ="; texto2= "FIN DE REGISTRO DE LONG CONSTANTE LO HAGO MAS LARGO PARA PROBAR CUANDO SE PARTE UN BLOQUE"; printf("TAMANIO DE LOS REGISTROS = %d\n",strlen(texto)+sizeof(CLAVE)+strlen(texto2)); @@ -210,7 +210,9 @@ if (r) imprimir_reg(r, strlen(texto), size); */ -for ( i=0; i<5000; i++){ + + +for ( i=0; i<50; i++){ srandom(i); clave.i_clave = random()%10000; r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2)); @@ -219,7 +221,11 @@ for ( i=0; i<5000; i++){ free(r); } +v = emufs_tipo3_obtener_claves_raw(emu, 3); +printf("Las claves del bloque 3 son:\n"); +for (i=0; icant_keys; i++) + printf("v[%d] = %d\n", i, v->claves[i]); ver_arbol(emu);