]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
Hay algo en leer que falla y ademas hay un if ( cant_bloques == 0 ) que no me gusta...
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
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:47:32 ART 2004
22  * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id$
26  *
27  */
28
29 /** \file
30  *
31  * Archivo con bloque de longitud parametrizada, registro de longitud variable.
32  * 
33  * Implementación del archivo con bloques de longitud parametrizada y registros
34  * de longitud variable.
35  *
36  */
37
38 #include "tipo1.h"
39 #include "idx.h"
40 #include "fsc.h"
41 #include "did.h"
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46
47 #ifndef MIN
48 #       define MIN(x, y) (((x) > (y)) ? (y) : (x))
49 #endif
50
51 /*------------------ Declaraciones privadas ----------------------*/
52
53 /** Cabecera de un registro de un archivo tipo1. */
54 typedef struct {
55         EMUFS_REG_ID   id;   /**< Identificador del registro. */
56         EMUFS_REG_SIZE size; /**< Tamaño del registro. */
57 } EMUFS_TIPO1_REG_HEADER;
58
59 static size_t emufs_tipo1_header_size(void);
60
61 static int emufs_tipo1_header_jump(FILE*);
62
63 static int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
64
65 static void emufs_tipo1_escribir_reg_en_memoria(char*, EMUFS_TIPO1_REG_HEADER,
66                 char*);
67
68 static void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
69                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size);
70
71 /*------------------ Funciones públicas ----------------------*/
72
73 int emufs_tipo1_inicializar(EMUFS* efs)
74 {
75         /* Asigna punteros a funciones. */
76         efs->leer_bloque       = emufs_tipo1_leer_bloque;
77         efs->grabar_registro   = emufs_tipo1_grabar_registro;
78         efs->borrar_registro   = emufs_tipo1_borrar_registro;
79         efs->leer_registro     = emufs_tipo1_leer_registro;
80         efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
81         return 0;
82 }
83
84 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
85                 EMUFS_REG_SIZE* reg_size, int *err)
86 {
87         char* block; /* bloque leido (en donde está el registro a leer) */
88         char* registro; /* registro a leer */
89         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
90         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
91         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
92
93         block_id = emufs_idx_buscar_registro(efs, reg_id);
94         if (block_id == EMUFS_NOT_FOUND) {
95                 /* TODO Manejo de errores */
96                 PERR("Registro no encontrado");
97                 *err = EMUFS_NOT_FOUND;
98                 return NULL;
99         }
100         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
101                 /* TODO Manejo de errores */
102                 PERR("no se pudo reservar memoria");
103                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
104                 return NULL;
105         }
106
107         /* Busco secuencialmente en el bloque el registro a leer */
108         offset = 0;
109         do {
110                 /* Copio la cabecera del registro actual. */
111                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
112                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
113                 if (curr_reg_header.id == reg_id) {
114                         /* tamaño máximo ultilizable para datos en un bloque */
115                         EMUFS_BLOCK_SIZE block_space
116                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
117                         /* tamaño de la porción de registro que se guarda */
118                         EMUFS_REG_SIZE chunk_size = 0; 
119                         /* puntero a la porción actual del registro */
120                         char* chunk_ptr;
121
122                         *reg_size = curr_reg_header.size;
123                         registro = chunk_ptr = (char*) malloc(*reg_size);
124                         if (registro == NULL) {
125                                 /* TODO Manejo de errores */
126                                 free(block);
127                                 PERR("No hay memoria");
128                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
129                                 return NULL;
130                         }
131                         while (1) {
132                                 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
133                                 curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
134                                 chunk_size = MIN(curr_reg_header.size, block_space);
135                                 /* copio porción de registro en el buffer */
136                                 memcpy(chunk_ptr, block + offset, chunk_size);
137                                  /* falta leer un bloque */
138                                 if (curr_reg_header.size > block_space) {
139                                         free(block);
140                                         if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
141                                                                         ++block_id, err))) {
142                                                 /* TODO Manejo de errores */
143                                                 free(registro);
144                                                 PERR("no se pudo reservar memoria");
145                                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
146                                                 return NULL;
147                                         }
148                                 } else { /* se terminó de leer */
149                                         break;
150                                 }
151                         }
152                         break;
153                 }
154                 /* Desplazo el offset */
155                 offset += curr_reg_header.size;
156         } while (offset < efs->tam_bloque);
157
158         free(block);
159         return registro;
160 }
161
162 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
163 {
164         char* block; /* bloque leido (en donde está el registro a leer) */
165         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
166         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
167         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
168         int err;
169
170         block_id = emufs_idx_buscar_registro(efs, id);
171         if (block_id == EMUFS_NOT_FOUND) {
172                 return NULL;
173         }
174         err = 0;
175         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
176                 return NULL;
177         }
178
179         /* Busco secuencialmente en el bloque el registro a leer */
180         offset = 0;
181         do {
182                 /* Copio la cabecera del registro. */
183                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
184                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
185                 if (curr_reg_header.id == id) {
186                         *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
187                         break;
188                 }
189                 /* Desplazo el offset */
190                 offset += curr_reg_header.size;
191         } while (offset < efs->tam_bloque);
192
193         (*size) = efs->tam_bloque;
194         return block;
195 }
196
197 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
198 {
199         FILE* file;
200         char* block; /* bloque leido (en donde está el registro a leer) */
201         char  name_f[255];
202
203         strcpy(name_f,efs->nombre);
204         strcat(name_f,".dat");
205
206         if ((file = fopen(name_f, "r")) == NULL) {
207                 PERR("No se puede abrir archivo");
208                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
209                 return NULL; /* FIXME ERROR */
210         }
211         emufs_tipo1_header_jump(file); /* salta cabeceras */
212         emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
213         /* FIXME: verificar que no se pase de fin de archivo*/
214         block = (char*) malloc(efs->tam_bloque);
215         if (block == NULL) {
216                 /* TODO Manejo de errores */
217                 PERR("No hay memoria");
218                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
219                 return NULL;
220         }
221         if (fread(block, efs->tam_bloque, 1, file) != 1) {
222                 /* TODO Manejo de errores */
223                 free(block);
224                 PERR("Error al leer bloque");
225                 *err = 3; /* EMUFS_ERROR_FILE_READ */
226                 return NULL;
227         }
228         fclose(file);
229         return block;
230 }
231
232 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, EMUFS_REG_SIZE reg_size, int* err)
233 {
234         EMUFS_TIPO1_REG_HEADER reg_header; /* cabecera del registro a guardar */
235         EMUFS_FREE             fs; /* espacio libre en el bloque */
236         EMUFS_BLOCK_ID         block_id; /* identificador del 1er bloque */
237         char*                  block; /* buffer del bloque a guardar en disco */
238         char                   name_f[255];
239
240         strcpy(name_f, efs->nombre);
241         strcat(name_f, ".dat");
242
243         /* pongo tamaño del registro en la cabecera. */
244         reg_header.size = reg_size;
245         /* busco lugar para el registro en un bloque existente */
246         block_id = emufs_fsc_buscar_lugar(efs, sizeof(EMUFS_TIPO1_REG_HEADER)
247                         + reg_size, &fs);
248         /* si no hay bloques con suficiente espacio creo un bloque nuevo */
249         if (block_id == EMUFS_NOT_FOUND) {
250                 /* tamaño máximo ultilizable para datos en un bloque */
251                 EMUFS_BLOCK_SIZE block_space = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
252                 /* identificador del bloque que se guarda */
253                 EMUFS_BLOCK_ID curr_block_id = EMUFS_NOT_FOUND;
254                 /* tamaño de la porción de registro que se guarda */
255                 EMUFS_REG_SIZE chunk_size = 0; 
256                 /* puntero a la poción del registro */
257                 char* chunk_ptr = reg; 
258
259                 /* crear un nuevo bloque en memoria */
260                 block = (char*) malloc(efs->tam_bloque);
261                 if (block == NULL) {
262                         /* TODO Manejo de errores */
263                         PERR("No hay memoria");
264                         *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
265                         return EMUFS_NOT_FOUND;
266                 }
267                 reg_header.id = emufs_idx_get_new_id(efs, err);
268                 do {
269                         memset(block, 0, efs->tam_bloque); /* inicializa bloque */
270                         chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
271                         reg_header.size -= chunk_size; /* Resto lo que ya guardé */
272                         chunk_size = MIN(reg_header.size, block_space);
273                         /* graba porción del registro en bloque */
274                         emufs_tipo1_escribir_reg_chunk_en_memoria(block, reg_header, chunk_ptr, chunk_size);
275                         /* graba el bloque en el archivo */
276                         curr_block_id = emufs_tipo1_grabar_bloque(efs, block, EMUFS_NOT_FOUND, err);
277                         if (*err) {
278                                 PERR("error al grabar bloque");
279                                 free(block);
280                                 return EMUFS_NOT_FOUND;
281                         }
282                         /* grabo el nuevo registro en el archivo de espacios libres */
283                         *err = emufs_fsc_agregar(efs, curr_block_id, block_space - chunk_size);
284                         if (*err) {
285                                 PERR("No se pudo agregar fsc");
286                                 free(block);
287                                 return EMUFS_NOT_FOUND;
288                         }
289                         /* si es el primer id de bloque obtenido, lo guardo para
290                          * agregarlo después al archivo de índices. */
291                         if (block_id == EMUFS_NOT_FOUND) {
292                                 block_id = curr_block_id;
293                         }
294                 } while (reg_header.size > block_space);
295                 free(block);
296
297         /* Encontró espacio en un bloque existente, graba registro ahí */
298         } else {
299                 /* cargo el bloque en block_id */
300                 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
301                         /* TODO Manejo de errores */
302                         PERR("no se pudo leer el bloque");
303                         return EMUFS_NOT_FOUND;
304                 }
305                 /* inserta el registro en el bloque */
306                 /* tengo que buscar un ID válido para el nuevo registro */
307                 reg_header.id = emufs_idx_get_new_id(efs, err);
308                 /* graba registro en bloque */
309                 emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
310                                 reg_header, reg);
311                 /* graba el bloque en el archivo */
312                 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
313                 if (*err) {
314                         PERR("error al grabar bloque");
315                         free(block);
316                         return EMUFS_NOT_FOUND;
317                 }
318                 free(block);
319                 /* actualizo el archivo de espacios libres */
320                 *err = emufs_fsc_actualizar(efs, block_id, fs - reg_size
321                                 - sizeof(EMUFS_TIPO1_REG_HEADER));
322                 if (*err) {
323                         PERR("No se pudo actualizar fsc");
324                         return EMUFS_NOT_FOUND;
325                 }
326         }
327                 
328         /* actualizo el indice de bloques y registros */
329         *err = emufs_idx_agregar(efs, reg_header.id, block_id);
330         if (*err){
331                 PERR("No se pudo agregar idx");
332                 return EMUFS_NOT_FOUND;
333         }
334         
335         return reg_header.id;
336 }
337
338 /*Graba un bloque en el archivo*/
339 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
340                 EMUFS_BLOCK_ID block_id, int* err)
341 {
342         FILE* file;
343         char name_f[255];
344
345         strcpy(name_f,efs->nombre);
346         strcat(name_f,".dat");
347
348         if ((file = fopen(name_f, "r+b")) == NULL) {
349                 /* TODO Manejo de errores */
350                 PERR("Error al abrir archivo");
351                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
352                 return EMUFS_NOT_FOUND;
353         }
354         /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */
355         if (block_id == EMUFS_NOT_FOUND) {
356                 /* me paro al final del archivo */
357                 if (fseek(file, 0l, SEEK_END)) {
358                         /* TODO Manejo de errores */
359                         PERR("No se pudo hacer fseek()");
360                         fclose(file);
361                         *err = 8; /* EMUFS_ERROR_SEEK_FILE */
362                         return EMUFS_NOT_FOUND;
363                 }
364                 /* Obtengo ID del bloque nuevo */
365                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
366         /* Si es un ID válido, salto hasta ese bloque. */
367         } else {
368                 /* Salta el header del archivo */
369                 if ((*err = emufs_tipo1_header_jump(file))) {
370                         PERR("no se pudo saltar la cabecera del archivo");
371                         fclose(file);
372                         return EMUFS_NOT_FOUND;
373                 }
374                 /* Salta bloques */
375                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
376                         PERR("no se pudo saltar la cabecera del bloque");
377                         fclose(file);
378                         return EMUFS_NOT_FOUND;
379                 }
380         }
381         /* Grabo el bloque */
382         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
383                 PERR("No se pudo escribir el archivo");
384                 fclose(file);
385                 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
386                 return EMUFS_NOT_FOUND;
387         }
388
389         fclose(file);
390         return block_id;
391 }
392
393 /*borra un registro de un bloque y acomoda los registros que quedan*/
394 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
395 {
396         return -1; /* FIXME Error */
397 }
398
399 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
400 {
401         return -1; /* FIXME Error */
402 }
403
404 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
405                 void *data, EMUFS_REG_SIZE size, int *error)
406 {
407         emufs_tipo1_borrar_registro(emu, id);
408         return emufs_tipo1_grabar_registro(emu, data, size, error);
409 }
410
411 size_t emufs_tipo1_header_size(void)
412 {
413         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
414 }
415
416 int emufs_tipo1_header_jump(FILE* fp)
417 {
418         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
419                 PERR("No se pudo hacer fseek()");
420                 return 8; /* EMUFS_ERROR_SEEK_FILE */
421         }
422         return 0; /* EMUFS_OK */
423 }
424
425 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
426 {
427         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
428                 PERR("No se pudo hacer fseek()");
429                 return 8; /* EMUFS_ERROR_SEEK_FILE */
430         }
431         return 0; /* EMUFS_OK */
432 }
433
434 void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header,
435                 char* reg)
436 {
437         emufs_tipo1_escribir_reg_chunk_en_memoria(dst, header, reg, header.size);
438 }
439
440 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
441                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
442 {
443         /* grabo cabecera del registro en el bloque */
444         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
445         /* incremento puntero de escritura */
446         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
447         /* grabo el registro en el bloque */
448         memcpy(dst, reg, reg_size);
449 }
450