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;
78 strcpy(name_f_fsc,emu->nombre);
79 strcat(name_f_fsc, EMUFS_FSC_EXT);
81 gap_before.n_marker = -1;
82 gap_after.n_marker = -1;
84 /* Busco si hay un GAP por delante y/o por detras del que se esta por crear */
85 /* para en dicho caso realizar un merge! */
86 if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
87 while ( !feof(f_fsc) ){
88 if ( fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
90 /* Chequeo si es un gap justo anterior al nuestro */
91 if (gap_aux.n_marker+gap_aux.n_freespace == n_marker) {
92 gap_before.n_marker = gap_aux.n_marker;
93 gap_before.n_freespace = gap_aux.n_freespace;
94 n_gap_before = n_reg_count;
97 /* Chequeo si es un gap justo posterior al nuestro */
98 if (gap_aux.n_marker == n_marker+n_freespace) {
99 gap_after.n_marker = gap_aux.n_marker;
100 gap_after.n_freespace = gap_aux.n_freespace;
101 n_gap_after = n_reg_count;
106 /* Si no encontre gaps ni por delante ni por detras */
107 if ((gap_before.n_marker == -1) && (gap_after.n_marker == -1)) {
108 /* Lo guardo en el archivo al final */
109 gap_new.n_marker = n_marker;
110 gap_new.n_freespace = n_freespace;
111 fseek(f_fsc,0,SEEK_END);
112 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
116 /* Si encuentro un GAP Justo por delante pero no por detras */
117 if ((gap_before.n_marker != -1) && (gap_after.n_marker == -1))
119 printf("fsc.c >> Found GAP justo por Delante pero no por Detras!!\n");
120 printf("fsc.c >> Gap found is reg number %lu in .fsc file\n",n_gap_before);
121 /* Me posiciono en el registro que indica dicho gap y lo reescribo con */
122 /* la suma de los espacios libres */
123 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_before,0);
124 gap_new.n_marker = gap_before.n_marker;
125 gap_new.n_freespace = gap_before.n_freespace + n_freespace;
126 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
130 /* Si encuentro un GAP Justo por detras pero no por delante */
131 if ((gap_before.n_marker == -1) && (gap_after.n_marker != -1))
133 printf("fsc.c >> Found GAP justo por Detras pero no por Delante!!\n");
134 printf("fsc.c >> Gap found is reg number %lu in .fsc file\n",n_gap_after);
135 /* Me posiciono en el registro que indica dicho gap y lo reescribo con */
136 /* los datos actualizados de offset y espacio */
137 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_after,0);
138 gap_new.n_marker = gap_after.n_marker - n_freespace;
139 gap_new.n_freespace = gap_after.n_freespace + n_freespace;
140 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
144 /* Finalmente, si encuentro Justo por delante y por detras..*/
145 if ((gap_before.n_marker != -1) && (gap_after.n_marker != -1))
147 printf("fsc.c >> Found GAP justo por Delante y por Detras!!\n");
148 printf("fsc.c >> Pre Gap found is reg number %lu in .fsc file\n",n_gap_before);
149 printf("fsc.c >> Post Gap found is reg number %lu in .fsc file\n",n_gap_after);
150 /* Guardo el nuevo GAP que posee los tres espacios sumados */
151 fseek(f_fsc,sizeof(EMUFS_FSC)*n_gap_before,0);
152 gap_new.n_marker = gap_before.n_marker;
153 gap_new.n_freespace = gap_before.n_freespace + n_freespace + gap_after.n_freespace;
154 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
156 /* Preparo el escenario para la movida de registros */
157 n_destination = sizeof(EMUFS_FSC)*n_gap_after;
158 n_source = n_destination+sizeof(EMUFS_FSC); /* Salteo el gap_after! */
159 fseek(f_fsc,0,SEEK_END);
160 n_filesize = ftell(f_fsc);
161 n_reg_count = (n_filesize - n_source) / sizeof(EMUFS_FSC);
162 printf("Destination: %lu Source: %lu Cant Regs a Mover: %lu\n",n_destination,n_source,n_reg_count);
164 /* Comienzo a mover */
165 while (n_moved < n_reg_count) {
166 fseek(f_fsc,n_source,0);
167 fread(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
168 fseek(f_fsc,-sizeof(EMUFS_FSC)*2,SEEK_CUR);
169 fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
170 n_source += sizeof(EMUFS_FSC);
174 truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC));
180 /* Elimina un registro GAP del archivo de espacios libres (gaps) */
181 int emufs_fsc_remove_gap(EMUFS *emu, EMUFS_OFFSET n_marker)
185 char name_f_fsc[255];
186 unsigned long n_source,n_destination,n_filesize,n_reg_count = 0,n_moved = 0;
188 strcpy(name_f_fsc,emu->nombre);
189 strcat(name_f_fsc, EMUFS_FSC_EXT);
191 /* Busco el Gap en el .fsc */
192 if ((f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
193 while ( !feof(f_fsc) ){
194 if ( fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
195 if ( gap_aux.n_marker == n_marker ) break;
198 /* Preparo el escenario para la movida de registros */
199 fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
200 n_destination = ftell(f_fsc);
201 n_source = n_destination+sizeof(EMUFS_FSC); /* Salteo el gap a eliminar! */
202 fseek(f_fsc,0,SEEK_END);
203 n_filesize = ftell(f_fsc);
204 n_reg_count = (n_filesize - n_source) / sizeof(EMUFS_FSC);
205 printf("Destination: %lu Source: %lu Cant Regs a Mover: %lu\n",n_destination,n_source,n_reg_count);
207 /* Comienzo a mover */
208 while (n_moved < n_reg_count) {
209 fseek(f_fsc,n_source,0);
210 fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
211 fseek(f_fsc,-sizeof(EMUFS_FSC)*2,SEEK_CUR);
212 fwrite(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
213 n_source += sizeof(EMUFS_FSC);
217 truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC));
222 /* Objetivo: Actualiza un registro de espacio libre de acorde al FType */
223 int emufs_fsc_actualizar(EMUFS *emu, EMUFS_BLOCK_ID n_marker, EMUFS_FREE n_freespace)
227 char name_f_fsc[255];
229 strcpy(name_f_fsc,emu->nombre);
230 strcat(name_f_fsc, EMUFS_FSC_EXT);
232 /*busco el bloque o gap que modifique*/
233 if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
234 while ( !feof(f_fsc) ){
235 if ( fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
236 if ( reg.n_marker == n_marker ){
237 reg.n_freespace = n_freespace;
238 fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
239 fwrite(®,sizeof(EMUFS_FSC),1,f_fsc);
247 /* Actualiza un registro de gap, en el archivo de Gaps en Disco */
248 int emufs_fsc_actualizar_gap(EMUFS *emu, EMUFS_OFFSET n_marker, EMUFS_FREE n_freespace)
252 char name_f_fsc[255];
254 strcpy(name_f_fsc,emu->nombre);
255 strcat(name_f_fsc, EMUFS_FSC_EXT);
257 /*busco el bloque o gap que modifique*/
258 if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
259 while ( !feof(f_fsc) ){
260 if ( fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
261 if ( gap_aux.n_marker == n_marker ){
262 gap_aux.n_marker = n_marker + gap_aux.n_freespace - n_freespace;
263 gap_aux.n_freespace = n_freespace;
264 fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
265 fwrite(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
273 /* Me devuelve el ID del bloque u Offset del Gap donde quepa un registro, y guarda en n_freespace el espacio libre actualizado */
274 EMUFS_BLOCK_ID emufs_fsc_buscar_lugar(EMUFS *emu, EMUFS_FREE n_regsize, EMUFS_FREE *n_freespace)
278 char name_f_fsc[255];
281 strcpy(name_f_fsc,emu->nombre);
282 strcat(name_f_fsc, EMUFS_FSC_EXT);
284 if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return EMUFS_NOT_FOUND;
286 /* Inicializamos la estructura para devolver algun valor en concreto */
287 /* en caso de que no se halle un espacio libre apropiado */
289 if (fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
290 if (reg.n_freespace >= n_regsize) {
296 /* Si salio por error o por fin de archivo y no encontro space... */
298 reg.n_marker = EMUFS_NOT_FOUND;
299 *n_freespace = emu->tam_bloque;
301 else *n_freespace = reg.n_freespace;
307 /* Devuelve el espacio libre de un Bloque o Gap dado */
308 EMUFS_FREE emufs_fsc_get_fs(EMUFS *emu, EMUFS_BLOCK_ID n_marker)
312 char name_f_fsc[255];
314 strcpy(name_f_fsc,emu->nombre);
315 strcat(name_f_fsc, EMUFS_FSC_EXT);
317 /* Busco el Bloque o Gap pedido y obtengo su espacio libre */
318 if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
319 while ( !feof(f_fsc) ){
320 if ( fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1 ) continue;
321 if ( reg.n_marker == n_marker )
326 return reg.n_freespace;