]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1.c
Se implementa borrar_registro en tipo1. Soporta registros mas grandes que el
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
index 1c48211d96f671da8346d026a1ece846abfe2dac..6e35771a27b54f6964735789ad29c52ed900850c 100644 (file)
@@ -1,4 +1,4 @@
-/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+/* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
  *----------------------------------------------------------------------------
  *                                  emufs
  *----------------------------------------------------------------------------
@@ -114,8 +114,13 @@ void* emufs_tipo1_leer_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);
+                       /* 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;
+
                        *reg_size = curr_reg_header.size;
-                       registro = (char*) malloc(*reg_size);
+                       registro = chunk_ptr = (char*) malloc(*reg_size);
                        if (registro == NULL) {
                                /* TODO Manejo de errores */
                                free(block);
@@ -123,85 +128,46 @@ void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
                                *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
                                return NULL;
                        }
-                       /* 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;
+                       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_header.size;
-       } while (offset < efs->tam_bloque);
+
+       /* esto no debería ser nunca false porque sé positivamente que el */
+       } while (offset < efs->tam_bloque); /* registro está en el bloque */
 
        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
-
+/* @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)
 {
        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;
 
@@ -209,6 +175,7 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
        if (block_id == EMUFS_NOT_FOUND) {
                return NULL;
        }
+       err = 0;
        if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
                return NULL;
        }
@@ -225,9 +192,9 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
                }
                /* Desplazo el offset */
                offset += curr_reg_header.size;
-       } while (offset < block_size);
+       } while (offset < efs->tam_bloque);
 
-       (*size) = block_size;
+       (*size) = efs->tam_bloque;
        return block;
 }
 
@@ -266,8 +233,7 @@ 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,
-               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 */
@@ -286,8 +252,7 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
        /* 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);
+               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 */
@@ -310,11 +275,9 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
                        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);
+                       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);
+                       curr_block_id = emufs_tipo1_grabar_bloque(efs, block, EMUFS_NOT_FOUND, err);
                        if (*err) {
                                PERR("error al grabar bloque");
                                free(block);
@@ -376,7 +339,97 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
        return reg_header.id;
 }
 
-/*Graba un bloque en el archivo*/
+int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
+{
+       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 */
+       int err = 0; /* para almacenar código de error */
+
+       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;
+       }
+
+       /* Busco secuencialmente en el bloque el registro a leer */
+       offset = 0;
+       do {
+               /* 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) {
+                       /* identificador del bloque actual */
+                       EMUFS_BLOCK_ID curr_block_id = block_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 */
+
+                       while (1) {
+                               /* actualizo archivo de espacio libre por bloque */
+                               fs = emufs_fsc_get_fs(efs, curr_block_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;
+                               }
+                               /* falta liberar un bloque (o porción) */
+                               if (curr_reg_header.size > block_space) {
+                                       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;
+                                       }
+                                       /* copio la cabecera del primer registro (si ocupa más de un
+                                        * registro está en bloques contiguos) */
+                                       memcpy(&curr_reg_header, block,
+                                                       sizeof(EMUFS_TIPO1_REG_HEADER));
+                               } else { /* se terminó de leer */
+                                       break;
+                               }
+                       }
+
+                       /* 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;
+                       }
+
+                       /* TODO desplazar a izquierda registros */
+               }
+               /* desplazo el offset */
+               offset += curr_reg_header.size;
+
+       /* esto no debería ser nunca false porque sé positivamente que el */
+       } while (offset < efs->tam_bloque); /* registro está en el bloque */
+
+       free(block);
+       return 0; /* EMUFS_OK */
+}
+
+/** Graba un bloque en el archivo. */
 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
                EMUFS_BLOCK_ID block_id, int* err)
 {
@@ -431,17 +484,6 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
        return block_id;
 }
 
-/*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 */
-}
-
-int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
-{
-       return -1; /* FIXME Error */
-}
-
 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
                void *data, EMUFS_REG_SIZE size, int *error)
 {