]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1.c
Bugfix.
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
index 18d3cb95b0888be3b321de6f8a3cc63fe4638175..fbebc53fdcedcdca12bb19aa44a3526dae78d3da 100644 (file)
 #include "idx.h"
 #include "fsc.h"
 #include "did.h"
+#include "error.h"
+#include <unistd.h>
+#include <sys/types.h>
 #include <stdio.h>
 #include <math.h>
 #include <stdlib.h>
 #include <string.h>
-#include <unistd.h>
 
 #ifndef MIN
 #      define MIN(x, y) (((x) > (y)) ? (y) : (x))
@@ -63,9 +65,6 @@ static int emufs_tipo1_header_jump(FILE*);
 
 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);
 
@@ -88,17 +87,19 @@ int emufs_tipo1_inicializar(EMUFS* efs)
         * mala */
        if (efs->tam_bloque < (sizeof(EMUFS_TIPO1_REG_HEADER) * 2)) {
                PERR("bloque demasiado chico");
-               return 1000; /* EMUFS_ERROR_BLOCK_SIZE_TOO_SMALL */
+               return EMUFS_ERROR_BLOCK_TOO_SMALL;
        }
        /* Asigna punteros a funciones. */
        efs->leer_bloque       = emufs_tipo1_leer_bloque;
+       efs->leer_bloque_raw   = emufs_tipo1_leer_bloque_raw;
        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;
        efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
        efs->compactar         = emufs_tipo1_compactar;
-       return 0; /* EMUFS_OK */
+       efs->tam_reg = 0;
+       return EMUFS_OK;
 }
 
 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
@@ -112,15 +113,13 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
 
        block_id = emufs_idx_buscar_registro(efs, reg_id);
        if (block_id == EMUFS_NOT_FOUND) {
-               /* TODO Manejo de errores */
                PERR("Registro no encontrado");
                *err = EMUFS_NOT_FOUND;
                return NULL;
        }
        if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
-               /* TODO Manejo de errores */
                PERR("no se pudo reservar memoria");
-               *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
+               *err = EMUFS_ERROR_OUT_OF_MEMORY;
                return NULL;
        }
 
@@ -142,10 +141,9 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
                        *reg_size = curr_reg_header.size;
                        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 */
+                               *err = EMUFS_ERROR_OUT_OF_MEMORY;
                                return NULL;
                        }
                        while (1) {
@@ -159,10 +157,9 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
                                        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 */
+                                               *err = EMUFS_ERROR_OUT_OF_MEMORY;
                                                return NULL;
                                        }
                                } else { /* se terminó de leer */
@@ -190,11 +187,10 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
        EMUFS_BLOCK_SIZE offset, block_space; /* offset del bloque leído */
        EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
        EMUFS_REG_SIZE cant_bloques;
-       int err, i;
+       int err = 0, i;
 
        block_id = emufs_idx_buscar_registro(efs, id);
        if (block_id == EMUFS_NOT_FOUND) {
-               /* TODO Manejo de errores */
                PERR("Registro no encontrado");
                *pos = 0;
                *size = 0;
@@ -202,17 +198,16 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
        }
        err = 0;
        if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
-               /* TODO Manejo de errores */
                PERR("no se pudo reservar memoria");
                *pos = 0;
                *size = 0;
                return NULL;
        }
 
-       /* Busco secuencialmente en el bloque el registro a leer */
+       /* busco secuencialmente en el bloque el registro a leer */
        offset = 0;
        do {
-               /* Copio la cabecera del registro actual. */
+               /* 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 == id) {
@@ -225,7 +220,6 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
                        *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) {
-                               /* TODO Manejo de errores */
                                free(block);
                                PERR("No hay memoria");
                                *pos = 0;
@@ -234,9 +228,9 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
                        }
                        memcpy(registro, block, efs->tam_bloque);
                        chunk_ptr += efs->tam_bloque;
-                       /* Copio los otros bloques, si los hay */
+                       /* copio los otros bloques, si los hay */
                        free(block);
