From 47711da283d36246522f81085695919091cc0ba9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicol=C3=A1s=20Dimov?= Date: Thu, 27 May 2004 04:11:53 +0000 Subject: [PATCH] eliminar ordenado, compila. TODAVIA NO HAY NADA PROBADO, todo mal --- emufs/tipo1.c | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ emufs/tipo1.h | 6 ++++- 2 files changed, 72 insertions(+), 1 deletion(-) diff --git a/emufs/tipo1.c b/emufs/tipo1.c index e82e1b4..0841612 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -967,3 +967,70 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void free(new_bloque); return clave; } + +int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err) +{ + char *bloque, *aux; + INDEX_DAT query; + int result, iter, cant_reg; + EMUFS_REG_SIZE tam_reg; + CLAVE clave_ajena; + /*cargo el query para buscar*/ + query.num_bloque = 0; + 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); + if ( result == 1 ){ + PERR("SE PRODUJO UN ERROR EN EL ARBOL"); + return -1; + } + if ( result == -1 ){ + PERR("NO EXISTE EL BLOQUE ¿?¿?¿?"); + return -1; + } + /*cargo el bloque que corresponde*/ + bloque = emufs_tipo1_leer_bloque(emu, query.num_bloque, err); + if ( bloque == NULL ){ + PERR("NO SE CARGO EL BLOQUE"); + return -1; + } + /*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*/ + } + while ( iter < emu->tam_bloque ){ + 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)); + if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){ + /*tenngo que borrar este registro*/ + /*limpio el espacio que ocupaba*/ + memset(aux, 0, tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER)); + /*hay que reacomodar todo*/ + /*me posiciono en el reg siguiente*/ + iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); + break;/*ya borre, corto aca*/ + } + iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); + aux += iter; + } + + /*reacomodo el bloque */ + memcpy(bloque+iter-tam_reg-sizeof(EMUFS_TIPO1_REG_HEADER), aux+iter, emu->tam_bloque-iter-sizeof(int)); + /*le vuelvo a copiar la cantidad de registros*/ + cant_reg--; + memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int)); + /*grabo el bloque en el archivo*/ + if ( emufs_tipo1_grabar_bloque_fsc(emu, bloque, query.num_bloque, EMUFS_NOT_FOUND, err) == EMUFS_NOT_FOUND ){ + PERR("NO SE PUDO GRABAR EL BLOQUE"); + return -1; + } + free(bloque); + return 0; +} diff --git a/emufs/tipo1.h b/emufs/tipo1.h index 211ee51..019806c 100644 --- a/emufs/tipo1.h +++ b/emufs/tipo1.h @@ -73,6 +73,10 @@ void emufs_tipo1_compactar(EMUFS*); void emufs_tipo1_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente, EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3); - + +/** Inserta un registro en el archivo, ordenado por clave principal*/ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err); + +/** Elimina un registro de clave CLAVE del archivo con ayuda del arbol B+*/ +int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err); #endif /* _EMUFS_TIPO1_H_ */ -- 2.43.0