efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
efs->compactar = emufs_tipo3_compactar;
- efs->tam_reg = 0;
+ efs->modificar_registro = emufs_tipo3_modificar_registro;
return EMUFS_OK;
}
efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
efs->compactar = emufs_tipo3_compactar;
+ efs->modificar_registro= emufs_tipo3_modificar_registro_plus;
+ efs->obtener_claves_raw = emufs_tipo3_obtener_claves_raw;
return EMUFS_OK;
}
char* bloque = NULL;
int cant_bloques, resto, i=0;
+ PERR("TIPO3 GRABRAR REGISTRO");
strcpy(name_f,emu->nombre);
strcat(name_f,".dat");
/*si no hay bloques con suficiente espacio creo un bloque nuevo */
if (num_bloque == EMUFS_NOT_FOUND) {
- if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
+ if ( (file = fopen(name_f,"a+"))==NULL ) {
+ PERR("NO SE PUDO ABRIR ARCHIVO DE DATOS");
+ return -1; /*ERROR*/
+ }
/*tengo que buscar un ID valido para el nuevo registro*/
ID_aux = emufs_idx_get_new_id(emu, err);
/* El free esta al final de la funcion! */
if (i == 0) {
/* Tengo que agregar el primer bloque en IDX */
if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
+ PERR("FALLO AGREGAR A IDX");
free(bloque);
return -1;
}
if ( emufs_fsc_agregar(emu, num_bloque+i, new_fs) ) {
fclose(file);
free(bloque);
+ PERR("FALLO AGREGAR A IDX");
return -1;
}
}
if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
fclose(file);
if (bloque) free(bloque);
+ PERR("FALLO AGREGAR A IDX");
return -1;
}
} else {
if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
fclose(file);
if (bloque) free(bloque);
+ PERR("FALLO AGREGAR A FSC");
return -1;
}
}
if ( i == 0 ){
if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
if (bloque) free(bloque);
+ PERR("FALLO AGREGAR A IDX");
return -1;
}
idx_data.id = ID_aux;
}
}
if (bloque) free(bloque);
+ PERR("GRABAR COMPLETO");
return ID_aux;
}
memcpy(new_bloque, aux, emu->tam_bloque-move_size-sizeof(int));
/*borro lo que sobra en el bloque original, guardando el footer*/
memset(aux, 0, emu->tam_bloque - move_size - sizeof(int));
- menor_clave_bloque_nuevo = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
+ menor_clave_bloque_nuevo = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
/* TENGO QUE VER EN CUAL DE LOS DOS BLOQUES METO EL REGISTRO NUEVO */
- if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, clave) ){
- /* GRABO EN EL BLOQUE NUEVO */
+ if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, query.clave) ){
+ PERR("GRABO EN EL BLOQUE NUEVO");
/*actualizo la cant de registros del bloque original (footer)*/
memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
/*actualizo el footer del nuevo bloque*/
B_PLUS_KEYBUCKET *emufs_tipo3_obtener_claves_raw(EMUFS *emu, int num_bloque)
{
B_PLUS_KEYBUCKET *keys;
- char *bloque;
+ char *bloque, *aux;
int err = 0, cant_reg, i;
EMUFS_REG_SIZE tam_reg = emu->tam_reg;
PERR("NO SE PUDO LEER EL BLOQUE");
return NULL;
}
+ aux = bloque;
/*leo la cantidad de registros*/
memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
/*ya se cuanto guardarle al vector*/
keys->claves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
bloque += tam_reg+sizeof(EMUFS_REG_ID);
}
- free(bloque);
+ free(aux);
return keys;
}