]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.c
Se agregan comentarios.
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
index c287cb4295ddc3c839c82beed50b45492ad202c0..56954ff23fb7fc6eb964f3098d0359756a956f47 100644 (file)
@@ -54,6 +54,7 @@ void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
        block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
        if ( block == EMUFS_NOT_FOUND ){
                PERR("No se encontro el bloque");
+               *err = -1;
                return NULL;
        }
        
@@ -144,15 +145,18 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
        FILE *file;
        char name_f[255];
        char* bloque;
-       int cant_bloques, resto, i=0;
+       int cant_bloques, resto, i=0, lugar;
        
        strcpy(name_f,emu->nombre);
        strcat(name_f,".dat");
        
        cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
        resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
+       lugar = emu->tam_reg - sizeof(EMUFS_REG_ID);
+       if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) )
+               lugar = emu->tam_bloque;
        /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
-       num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
+       num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs);
        /*si no hay bloques con suficiente espacio creo un bloque nuevo */
        if (num_bloque == -1) {
                if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
@@ -468,3 +472,53 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE
        }
        return bloque;
 }
+
+void emufs_tipo3_compactar(EMUFS *emu)
+{
+       FILE *f;
+       EMUFS_REG_ID *tmp, max_id;
+       EMUFS_REG_SIZE size;
+       EMUFS_Estadisticas s;
+       char name[255];
+       char *reg;
+       int err=0, ID_aux, cant_bloques, i, bloques_vacios=0;
+       
+       /* si el bloque es mas chico que el registro no hace falta compactar */
+       /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return;     */
+               
+       strcpy(name,emu->nombre);
+       strcat(name,".dat");
+
+       if ( (f=fopen(name,"r") == NULL) ){
+               PERR("No se pudo abrir el archivo");
+               return;
+       }
+       s = emufs_tipo3_leer_estadisticas(emu);
+       cant_bloques = s.cant_bloques;
+
+       /* si solo hay un bloque no hace falta compactar */
+       if ( cant_bloques == 0 ){
+               fclose(f);
+               return;
+       }
+       tmp = emufs_idx_get(emu, &max_id);
+       if (tmp) free(tmp);
+       for( i=0; i<=max_id; i++){
+               /* si el id no existe paso al siguiente*/
+               if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
+               reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
+               if (err){
+                       PERR("No se pudo leer el registro");
+                       fclose(f);
+                       return;
+               }
+               emufs_tipo3_borrar_registro(emu, i);
+               ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
+               i++;
+       }
+       /*tengo que truncar el archivo*/
+       bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
+       truncate(name, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+emu->tam_bloque*(cant_bloques-bloques_vacios));
+       /*fclose(f);  problemas con el fclose FIXME!!!*/
+       free(reg);
+}