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: mié mar 31 17:26:46 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 *----------------------------------------------------------------------------
31 * Archivo con bloques y registros de longitud parametrizada.
33 * Implementación del archivo con bloques y registros de longitud
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)
44 char* registro; /* registro a leer */
47 EMUFS_BLOCK_SIZE iterador = 0;
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*/
60 while ( iterador < emu->tam_bloque ) {
61 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
62 iterador += sizeof(EMUFS_REG_ID);
64 registro = (char*) malloc(emu->tam_reg);
65 if (registro == NULL) {
66 /* TODO Manejo de errores */
68 printf("No hay memoria.\n");
69 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
72 memcpy(registro,bloque+iterador,emu->tam_reg);
75 iterador += emu->tam_reg;
79 (*err) = emu->tam_reg;
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)
87 char* block; /* bloque leido (en donde está el registro a leer) */
90 strcpy(name_f,emu->nombre);
91 strcat(name_f,".dat");
93 if ((file = fopen(name_f, "r")) == NULL) {
94 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
95 return NULL; /* FIXME ERROR */
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);
102 /* TODO Manejo de errores */
103 printf("No hay memoria.\n");
104 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
107 if (fread(block, emu->tam_bloque, 1, file) != 1) {
108 /* TODO Manejo de errores */
110 printf("Error al leer bloque.\n");
111 *err = 3; /* EMUFS_ERROR_FILE_READ */
119 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
123 EMUFS_BLOCK_ID num_bloque;
124 EMUFS_BLOCK_SIZE cant;
129 strcpy(name_f,emu->nombre);
130 strcat(name_f,".dat");
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 */
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 ) {
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");
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 */
182 /*actualizo el archivo de espacios libres*/
183 if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){
189 /*actualizo el archivo de bloques y registros*/
190 if ( emufs_idx_agregar(emu, num_bloque, ID_aux) != 0 ){
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)
204 if ( (id = emufs_did_get_last(emu)) == -1 )
205 id = emufs_idx_buscar_mayor_id(emu);
209 /*Graba un bloque en el archivo*/
210 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
215 strcpy(name_f,emu->nombre);
216 strcat(name_f,".dat");
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);
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)
231 EMUFS_BLOCK_SIZE num_bloque;
232 EMUFS_BLOCK_SIZE ptr_elim;
233 EMUFS_BLOCK_SIZE ptr_mov;
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");
246 /*apunto al registro que voy a eliminar*/
248 while ( ptr_elim < emu->tam_bloque ){
249 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
252 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
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);
258 while ( ptr_mov < emu->tam_bloque ){
259 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
261 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
263 printf("pase %d\n",__LINE__);
264 /*grabo el bloque en el archivo*/
265 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
267 printf("No se pudo grabar el bloque\n");
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;
275 /*actualizo archivo .did*/
276 if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
278 /*actualizo archivo .idx*/
279 if ( emufs_idx_borrar(emu, ID) != 0 ) return -1;
280 printf("pase %d\n",__LINE__);