]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1.c
Se pone bien la memoria en cero para la GUI en borrar_registro.
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
index 5d8dfffbc34f176efd2e8eb564565bfc4c660dda..a442e8d7c272a24c9a65df3fc2850620fc1e78fa 100644 (file)
 #include "idx.h"
 #include "fsc.h"
 #include "did.h"
+#include "common.h"
+#include "error.h"
+#include <unistd.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))
@@ -62,30 +65,38 @@ 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);
 
 /** Lee el bloque \param num_bloque y lo almacena en \c ptr. */
 static void* emufs_tipo1_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*);
 
-/** Graba el bloque apuntado por \c ptr en el archivo. */
-static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS*, void*, EMUFS_BLOCK_ID,
-               int*);
+/** Graba un bloque en el archivo y actualiza .fsc, si se solicita. */
+static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS*, void*,
+               EMUFS_BLOCK_ID, EMUFS_FREE, int*);
 
 /*------------------ Funciones públicas ----------------------*/
 
 int emufs_tipo1_inicializar(EMUFS* efs)
 {
+       /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
+        * (una relación 1/2 entre datos e info de control ya es lo suficientemente
+        * mala */
+       if (efs->tam_bloque < (sizeof(EMUFS_TIPO1_REG_HEADER) * 2)) {
+               PERR("bloque demasiado chico");
+               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;
-       return 0;
+       efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
+       efs->compactar         = emufs_tipo1_compactar;
+       efs->tam_reg = 0;
+       return EMUFS_OK;
 }
 
 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
@@ -99,15 +110,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;
        }
 
@@ -129,10 +138,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) {
@@ -146,10 +154,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 */
@@ -168,44 +175,52 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
        return registro;
 }
 
-/* @todo TODO hacer que soporte registros de más de un bloque */
-void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
-               EMUFS_REG_SIZE *size, int *pos)
+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_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 */
-       int err;
+       int err = 0;
 
        block_id = emufs_idx_buscar_registro(efs, id);
        if (block_id == EMUFS_NOT_FOUND) {
+               PERR("Registro no encontrado");
+               *pos = 0;
+               *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;
+               *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. */
-               memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
+               /* 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) {
+                       /* posición del comienzo del registro, incluye cabecera */
                        *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
-                       break;
+                       *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);
 
-       (*size) = efs->tam_bloque;
-       return block;
+       /* 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)
+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) */
@@ -216,134 +231,125 @@ 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;
+               fclose(file);
                return NULL;
        }
        if (fread(block, efs->tam_bloque, 1, file) != 1) {
-               /* TODO Manejo de errores */
                free(block);
+               fclose(file);
                PERR("Error al leer bloque");
-               *err = 3; /* EMUFS_ERROR_FILE_READ */
+               *err = EMUFS_ERROR_FILE_READ;
                return NULL;
        }
        fclose(file);
        return block;
 }
 
-EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, EMUFS_REG_SIZE reg_size, int* err)
+EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
+               EMUFS_REG_SIZE reg_size, int* err)
 {
-       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");
+       EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
+       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* chunk_ptr = reg; /* puntero a la poción del registro */
+       EMUFS_BLOCK_SIZE block_space /* tamaño máximo para datos en un bloque */
+               = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
+       /* identificador del bloque que se guarda */
+       EMUFS_BLOCK_ID curr_block_id;
+       /* tamaño de la porción de registro que se guarda */
+       EMUFS_REG_SIZE chunk_size = 0; 
+
+       /* obtengo identificador que corresponderá al registro */
+       header.id = emufs_idx_get_new_id(efs, err);
+       if (*err) {
+               PERR("no se pudo obtener un id para el registro nuevo");
+               return EMUFS_NOT_FOUND;
+       }
+       header.size = reg_size; /* tamaño del registro */
 
-       /* 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);
+       block_id = emufs_fsc_buscar_n_lugares(efs,
+                       /* cantidad de bloques que necesita el registro */
+                       (EMUFS_BLOCK_SIZE) ceil(header.size / (double) block_space),
+                       /* cabecera + si es un registro multibloque, tomo el bloque */
+                       sizeof(EMUFS_TIPO1_REG_HEADER) + MIN(header.size, block_space),
+                       &fs, err);
        /* 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) {
-                       /* 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;
                }
-               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);
-
-       /* Encontró espacio en un bloque existente, graba registro ahí */
+               memset(block, 0, efs->tam_bloque); /* inicializa bloque */
+               curr_block_id = EMUFS_NOT_FOUND; /* pongo de bloque actual el final */
+       /* si hay bloques con suficiente espacio, levanto el primero */
        } 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_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_header, reg);
