X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/6effd0769b012b1ac78cfeda307cec54802f9b58..9e708c77b6a6ea06b945986b9b2dd93b15c374d7:/emufs/tipo2.c diff --git a/emufs/tipo2.c b/emufs/tipo2.c index e640cf6..d424bf0 100644 --- a/emufs/tipo2.c +++ b/emufs/tipo2.c @@ -216,7 +216,7 @@ int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amoun strcpy(name_f,efs->nombre); strcat(name_f,".dat"); - if ((f_data = fopen(name_f,"r+")) == NULL) return -1; /* ERROR */ + if ((f_data = fopen(name_f,"rb+")) == NULL) return -1; /* ERROR */ /* Preparo el garbage y se lo tiro encima */ fill_size = amount+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE); @@ -232,20 +232,22 @@ int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amoun } /* Realiza la actualizacin de un registro ya existente */ -EMUFS_REG_ID emufs_tipo2_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error) +EMUFS_REG_ID emufs_tipo2_modificar_registro(EMUFS *efs, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error) { - emufs_tipo2_borrar_registro(emu, id); - return emufs_tipo2_grabar_registro(emu, data, size, error); + emufs_tipo2_borrar_registro(efs, id); + return emufs_tipo2_grabar_registro(efs, data, size, error); } /* Recompila y devuelve ciertas estadisticas del archivo indicado */ -EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *emu) +EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs) { - EMUFS_Estadisticas stats; + EMUFS_Estadisticas stats; + EMUFS_REG_ID *tmp; + unsigned long fsc_size = 0,idx_size = 0; char name_f[255]; FILE *file; - strcpy(name_f,emu->nombre); + strcpy(name_f,efs->nombre); strcat(name_f,".dat"); /* Inicializo las stats por si hay error somewhere */ @@ -259,17 +261,164 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *emu) stats.cant_bloques = 0; /* Obtengo las stats de FSC */ - stats.total_fs = emufs_fsc_get_total_fs(emu); - stats.media_fs = emufs_fsc_get_media_fs(emu); - emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs); + 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); + + /* Cant registros */ + tmp = emufs_idx_get(efs,&stats.tam_archivo); + free(tmp); - /* Faltan stats pero como cambia el API Idx, espero... */ + /* Size del archivo de datos */ if ( (file = fopen(name_f,"ab")) == NULL){ PERR("No se pudo abrir el archivo"); return stats; } stats.tam_archivo_bytes = ftell(file); fclose(file); + + /* Size del archivo de Espacio Libre */ + strcpy(name_f,efs->nombre); + strcat(name_f,EMUFS_FSC_EXT); + if ( (file = fopen(name_f,"ab")) == NULL){ + PERR("No se pudo abrir el archivo"); + return stats; + } + fsc_size = ftell(file); + fclose(file); + + /* Size del archivo Indice */ + strcpy(name_f,efs->nombre); + strcat(name_f,EMUFS_IDX_EXT); + if ( (file = fopen(name_f,"ab")) == NULL){ + PERR("No se pudo abrir el archivo"); + return stats; + } + idx_size = ftell(file); + fclose(file); + + /* Cantidad de Bytes en info de control */ + stats.info_control = idx_size + fsc_size + sizeof(EMUFS_REG_ID)*stats.tam_archivo + sizeof(EMUFS_REG_SIZE)*stats.tam_archivo + sizeof(EMUFS_Tipo); return(stats); } + +/* Recompila y devuelve ciertas estadisticas del archivo indicado */ +int emufs_tipo2_recompactar(EMUFS *efs) +{ + char name_fdat[255],name_ffsc[255]; + FILE *datfile; + FILE *fscfile; + EMUFS_FSC reg1,reg2; + unsigned long cant_gaps = 0,mustmove_bytes = 0,source = 0, + destination = 0,datsize = 0,totalfsc = 0; + + strcpy(name_fdat,efs->nombre); + strcpy(name_ffsc,efs->nombre); + strcat(name_fdat,".dat"); + strcat(name_ffsc,EMUFS_FSC_EXT); + + /* Obtengo el tamanio del .dat */ + if ( (datfile = fopen(name_fdat,"rb+")) == NULL){ + PERR("No se pudo abrir el archivo"); + return -1; + } + fseek(datfile,0,SEEK_END); + datsize = ftell(datfile); + + /* Obtengo la cantidad de gaps */ + if ( (fscfile = fopen(name_ffsc,"rb")) == NULL){ + PERR("No se pudo abrir el archivo"); + return -1; + } + fseek(fscfile,0,SEEK_END); + cant_gaps = ftell(fscfile)/sizeof(EMUFS_FSC); + + if (cant_gaps == 0) return 0; + if (cant_gaps == 1) { + /* Un solo gap, muevo toda la data luego del gap y trunco */ + fseek(fscfile,0,SEEK_SET); + fread(®1,sizeof(EMUFS_FSC),1,fscfile); + source = reg1.marker + reg1.freespace; + destination = reg1.marker; + mustmove_bytes = datsize - source; + /*printf("Para recompactar, must move: %lu bytes\n",mustmove_bytes); + printf("Will move from: %lu to %lu\n",source,destination);*/ + emufs_tipo2_movedata(datfile,&source,&destination,mustmove_bytes); + } + if (cant_gaps > 1) + { + /* Comienzo leyendo un gap */ + fseek(fscfile,0,SEEK_SET); + fread(®1,sizeof(EMUFS_FSC),1,fscfile); + destination = reg1.marker; + --cant_gaps; + + while (cant_gaps > 0) + { + /* El source siempre sera el fin del anteultimo gap leido */ + source = reg1.marker + reg1.freespace; + /* Leemos otro gap para calcular cuanto debemos mover */ + fread(®2,sizeof(EMUFS_FSC),1,fscfile); + mustmove_bytes = reg2.marker - source; + /*printf("Para recompactar, must move: %lu bytes\n",mustmove_bytes); + printf("Will move from: %lu to %lu\n",source,destination);*/ + emufs_tipo2_movedata(datfile,&source,&destination,mustmove_bytes); + /* Guardo el nuevo destino que es donde termino de mover */ + destination = ftell(datfile); + /* El ultimo gap leido, pasa a ser el de referencia ahora */ + reg1.marker = reg2.marker; + reg1.freespace = reg2.freespace; + --cant_gaps; + } + + /* Realizo el movimiento del ultimo chunk de datos */ + source = reg1.marker + reg1.freespace; + mustmove_bytes = datsize - source; + emufs_tipo2_movedata(datfile,&source,&destination,mustmove_bytes); + } + + fclose(datfile); + fclose(fscfile); + + /* Trunco el dat para que no quede el espacio vacio al final */ + totalfsc = emufs_fsc_get_total_fs(efs); + truncate(name_fdat,datsize - totalfsc); + truncate(name_ffsc,0); + return 0; +} + +void emufs_tipo2_movedata(FILE *datfile,EMUFS_OFFSET *source, EMUFS_OFFSET *destination, EMUFS_BLOCK_SIZE mustmove_bytes) +{ + int chunksize = 9; + char *chunk = malloc(chunksize*sizeof(char)); + unsigned long cant_chunks = 0,left_chunk = 0; + + /* Obtengo cuantos bloques de a CHUNKSIZE bytes debo mover. Si la cantidad es no entera */ + cant_chunks = floor(mustmove_bytes/chunksize); + left_chunk = fmod(mustmove_bytes,chunksize); + + /*printf ("Cantidad de chunk de %i bytes movidos: %lu\n",chunksize,cant_chunks); + printf ("Left chunk movido fue de: %lu bytes\n",left_chunk);*/ + + while(cant_chunks > 0) + { + fseek(datfile,*source,SEEK_SET); + fread(chunk,chunksize,1,datfile); + fseek(datfile,*destination,SEEK_SET); + fwrite(chunk,chunksize,1,datfile); + *source += chunksize; + *destination += chunksize; + --cant_chunks; + } + + if (left_chunk > 0) + { + fseek(datfile,*source,SEEK_SET); + fread(chunk,left_chunk,1,datfile); + fseek(datfile,*destination,SEEK_SET); + fwrite(chunk,left_chunk,1,datfile); + } + + free(chunk); +}