#include <string.h>
#include <unistd.h>
-#define PERR(msg) printf("%s:%d> %s.\n",__FILE__, __LINE__, msg);
+#ifndef MIN
+# define MIN(x, y) (((x) > (y)) ? (y) : (x))
+#endif
-/*------------------ Funciones privadas ----------------------*/
+/*------------------ Declaraciones privadas ----------------------*/
-int emufs_tipo1_header_jump(FILE*);
+/** Cabecera de un registro de un archivo tipo1. */
+typedef struct {
+ EMUFS_REG_ID id; /**< Identificador del registro. */
+ EMUFS_REG_SIZE size; /**< Tamaño del registro. */
+} EMUFS_TIPO1_REG_HEADER;
-size_t emufs_tipo1_header_size(void);
+static size_t emufs_tipo1_header_size(void);
-int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
+static int emufs_tipo1_header_jump(FILE*);
-void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id,
- EMUFS_REG_SIZE reg_size, char* reg);
+static int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
+
+static void emufs_tipo1_escribir_reg_en_memoria(char*, EMUFS_TIPO1_REG_HEADER,
+ char*);
+
+static void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
+ EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size);
/*------------------ Funciones públicas ----------------------*/
int emufs_tipo1_inicializar(EMUFS* efs)
{
/* Asigna punteros a funciones. */
- efs->leer_bloque = emufs_tipo1_leer_bloque;
- efs->leer_registro = emufs_tipo1_leer_registro;
- efs->grabar_registro = emufs_tipo1_grabar_registro;
- /*efs->borrar_registro = emufs_tipo1_borrar_registro;*/
+ efs->leer_bloque = emufs_tipo1_leer_bloque;
+ efs->grabar_registro = emufs_tipo1_grabar_registro;
+ efs->borrar_registro = emufs_tipo1_borrar_registro;
+ efs->leer_registro = emufs_tipo1_leer_registro;
+ efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
return 0;
}
-void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, int *err)
+void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
+ 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_BLOCK_SIZE block_size; /* tamaño del bloque leído */
- EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
- EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
+ EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
block_id = emufs_idx_buscar_registro(efs, reg_id);
if (block_id == EMUFS_NOT_FOUND) {
}
if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
/* TODO Manejo de errores */
- PERR("no se pudo leer el bloque");
+ PERR("no se pudo reservar memoria");
+ *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
return NULL;
}
/* Busco secuencialmente en el bloque el registro a leer */
offset = 0;
do {
- /* Copio el id del registro de la cabecera. */
- memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
- offset += sizeof(EMUFS_REG_ID);
- /* Copio el tamaño del registro de la cabecera. */
- memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
- offset += sizeof(EMUFS_REG_SIZE);
- if (curr_reg_id == reg_id) {
- registro = (char*) malloc(curr_reg_size);
+ /* Copio la cabecera del registro actual. */
+ memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
+ offset += sizeof(EMUFS_TIPO1_REG_HEADER);
+ if (curr_reg_header.id == reg_id) {
+ /* tamaño máximo ultilizable para datos en un bloque */
+ EMUFS_BLOCK_SIZE block_space
+ = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
+ *reg_size = curr_reg_header.size;
+ registro = (char*) malloc(*reg_size);
if (registro == NULL) {
/* TODO Manejo de errores */
free(block);
*err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
return NULL;
}
- memcpy(registro, block + offset, curr_reg_size);
+ /* Si el registro ocupa más de un bloque */
+ if (*reg_size > block_space) {
+ /* TODO */
+ /* tamaño de la porción de registro que se guarda */
+ EMUFS_REG_SIZE chunk_size = 0;
+ /* puntero a la porción actual del registro */
+ char* chunk_ptr = registro;
+
+ while (1) {
+ chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
+ curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
+ chunk_size = MIN(curr_reg_header.size, block_space);
+ /* copio porción de registro en el buffer */
+ memcpy(chunk_ptr, block + offset, chunk_size);
+ /* falta leer un bloque */
+ if (curr_reg_header.size > block_space) {
+ free(block);
+ if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
+ ++block_id, err))) {
+ /* TODO Manejo de errores */
+ free(registro);
+ PERR("no se pudo reservar memoria");
+ *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
+ return NULL;
+ }
+ } else { /* se terminó de leer */
+ break;
+ }
+ }
+ } else {
+ memcpy(registro, block + offset, *reg_size);
+ }
break;
}
/* Desplazo el offset */
- offset += curr_reg_size;
+ offset += curr_reg_header.size;
} while (offset < block_size);
free(block);
return registro;
}
+#if 0
+ /* tamaño máximo ultilizable para datos en un bloque */
+ EMUFS_BLOCK_SIZE block_space
+ = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
+ /* tamaño de la porción de registro que se guarda */
+ EMUFS_REG_SIZE chunk_size = 0;
+ /* puntero a la porción actual del registro */
+ char* chunk_ptr;
+ /* puntero a la posición actual del bloque */
+ char* block_ptr = block + offset;
+
+ *reg_size = curr_reg_header.size; /* obtengo tamaño del registro */
+ registro = chunk_ptr = (char*) malloc(*reg_size);
+ if (registro == NULL) {
+ /* TODO Manejo de errores */
+ free(block);
+ PERR("No hay memoria");
+ *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
+ return NULL;
+ }
+ do {
+ block_ptr += chunk_size; /* Avanzo para guardar prox chunk */
+ chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
+ curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
+ chunk_size = MIN(curr_reg_header.size, block_space);
+ /* copio porción de registro en el buffer */
+ memcpy(chunk_ptr, block_ptr, chunk_size);
+ } while (curr_reg_header.size > block_space);
+#endif
+
+void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
+ EMUFS_REG_SIZE *size, int *pos)
+{
+ 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_BLOCK_SIZE block_size; /* tamaño del bloque leído */
+ EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
+ int err;
+
+ block_id = emufs_idx_buscar_registro(efs, id);
+ if (block_id == EMUFS_NOT_FOUND) {
+ return NULL;
+ }
+ if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
+ return NULL;
+ }
+
+ /* Busco secuencialmente en el bloque el registro a leer */
+ offset = 0;
+ do {
+ /* Copio la cabecera del registro. */
+ memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
+ offset += sizeof(EMUFS_TIPO1_REG_HEADER);
+ if (curr_reg_header.id == id) {
+ *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
+ break;
+ }
+ /* Desplazo el offset */
+ offset += curr_reg_header.size;
+ } while (offset < block_size);
+
+ (*size) = block_size;
+ return block;
+}
+
void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
{
FILE* file;
EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
EMUFS_REG_SIZE reg_size, int* err)
{
- EMUFS_REG_ID reg_id;
- EMUFS_FREE fs;
- EMUFS_BLOCK_ID block_id;
- FILE* file;
- char name_f[255];
- char* block;
-
- strcpy(name_f,efs->nombre);
- strcat(name_f,".dat");
-
- /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
- block_id = emufs_fsc_buscar_lugar(efs, reg_size, &fs);
+ EMUFS_TIPO1_REG_HEADER reg_header; /* cabecera del registro a guardar */
+ EMUFS_FREE fs; /* espacio libre en el bloque */
+ EMUFS_BLOCK_ID block_id; /* identificador del 1er bloque */
+ char* block; /* buffer del bloque a guardar en disco */
+ char name_f[255];
+
+ strcpy(name_f, efs->nombre);
+ strcat(name_f, ".dat");
+
+ /* pongo tamaño del registro en la cabecera. */
+ reg_header.size = reg_size;
+ /* busco lugar para el registro en un bloque existente */
+ block_id = emufs_fsc_buscar_lugar(efs, sizeof(EMUFS_TIPO1_REG_HEADER)
+ + reg_size, &fs);
/* si no hay bloques con suficiente espacio creo un bloque nuevo */
if (block_id == EMUFS_NOT_FOUND) {
+ /* tamaño máximo ultilizable para datos en un bloque */
+ EMUFS_BLOCK_SIZE block_space
+ = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
+ /* identificador del bloque que se guarda */
+ EMUFS_BLOCK_ID curr_block_id = EMUFS_NOT_FOUND;
+ /* tamaño de la porción de registro que se guarda */
+ EMUFS_REG_SIZE chunk_size = 0;
+ /* puntero a la poción del registro */
+ char* chunk_ptr = reg;
+
/* crear un nuevo bloque en memoria */
block = (char*) malloc(efs->tam_bloque);
if (block == NULL) {
*err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
return EMUFS_NOT_FOUND;
}
- /* graba el registro al principio del bloque */
- reg_id = emufs_tipo1_get_id(efs);
- /* graba registro en bloque */
- emufs_tipo1_escribir_reg_en_memoria(block, reg_id, reg_size, reg);
- /* graba el bloque en el archivo */
- block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
- if (*err) {
- PERR("error al grabar bloque");
- free(block);
- return EMUFS_NOT_FOUND;
- }
+ reg_header.id = emufs_idx_get_new_id(efs, err);
+ do {
+ memset(block, 0, efs->tam_bloque); /* inicializa bloque */
+ chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
+ reg_header.size -= chunk_size; /* Resto lo que ya guardé */
+ chunk_size = MIN(reg_header.size, block_space);
+ /* graba porción del registro en bloque */
+ emufs_tipo1_escribir_reg_chunk_en_memoria(block, reg_header,
+ chunk_ptr, chunk_size);
+ /* graba el bloque en el archivo */
+ curr_block_id = emufs_tipo1_grabar_bloque(efs, block,
+ EMUFS_NOT_FOUND, err);
+ if (*err) {
+ PERR("error al grabar bloque");
+ free(block);
+ return EMUFS_NOT_FOUND;
+ }
+ /* grabo el nuevo registro en el archivo de espacios libres */
+ *err = emufs_fsc_agregar(efs, curr_block_id, block_space - chunk_size);
+ if (*err) {
+ PERR("No se pudo agregar fsc");
+ free(block);
+ return EMUFS_NOT_FOUND;
+ }
+ /* si es el primer id de bloque obtenido, lo guardo para
+ * agregarlo después al archivo de índices. */
+ if (block_id == EMUFS_NOT_FOUND) {
+ block_id = curr_block_id;
+ }
+ } while (reg_header.size > block_space);
free(block);
- /* grabo el nuevo registro en el archivo de espacios libres */
- *err = emufs_fsc_agregar(efs, block_id, efs->tam_bloque - reg_size
- - sizeof(EMUFS_REG_ID) - sizeof(EMUFS_REG_SIZE));
- if (*err) {
- PERR("No se pudo agregar fsc");
- return EMUFS_NOT_FOUND;
- }
/* Encontró espacio en un bloque existente, graba registro ahí */
} else {
}
/* inserta el registro en el bloque */
/* tengo que buscar un ID válido para el nuevo registro */
- reg_id = emufs_tipo1_get_id(efs);
+ reg_header.id = emufs_idx_get_new_id(efs, err);
/* graba registro en bloque */
emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
- reg_id, reg_size, reg);
+ reg_header, reg);
/* graba el bloque en el archivo */
block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
if (*err) {
free(block);
/* actualizo el archivo de espacios libres */
*err = emufs_fsc_actualizar(efs, block_id, fs - reg_size
- - sizeof(EMUFS_REG_ID) - sizeof(EMUFS_REG_SIZE));
+ - sizeof(EMUFS_TIPO1_REG_HEADER));
if (*err) {
PERR("No se pudo actualizar fsc");
return EMUFS_NOT_FOUND;
}
/* actualizo el indice de bloques y registros */
- *err = emufs_idx_agregar(efs, block_id, reg_id);
+ *err = emufs_idx_agregar(efs, reg_header.id, block_id);
if (*err){
PERR("No se pudo agregar idx");
return EMUFS_NOT_FOUND;
}
- return reg_id;
+ return reg_header.id;
}
/*Graba un bloque en el archivo*/
return block_id;
}
-/*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
-EMUFS_REG_ID emufs_tipo1_get_id(EMUFS *emu)
+/*borra un registro de un bloque y acomoda los registros que quedan*/
+int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
{
return -1; /* FIXME Error */
}
-/*borra un registro de un bloque y acomoda los registros que quedan*/
-int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
+int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
{
return -1; /* FIXME Error */
}
-int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg,
- EMUFS_REG_SIZE tam_reg)
+EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
+ void *data, EMUFS_REG_SIZE size, int *error)
{
- return -1; /* FIXME Error */
+ emufs_tipo1_borrar_registro(emu, id);
+ return emufs_tipo1_grabar_registro(emu, data, size, error);
+}
+
+size_t emufs_tipo1_header_size(void)
+{
+ return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
}
int emufs_tipo1_header_jump(FILE* fp)
{
- if (fseek(fp, 0l, SEEK_END)) {
+ if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
PERR("No se pudo hacer fseek()");
return 8; /* EMUFS_ERROR_SEEK_FILE */
}
return 0; /* EMUFS_OK */
}
-size_t emufs_tipo1_header_size(void)
+void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header,
+ char* reg)
{
- return sizeof(EMUFS_TYPE) + /* Cabecera de tipo de archivo */
- sizeof(EMUFS_BLOCK_SIZE); /* Cabecera de tamaño del bloque */
+ emufs_tipo1_escribir_reg_chunk_en_memoria(dst, header, reg, header.size);
}
-void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id,
- EMUFS_REG_SIZE reg_size, char* reg) {
- /* grabo el id en el bloque */
- memcpy(dst, ®_id, sizeof(EMUFS_REG_ID));
- /* incremento puntero de escritura */
- dst += sizeof(EMUFS_REG_ID);
- /* grabo el tamaño del registro en el bloque */
- memcpy(dst, ®_size, sizeof(EMUFS_REG_SIZE));
+void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
+ EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
+{
+ /* grabo cabecera del registro en el bloque */
+ memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
/* incremento puntero de escritura */
- dst += sizeof(EMUFS_REG_SIZE);
+ dst += sizeof(EMUFS_TIPO1_REG_HEADER);
/* grabo el registro en el bloque */
memcpy(dst, reg, reg_size);
}
+