+               curr_block_id = block_id; /* pongo de bloque actual el primero */
+       }
+
+       do {
+               EMUFS_BLOCK_ID new_block_id; /* identificador del bloque nuevo */
+               chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
+               header.size -= chunk_size; /* Resto lo que ya guardé */
+               chunk_size = MIN(header.size, block_space);
+
+               /* 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 */
-               block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
+               new_block_id = emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
+                               fs - sizeof(EMUFS_TIPO1_REG_HEADER) - chunk_size, 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_TIPO1_REG_HEADER));
-               if (*err) {
-                       PERR("No se pudo actualizar fsc");
-                       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 = new_block_id;
                }
-       }
-               
+               /* si no estoy por fuera del archivo, incremento el nro. de bloque */
+               if (curr_block_id != EMUFS_NOT_FOUND) {
+                       ++curr_block_id;
+               }
+
+       /* mientras que el chunk no entre en un bloque */
+       } while (header.size > block_space);
+
+       /* libera el bloque */
+       free(block);
+
        /* actualizo el indice de bloques y registros */
-       *err = emufs_idx_agregar(efs, reg_header.id, block_id);
-       if (*err){
+       *err = emufs_idx_agregar(efs, header.id, block_id);
+       if (*err) {
                PERR("No se pudo agregar idx");
                return EMUFS_NOT_FOUND;
        }
-       
-       return reg_header.id;
+
+       return header.id;
 }
 
 int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
@@ -356,12 +362,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;
        }
@@ -377,15 +381,16 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_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);
-                       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))) {
-                                       /* TODO Manejo de errores */
                                        PERR("no se pudo actualizar .fsc");
                                        free(block);
                                        return err;
@@ -395,7 +400,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;
                                        }
@@ -410,14 +414,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;
@@ -430,20 +432,26 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
                                /* 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 */
-                       emufs_tipo1_grabar_bloque(efs, block, curr_block_id, &err);
+                       /* guardo el bloque en disco (actualizando espacio libre) */
+                       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;
@@ -452,37 +460,177 @@ 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;
+}
+
+/* \bug Si hay registros multibloque, no se calcula bien el
+ *         stats.tam_info_control_dat.
+ */
+EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
+{
+       int err = 0;
+       EMUFS_Estadisticas stats;
+       memset(&stats, 0, sizeof(EMUFS_Estadisticas));
+
+       { /* obtengo tamaño del archivo en bytes */
+               char name_f[255];
+               strcpy(name_f, efs->nombre);
+               strcat(name_f, ".dat");
+               stats.tam_archivo = emufs_common_get_file_size(name_f, &err);
+               if (err) {
+                       PERR("no se pudo obtener el tamaño del archivo");
+                       return stats;
+               }
+       }
+
+       /* obtengo cantidad de bloques en el archivo */
+       stats.cant_bloques = (stats.tam_archivo - emufs_tipo1_header_size())
+                       / efs->tam_bloque;
+
+       /* obtengo la cantidad de registros en el archivo */
+       {
+               EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.cant_registros);
+               if (tmp) free(tmp); /* libera memoria innecesaria */
+       }
+
+       /* obtengo información de control que guarda el archivo .dat */
+       stats.tam_info_control_dat = emufs_tipo1_header_size() /* cabecera del archivo */
+                       /* mas las cabeceras de todos los registros */
+                       + stats.cant_registros * sizeof(EMUFS_TIPO1_REG_HEADER);
+
+       /* obtengo las estadísticas del archivo de espacio libre por bloque */
+       stats.total_fs = emufs_fsc_get_total_fs(efs);
+       stats.media_fs = emufs_fsc_get_media_fs(efs);
+       emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
+       
+       /* obtengo informacion de control guardada por los archivos auxiliares */
+       stats.tam_archivos_aux = emufs_idx_get_file_size(efs, &err)
+               + emufs_fsc_get_file_size(efs, &err)
+               + emufs_did_get_file_size(efs, &err);
+       if (err) {
+               PERR("error al obtener tamaño de alguno de los archivos auxiliares");
+               return stats;
+       }       
+
+       return stats;   
 }
 
