]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/b_plus_test.c
* Un poco de doc
[z.facultad/75.06/emufs.git] / emufs / b_plus_test.c
1
2 #include "b_plus.h"
3
4 int main(int argc, char* argv[]) {
5
6 /* Locals */
7 INDEX_DAT querydata;
8         
9 /* Creamos un handler EMUFS, luego un Indice B+ y testing... */
10 INDEXSPECS indice;
11 indice.tam_bloque = SIZE_B_PLUS_HEADER + sizeof(int)*4 + sizeof(int)*5;
12 indice.size_claves = (indice.tam_bloque - SIZE_B_PLUS_HEADER - sizeof(int))/2;
13 indice.size_hijos = indice.size_claves + sizeof(int);
14 indice.filename = "idxbplus_primary.idx";
15 printf("\nTam Nodo: %i  Size Claves: %i  Size_Hijos: %i\n",indice.tam_bloque,indice.size_claves,indice.size_hijos);
16 emufs_b_plus_crear(&indice);
17         
18 /* Pedimos al arbol el nro de bloque donde guardar la clave 5. Should */
19 /* return -1 pues solo esta la raiz.. */
20 querydata.num_bloque = -666;
21 querydata.clave.i_clave = 5;
22 emufs_b_plus_get_bloque(&indice,&querydata);
23
24 return 0;
25
26 }