]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
Tipo1.h y Tipo3.h, cambio de include. indices.c, comienzo acomplamiento, y indice_bpl...
[z.facultad/75.06/emufs.git] / emufs / indices.c
index 1728d1984c45b8fa401461c442ee4540ec4685b1..18e33278a545aa5c1d11abd400a99deb939e26ae 100644 (file)
@@ -2,7 +2,7 @@
 #include "indices.h"
 #include "emufs.h"
 #include "indice_b.h"
 #include "indices.h"
 #include "emufs.h"
 #include "indice_b.h"
-#include "common.h"
+#include "indice_bplus.h"
 
 INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
 {
 
 INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
 {
@@ -50,6 +50,8 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
 
        tmp->offset = offset;
        tmp->sig = NULL;
 
        tmp->offset = offset;
        tmp->sig = NULL;
+       tmp->size_claves = 0;
+       tmp->size_hijos = 0;
 
        switch (tipo) {
                case IND_B:
 
        switch (tipo) {
                case IND_B:
@@ -65,6 +67,14 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                        PERR("Creando indice con Arbol B*");
                        PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
                        PERR("Creando indice con Arbol B*");
                        PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
+               case IND_B_PLUS:
+                       /* llenar metodos */
+                       PERR("Creando indice con Arbol B+");
+                       tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(int))/2; /* Fix sizeof(CLAVE?) */
+                       tmp->size_hijos = tmp->size_claves + sizeof(int);
+                       emufs_b_plus_crear(tmp);
+                       PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
+                       break;
        }
 
        return tmp;
        }
 
        return tmp;
@@ -205,4 +215,3 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
        }
        return 0;
 }
        }
        return 0;
 }
-