X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3d7c873614ca81c1590a4cbb7e786ffda64755d6..a666806d9361a2876a07941b8d2bb5c973e1557e:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 0e8f7dc..419306c 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -369,7 +369,7 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, return header.id; } -int emufs_tipo1_borrar_registro(EMUFS* efs, CLAVE k) +int emufs_tipo1_borrar_registro(EMUFS* efs, CLAVE k, INDICE_DATO dato1) { char* block; /* bloque leido (en donde está el registro a leer) */ EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */ @@ -399,6 +399,7 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, CLAVE k) return err; } + emufs_indice_borrar(efs->indices, k, dato1); /* Busco secuencialmente en el bloque el registro a leer */ offset = 0; do { @@ -698,9 +699,9 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block, } EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS* efs, CLAVE k, - void *data, EMUFS_REG_SIZE size, int* err) + void *data, EMUFS_REG_SIZE size, int* err, INDICE_DATO dato) { - emufs_tipo1_borrar_registro(efs, k); + emufs_tipo1_borrar_registro(efs, k, dato); return emufs_tipo1_grabar_registro(efs, data, size, err); } @@ -834,9 +835,11 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in PERR("GRABO ORDENADO"); grabar_ordenado_en_bloque(emu, ptr, size, bloque, query.num_bloque, fs, err); /*en teoria el nuevo registro no debe cambiar el ancla, por lo cual no actualizo el arbol*/ + free(bloque); return 0; /*aca va lo que saque*/ } else { /* el registro no entra en el bloque, hay que crear uno nuevo y desparramar */ + PERR(" COMO NO ENTRA DEBO DIVIDIR LOS REGISTROS EN 2 BLOQUES"); new_bloque = (char*)malloc(emu->tam_bloque); move_size=0; for(i=0; itam_bloque-move_size); /*borro lo que sobra en el bloque original, guardando el footer*/ memset(aux, 0, emu->tam_bloque - move_size - sizeof(int)); /*actualizo la cant de registros (footer)*/ memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int)); + PERR("PASE"); /*grabo el bloque original*/ emufs_tipo1_grabar_bloque_fsc(emu, bloque, num_bloque, EMUFS_NOT_FOUND, err); + PERR("GRABE EL BLOQUE 1 de 2"); /*actualizo el footer del nuevo bloque*/ dif = cant_reg - i; /*por las dudas*/ memcpy(new_bloque+emu->tam_bloque, &dif, sizeof(int)); @@ -886,7 +892,6 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void /*cargo el header*/ header.id = emufs_idx_get_new_id(emu, err); header.size = size; - cant_reg++; /*voy a poner un reg mas*/ new_bloque = (char*)malloc(emu->tam_bloque); aux = new_bloque; for (i=0; itam_bloque-sizeof(int), &cant_reg, sizeof(int)); emufs_tipo1_grabar_bloque_fsc(emu, new_bloque, num_bloque, EMUFS_NOT_FOUND, err); clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_TIPO1_REG_HEADER));