X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/5e2899e9e432439af5e9714c5298e056ce31cd9e..4da22b509af90f905ad13be0b846e41a8d89e3c2:/emufs/indice_b.c diff --git a/emufs/indice_b.c b/emufs/indice_b.c index 5491b0d..183c6fe 100644 --- a/emufs/indice_b.c +++ b/emufs/indice_b.c @@ -47,9 +47,9 @@ static void b_pedir_clave_derecha(char *, int, char *, int, char *, int, int); /** Le pide al hermano izquierdo una clave cuando se eliminan claves */ static void b_pedir_clave_izquierda(char *, int, char *, int, char *, int, int); /** Le pasa al hermano derecho del nodo una clave cuando se insertan claves */ -static void b_pasar_clave_a_derecha(char *, int, char *, int, char *, int, int); +static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_NodoEntry); /** Le pasa al hermano izquierdo una clave cuando se insertan claves */ -static void b_pasar_clave_a_izquierda(char *, int, char *, int, char *, int, int); +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); @@ -102,8 +102,14 @@ 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! */ + + return 1; } else { if (i == 0) { nodo = b_leer_nodo(idx, header.hijo_izquierdo); @@ -130,6 +136,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) { @@ -667,37 +679,24 @@ static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_ b_actualizar_header(nodo, &h_nodo); } -static void b_pasar_clave_a_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave) +void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry) { -/* int i; - B_NodoHeader h_der, h_padre, h_nodo; - B_NodoEntry *c_der, *c_padre, *c_nodo; - - b_leer_header(nodo, &h_nodo); - c_nodo = b_leer_claves(nodo, &h_nodo); - b_leer_header(der, &h_der); - c_der = b_leer_claves(der, &h_der); - b_leer_header(padre, &h_padre); - c_padre = b_leer_claves(padre, &h_padre); - - c_nodo[h_nodo.cant] = c_padre[pos_clave]; - c_nodo[h_nodo.cant].hijo_derecho = -1; / * XXX * / - - c_padre[pos_clave] = c_der[0]; - c_padre[pos_clave].hijo_derecho = der_id; - - / * Muevo las claves de derecho * / - for(i=0; i