]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
- Se cambia el prototipo de la función grabar_registro() para que acepte como
[z.facultad/75.06/emufs.git] / emufs / tipo3.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:  mié mar 31 17:26:46 ART 2004
22  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id$
26  *
27  */
28
29 /** \file
30  *
31  * Archivo con bloques y registros de longitud parametrizada.
32  * 
33  * Implementación del archivo con bloques y registros de longitud
34  * parametrizada.
35  *
36  */
37
38 #include "tipo3.h"
39
40 /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
41 void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID, int* err)
42 {
43         char* bloque;
44         char* registro; /* registro a leer */
45         EMUFS_BLOCK_ID block;
46         EMUFS_REG_ID ID_aux;
47         EMUFS_BLOCK_SIZE iterador = 0;
48         
49         /*si existe, lo busco en el archivo de bloques*/
50         block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
51         if ((bloque = emufs_tipo3_leer_bloque(emu, block, err)) == NULL) {
52                 /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
53                  * emufs_tipo3_leer_bloque() */
54                 printf("no se pudo leer el bloque\n");
55                 return NULL; /*No se pudo leer el bloque*/
56         }
57
58         ID_aux = -1;
59         iterador = 0;
60         while ( iterador < emu->tam_bloque ) {
61                 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
62                 iterador += sizeof(EMUFS_REG_ID);
63                 if ( ID_aux == ID ){
64                         registro = (char*) malloc(emu->tam_reg);
65                         if (registro == NULL) {
66                                 /* TODO Manejo de errores */
67                                 free(bloque);
68                                 printf("No hay memoria.\n");
69                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
70                                 return NULL;
71                         }
72                         memcpy(registro,bloque+iterador,emu->tam_reg);
73                         break;
74                 }
75                 iterador += emu->tam_reg;
76         }
77         
78         free(bloque);
79         (*err) = emu->tam_reg;
80         return registro;
81 }
82
83 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
84 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err)
85 {
86         FILE* file;
87         char* block; /* bloque leido (en donde está el registro a leer) */
88         char name_f[255];
89         
90         strcpy(name_f,emu->nombre);
91         strcat(name_f,".dat");
92         
93         if ((file = fopen(name_f, "r")) == NULL) {
94                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
95                 return NULL; /* FIXME ERROR */
96         }
97         fseek(file,sizeof(EMUFS_TYPE)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
98         /*FIXME: verificar que no se pase de fin de archivo*/
99         fseek(file,ID*emu->tam_bloque,SEEK_CUR);
100         block = (char*) malloc(emu->tam_bloque);
101         if (block == NULL) {
102                 /* TODO Manejo de errores */
103                 printf("No hay memoria.\n");
104                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
105                 return NULL;
106         }
107         if (fread(block, emu->tam_bloque, 1, file) != 1) {
108                 /* TODO Manejo de errores */
109                 free(block);
110                 printf("Error al leer bloque.\n");
111                 *err = 3; /* EMUFS_ERROR_FILE_READ */
112                 return NULL;
113         }
114
115         fclose(file);
116         return block;
117 }
118
119 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
120 {
121         EMUFS_REG_ID ID_aux;
122         EMUFS_FREE fs;
123         EMUFS_BLOCK_ID num_bloque;
124         EMUFS_BLOCK_SIZE cant;
125         FILE *file;
126         char name_f[255];
127         char* bloque;
128         
129         strcpy(name_f,emu->nombre);
130         strcat(name_f,".dat");
131         
132         /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
133         num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg, &fs);
134         /*si no hay bloques con suficiente espacio creo un bloque nuevo */
135         if (num_bloque == -1) {
136                 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
137                 /*crear un nuevo bloque en memoria */
138                 bloque = (char*)malloc(emu->tam_bloque);
139                 /* grabar el registro al principio del bloque */
140                 /*tengo que buscar un ID valido para el nuevo registro*/
141                 ID_aux = emufs_tipo3_get_id(emu);
142                 /*grabo el id en el bloque*/
143                 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
144                 /*grabo el registro en el bloque*/
145                 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
146                 /* me paro al final del archivo */
147                 fseek(file, 0, SEEK_END); 
148                 /* grabo el bloque en el final del archivo */
149                 fwrite(bloque,emu->tam_bloque,1,file);
150                 /*actualizo el archivo de espacios libres*/
151                 /*tengo que buscar la cantidad de bloques que existen*/
152                 /*me paro al principio salteando el encabezado del archivo*/
153                 fseek(file, 0, SEEK_END); /* Me paro al final */
154                 cant = (ftell(file)-(sizeof(EMUFS_TYPE)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
155                 cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
156                 fclose(file);
157                 num_bloque = cant;
158                 /* grabo el nuevo registro en el archivo de espacios libres */
159                 if ( emufs_fsc_agregar(emu, num_bloque, emu->tam_bloque - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ) {
160                         free(bloque);
161                         return -1;
162                 }
163         } else {
164                 /*cargo el bloque en "bloque"*/
165                 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, err))) {
166                         /* TODO Manejo de errores */
167                         printf("no se pudo leer el bloque\n");
168                         return -1;
169                 }
170                 /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
171                 /*insertar el registro en el bloque*/
172                 /*tengo que buscar un ID valido para el nuevo registro*/
173                 ID_aux = emufs_tipo3_get_id(emu);
174                 /*grabo el id en el bloque*/
175                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
176                 /*grabo el registro en el bloque*/
177                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
178                 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) != 0) {
179                         printf("error al grabar bloque\n");
180                         return -1; /* se produjo un error */    
181                 }
182                 /*actualizo el archivo de espacios libres*/
183                 if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){
184                         free(bloque);
185                         return -1;
186                 }
187         }
188                 
189         /*actualizo el archivo de bloques y registros*/
190         if ( emufs_idx_agregar(emu, num_bloque, ID_aux) != 0 ){
191                 free(bloque);
192                 return -1;
193         }
194         
195         free(bloque);
196         return ID_aux;
197 }
198
199 /*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
200 EMUFS_REG_ID emufs_tipo3_get_id(EMUFS *emu)
201 {
202         EMUFS_REG_ID id;
203
204         if ( (id = emufs_did_get_last(emu)) == -1 )
205                 id = emufs_idx_buscar_mayor_id(emu);
206         return id;      
207 }
208
209 /*Graba un bloque en el archivo*/
210 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
211 {
212         FILE* file;
213         char name_f[255];
214         
215         strcpy(name_f,emu->nombre);
216         strcat(name_f,".dat");
217         
218         if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
219         /* Salto el header del archivo */
220         fseek(file, sizeof(EMUFS_TYPE)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
221         fseek(file, num*emu->tam_bloque, SEEK_CUR);     
222         fwrite(ptr, emu->tam_bloque, 1, file);
223         
224         fclose(file);
225         return 0;
226 }
227
228 /*borra un registro de un bloque y acomoda los registros que quedan*/
229 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
230 {
231         EMUFS_BLOCK_SIZE num_bloque;
232         EMUFS_BLOCK_SIZE ptr_elim;
233         EMUFS_BLOCK_SIZE ptr_mov;
234         EMUFS_REG_ID ID_aux;
235         EMUFS_FREE fs;
236         char *bloque;
237         int err = 0;
238 printf("pase %d\n",__LINE__);
239         num_bloque = emufs_idx_buscar_registro(emu, ID);
240         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
241                 /* TODO Manejo de errores */
242                 printf("no se pudo leer el bloque\n");
243                 return -1;
244         }
245
246         /*apunto al registro que voy a eliminar*/
247         ptr_elim = 0;
248         while ( ptr_elim < emu->tam_bloque ){
249                 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
250                 if ( ID_aux == ID )
251                         break;
252                 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
253         }
254 printf("pase %d\n",__LINE__);   
255         /*apunto al registro que voy a mover*/
256         ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
257         
258         while ( ptr_mov < emu->tam_bloque ){
259                 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
260                 ptr_elim = ptr_mov;
261                 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
262         }
263 printf("pase %d\n",__LINE__);   
264         /*grabo el bloque en el archivo*/       
265         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
266                 free(bloque);
267                 printf("No se pudo grabar el bloque\n"); 
268                 return -1;
269         }
270 printf("pase %d\n",__LINE__);   
271         /*actualizo archivo .fsc*/
272         fs = emufs_fsc_get_fs(emu, num_bloque);
273         if ( emufs_fsc_actualizar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
274         
275         /*actualizo archivo .did*/
276         if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
277                 
278         /*actualizo archivo .idx*/
279         if ( emufs_idx_borrar(emu, ID) != 0 ) return -1; 
280 printf("pase %d\n",__LINE__);   
281         free(bloque);
282         return 0;
283 }