X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/0671a3f17c59204a36453f20bde7b4cf228dc396..3d7c873614ca81c1590a4cbb7e786ffda64755d6:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 08d9190..0e8f7dc 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -750,7 +750,7 @@ void emufs_tipo1_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, c int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err) { CLAVE clave; - EMUFS_BLOCK_ID num_bloque = emufs_get_new_block_number(emu); + EMUFS_BLOCK_ID num_bloque; EMUFS_TIPO1_REG_HEADER header; EMUFS_REG_SIZE tam_reg, move_size; INDEX_DAT query; @@ -759,7 +759,10 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in int cant_reg, i, result, dif; /*le asigno un posible numero de bloque para el caso en que no encuentre donde meterlo*/ - query.num_bloque = num_bloque; + PERR("LEO EL NUMERO DE BLOQUE SIGUIENTE"); + num_bloque = emufs_get_new_block_number(emu); + query.num_bloque = num_bloque; + printf("BLOQUE NUMBER : %d\n", num_bloque); /*saco la clave del stream*/ query.clave = emufs_indice_generar_clave(emu->indices, ptr); /*mando a buscar en el arbol el bloque correspondiente a esa clave*/ @@ -773,6 +776,7 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in 1 = Error de lectura en algun nodo, abortar operacion en funcion invocante. */ result = emufs_b_plus_get_bloque(emu->indices, &query, 0); + printf("tengo que guardar en bloque: %d\n", query.num_bloque); if (result == 1){ PERR("SE PRODUJO UN ERROR EN EL ARBOL.. ABORTANDO"); return -1; @@ -785,6 +789,11 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in return -1; } header.id = emufs_idx_get_new_id(emu, err); + if (*err) { + PERR("NO SE PUDO OBTENER UN ID"); + free(bloque); + return -1; + } header.size = size; cant_reg = 1; /*pongo la cabecera en el registro*/ @@ -821,7 +830,8 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in fs -= (tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER)); } /*aca deberia estar apuntando al final de los registros. espacio libre*/ fs -= sizeof(int); /*footer*/ - if ( fs >= size+sizeof(EMUFS_TIPO1_REG_HEADER) ){ /* puedo meter el registro en este bloque*/ + if ( fs >= size+sizeof(EMUFS_TIPO1_REG_HEADER) ){ /* puedo meter el registro en este bloque*/ + 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*/ return 0; @@ -915,6 +925,7 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void } /*grabo el bloque en el archivo*/ new_bloque = aux; /*apunto al principio del bloque*/ + memcpy(new_bloque+emu->tam_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)); free(new_bloque);