X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/997a97b5e42afccbc75f2e2dde61f1e74856cb86..a666806d9361a2876a07941b8d2bb5c973e1557e:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 6d8c341..419306c 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -835,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)); @@ -887,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));