-                       for(i=1; i<cant_bloques; i++) {
+                       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! */
@@ -246,8 +240,7 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
                                chunk_ptr += efs->tam_bloque-sizeof(EMUFS_TIPO1_REG_HEADER);
                                free(block);
                        }
-                       /* Todo listo! */
-                       break;
+                       break; /* se terminó el trabajo. */
                }
                /* Desplazo el offset */
                offset += curr_reg_header.size;
@@ -256,7 +249,7 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
        return registro;
 }
 
-void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
+void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, interr)
 {
        FILE* file;
        char* block; /* bloque leido (en donde está el registro a leer) */
@@ -267,24 +260,21 @@ void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
 
        if ((file = fopen(name_f, "r")) == NULL) {
                PERR("No se puede abrir archivo");
-               *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
-               return NULL; /* FIXME ERROR */
+               *err = EMUFS_ERROR_CANT_OPEN_FILE;
+               return NULL;
        }
        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*/
        block = (char*) malloc(efs->tam_bloque);
        if (block == NULL) {
-               /* TODO Manejo de errores */
                PERR("No hay memoria");
-               *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
+               *err = EMUFS_ERROR_OUT_OF_MEMORY;
                return NULL;
        }
        if (fread(block, efs->tam_bloque, 1, file) != 1) {
-               /* TODO Manejo de errores */
                free(block);
                PERR("Error al leer bloque");
-               *err = 3; /* EMUFS_ERROR_FILE_READ */
+               *err = EMUFS_ERROR_FILE_READ;
                return NULL;
        }
        fclose(file);
@@ -326,9 +316,8 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
                /* 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 */
+                       *err = EMUFS_ERROR_OUT_OF_MEMORY;
                        return EMUFS_NOT_FOUND;
                }
                memset(block, 0, efs->tam_bloque); /* inicializa bloque */
@@ -337,7 +326,6 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
        } 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;
                }
@@ -397,12 +385,10 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
 
        block_id = emufs_idx_buscar_registro(efs, reg_id);
        if (block_id == EMUFS_NOT_FOUND) {
-               /* TODO Manejo de errores */
                PERR("Registro no encontrado");
                return EMUFS_NOT_FOUND;
        }
        if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
-               /* TODO Manejo de errores */
                PERR("no se pudo reservar memoria");
                return err;
        }
@@ -426,7 +412,6 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
                                        + MIN(curr_reg_header.size, block_space)
                                        + sizeof(EMUFS_TIPO1_REG_HEADER);
                                if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
-                                       /* TODO Manejo de errores */
                                        PERR("no se pudo actualizar .fsc");
                                        free(block);
                                        return err;
@@ -436,7 +421,6 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
                                        free(block);
                                        if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
                                                                        ++curr_block_id, &err))) {
-                                               /* TODO Manejo de errores */
                                                PERR("no se pudo leer el bloque");
                                                return err;
                                        }
@@ -451,14 +435,12 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
 
                        /* actualizo archivo de identificadores de registros borrados */
                        if ((err = emufs_did_agregar(efs, reg_id))) {
-                               /* TODO Manejo de errores */
                                PERR("no se pudo actualizar .did");
                                free(block);
                                return err;
                        }
                        /*actualizo archivo .idx*/
                        if ((err = emufs_idx_borrar(efs, reg_id))) {
-                               /* TODO Manejo de errores */
                                PERR("no se pudo actualizar .did");
                                free(block);
                                return err;
@@ -479,13 +461,12 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
                        emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
                                        EMUFS_NOT_FOUND, &err);
                        if (err) {
-                               /* TODO Manejo de errores */
                                PERR("no se pudo grabar bloque en disco");
                                free(block);
                                return err;
                        }
 
-                       break; /* salgo del loop, ya hice todo lo que tenía que hacer */
+                       break; /* salgo del loop, ya terminé lo que tenía que hacer */
                }
                /* desplazo el offset */
                offset += sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
@@ -494,7 +475,7 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
        } while (offset < efs->tam_bloque); /* registro está en el bloque */
 
        free(block);
