return EMUFS_OK;
}
-void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
+void* emufs_tipo1_leer_registro(EMUFS* efs, CLAVE clave,
EMUFS_REG_SIZE* reg_size, int *err)
{
char* block; /* bloque leido (en donde está el registro a leer) */
char* registro; /* registro a leer */
EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
+ EMUFS_REG_ID reg_id;
EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
-
- block_id = emufs_idx_buscar_registro(efs, reg_id);
+ INDICE_DATO dato;
+
+ if (efs->indices != NULL) {
+ /* TODO : Verificar donde esta el indice primario */
+ dato = efs->indices->existe_entrada(efs->indices, clave);
+ block_id = dato.bloque;
+ reg_id = dato.id;
+ } else {
+ /* TODO ID de donde lo puedo sacar :-) , lo cargo en CLAVE ? */
+ block_id = emufs_idx_buscar_registro(efs, reg_id);
+ }
if (block_id == EMUFS_NOT_FOUND) {
PERR("Registro no encontrado");
*err = EMUFS_NOT_FOUND;
void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
{
- char *chunk_ptr;
char* block; /* bloque leido (en donde está el registro a leer) */
- char* registro; /* registro a leer */
- EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
- EMUFS_BLOCK_SIZE offset, block_space; /* offset del bloque leído */
+ EMUFS_BLOCK_ID block_id; /* bloque en donde esta el registro a leer */
+ EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
- EMUFS_REG_SIZE cant_bloques;
- int err = 0, i;
+ int err = 0;
block_id = emufs_idx_buscar_registro(efs, id);
if (block_id == EMUFS_NOT_FOUND) {
*size = 0;
return NULL;
}
- err = 0;
if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
PERR("no se pudo reservar memoria");
*pos = 0;
offset = 0;
do {
/* copio la cabecera del registro actual. */
- memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
+ memcpy(&curr_reg_header, block + offset,
+ sizeof(EMUFS_TIPO1_REG_HEADER));
offset += sizeof(EMUFS_TIPO1_REG_HEADER);
if (curr_reg_header.id == id) {
- /* tamaño máximo ultilizable para datos en un bloque */
- *pos = offset-sizeof(EMUFS_TIPO1_REG_HEADER);
- block_space = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
- /* tamaño de la porción de registro que se guarda */
-
- cant_bloques = curr_reg_header.size / block_space + 1;
- *size = cant_bloques*efs->tam_bloque;
- registro = chunk_ptr = (char*) malloc(*size - (cant_bloques-1)*sizeof(EMUFS_TIPO1_REG_HEADER) + (cant_bloques-1)*2);
- if (registro == NULL) {
- free(block);
- PERR("No hay memoria");
- *pos = 0;
- *size = 0;
- return NULL;
- }
- memcpy(registro, block, efs->tam_bloque);
- chunk_ptr += efs->tam_bloque;
- /* copio los otros bloques, si los hay */
- free(block);
- for (i = 1; i < cant_bloques; ++i) {
- err = 0;
- block = (char*)emufs_tipo1_leer_bloque(efs, block_id+i, &err);
- /* Solo grabo el header del primer pedazo! */
- memcpy(chunk_ptr, "<>", 2);
- chunk_ptr += 2;
- memcpy(chunk_ptr, block+sizeof(EMUFS_TIPO1_REG_HEADER), efs->tam_bloque-sizeof(EMUFS_TIPO1_REG_HEADER));
- chunk_ptr += efs->tam_bloque-sizeof(EMUFS_TIPO1_REG_HEADER);
- free(block);
- }
- break; /* se terminó el trabajo. */
+ /* posición del comienzo del registro, incluye cabecera */
+ *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
+ *size = efs->tam_bloque; /* tamaño del bloque leido */
+ return block; /* devuelvo el puntero al bloque */
}
/* Desplazo el offset */
offset += curr_reg_header.size;
} while (offset < efs->tam_bloque);
- return registro;
+ /* no se encontró el registro, no debería pasar nunca */
+ PERR("No se encontró el registro en el bloque indicado por el .idx");
+ free(block);
+ return NULL;
}
void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int* err)
if (block == NULL) {
PERR("No hay memoria");
*err = EMUFS_ERROR_OUT_OF_MEMORY;
+ fclose(file);
return NULL;
}
if (fread(block, efs->tam_bloque, 1, file) != 1) {
free(block);
+ fclose(file);
PERR("Error al leer bloque");
*err = EMUFS_ERROR_FILE_READ;
return NULL;
EMUFS_BLOCK_ID curr_block_id;
/* tamaño de la porción de registro que se guarda */
EMUFS_REG_SIZE chunk_size = 0;
+ INDICE_DATO idx_data;
/* obtengo identificador que corresponderá al registro */
header.id = emufs_idx_get_new_id(efs, err);
/* graba porción del registro en bloque */ /* destino: fin de bloque */
emufs_tipo1_escribir_reg_chunk_en_memoria(block + efs->tam_bloque - fs,
header, chunk_ptr, chunk_size);
+ /* rellena el espacio libre con ceros para la GUI */
+ memset(block + efs->tam_bloque - fs + chunk_size
+ + sizeof(EMUFS_TIPO1_REG_HEADER), 0,
+ fs - chunk_size - sizeof(EMUFS_TIPO1_REG_HEADER));
/* graba el bloque en el archivo */
new_block_id = emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
fs - sizeof(EMUFS_TIPO1_REG_HEADER) - chunk_size, err);
PERR("No se pudo agregar idx");
return EMUFS_NOT_FOUND;
}
+ idx_data.id = header.id;
+ idx_data.bloque = block_id;
+ emufs_indice_agregar(efs->indices, reg, idx_data);
return header.id;
}
-int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
+int emufs_tipo1_borrar_registro(EMUFS* efs, CLAVE k)
{
char* block; /* bloque leido (en donde está el registro a leer) */
EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
+ EMUFS_REG_ID reg_id;
+ INDICE_DATO dato;
int err = 0; /* para almacenar código de error */
- block_id = emufs_idx_buscar_registro(efs, reg_id);
+ /*block_id = emufs_idx_buscar_registro(efs, reg_id);
if (block_id == EMUFS_NOT_FOUND) {
PERR("Registro no encontrado");
return EMUFS_NOT_FOUND;
- }
+ }*/
+ dato = efs->indices->existe_entrada(efs->indices, k);
+ block_id = dato.bloque; /*emufs_idx_buscar_registro(emu, ID);*/
+ reg_id = dato.id;
+
+ if (reg_id == -1) return EMUFS_NOT_FOUND;
+
if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
PERR("no se pudo reservar memoria");
return err;
/* tamaño máximo ultilizable para datos en un bloque */
EMUFS_BLOCK_SIZE block_space
= efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
- EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
+ /* cantidad de espacio libre original del ultimo bloque */
+ EMUFS_FREE orig_fs;
while (1) {
+ EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
+ orig_fs = emufs_fsc_get_fs(efs, curr_block_id);
/* actualizo archivo de espacio libre por bloque */
- fs = emufs_fsc_get_fs(efs, curr_block_id)
- + MIN(curr_reg_header.size, block_space)
+ fs = orig_fs + MIN(curr_reg_header.size, block_space)
+ sizeof(EMUFS_TIPO1_REG_HEADER);
if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
PERR("no se pudo actualizar .fsc");
/* si es necesario desplazar */
if (offset < offset_reg_end) {
/* muevo la porción de bloque a izquierda */
+ /* XXX Este memcpy() puede copiar regiones de memoria que
+ * se superponen, si copia de principio a fin y byte a byte
+ * no debería haber problema */
memcpy(block + offset, block + offset_reg_end,
efs->tam_bloque - offset_reg_end);
+ /* rellena el espacio libre con ceros para la GUI */
+ memset(block + efs->tam_bloque - offset_reg_end - orig_fs + offset,
+ 0, offset_reg_end + orig_fs - offset);
}
}
/* guardo el bloque en disco (actualizando espacio libre) */
void emufs_tipo1_compactar(EMUFS* efs)
{
+#ifdef ARREGLAR
EMUFS_BLOCK_SIZE block_space /* tamaño para datos de un bloque */
= efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
EMUFS_REG_ID total_ids; /* cantidad total de registros en el array */
emufs_fsc_truncate(efs, block_id);
}
}
+#endif
}
EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS* efs, EMUFS_REG_ID id,
void *data, EMUFS_REG_SIZE size, int* err)
{
- emufs_tipo1_borrar_registro(efs, id);
+/* emufs_tipo1_borrar_registro(efs, id);*/
return emufs_tipo1_grabar_registro(efs, data, size, err);
}