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: vie abr 9 16:47:32 ART 2004
22 * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 *----------------------------------------------------------------------------
31 * Archivo con bloque de longitud parametrizada, registro de longitud variable.
33 * Implementación del archivo con bloques de longitud parametrizada y registros
34 * de longitud variable.
47 /*------------------ Funciones privadas ----------------------*/
49 int emufs_tipo1_header_jump(FILE*);
51 size_t emufs_tipo1_header_size(void);
53 int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
55 void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id,
56 EMUFS_REG_SIZE reg_size, char* reg);
58 /*------------------ Funciones públicas ----------------------*/
60 int emufs_tipo1_inicializar(EMUFS* efs)
62 /* Asigna punteros a funciones. */
63 efs->leer_bloque = emufs_tipo1_leer_bloque;
64 efs->leer_registro = emufs_tipo1_leer_registro;
65 efs->grabar_registro = emufs_tipo1_grabar_registro;
66 efs->borrar_registro = emufs_tipo1_borrar_registro;
67 efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
71 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
72 EMUFS_REG_SIZE* reg_size, int *err)
74 char* block; /* bloque leido (en donde está el registro a leer) */
75 char* registro; /* registro a leer */
76 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
77 EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
78 EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
79 EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
80 EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
82 block_id = emufs_idx_buscar_registro(efs, reg_id);
83 if (block_id == EMUFS_NOT_FOUND) {
84 /* TODO Manejo de errores */
85 PERR("Registro no encontrado");
86 *err = EMUFS_NOT_FOUND;
89 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
90 /* TODO Manejo de errores */
91 PERR("no se pudo leer el bloque");
95 /* Busco secuencialmente en el bloque el registro a leer */
98 /* Copio el id del registro de la cabecera. */
99 memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
100 offset += sizeof(EMUFS_REG_ID);
101 /* Copio el tamaño del registro de la cabecera. */
102 memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
103 offset += sizeof(EMUFS_REG_SIZE);
104 if (curr_reg_id == reg_id) {
105 registro = (char*) malloc(curr_reg_size);
106 if (registro == NULL) {
107 /* TODO Manejo de errores */
109 PERR("No hay memoria");
110 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
113 memcpy(registro, block + offset, curr_reg_size);
114 *reg_size = curr_reg_size;
117 /* Desplazo el offset */
118 offset += curr_reg_size;
119 } while (offset < block_size);
125 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
128 char* block; /* bloque leido (en donde está el registro a leer) */
131 strcpy(name_f,efs->nombre);
132 strcat(name_f,".dat");
134 if ((file = fopen(name_f, "r")) == NULL) {
135 PERR("No se puede abrir archivo");
136 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
137 return NULL; /* FIXME ERROR */
139 emufs_tipo1_header_jump(file); /* salta cabeceras */
140 emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
141 /* FIXME: verificar que no se pase de fin de archivo*/
142 block = (char*) malloc(efs->tam_bloque);
144 /* TODO Manejo de errores */
145 PERR("No hay memoria");
146 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
149 if (fread(block, efs->tam_bloque, 1, file) != 1) {
150 /* TODO Manejo de errores */
152 PERR("Error al leer bloque");
153 *err = 3; /* EMUFS_ERROR_FILE_READ */
160 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
161 EMUFS_REG_SIZE reg_size, int* err)
165 EMUFS_BLOCK_ID block_id;
169 strcpy(name_f, efs->nombre);
170 strcat(name_f, ".dat");
172 /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
173 block_id = emufs_fsc_buscar_lugar(efs, reg_size + sizeof(EMUFS_REG_ID)
174 + sizeof(EMUFS_REG_SIZE), &fs);
175 /* si no hay bloques con suficiente espacio creo un bloque nuevo */
176 if (block_id == EMUFS_NOT_FOUND) {
177 /* crear un nuevo bloque en memoria */
178 block = (char*) malloc(efs->tam_bloque);
179 memset(block, 0, efs->tam_bloque);
181 /* TODO Manejo de errores */
182 PERR("No hay memoria");
183 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
184 return EMUFS_NOT_FOUND;
186 /* graba el registro al principio del bloque */
187 reg_id = emufs_idx_get_new_id(efs, err);
188 /* graba registro en bloque */
189 emufs_tipo1_escribir_reg_en_memoria(block, reg_id, reg_size, reg);
190 /* graba el bloque en el archivo */
191 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
193 PERR("error al grabar bloque");
195 return EMUFS_NOT_FOUND;
198 /* grabo el nuevo registro en el archivo de espacios libres */
199 *err = emufs_fsc_agregar(efs, block_id, efs->tam_bloque - reg_size
200 - sizeof(EMUFS_REG_ID) - sizeof(EMUFS_REG_SIZE));
202 PERR("No se pudo agregar fsc");
203 return EMUFS_NOT_FOUND;
206 /* Encontró espacio en un bloque existente, graba registro ahí */
208 /* cargo el bloque en block_id */
209 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
210 /* TODO Manejo de errores */
211 PERR("no se pudo leer el bloque");
212 return EMUFS_NOT_FOUND;
214 /* inserta el registro en el bloque */
215 /* tengo que buscar un ID válido para el nuevo registro */
216 reg_id = emufs_idx_get_new_id(efs, err);
217 /* graba registro en bloque */
218 emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
219 reg_id, reg_size, reg);
220 /* graba el bloque en el archivo */
221 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
223 PERR("error al grabar bloque");
225 return EMUFS_NOT_FOUND;
228 /* actualizo el archivo de espacios libres */
229 *err = emufs_fsc_actualizar(efs, block_id, fs - reg_size
230 - sizeof(EMUFS_REG_ID) - sizeof(EMUFS_REG_SIZE));
232 PERR("No se pudo actualizar fsc");
233 return EMUFS_NOT_FOUND;
237 /* actualizo el indice de bloques y registros */
238 *err = emufs_idx_agregar(efs, reg_id, block_id);
240 PERR("No se pudo agregar idx");
241 return EMUFS_NOT_FOUND;
247 /*Graba un bloque en el archivo*/
248 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
249 EMUFS_BLOCK_ID block_id, int* err)
254 strcpy(name_f,efs->nombre);
255 strcat(name_f,".dat");
257 if ((file = fopen(name_f, "r+b")) == NULL) {
258 /* TODO Manejo de errores */
259 PERR("Error al abrir archivo");
260 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
261 return EMUFS_NOT_FOUND;
263 /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */
264 if (block_id == EMUFS_NOT_FOUND) {
265 /* me paro al final del archivo */
266 if (fseek(file, 0l, SEEK_END)) {
267 /* TODO Manejo de errores */
268 PERR("No se pudo hacer fseek()");
270 *err = 8; /* EMUFS_ERROR_SEEK_FILE */
271 return EMUFS_NOT_FOUND;
273 /* Obtengo ID del bloque nuevo */
274 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
275 /* Si es un ID válido, salto hasta ese bloque. */
277 /* Salta el header del archivo */
278 if ((*err = emufs_tipo1_header_jump(file))) {
279 PERR("no se pudo saltar la cabecera del archivo");
281 return EMUFS_NOT_FOUND;
284 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
285 PERR("no se pudo saltar la cabecera del bloque");
287 return EMUFS_NOT_FOUND;
290 /* Grabo el bloque */
291 if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
292 PERR("No se pudo escribir el archivo");
294 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
295 return EMUFS_NOT_FOUND;
302 /*borra un registro de un bloque y acomoda los registros que quedan*/
303 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
305 return -1; /* FIXME Error */
308 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
310 return -1; /* FIXME Error */
313 int emufs_tipo1_header_jump(FILE* fp)
315 if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
316 PERR("No se pudo hacer fseek()");
317 return 8; /* EMUFS_ERROR_SEEK_FILE */
319 return 0; /* EMUFS_OK */
322 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
324 if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
325 PERR("No se pudo hacer fseek()");
326 return 8; /* EMUFS_ERROR_SEEK_FILE */
328 return 0; /* EMUFS_OK */
331 size_t emufs_tipo1_header_size(void)
333 return sizeof(EMUFS_Tipo) + /* Cabecera de tipo de archivo */
334 sizeof(EMUFS_BLOCK_SIZE); /* Cabecera de tamaño del bloque */
337 void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id,
338 EMUFS_REG_SIZE reg_size, char* reg) {
339 /* grabo el id en el bloque */
340 memcpy(dst, ®_id, sizeof(EMUFS_REG_ID));
341 /* incremento puntero de escritura */
342 dst += sizeof(EMUFS_REG_ID);
343 /* grabo el tamaño del registro en el bloque */
344 memcpy(dst, ®_size, sizeof(EMUFS_REG_SIZE));
345 /* incremento puntero de escritura */
346 dst += sizeof(EMUFS_REG_SIZE);
347 /* grabo el registro en el bloque */
348 memcpy(dst, reg, reg_size);
351 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
353 emufs_tipo1_borrar_registro(emu, id);
354 return emufs_tipo1_grabar_registro(emu, data, size, error);
357 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
359 char* block; /* bloque leido (en donde está el registro a leer) */
360 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
361 EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
362 EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
363 EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
364 EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
367 block_id = emufs_idx_buscar_registro(efs, id);
368 if (block_id == EMUFS_NOT_FOUND) {
371 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
375 /* Busco secuencialmente en el bloque el registro a leer */
378 /* Copio el id del registro de la cabecera. */
379 memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
380 offset += sizeof(EMUFS_REG_ID);
381 /* Copio el tamaño del registro de la cabecera. */
382 memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
383 offset += sizeof(EMUFS_REG_SIZE);
384 if (curr_reg_id == id) {
385 *pos = offset-sizeof(EMUFS_REG_ID)-sizeof(EMUFS_REG_SIZE);
388 /* Desplazo el offset */
389 offset += curr_reg_size;
390 } while (offset < block_size);
392 (*size) = efs->tam_bloque;