X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/44479d8b55485e97a5ebb95a5fac73b0b7627a6a..4cbdb39bf0f27ac467d8132ffb03c5a69fdd56e6:/emufs/tipo3.c diff --git a/emufs/tipo3.c b/emufs/tipo3.c index 71053f5..fb0acd5 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -86,7 +86,6 @@ int emufs_tipo5_inicializar(EMUFS* efs) efs->leer_registro_raw = emufs_tipo3_leer_registro_raw; efs->leer_estadisticas = emufs_tipo3_leer_estadisticas; efs->compactar = emufs_tipo3_compactar; - efs->tam_reg = 0; return EMUFS_OK; } @@ -864,7 +863,6 @@ int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato) query.clave = clave; /*mando a buscar el bloque donde esta la clave que quiero eliminar*/ result = emufs_b_plus_get_bloque(emu->indices, &query, 0); - printf("bloque = %d\n", query.num_bloque); if ( result == 1 ){ PERR("SE PRODUJO UN ERROR EN EL ARBOL"); return -1; @@ -984,3 +982,41 @@ 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; +}