]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/b_plus.h
preparo un poco la cancha para empezar a insertar registros en el archivo de datos...
[z.facultad/75.06/emufs.git] / emufs / b_plus.h
index 0b6d035873801ec5aab1e62c10afcd02e64e401e..873b5328740335ff18e518c9bcfd90481655a375 100644 (file)
@@ -1,37 +1,43 @@
-#ifndef _B_PLUS_H_
-#define _B_PLUS_H_
-#include <stdio.h>
-#include <stdlib.h>
-#include "emufs.h"
-typedef union _clave_b_plus {
-       int num;
-       /*fixme*/
-}CLAVE_B_PLUS;
-
-typedef struct nodo_b_plus {
-       int nivel; /** Nivel del nodo */
-       int cant; /** Cantidad de items en el nodo */
-       int right  /** Referencia al nodo derecho */
-       int left; /** Referencia al nodo izquierdo */
-       CLAVE_B_PLUS clave; /** Clave de busqueda e insercion */
-} NODO_B_PLUS;
-
-typedef struct nodo_b_plus_hoja {
-       int nivel; /** Nivel del nodo */
-       int cant; /** Cantidad de claves en el nodo */
-       int offset; /** Distancia hasta el comiezo de la clave */
-       EMUFS_BLOCK_ID bloque; /** Referencia al bloque */
-       EMUFS_REG_ID id_reg; /** Identificador del registro */
-       EMUFS_FREE free_space; /** Espacio libre del bloque */
-       void *dato; /** Cadena contenedora del dato */
-} NODO_B_PLUS_HOJA;    
-
-/** TODO */
-int b_plus_crear();
-int b_plus_insertar();
-int b_plus_eliminar();
-int b_plus_buscar();
-int b_plus_destuir();
-
-
+#ifndef _B_PLUS_H_\r
+#define _B_PLUS_H_\r
+#include <stdio.h>\r
+#include <stdlib.h>\r
+#include "emufs.h"\r
+\r
+#define SIZE_B_PLUS_HEADER (sizeof(int)*2)\r
+\r
+/** Estructura que define un nodo B+. Para los nodos hojas, el ultimo valor de hijo, serĂ¡ el nro\r
+ *  de nodo con el que se encadena el actual. (Lista de nodos a nivel hoja. Sequence Set).\r
+ */\r
\r
+typedef struct _indexspecs_ {\r
+       unsigned int tam_bloque;\r
+       unsigned int size_claves;\r
+       unsigned int size_hijos;\r
+       char *filename;\r
+} INDEXSPECS;\r
+\r
+typedef struct _index_dat_ {\r
+       EMUFS_BLOCK_ID num_bloque;\r
+       CLAVE clave;\r
+} INDEX_DAT;\r
+\r
+typedef struct nodo_b_plus {\r
+       int nivel; /** Nivel del nodo */\r
+       int cant_claves; /** Cantidad de claves en el nodo */\r
+       int *claves; /** Claves del nodo */\r
+       int *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */\r
+} NODO_B_PLUS;\r
+\r
+\r
+/** TODO */\r
+int emufs_b_plus_crear(INDEXSPECS *idx);\r
+int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query);\r
+int emufs_b_plus_actualizar_nodo(INDEX_DAT *dataset);\r
+int emufs_b_plus_buscar();\r
+int emufs_b_plus_destuir();\r
+int b_plus_insertar_clave(INDEXSPECS *, INDEX_DAT *);\r
+int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query);\r
+NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num);\r
+\r
 #endif
 #endif