]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo2.c
Archivo Tipo 2 Documentado para Doxygen.
[z.facultad/75.06/emufs.git] / emufs / tipo2.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:  Fri Apr 10 17:10:00 ART 2004
22  * Autores: Alan Kennedy <kennedya@3dgames.com.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id: tipo3.c 85 2004-04-08 23:39:28Z sagar $
26  *
27  */
28
29 /** \file
30  * Archivo con registros de longitud variable, sin bloques.
31  *
32  * <b>Implementacion del Archivo Tipo 2</b>
33  *
34  * La organizacion interna de un archivo de tipo 2, presenta registros de longitud variable,
35  * los cuales son grabados secuencialmente, o bien en gaps (espacios libres) que se presenten en
36  * el archivo de datos, pero no se encuentran contenidos por bloques.
37  *
38  */
39
40 #include "tipo2.h"
41 #include "idx.h"
42 #include "fsc.h"
43 #include "did.h"
44
45 /* Asigna los punteros a las funciones apropiadas para el Tipo2 */
46 int emufs_tipo2_inicializar(EMUFS* efs)
47 {
48         efs->grabar_registro = emufs_tipo2_grabar_registro;           
49     efs->borrar_registro = emufs_tipo2_borrar_registro;
50         efs->leer_registro = emufs_tipo2_leer_registro;
51         
52         return 0;
53 }
54
55 /* Lee y devuelve un registro de un archivo del Tipo 2. */
56 void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE* reg_size, int *err)
57 {
58         FILE* f_data;
59         char *registro; /* registro a leer */
60         char  name_f[255];      
61         EMUFS_OFFSET reg_offset; /* offset donde se encuentra el registro */
62         
63         strcpy(name_f,efs->nombre);
64         strcat(name_f,".dat");
65
66         /* Obtenemos la posicion del registro en el .dat */
67         reg_offset = emufs_idx_buscar_registro(efs, id_reg);
68         if (reg_offset == EMUFS_NOT_FOUND) {
69                 /* TODO Manejo de errores */
70                 PERR("Registro no encontrado");
71                 *err = EMUFS_NOT_FOUND;
72                 return NULL;
73         }
74         
75         /* Levantamos el registro */
76         if ((f_data = fopen(name_f, "rb")) == NULL) {
77                 PERR("No se puede abrir archivo");
78                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
79                 return NULL; /* FIXME ERROR */
80         }
81         fseek(f_data,reg_offset+sizeof(EMUFS_REG_ID),0);
82         fread(reg_size,sizeof(EMUFS_REG_SIZE),1,f_data);
83         registro = (char*)malloc(*reg_size);
84         fread(registro,*reg_size,1,f_data);
85         fclose(f_data);
86         
87         return registro;
88 }
89
90 /* Grabar un registro en un archivo del Tipo 2. */
91 EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, EMUFS_REG_SIZE reg_size, int* err)
92 {
93         EMUFS_REG_ID id_reg;
94         EMUFS_FREE freespace;
95         EMUFS_OFFSET wrt_offset,reg_offset;
96         unsigned long int fisic_size;
97         FILE *f_data;
98         char name_f[255];
99         
100         /* Armamos el filename del archivo de datos */
101         strcpy(name_f,efs->nombre);
102         strcat(name_f,".dat");
103         
104         if ( (f_data = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
105         
106         /* Obtengo un offset en donde iniciar la escritura de mi registro */
107         /* de manera segura (habra espacio suficiente) */
108         fisic_size = sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE)+reg_size;
109         wrt_offset = emufs_fsc_buscar_lugar(efs,fisic_size,&freespace);
110         /*printf("tipo2.c >> Recording Reg > Searching FSC: Offset = %lu FSpace: %lu\n", n_WrtOffset, n_FreeSpace);*/
111         
112         /* Si no encontre un gap, entonces escribo el registro al final */
113         if (wrt_offset == -1) {                
114                 
115                 /* Obtengo un ID libre para el registro y luego grabo a disco */
116         id_reg = emufs_idx_get_new_id(efs, err);
117                 fseek(f_data, 0, SEEK_END);
118                 reg_offset = ftell(f_data);
119
120                 /* Escribo [RegId]|[RegSize]|[RegData] */
121                 fwrite(&id_reg,sizeof(EMUFS_REG_ID),1,f_data);
122                 fwrite(&reg_size,sizeof(EMUFS_REG_SIZE),1,f_data);
123                 fwrite(ptr,reg_size,1,f_data);
124                                 
125                 /* Bye */
126                 /*printf("Tipo2.c >> RegNr: %lu with FisicSize: %lu inserted at Offset: %lu\n",n_IdReg,n_FisicSize,n_RegOffset);*/
127                 fclose(f_data);
128                 
129         } else {
130                 
131                 /* Obtengo un ID libre para el registro y luego grabo en disco */
132         id_reg = emufs_idx_get_new_id(efs, err);
133                 reg_offset = wrt_offset;
134                 fseek(f_data,reg_offset,0);
135                 
136         /* Escribo [RegId]|[RegSize]|[RegData] */
137                 fwrite(&id_reg,sizeof(EMUFS_REG_ID),1,f_data);
138                 fwrite(&reg_size,sizeof(EMUFS_REG_SIZE),1,f_data);
139                 fwrite(ptr,reg_size,1,f_data);
140                                 
141                 /* Bye */
142                 /*printf("Tipo2.c >> RegNr: %lu with FisicSize: %lu inserted at Offset: %lu\n",n_IdReg,n_FisicSize,n_RegOffset);*/
143                 fclose(f_data);
144                 
145                 /* Actualizo el espacio libre en el GAP donde puse el registro */
146                 if ((freespace-fisic_size) == 0) emufs_fsc_remove_gap(efs,reg_offset);
147                 else emufs_fsc_actualizar_gap(efs,reg_offset,freespace-fisic_size);             
148         }
149                 
150         /* Finalmente, actualizamos el indice de registros (offsets) */
151         emufs_idx_agregar(efs,id_reg,reg_offset);
152                 
153         return id_reg;
154 }
155
156 /* Borra un registro determinado y actualiza los archivos de Posicion Relativa (Indice-Offset) y el de Gaps */
157 int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID id_reg)
158 {       
159         EMUFS_OFFSET reg_offset,reg_size;
160          
161         /* Obtenemos el offset donde arranca el registro */
162         if ((reg_offset = emufs_idx_buscar_registro(efs,id_reg)) == EMUFS_NOT_FOUND) {
163                 /* TODO Manejo de errores */
164                 PERR("Registro no encontrado");
165                 return EMUFS_NOT_FOUND;
166         }
167         
168         /* Obtenemos el Size del Registro en cuestion y hacemos un dummyfill*/
169         emufs_tipo2_get_regsize(efs,reg_offset,&reg_size);      
170         emufs_tipo2_dummyfill(efs,reg_offset,reg_size);
171                 
172         /* Agregamos el GAP en el archivo de FSC, el cual hara un merge con */
173         /* otro GAP por delante y/o por detras en caso de hallarlo. */
174         emufs_fsc_agregar_gap(efs,reg_offset,reg_size+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE));
175         
176         /* Agrego el ID que se ha liberado al archivo de ID's Libres */
177         emufs_did_agregar(efs,id_reg);  
178         
179         /* Borramos el registro del indice de posiciones relativas */
180         emufs_idx_borrar(efs,id_reg);
181         
182         return(0);
183 }
184
185 /* Devuelve el tamanio de un registro, dado su init offset */
186 int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE *reg_size)
187 {
188     FILE *f_data;
189         char name_f[255];
190
191     /* Armamos el filename del archivo de datos */
192         strcpy(name_f,efs->nombre);
193         strcat(name_f,".dat");
194
195     if ((f_data = fopen(name_f,"r+")) == NULL) return -1; /* ERROR */
196         fseek(f_data,reg_pos+sizeof(EMUFS_REG_ID),SEEK_SET);
197         fread(reg_size,sizeof(EMUFS_REG_SIZE),1,f_data);                
198         fclose(f_data);
199         
200         return (0);
201 }
202
203
204 /* Pisa con basura lo que es hasta el momento un reg en el disco para indicar su borrado (Debug Purposes Only) */
205 int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amount)
206 {
207     FILE *f_data;
208         char name_f[255];
209     char *dummyfill;
210         char *ptr_cur;
211         unsigned long fill_size,byte_count;
212         
213     /* Armamos el filename del archivo de datos */
214         strcpy(name_f,efs->nombre);
215         strcat(name_f,".dat");
216
217     if ((f_data = fopen(name_f,"r+")) == NULL) return -1; /* ERROR */
218         
219         /* Preparo el garbage y se lo tiro encima */
220         fill_size = amount+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE);
221         dummyfill = (char*)malloc(fill_size);
222         ptr_cur = dummyfill;
223         for (byte_count = 0; byte_count < fill_size; ++byte_count) memcpy(ptr_cur+byte_count,"#",1);
224         fseek(f_data,reg_pos,SEEK_SET);
225         fwrite(dummyfill,fill_size,1,f_data);
226         fclose(f_data);
227         
228         free(dummyfill);
229         return (0);
230 }