From: Nicolás Dimov Date: Sun, 30 May 2004 07:58:42 +0000 (+0000) Subject: devuelvo arrray de claves para bugo, reporta errores X-Git-Tag: svn_import_r684~79 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/c1c321615d816043d7632e1fb9d6b7dd131d2d72 devuelvo arrray de claves para bugo, reporta errores --- diff --git a/emufs/tipo1.c b/emufs/tipo1.c index b1ec2ce..d780b12 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -1125,3 +1125,43 @@ EMUFS_REG_ID emufs_tipo1_modificar_registro_plus(EMUFS *emu, CLAVE k, void *ptr emufs_tipo1_eliminar_ordenado(emu, k, dato); return emufs_tipo1_insertar_ordenado(emu, ptr, size, err); } + +B_PLUS_KEYBUCKET *emufs_tipo1_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; + + 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_tipo1_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_TIPO1_REG_HEADER)); + bloque += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); + } + + free(bloque); + return keys; +} diff --git a/emufs/tipo1.h b/emufs/tipo1.h index 5411905..4e4deb3 100644 --- a/emufs/tipo1.h +++ b/emufs/tipo1.h @@ -85,4 +85,6 @@ int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato); void *emufs_tipo1_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err); EMUFS_REG_ID emufs_tipo1_modificar_registro_plus(EMUFS *emu, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); + +B_PLUS_KEYBUCKET *emufs_tipo1_obtener_claves_raw(EMUFS *emu, int num_bloque); #endif /* _EMUFS_TIPO1_H_ */ diff --git a/emufs/tipo3_bplus_main.c b/emufs/tipo3_bplus_main.c index 025f2f2..e1b2942 100644 --- a/emufs/tipo3_bplus_main.c +++ b/emufs/tipo3_bplus_main.c @@ -165,7 +165,7 @@ emufs_tipo3_eliminar_ordenado(emu, clave, &err); printf("tam reg = %d\n", emu->tam_reg); clave.i_clave = 77; emufs_tipo3_eliminar_ordenado(emu, clave, dato); -/* + clave.i_clave = 80; emufs_tipo3_eliminar_ordenado(emu, clave, dato); @@ -176,7 +176,19 @@ emufs_tipo3_eliminar_ordenado(emu, clave, dato); clave.i_clave = 93; emufs_tipo3_eliminar_ordenado(emu, clave, dato); +clave.i_clave = 95; +emufs_tipo3_eliminar_ordenado(emu, clave, dato); + +clave.i_clave = 90; +emufs_tipo3_eliminar_ordenado(emu, clave, dato); + clave.i_clave = 80; + r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2)); + imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE)); + len = strlen(texto)+strlen(texto2)+sizeof(CLAVE); + emufs_tipo3_insertar_ordenado(emu, r, len, &err); + PERR("REGISTRO 7 GRABADO"); + free(r); /* q.clave.i_clave = 95; q.num_bloque = 2; @@ -196,17 +208,17 @@ if (err) PERR(" NO SE LEYO EL REGISTRO"); if (r) imprimir_reg(r, strlen(texto), size); +*/ -/* -for ( i=0; i<10000; i++){ +for ( i=0; i<5000; i++){ srandom(i); - clave.i_clave = random()%100000; + clave.i_clave = random()%10000; r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2)); len = strlen(texto)+strlen(texto2)+sizeof(CLAVE); emufs_tipo3_insertar_ordenado(emu, r, len, &err); free(r); } -*/ +