-/** Graba un bloque en el archivo. */
-EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
-               EMUFS_BLOCK_ID block_id, int* err)
+void emufs_tipo1_compactar(EMUFS* efs)
+{
+       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 */
+       /* array con los identificadores de los registros */
+       EMUFS_REG_ID* reg_ids = emufs_idx_get(efs, &total_ids);
+       int i; /* índice de elemento actual del array */
+
+       /* recorro cada registro válido del archivo */
+       for (i = 0; i < total_ids; ++i) {
+               EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
+               char* reg; /* buffer para el registro a mover */
+               int err = 0; /* para almacenar código de error */
+               /* bloque al que pertenece el registro */
+               EMUFS_BLOCK_ID block_id = emufs_idx_buscar_registro(efs, reg_ids[i]);
+
+               /* obtengo identificador del registro actual */
+               header.id = reg_ids[i];
+               /* si el registro está borrado, continúo con el próximo */
+               if (block_id == EMUFS_NOT_FOUND) {
+                       continue;
+               }
+               /* leo el registro */
+               reg = (char*) efs->leer_registro(efs, header.id, &header.size, &err);
+               if (err) {
+                       PERR("error al leer registro");
+                       return;
+               }
+               /* borro el registro */
+               if ((err = efs->borrar_registro(efs, header.id))) {
+                       PERR("error al borrar registro");
+                       free(reg);
+                       return;
+               }
+               /* lo inserto en la nueva posición */
+               emufs_tipo1_grabar_registro(efs, reg, header.size, &err);
+               if (err) {
+                       PERR("error al grabar registro");
+                       free(reg);
+                       return;
+               }
+               free(reg);
+       }
+       free(reg_ids); /* libero lista de ids */
+
+       /* truncamos el archivo si hay bloques libres al final */
+       {
+               EMUFS_FREE fs; /* espacio libre en el bloque */
+               /* busco si hay algún bloque completo libre */
+               EMUFS_BLOCK_ID block_id = emufs_fsc_buscar_lugar(efs, block_space, &fs);
+               /* si hay, el resto del archivo tiene que estar vacío */
+               if (block_id != EMUFS_NOT_FOUND) {
+                       long size = emufs_tipo1_header_size() /* cabecera del archivo */
+                               + block_id * efs->tam_bloque; /* mas los bloques compactos */
+                       char filename[255];
+
+                       /* trunca archivo de datos */
+                       strcpy(filename, efs->nombre);
+                       strcat(filename, ".dat");
+                       truncate(filename, size);
+                       /* trunca archivo de de espacio libre */
+                       emufs_fsc_truncate(efs, block_id);
+               }
+       }
+}
+
+EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
+               EMUFS_BLOCK_ID block_id, EMUFS_FREE fs, int* err)
 {
        FILE* file;
        char name_f[255];
+       EMUFS_BLOCK_SIZE num_blocks;
 
-       strcpy(name_f,efs->nombre);
+       /* obtengo nombre del archivo */
+       strcpy(name_f, efs->nombre);
        strcat(name_f,".dat");
 
+       /* obtengo cantidad de bloques */
+       num_blocks =
+               (emufs_common_get_file_size(name_f, err) - emufs_tipo1_header_size())
+               / efs->tam_bloque;
+       if (*err) {
+               PERR("Error al obtener tamaño del archivo.");
+               return EMUFS_NOT_FOUND;
+       }
+
+       /* abre archivo */
+       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 tengo que agregar un bloque al final del archivo */
-       if (block_id == EMUFS_NOT_FOUND) {
+       /* Si es NOT_FOUND o mayor a la cantidad de bloques presentes,
+        * tengo que agregar un bloque al final del archivo */
+       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 */
                block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
+               /* si me lo solicitan, actualizo el .fsc */
+               if (fs != EMUFS_NOT_FOUND) {
+                       *err = emufs_fsc_agregar(efs, block_id, fs);
+                       if (*err) {
+                               PERR("No se pudo agregar al .fsc");
+                               fclose(file);
+                               return EMUFS_NOT_FOUND;
+                       }
+               }
        /* Si es un ID válido, salto hasta ese bloque. */
        } else {
                /* Salta el header del archivo */
@@ -497,12 +645,20 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
                        fclose(file);
                        return EMUFS_NOT_FOUND;
                }
+               /* si me lo solicitan, actualizo el .fsc */
+               if (fs != EMUFS_NOT_FOUND) {
+                       if ((*err = emufs_fsc_actualizar(efs, block_id, fs))) {
+                               PERR("no se pudo actualizar .fsc");
+                               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 */
+               *err = EMUFS_ERROR_WRITE_FILE;
                return EMUFS_NOT_FOUND;
        }
 
@@ -510,11 +666,11 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(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)
@@ -526,24 +682,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,
@@ -557,3 +707,11 @@ void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
        memcpy(dst, reg, reg_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;
+}