]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/fsc.c
a94a2f1ecfde3b1399f3b135e23a427e3213ccb3
[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         
79         strcpy(name_f_fsc,emu->nombre);
80         strcat(name_f_fsc, EMUFS_FSC_EXT);
81         
82         gap_before.n_marker = -1;
83         gap_after.n_marker = -1;
84         
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;
90                 
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;
96                 }
97                 
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;
103                 }               
104                 n_reg_count += 1;
105         }
106         
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);
114                 fclose(f_fsc);          
115         }
116         
117         /* Si encuentro un GAP Justo por delante pero no por detras */
118         if ((gap_before.n_marker != -1) && (gap_after.n_marker == -1))
119         {
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);
128           fclose(f_fsc);
129         }
130         
131         /* Si encuentro un GAP Justo por detras pero no por delante */
132         if ((gap_before.n_marker == -1) && (gap_after.n_marker != -1))
133         {
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);
142           fclose(f_fsc);
143         }
144         
145         /* Finalmente, si encuentro Justo por delante y por detras..*/
146         if ((gap_before.n_marker != -1) && (gap_after.n_marker != -1))
147         {
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);
156                 
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);
165                 
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);          
173                 ++n_moved;
174           }
175           fclose(f_fsc);
176           truncate(name_f_fsc, n_filesize - sizeof(EMUFS_FSC)); 
177         }       
178         
179     return 0;
180 }
181
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)
184 {
185         FILE *f_fsc;
186         EMUFS_FSC reg;
187         char name_f_fsc[255];
188         
189         strcpy(name_f_fsc,emu->nombre);
190         strcat(name_f_fsc, EMUFS_FSC_EXT);
191
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(&reg,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(&reg,sizeof(EMUFS_FSC),1,f_fsc);
200                         break;
201                 }
202         }
203         fclose(f_fsc);
204         return 0;
205 }
206
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)
209 {
210         FILE *f_fsc;
211         EMUFS_FSC reg;
212         char name_f_fsc[255];
213         unsigned short int b_Found = 0;
214         
215         strcpy(name_f_fsc,emu->nombre);
216         strcat(name_f_fsc, EMUFS_FSC_EXT);
217
218         if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
219
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(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
224                 if (reg.n_freespace >= n_RegSize) b_Found = 1;
225         }
226         
227         /* Si salio por error o por fin de archivo y no encontro space... */
228         if (!b_Found) {
229           reg.n_marker = -1;
230           *n_freespace = emu->tam_bloque; 
231         }
232         else *n_freespace = reg.n_freespace;
233         
234         fclose(f_fsc);
235         return reg.n_marker;
236 }
237
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)
240 {
241         FILE *f_fsc;
242         EMUFS_FSC reg;
243         char name_f_fsc[255];
244         
245         strcpy(name_f_fsc,emu->nombre);
246         strcat(name_f_fsc, EMUFS_FSC_EXT);
247
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(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1 ) continue;
252                 if ( reg.n_marker == n_marker )
253                         break;
254         }
255                 
256         fclose(f_fsc);
257         return reg.n_freespace;
258 }