]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
* Integro Indice B con EMUFS e Indice
[z.facultad/75.06/emufs.git] / emufs / indices.c
index 8766054017aa16eca145e708fd9a72bc1659344f..a099e1305be6ba56de7271a7f67adde4c7f915de 100644 (file)
@@ -1,8 +1,11 @@
 
 #include "indices.h"
 #include "emufs.h"
 
 #include "indices.h"
 #include "emufs.h"
+#include "indice_b.h"
 
 
-INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset)
+static CLAVE obtenet_clave(INDICE *idx, char *data);
+
+INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
 {
        int len;
        INDICE *tmp;
 {
        int len;
        INDICE *tmp;
@@ -23,13 +26,17 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TI
 
        tmp->tipo = tipo;
        tmp->tipo_dato = tipo_dato;
 
        tmp->tipo = tipo;
        tmp->tipo_dato = tipo_dato;
-
+       tmp->tam_bloque = tam_bloque;
        tmp->offset = offset;
        tmp->sig = NULL;
 
        switch (tipo) {
        tmp->offset = offset;
        tmp->sig = NULL;
 
        switch (tipo) {
-               case IND_B_MAS:
-                       /* llenar metodos */
+               case IND_B:
+                       emufs_indice_b_crear(tmp);
+                       tmp->agregar_entrada = emufs_indice_b_insertar;
+                       tmp->borrar_entrada = NULL;
+                       tmp->existe_entrada = emufs_indice_b_buscar;
+               break;
                case IND_B_ASC:
                        /* llenar metodos */
                        break;
                case IND_B_ASC:
                        /* llenar metodos */
                        break;
@@ -47,8 +54,17 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i)
        free(i);
 }
 
        free(i);
 }
 
+void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion)
+{
+       INDICE *iter = primero;
+       
+       while (iter) {
+               iter->agregar_entrada(iter, obtenet_clave(iter, data), ubicacion);
+               iter = iter->sig;
+       }
+}
 
 
-CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data)
+static CLAVE obtenet_clave(INDICE *idx, char *data)
 {
        CLAVE k;
        switch (idx->tipo_dato) {
 {
        CLAVE k;
        switch (idx->tipo_dato) {
@@ -62,3 +78,25 @@ CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data)
        return k;
 }
 
        return k;
 }
 
+int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
+{
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       return c1.f_clave < c2.f_clave;
+               case IDX_INT:
+                       return c1.i_clave < c2.i_clave;
+       }
+       return 0;
+}
+
+int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
+{
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       return c1.f_clave == c2.f_clave;
+               case IDX_INT:
+                       return c1.i_clave == c2.i_clave;
+       }
+       return 0;
+}
+