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; i<cant_reg; i++){
+ keys->claves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
+ bloque += tam_reg+sizeof(EMUFS_REG_ID);
+ }
+
+ free(bloque);
+ return keys;
+}
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_ */
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));
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));
free(r);
}
+v = emufs_tipo3_obtener_claves_raw(emu, 3);
+printf("Las claves del bloque 3 son:\n");
+for (i=0; i<v->cant_keys; i++)
+ printf("v[%d] = %d\n", i, v->claves[i]);
ver_arbol(emu);