X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/b345e9c1eaee7c09afb43b6983f34502cd8584e3..1e4a85495eb5703c5c2caa0558e2bcfd548938f1:/emufs/tipo3.c diff --git a/emufs/tipo3.c b/emufs/tipo3.c index 30f63f4..56954ff 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -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; } @@ -80,7 +81,7 @@ void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID, memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID)); iterador += sizeof(EMUFS_REG_ID); if ( ID_aux == ID ){ - if ( cant_bloques == 1 ) + if ( cant_bloques == 0 ) memcpy(registro,bloque+iterador,emu->tam_reg); else { if ( cant_bloques-1 == i ) @@ -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*/ @@ -357,6 +361,7 @@ EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu) EMUFS_REG_ID *tmp; char name_f[255]; + memset(&stats,0,sizeof(EMUFS_Estadisticas)); strcpy(name_f,emu->nombre); strcat(name_f,".dat"); if ( (f = fopen(name_f,"r")) == NULL){ @@ -364,16 +369,19 @@ EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu) return stats; } - /* No hace falta el fseek ¿? */ fseek(f,0,SEEK_END); stats.tam_archivo_bytes = ftell(f); - stats.cant_bloques = ( ftell(f) - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE) - sizeof(EMUFS_REG_SIZE) )/ emu->tam_bloque; + stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/ + emu->tam_bloque; tmp = emufs_idx_get(emu, &stats.tam_archivo); if (tmp) free(tmp); + stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+ + sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE); + /* Obtengo las stats de FSC */ stats.total_fs = emufs_fsc_get_total_fs(emu); - /*verificar el segentado*/ - stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID) + sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE) + sizeof(EMUFS_REG_SIZE); - stats.media_fs = stats.total_fs/stats.cant_bloques; + stats.media_fs = emufs_fsc_get_media_fs(emu); + emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs); + fclose(f); return stats; } @@ -396,7 +404,7 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE if (emu->tam_reg < emu->tam_bloque) { /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */ block = emufs_idx_buscar_registro(emu,ID); - if ( block == EMUFS_NOT_FOUND ){ + if ( block == EMUFS_NOT_FOUND ) { return NULL; } if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) { @@ -427,13 +435,14 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE if ( block == EMUFS_NOT_FOUND ){ return NULL; } - cant_bloques = emu->tam_reg / emu->tam_bloque + 1; + cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1; *size = emu->tam_bloque*cant_bloques + cant_bloques*2 - sizeof(EMUFS_REG_ID)*(cant_bloques-1); bloque = (char *)malloc(*size); cur = bloque; *pos = 0; /* El bloque 0 va completo */ + err = 0; if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) { /* Oops! ... un bloque no existe, todo mal! */ free(bloque); @@ -447,6 +456,7 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE /* En resto de los bloques no pongo el ID porque ya esta en el primero */ for(i=1; itam_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); +}