X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/c831082edc6038351f9ec6c2e55b85ef41d213f4..46453eaa7a7cbd8a43d9bbebda683814b13a832c:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 666206d..a75967e 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -44,6 +44,21 @@ #include #include +#define PERR(msg) printf("%s:%d> %s.\n",__FILE__, __LINE__, msg); + +/*------------------ Funciones privadas ----------------------*/ + +int emufs_tipo1_header_jump(FILE*); + +size_t emufs_tipo1_header_size(void); + +int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID); + +void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id, + EMUFS_REG_SIZE reg_size, char* reg); + +/*------------------ Funciones públicas ----------------------*/ + int emufs_tipo1_inicializar(EMUFS* efs) { /* Asigna punteros a funciones. */ @@ -54,7 +69,8 @@ int emufs_tipo1_inicializar(EMUFS* efs) 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 */ @@ -64,17 +80,16 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, int *err) 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 */ - *err = 0; block_id = emufs_idx_buscar_registro(efs, reg_id); if (block_id == EMUFS_NOT_FOUND) { /* TODO Manejo de errores */ - printf("Registro no encontrado.\n"); - *err = (int) EMUFS_NOT_FOUND; + PERR("Registro no encontrado"); + *err = EMUFS_NOT_FOUND; return NULL; } - if (!(block = emufs_tipo1_leer_bloque(efs, block_id, err))) { + if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) { /* TODO Manejo de errores */ - printf("no se pudo leer el bloque\n"); + PERR("no se pudo leer el bloque"); return NULL; } @@ -92,11 +107,12 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, int *err) if (registro == NULL) { /* TODO Manejo de errores */ free(block); - printf("No hay memoria.\n"); + PERR("No hay memoria"); *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */ return NULL; } memcpy(registro, block + offset, curr_reg_size); + *reg_size = curr_reg_size; break; } /* Desplazo el offset */ @@ -117,26 +133,24 @@ void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err) strcat(name_f,".dat"); if ((file = fopen(name_f, "r")) == NULL) { + PERR("No se puede abrir archivo"); *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */ return NULL; /* FIXME ERROR */ } - fseek(file, - sizeof(EMUFS_TYPE) + /* Cabecera tipo */ - sizeof(EMUFS_BLOCK_SIZE), /* Cabecera tamaño de bloque */ - SEEK_SET); + emufs_tipo1_header_jump(file); /* salta cabeceras */ + emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */ /* FIXME: verificar que no se pase de fin de archivo*/ - fseek(file, block_id * efs->tam_bloque, SEEK_CUR); block = (char*) malloc(efs->tam_bloque); if (block == NULL) { /* TODO Manejo de errores */ - printf("No hay memoria.\n"); + PERR("No hay memoria"); *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */ return NULL; } if (fread(block, efs->tam_bloque, 1, file) != 1) { /* TODO Manejo de errores */ free(block); - printf("Error al leer bloque.\n"); + PERR("Error al leer bloque"); *err = 3; /* EMUFS_ERROR_FILE_READ */ return NULL; } @@ -144,16 +158,144 @@ void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err) return block; } -EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg_ptr, - EMUFS_REG_SIZE reg_size) +EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, + EMUFS_REG_SIZE reg_size, int* err) { - return -1; /* FIXME Error */ + EMUFS_REG_ID reg_id; + EMUFS_FREE fs; + EMUFS_BLOCK_ID block_id; + 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); + /* si no hay bloques con suficiente espacio creo un bloque nuevo */ + if (block_id == EMUFS_NOT_FOUND) { + /* crear un nuevo bloque en memoria */ + block = (char*) malloc(efs->tam_bloque); + if (block == NULL) { + /* TODO Manejo de errores */ + PERR("No hay memoria"); + *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; + } + 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 { + /* cargo el bloque en block_id */ + if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) { + /* TODO Manejo de errores */ + PERR("no se pudo leer el bloque"); + return EMUFS_NOT_FOUND; + } + /* inserta el registro en el bloque */ + /* tengo que buscar un ID válido para el nuevo registro */ + reg_id = emufs_tipo1_get_id(efs); + /* graba registro en bloque */ + emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs, + 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; + } + 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)); + 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); + if (*err){ + PERR("No se pudo agregar idx"); + return EMUFS_NOT_FOUND; + } + + return reg_id; } /*Graba un bloque en el archivo*/ -int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque) +EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block, + EMUFS_BLOCK_ID block_id, int* err) { - return -1; /* FIXME Error */ + FILE* file; + char name_f[255]; + + strcpy(name_f,efs->nombre); + strcat(name_f,".dat"); + + if ((file = fopen(name_f, "r+b")) == NULL) { + /* TODO Manejo de errores */ + PERR("Error al abrir archivo"); + *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */ + return EMUFS_NOT_FOUND; + } + /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */ + if (block_id == EMUFS_NOT_FOUND) { + /* me paro al final del archivo */ + if (fseek(file, 0l, SEEK_END)) { + /* TODO Manejo de errores */ + PERR("No se pudo hacer fseek()"); + fclose(file); + *err = 8; /* EMUFS_ERROR_SEEK_FILE */ + return EMUFS_NOT_FOUND; + } + /* Obtengo ID del bloque nuevo */ + block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque; + /* Si es un ID válido, salto hasta ese bloque. */ + } else { + /* Salta el header del archivo */ + if ((*err = emufs_tipo1_header_jump(file))) { + PERR("no se pudo saltar la cabecera del archivo"); + fclose(file); + return EMUFS_NOT_FOUND; + } + /* Salta bloques */ + if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) { + PERR("no se pudo saltar la cabecera del bloque"); + fclose(file); + return EMUFS_NOT_FOUND; + } + } + /* Grabo el bloque */ + if (fwrite(block, efs->tam_bloque, 1, file) != 1) { + PERR("No se pudo escribir el archivo"); + fclose(file); + *err = 6; /* EMUFS_ERROR_WRITE_FILE */ + return EMUFS_NOT_FOUND; + } + + fclose(file); + return block_id; } /*Busco en el archivo de Id`s un Id valido para un nuevo registro*/ @@ -173,3 +315,41 @@ int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg, { return -1; /* FIXME Error */ } + +int emufs_tipo1_header_jump(FILE* fp) +{ + if (fseek(fp, 0l, SEEK_END)) { + PERR("No se pudo hacer fseek()"); + return 8; /* EMUFS_ERROR_SEEK_FILE */ + } + return 0; /* EMUFS_OK */ +} + +int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count) +{ + if (fseek(fp, block_count * efs->tam_bloque, 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) +{ + return sizeof(EMUFS_TYPE) + /* Cabecera de tipo de archivo */ + sizeof(EMUFS_BLOCK_SIZE); /* Cabecera de tamaño del bloque */ +} + +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)); + /* incremento puntero de escritura */ + dst += sizeof(EMUFS_REG_SIZE); + /* grabo el registro en el bloque */ + memcpy(dst, reg, reg_size); +}