X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/866ee030a930b725a701bd35445b1bcd82506a87..d0cf2ab456ea8847d1bc8c2bd0b2e1cfa0087c9e:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 4e72fee..319b3e2 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -135,7 +135,7 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, CLAVE clave, EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */ INDICE_DATO dato; - if (efs->indices != NULL) { + if ((efs->indices != NULL) && (*err != 1)) { /* TODO : Verificar donde esta el indice primario */ dato = efs->indices->existe_entrada(efs->indices, clave); block_id = dato.bloque; @@ -143,6 +143,7 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, CLAVE clave, } else { reg_id = clave.i_clave; block_id = emufs_idx_buscar_registro(efs, reg_id); + if (*err == 1) *err = 0; /*hack!*/ } if (block_id == EMUFS_NOT_FOUND) { PERR("Registro no encontrado"); @@ -207,6 +208,7 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, CLAVE clave, } while (offset < efs->tam_bloque); /* registro está en el bloque */ free(block); + PERR("REGISTRO LEIDO; RETORNANDO"); return registro; } @@ -992,9 +994,9 @@ int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato) { char *bloque, *aux; INDEX_DAT query; - int result, iter, cant_reg, leidos; + int result, iter, cant_reg; EMUFS_REG_SIZE tam_reg; - CLAVE clave_ajena; + CLAVE clave_ajena, ancla; int err = 0; /*cargo el query para buscar*/ @@ -1016,18 +1018,13 @@ int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato) PERR("NO SE CARGO EL BLOQUE"); return -1; } + /*me fijo si el que tengo que eliminar es el ancla del bloque*/ + ancla = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_TIPO1_REG_HEADER)); /*leo la cantidad de registros en el bloque*/ memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int)); /*busco y elimino*/ iter = 0; aux = bloque; - /*me fijo si el que tengo que eliminar es el ancla del bloque*/ - clave_ajena = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_TIPO1_REG_HEADER)); - if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){ - /* TENGOQ QUE BORRAR LA CLAVE DEL ARBOL !!!!*/ - /* Y HAY QUE BORRAR EL BLOQUE DEL ARCHIVO*/ - } - leidos = 0; while ( iter < emu->tam_bloque /*&& leidos < cant_reg*/){ memcpy(&tam_reg, aux+sizeof(EMUFS_REG_ID), sizeof(EMUFS_REG_SIZE)); clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_TIPO1_REG_HEADER)); @@ -1040,7 +1037,6 @@ int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato) iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); break;/*ya borre, corto aca*/ } - leidos++; iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); aux += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); } @@ -1055,6 +1051,16 @@ int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato) free(bloque); return -1; } + /*me fijo si el que tengo que eliminar es el ancla del bloque*/ + if ( emufs_indice_es_igual(emu->indices, clave, ancla) ){ + if ( cant_reg == 0 ) + emufs_b_plus_eliminar(emu->indices, clave, 0); + else { + /*obtengo la nueva ancla del bloque*/ + query.clave = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_TIPO1_REG_HEADER)); + emufs_b_plus_reemplazar_clave(emu->indices, ancla, query, 0); + } + } free(bloque); return 0; } @@ -1119,3 +1125,41 @@ 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; +}