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;
strcat(tmp->filename, nombre);
strcat(tmp->filename, ".idx");
+ tmp->padre = emu;
tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
strcpy(tmp->nombre, nombre);
tmp->size_hijos = 0;
tmp->keybucket = NULL;
- fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo);
switch (tmp->tipo) {
case IND_B:
PERR("Creando indice con Arbol B");
/* 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;
- PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
+ tmp->obtener_sig_clave = emufs_b_plus_obtener_sig_clave;
break;
}
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));
tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
strcpy(tmp->nombre, nombre);
-
+ tmp->padre = emu;
tmp->tipo = tipo;
tmp->tipo_dato = tipo_dato;
switch (tipo_dato) {
tmp->size_hijos = 0;
tmp->keybucket = NULL;
- fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo);
switch (tmp->tipo) {
case IND_B:
PERR("Creando indice con Arbol B");
/* 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+");
+ }
/* 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;
c = idx->str_offset;
while (c) {
- if ((*ptr) == '\0') c--;
- ptr++;
+ if ((*ptr) == '\0') {
+ c--;
+ /* Salteo los \0 seguidos */
+ if (idx->padre->tipo == T3)
+ while ((*ptr) == '\0') ptr++;
+ else
+ ptr++;
+ } else
+ ptr++;
}
error = 0;
- fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr);
k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
ptr,
strlen(ptr)+1,