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, int str_offset)
{
- int len;
+ int len,cantclaves;
INDICE *tmp;
+
char string_file[255];
tmp = (INDICE *)malloc(sizeof(INDICE));
if (tmp == NULL) return NULL;
/* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
PERR("Creando indice con Arbol B+");
tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
- tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ cantclaves = tmp->size_claves/sizeof(CLAVE);
+ if ((cantclaves%2) == 0 ) {
+ tmp->size_claves = (cantclaves+1)*sizeof(CLAVE);
+ tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ tmp->tam_bloque = SIZE_B_PLUS_HEADER + tmp->size_hijos + tmp->size_claves;
+ PERR("Ajusto cantidad de claves impares en B+");
+ } else {
+ tmp->size_claves = cantclaves*sizeof(CLAVE);
+ tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ tmp->tam_bloque = SIZE_B_PLUS_HEADER + tmp->size_hijos + tmp->size_claves;
+ PERR("No Ajusto cantidad de claves impares en B+");
+ }
emufs_b_plus_crear(tmp);
tmp->obtener_menor_clave = emufs_b_plus_obtener_menor_clave;
tmp->obtener_mayor_clave = emufs_b_plus_obtener_mayor_clave;
INDICE *emufs_indice_abrir(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque, int str_offset)
{
- int len;
+ int len,cantclaves;
INDICE *tmp;
char string_file[255];
tmp = (INDICE *)malloc(sizeof(INDICE));
/* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
PERR("Creando indice con Arbol B+");
tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
- if ( (tmp->size_claves%2) == 0 ) tmp->size_claves++;
- tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ cantclaves = tmp->size_claves/sizeof(CLAVE);
+ if ((cantclaves%2) == 0 ) {
+ tmp->size_claves = (cantclaves+1)*sizeof(CLAVE);
+ tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ tmp->tam_bloque = SIZE_B_PLUS_HEADER + tmp->size_hijos + tmp->size_claves;
+ PERR("Ajusto cantidad de claves impares en B+");
+ } else {
+ tmp->size_claves = cantclaves*sizeof(CLAVE);
+ tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+ tmp->tam_bloque = SIZE_B_PLUS_HEADER + tmp->size_hijos + tmp->size_claves;
+ PERR("No Ajusto cantidad de claves impares en B+");
+ }
/* Ya esta creado XXX emufs_b_plus_crear(tmp); */
tmp->obtener_menor_clave = emufs_b_plus_obtener_menor_clave;
tmp->obtener_mayor_clave = emufs_b_plus_obtener_mayor_clave;