]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/fsc.c
dos funciones estadisticas
[z.facultad/75.06/emufs.git] / emufs / fsc.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2  *----------------------------------------------------------------------------
3  *                                  emufs
4  *----------------------------------------------------------------------------
5  * This file is part of emufs.
6  *
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
10  * version.
11  *
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
15  * details.
16  *
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  *----------------------------------------------------------------------------
25  *
26  * $Id$
27  *
28  */
29
30 /** \file
31  *
32  * Archivo para administrar el espacio libre disponible.
33  * 
34  * Implementación del archivo para administrar el espacio libre disponible.
35  *
36  */
37
38 #include "fsc.h"
39 #include <string.h>
40 #include <unistd.h>
41
42 /* Crea un archivo de Gaps o Espacio Libre en Bloque */
43 int emufs_fsc_crear(EMUFS* efs)
44 {
45         return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_FSC_EXT);
46 }
47
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)
50 {
51         FILE *f_fsc;
52         EMUFS_FSC reg;
53         char name_f_fsc[255];
54         
55         strcpy(name_f_fsc,emu->nombre);
56         strcat(name_f_fsc, EMUFS_FSC_EXT);
57         
58         /* Cargo el registro */
59         reg.n_marker = n_marker;
60         reg.n_freespace = n_freespace;
61
62         /* Lo guardo en el archivo al final "a+"*/
63         if ( (f_fsc = fopen(name_f_fsc,"a+"))==NULL ) return -1;
64         fwrite(&reg,sizeof(EMUFS_FSC),1,f_fsc);
65         fclose(f_fsc);
66         return 0;
67 }
68
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)
71 {
72         FILE *f_fsc;
73         EMUFS_FSC gap_aux,gap_before,gap_after,gap_new;
74         char name_f_fsc[255];
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;
77                 
78         strcpy(name_f_fsc,emu->nombre);
79         strcat(name_f_fsc, EMUFS_FSC_EXT);
80         
81         gap_before.n_marker = -1;
82         gap_after.n_marker = -1;
83         
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;
89                 
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;
95                 }
96                 
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;
102                 }               
103                 n_reg_count += 1;
104         }
105         
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);
113                 fclose(f_fsc);          
114         }
115         
116         /* Si encuentro un GAP Justo por delante pero no por detras */
117         if ((gap_before.n_marker != -1) && (gap_after.n_marker == -1))
118         {
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);
127           fclose(f_fsc);
128         }
129         
130         /* Si encuentro un GAP Justo por detras pero no por delante */
131         if ((gap_before.n_marker == -1) && (gap_after.n_marker != -1))
132         {
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);
141           fclose(f_fsc);
142         }
143         
144         /* Finalmente, si encuentro Justo por delante y por detras..*/
145         if ((gap_before.n_marker != -1) && (gap_after.n_marker != -1))
146         {
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);
155                 
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);
163                 
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);          
171                 ++n_moved;
172           }
173           fclose(f_fsc);
174           truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC)); 
175         }       
176         
177     return 0;
178 }
179
180 /* Elimina un registro GAP del archivo de espacios libres (gaps) */
181 int emufs_fsc_remove_gap(EMUFS *emu, EMUFS_OFFSET n_marker)
182 {
183         FILE *f_fsc;
184         EMUFS_FSC gap_aux;
185         char name_f_fsc[255];
186     unsigned long n_source,n_destination,n_filesize,n_reg_count = 0,n_moved = 0;        
187                 
188         strcpy(name_f_fsc,emu->nombre);
189         strcat(name_f_fsc, EMUFS_FSC_EXT);
190         
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;
196         }
197         
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);
206                 
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);                
214           ++n_moved;
215         }
216         fclose(f_fsc);
217         truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC));
218         
219         return 0;
220 }
221
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)
224 {
225         FILE *f_fsc;
226         EMUFS_FSC reg;
227         char name_f_fsc[255];
228         
229         strcpy(name_f_fsc,emu->nombre);
230         strcat(name_f_fsc, EMUFS_FSC_EXT);
231
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(&reg,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(&reg,sizeof(EMUFS_FSC),1,f_fsc);
240                         break;
241                 }
242         }
243         fclose(f_fsc);
244         return 0;
245 }
246
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)
249 {
250         FILE *f_fsc;
251         EMUFS_FSC gap_aux;
252         char name_f_fsc[255];
253         
254         strcpy(name_f_fsc,emu->nombre);
255         strcat(name_f_fsc, EMUFS_FSC_EXT);
256
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);
266                         break;
267                 }
268         }
269         fclose(f_fsc);
270         return 0;
271 }
272
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)
275 {
276         FILE *f_fsc;
277         EMUFS_FSC reg;
278         char name_f_fsc[255];
279         char found = 0;
280         
281         strcpy(name_f_fsc,emu->nombre);
282         strcat(name_f_fsc, EMUFS_FSC_EXT);
283
284         if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return EMUFS_NOT_FOUND;
285
286         /* Inicializamos la estructura para devolver algun valor en concreto */
287         /* en caso de que no se halle un espacio libre apropiado */
288         while(!feof(f_fsc)){
289                 if (fread(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
290                 if (reg.n_freespace >= n_regsize) {
291                         found = 1;
292                         break;
293                 }
294         }
295         
296         /* Si salio por error o por fin de archivo y no encontro space... */
297         if (!found) {
298           reg.n_marker = EMUFS_NOT_FOUND;
299           *n_freespace = emu->tam_bloque; 
300         }
301         else *n_freespace = reg.n_freespace;
302         
303         fclose(f_fsc);
304         return reg.n_marker;
305 }
306
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)
309 {
310         FILE *f_fsc;
311         EMUFS_FSC reg;
312         char name_f_fsc[255];
313         
314         strcpy(name_f_fsc,emu->nombre);
315         strcat(name_f_fsc, EMUFS_FSC_EXT);
316
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(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1 ) continue;
321                 if ( reg.n_marker == n_marker )
322                         break;
323         }
324                 
325         fclose(f_fsc);
326         return reg.n_freespace;
327 }
328
329 EMUFS_FREE emufs_fsc_get_total_fs(EMUFS *emu)
330 {
331         FILE *f_fsc;
332         EMUFS_FSC reg;
333         char name_f_fsc[255];
334         EMUFS_FREE total;
335         
336         strcpy(name_f_fsc,emu->nombre);
337         strcat(name_f_fsc, EMUFS_FSC_EXT);
338
339         if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
340         total = 0;
341         while ( !feof(f_fsc) ){
342                 if ( fread(&reg, sizeof(EMUFS_FSC), 1, f_fsc) != 1) continue;
343                 total += reg.n_freespace;
344         }
345         fclose(f_fsc);
346         return total;
347 }