-       return 0; /* EMUFS_OK */
+       return EMUFS_OK;
 }
 
 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
@@ -505,7 +486,6 @@ EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
 
        stats.tam_archivo_bytes = emufs_tipo1_get_file_size(efs, &err);
        if (err) {
-               /* TODO manejo de errores */
                PERR("no se pudo obtener el tamaño del archivo");
                return stats;
        }
@@ -614,9 +594,8 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
        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 */
+               *err = EMUFS_ERROR_CANT_OPEN_FILE;
                return EMUFS_NOT_FOUND;
        }
        /* Si es NOT_FOUND o mayor a la cantidad de bloques presentes,
@@ -624,10 +603,9 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
        if ((block_id == EMUFS_NOT_FOUND) || (block_id >= num_blocks)) {
                /* 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 */
+                       *err = EMUFS_ERROR_SEEK_FILE;
                        return EMUFS_NOT_FOUND;
                }
                /* Obtengo ID del bloque nuevo */
@@ -657,8 +635,7 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
                }
                /* si me lo solicitan, actualizo el .fsc */
                if (fs != EMUFS_NOT_FOUND) {
-                       if ((err = emufs_fsc_actualizar(efs, block_id, fs))) {
-                               /* TODO Manejo de errores */
+                       if ((*err = emufs_fsc_actualizar(efs, block_id, fs))) {
                                PERR("no se pudo actualizar .fsc");
                                fclose(file);
                                return EMUFS_NOT_FOUND;
@@ -669,7 +646,7 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
        if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
                PERR("No se pudo escribir el archivo");
                fclose(file);
-               *err = 6; /* EMUFS_ERROR_WRITE_FILE */
+               *err = EMUFS_ERROR_WRITE_FILE;
                return EMUFS_NOT_FOUND;
        }
 
@@ -677,11 +654,11 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
        return block_id;
 }
 
-EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
-               void *data, EMUFS_REG_SIZE size, int *error)
+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(emu, id);
-       return emufs_tipo1_grabar_registro(emu, data, size, error);
+       emufs_tipo1_borrar_registro(efs, id);
+       return emufs_tipo1_grabar_registro(efs, data, size, err);
 }
 
 size_t emufs_tipo1_header_size(void)
@@ -693,24 +670,18 @@ int emufs_tipo1_header_jump(FILE* fp)
 {
        if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
                PERR("No se pudo hacer fseek()");
-               return 8; /* EMUFS_ERROR_SEEK_FILE */
+               return EMUFS_ERROR_SEEK_FILE;
        }
-       return 0; /* EMUFS_OK */
+       return 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 EMUFS_ERROR_SEEK_FILE;
        }
-       return 0; /* EMUFS_OK */
-}
-
-void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header,
-               char* reg)
-{
-       emufs_tipo1_escribir_reg_chunk_en_memoria(dst, header, reg, header.size);
+       return EMUFS_OK;
 }
 
 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
@@ -733,9 +704,8 @@ long emufs_tipo1_get_file_size(EMUFS* efs, int* err)
        strcpy(name_f, efs->nombre);
        strcat(name_f, ".dat");
        if ((file = fopen(name_f, "ab")) == NULL) {
-               /* TODO Manejo de errores */
                PERR("Error al abrir archivo");
-               *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
+               *err = EMUFS_ERROR_CANT_OPEN_FILE;
                return 0;
        }
        file_size = ftell(file);
@@ -743,3 +713,12 @@ long emufs_tipo1_get_file_size(EMUFS* efs, int* err)
        return file_size;
 }
 
+void emufs_tipo1_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente, EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3)
+{
+       int err = 0;
+       (*actual) = emufs_tipo1_leer_bloque(efs, id, &err);
+       (*anterior) = emufs_tipo1_leer_bloque(efs, id-1, &err);
+       (*siguiente) = emufs_tipo1_leer_bloque(efs, id+1, &err);
+       (*size1) = (*size2) = (*size3) = efs->tam_bloque;
+}
+