1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
7 * emufs is free software; you can redistribute it and/or modify it under the
8 * terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
12 * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License along
18 * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------------------
21 * Creado: vie abr 9 16:17:50 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 * Leandro Lucarella <llucare@fi.uba.ar>
24 *----------------------------------------------------------------------------
32 * Archivo para administrar el espacio libre disponible.
34 * Implementación del archivo para administrar el espacio libre disponible.
42 /* Crea un archivo de Gaps o Espacio Libre en Bloque */
43 int emufs_fsc_crear(EMUFS* efs)
45 return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_FSC_EXT);
48 /* Agrega un registro al archivo de espacio libre en bloque. */
49 int emufs_fsc_agregar(EMUFS *emu, EMUFS_BLOCK_ID n_marker, EMUFS_FREE n_freespace)
55 strcpy(name_f_fsc,emu->nombre);
56 strcat(name_f_fsc, EMUFS_FSC_EXT);
58 /* Cargo el registro */
59 reg.n_marker = n_marker;
60 reg.n_freespace = n_freespace;
62 /* Lo guardo en el archivo al final "a+"*/
63 if ( (f_fsc = fopen(name_f_fsc,"a+"))==NULL ) return -1;
64 fwrite(®,sizeof(EMUFS_FSC),1,f_fsc);
69 /* Agrega un GAP en el archivo de Gaps para Filetype 2 */
70 int emufs_fsc_agregar_gap(EMUFS *emu, EMUFS_OFFSET n_marker, EMUFS_FREE n_freespace)
73 EMUFS_FSC gap_aux,gap_before,gap_after,gap_new;
75 EMUFS_REG_ID n_gap_before = 0, n_gap_after = 0;
76 unsigned long n_source,n_destination,n_filesize,n_reg_count = 0,n_moved = 0;
79 strcpy(name_f_fsc,emu->nombre);
80 strcat(name_f_fsc, EMUFS_FSC_EXT);
82 gap_before.n_marker = -1;
83 gap_after.n_marker = -1;
85 /* Busco si hay un GAP por delante y/o por detras del que se esta por crear */
86 /* para en dicho caso realizar un merge! */
87 if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
88 while ( !feof(f_fsc) ){
89 if ( fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
91 /* Chequeo si es un gap justo anterior al nuestro */
92 if (gap_aux.n_marker+gap_aux.n_freespace == n_marker) {
93 gap_before.n_marker = gap_aux.n_marker;
94 gap_before.n_freespace = gap_aux.n_freespace;
95 n_gap_before = n_reg_count;
98 /* Chequeo si es un gap justo posterior al nuestro */
99 if (gap_aux.n_marker == n_marker+n_freespace) {
100 gap_after.n_marker = gap_aux.n_marker;
101 gap_after.n_freespace = gap_aux.n_freespace;
102 n_gap_after = n_reg_count;
107 /* Si no encontre gaps ni por delante ni por detras */
108 if ((gap_before.n_marker == -1) && (gap_after.n_marker == -1)) {
109 /* Lo guardo en el archivo al final */
110 gap_new.n_marker = n_marker;
111 gap_new.n_freespace = n_freespace;
112 fseek(f_fsc,0,SEEK_END);
113 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
117 /* Si encuentro un GAP Justo por delante pero no por detras */
118 if ((gap_before.n_marker != -1) && (gap_after.n_marker == -1))
120 printf("fsc.c >> Found GAP justo por Delante pero no por Detras!!\n");
121 printf("fsc.c >> Gap found is reg number %lu in .fsc file\n",n_gap_before);
122 /* Me posiciono en el registro que indica dicho gap y lo reescribo con */
123 /* la suma de los espacios libres */
124 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_before,0);
125 gap_new.n_marker = gap_before.n_marker;
126 gap_new.n_freespace = gap_before.n_freespace + n_freespace;
127 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
131 /* Si encuentro un GAP Justo por detras pero no por delante */
132 if ((gap_before.n_marker == -1) && (gap_after.n_marker != -1))
134 printf("fsc.c >> Found GAP justo por Detras pero no por Delante!!\n");
135 printf("fsc.c >> Gap found is reg number %lu in .fsc file\n",n_gap_after);
136 /* Me posiciono en el registro que indica dicho gap y lo reescribo con */
137 /* los datos actualizados de offset y espacio */
138 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_after,0);
139 gap_new.n_marker = gap_after.n_marker - n_freespace;
140 gap_new.n_freespace = gap_after.n_freespace + n_freespace;
141 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
145 /* Finalmente, si encuentro Justo por delante y por detras..*/
146 if ((gap_before.n_marker != -1) && (gap_after.n_marker != -1))
148 printf("fsc.c >> Found GAP justo por Delante y por Detras!!\n");
149 printf("fsc.c >> Pre Gap found is reg number %lu in .fsc file\n",n_gap_before);
150 printf("fsc.c >> Post Gap found is reg number %lu in .fsc file\n",n_gap_after);
151 /* Guardo el nuevo GAP que posee los tres espacios sumados */
152 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_before,0);
153 gap_new.n_marker = gap_before.n_marker;
154 gap_new.n_freespace = gap_before.n_freespace + n_freespace + gap_after.n_freespace;
155 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
157 /* Guardamos la posicion actual del fpi pues sera en donde comenzaremos */
158 /* a mover los registros a recompactar. Ademas, calculo cuantos regs mover */
159 n_destination = sizeof(EMUFS_FSC)*n_gap_after;
160 n_source = n_destination+sizeof(EMUFS_FSC); /* Salteo el gap_after! */
161 fseek(f_fsc,0,SEEK_END);
162 n_filesize = ftell(f_fsc);
163 n_reg_count = (n_filesize - n_source) / sizeof(EMUFS_FSC);
164 printf("Destination: %lu Source: %lu Cant Regs a Mover: %lu\n",n_destination,n_source,n_reg_count);
166 /* Comienzo a mover */
167 while (n_moved < n_reg_count) {
168 fseek(f_fsc,n_source,0);
169 fread(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
170 fseek(f_fsc,-sizeof(EMUFS_FSC)*2,SEEK_CUR);
171 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
172 n_source += sizeof(EMUFS_FSC);
176 truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC));
182 /* Objetivo: Actualiza un registro de espacio libre de acorde al FType */
183 int emufs_fsc_actualizar(EMUFS *emu, EMUFS_BLOCK_ID n_marker, EMUFS_FREE n_freespace)
187 char name_f_fsc[255];
189 strcpy(name_f_fsc,emu->nombre);
190 strcat(name_f_fsc, EMUFS_FSC_EXT);
192 /*busco el bloque o gap que modifique*/
193 if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
194 while ( !feof(f_fsc) ){
195 if ( fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
196 if ( reg.n_marker == n_marker ){
197 reg.n_freespace = n_freespace;
198 fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
199 fwrite(®,sizeof(EMUFS_FSC),1,f_fsc);
207 /* Me devuelve el ID del bloque u Offset del Gap donde quepa un registro, y guarda en n_freespace el espacio libre actualizado */
208 EMUFS_BLOCK_ID emufs_fsc_buscar_lugar(EMUFS *emu, EMUFS_FREE n_RegSize, EMUFS_FREE *n_freespace)
212 char name_f_fsc[255];
213 unsigned short int b_Found = 0;
215 strcpy(name_f_fsc,emu->nombre);
216 strcat(name_f_fsc, EMUFS_FSC_EXT);
218 if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
220 /* Inicializamos la estructura para devolver algun valor en concreto */
221 /* en caso de que no se halle un espacio libre apropiado */
222 while(!feof(f_fsc) && !b_Found){
223 if (fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
224 if (reg.n_freespace >= n_RegSize) b_Found = 1;
227 /* Si salio por error o por fin de archivo y no encontro space... */
230 *n_freespace = emu->tam_bloque;
232 else *n_freespace = reg.n_freespace;
238 /* Devuelve el espacio libre de un Bloque o Gap dado */
239 EMUFS_FREE emufs_fsc_get_fs(EMUFS *emu, EMUFS_BLOCK_ID n_marker)
243 char name_f_fsc[255];
245 strcpy(name_f_fsc,emu->nombre);
246 strcat(name_f_fsc, EMUFS_FSC_EXT);
248 /* Busco el Bloque o Gap pedido y obtengo su espacio libre */
249 if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
250 while ( !feof(f_fsc) ){
251 if ( fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1 ) continue;
252 if ( reg.n_marker == n_marker )
257 return reg.n_freespace;