X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3e01c105b393c1f67058359b5a964f413eb197ff..224194e18dce492ec2df32c6dd1f3b8d7290b4be:/emufs/indice_b.c?ds=sidebyside diff --git a/emufs/indice_b.c b/emufs/indice_b.c index 89de6e7..4c033b6 100644 --- a/emufs/indice_b.c +++ b/emufs/indice_b.c @@ -1,6 +1,7 @@ #include "indice_b.h" #include "common.h" +#include "emufs.h" /* Cantidad de claves por nodo */ #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry)) @@ -52,6 +53,8 @@ static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_Nodo static void b_pasar_clave_a_izquierda(INDICE*, char*, int, char*, int, int, B_NodoEntry); /** Junta 2 nodos y hace uno solo */ static void b_fundir_nodo(char *, int, char *, int, char *, int, int); + +static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo); void emufs_indice_b_crear(INDICE *idx) { @@ -88,6 +91,7 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato) B_NodoHeader header; B_NodoEntry *claves; char *nodo, *padre; + INDICE_DATO dummy; /* Leo la raiz */ nodo = b_leer_nodo(idx, 0); @@ -102,8 +106,15 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato) i=0; while ((itipo == IND_PRIMARIO) { + PERR("Indice primario no puede contener claves duplicadas!"); + return 0; + } + + /* TODO : Implementar carga de valor en clave duplicada! */ + b_insertar_dup_en_pos(idx, claves[i].dato, dato); + + return 1; } else { if (i == 0) { nodo = b_leer_nodo(idx, header.hijo_izquierdo); @@ -118,6 +129,14 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato) if (nodo) free(nodo); nodo = padre; nodo_id = padre_id; + + if (idx->tipo != IND_PRIMARIO) { + /* Agrego el DATO real al archivo de claves repetiras + * y me guardo el ID para poner en el indice + */ + dummy.id = -1; + dato.id = b_insertar_dup_en_pos(idx, dummy, dato); + } b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1); return 1; /* Agregar OK! */ } @@ -130,6 +149,12 @@ INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave) B_NodoEntry *claves; char *nodo, *tmp; + if (idx->tipo != IND_PRIMARIO) { + /* SOLO SE PUEDE BUSCAR CON CLAVE UNICA! */ + ret.id = ret.bloque = -1; + return ret; + } + /* Leo la raiz */ nodo = b_leer_nodo(idx, 0); while (nodo) { @@ -745,3 +770,56 @@ static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char { } +static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo) +{ + int cant; + EMUFS_REG_SIZE tam; + int error; + INDICE_DATO *array; + char *leido; + CLAVE k; + + /* Leo el contenido actual */ + k.i_clave = pos.id; + leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error); + + /* Incremento en 1 la cantidad */ + if (leido != NULL) + cant = *((int *)leido); + else + cant = 0; + cant++; + + /* Obtengo un nuevo lugar para el dato nuevo */ + /* Aca todo bien, si leido es NULL se compota como malloc */ + leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int)); + array = (INDICE_DATO *)(leido+sizeof(int)); + + /* Pongo el dato nuevo */ + array[cant-1] = nuevo; + + /* Actualizo la cantidad */ + (*((int *)leido)) = cant; + + /* Salvo */ + if (k.i_clave == -1) { + /* Creo uno nuevo */ + k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult, + leido, + cant*sizeof(INDICE_DATO)+sizeof(int), + &error + ); + } else { + /* Modifico el que ya existia! */ + idx->emu_mult->modificar_registro(idx->emu_mult, + k.i_clave, + leido, + cant*sizeof(INDICE_DATO)+sizeof(int), + &error + ); + } + /* Clean up! */ + free(leido); + return k.i_clave; +} +