]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
bugfix.
[z.facultad/75.06/emufs.git] / emufs / tipo1.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:  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                         *reg_size = curr_reg_header.size;
118                         registro = (char*) malloc(*reg_size);
119                         if (registro == NULL) {
120                                 /* TODO Manejo de errores */
121                                 free(block);
122                                 PERR("No hay memoria");
123                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
124                                 return NULL;
125                         }
126                         /* Si el registro ocupa más de un bloque */
127                         if (*reg_size > block_space) {
128                                 /* TODO */
129                                 /* tamaño de la porción de registro que se guarda */
130                                 EMUFS_REG_SIZE chunk_size = 0; 
131                                 /* puntero a la porción actual del registro */
132                                 char* chunk_ptr = registro;
133
134                                 while (1) {
135                                         chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
136                                         curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
137                                         chunk_size = MIN(curr_reg_header.size, block_space);
138                                         /* copio porción de registro en el buffer */
139                                         memcpy(chunk_ptr, block + offset, chunk_size);
140                                          /* falta leer un bloque */
141                                         if (curr_reg_header.size > block_space) {
142                                                 free(block);
143                                                 if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
144                                                                                 ++block_id, err))) {
145                                                         /* TODO Manejo de errores */
146                                                         free(registro);
147                                                         PERR("no se pudo reservar memoria");
148                                                         *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
149                                                         return NULL;
150                                                 }
151                                         } else { /* se terminó de leer */
152                                                 break;
153                                         }
154                                 }
155                         } else {
156                                 memcpy(registro, block + offset, *reg_size);
157                         }
158                         break;
159                 }
160                 /* Desplazo el offset */
161                 offset += curr_reg_header.size;
162         } while (offset < efs->tam_bloque);
163
164         free(block);
165         return registro;
166 }
167
168 #if 0
169                         /* tamaño máximo ultilizable para datos en un bloque */
170                         EMUFS_BLOCK_SIZE block_space
171                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
172                         /* tamaño de la porción de registro que se guarda */
173                         EMUFS_REG_SIZE chunk_size = 0; 
174                         /* puntero a la porción actual del registro */
175                         char* chunk_ptr;
176                         /* puntero a la posición actual del bloque */
177                         char* block_ptr = block + offset;
178
179                         *reg_size = curr_reg_header.size; /* obtengo tamaño del registro */
180                         registro = chunk_ptr = (char*) malloc(*reg_size);
181                         if (registro == NULL) {
182                                 /* TODO Manejo de errores */
183                                 free(block);
184                                 PERR("No hay memoria");
185                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
186                                 return NULL;
187                         }
188                         do {
189                                 block_ptr += chunk_size; /* Avanzo para guardar prox chunk */
190                                 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
191                                 curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
192                                 chunk_size = MIN(curr_reg_header.size, block_space);
193                                 /* copio porción de registro en el buffer */
194                                 memcpy(chunk_ptr, block_ptr, chunk_size);
195                         } while (curr_reg_header.size > block_space);
196 #endif
197
198 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
199                 EMUFS_REG_SIZE *size, int *pos)
200 {
201         char* block; /* bloque leido (en donde está el registro a leer) */
202         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
203         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
204         EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
205         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
206         int err;
207
208         block_id = emufs_idx_buscar_registro(efs, id);
209         if (block_id == EMUFS_NOT_FOUND) {
210                 return NULL;
211         }
212         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
213                 return NULL;
214         }
215
216         /* Busco secuencialmente en el bloque el registro a leer */
217         offset = 0;
218         do {
219                 /* Copio la cabecera del registro. */
220                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
221                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
222                 if (curr_reg_header.id == id) {
223                         *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
224                         break;
225                 }
226                 /* Desplazo el offset */
227                 offset += curr_reg_header.size;
228         } while (offset < block_size);
229
230         (*size) = block_size;
231         return block;
232 }
233
234 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
235 {
236         FILE* file;
237         char* block; /* bloque leido (en donde está el registro a leer) */
238         char  name_f[255];
239
240         strcpy(name_f,efs->nombre);
241         strcat(name_f,".dat");
242
243         if ((file = fopen(name_f, "r")) == NULL) {
244                 PERR("No se puede abrir archivo");
245                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
246                 return NULL; /* FIXME ERROR */
247         }
248         emufs_tipo1_header_jump(file); /* salta cabeceras */
249         emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
250         /* FIXME: verificar que no se pase de fin de archivo*/
251         block = (char*) malloc(efs->tam_bloque);
252         if (block == NULL) {
253                 /* TODO Manejo de errores */
254                 PERR("No hay memoria");
255                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
256                 return NULL;
257         }
258         if (fread(block, efs->tam_bloque, 1, file) != 1) {
259                 /* TODO Manejo de errores */
260                 free(block);
261                 PERR("Error al leer bloque");
262                 *err = 3; /* EMUFS_ERROR_FILE_READ */
263                 return NULL;
264         }
265         fclose(file);
266         return block;
267 }
268
269 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
270                 EMUFS_REG_SIZE reg_size, int* err)
271 {
272         EMUFS_TIPO1_REG_HEADER reg_header; /* cabecera del registro a guardar */
273         EMUFS_FREE             fs; /* espacio libre en el bloque */
274         EMUFS_BLOCK_ID         block_id; /* identificador del 1er bloque */
275         char*                  block; /* buffer del bloque a guardar en disco */
276         char                   name_f[255];
277
278         strcpy(name_f, efs->nombre);
279         strcat(name_f, ".dat");
280
281         /* pongo tamaño del registro en la cabecera. */
282         reg_header.size = reg_size;
283         /* busco lugar para el registro en un bloque existente */
284         block_id = emufs_fsc_buscar_lugar(efs, sizeof(EMUFS_TIPO1_REG_HEADER)
285                         + reg_size, &fs);
286         /* si no hay bloques con suficiente espacio creo un bloque nuevo */
287         if (block_id == EMUFS_NOT_FOUND) {
288                 /* tamaño máximo ultilizable para datos en un bloque */
289                 EMUFS_BLOCK_SIZE block_space
290                                 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
291                 /* identificador del bloque que se guarda */
292                 EMUFS_BLOCK_ID curr_block_id = EMUFS_NOT_FOUND;
293                 /* tamaño de la porción de registro que se guarda */
294                 EMUFS_REG_SIZE chunk_size = 0; 
295                 /* puntero a la poción del registro */
296                 char* chunk_ptr = reg; 
297
298                 /* crear un nuevo bloque en memoria */
299                 block = (char*) malloc(efs->tam_bloque);
300                 if (block == NULL) {
301                         /* TODO Manejo de errores */
302                         PERR("No hay memoria");
303                         *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
304                         return EMUFS_NOT_FOUND;
305                 }
306                 reg_header.id = emufs_idx_get_new_id(efs, err);
307                 do {
308                         memset(block, 0, efs->tam_bloque); /* inicializa bloque */
309                         chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
310                         reg_header.size -= chunk_size; /* Resto lo que ya guardé */
311                         chunk_size = MIN(reg_header.size, block_space);
312                         /* graba porción del registro en bloque */
313                         emufs_tipo1_escribir_reg_chunk_en_memoria(block, reg_header,
314                                         chunk_ptr, chunk_size);
315                         /* graba el bloque en el archivo */
316                         curr_block_id = emufs_tipo1_grabar_bloque(efs, block,
317                                         EMUFS_NOT_FOUND, err);
318                         if (*err) {
319                                 PERR("error al grabar bloque");
320                                 free(block);
321                                 return EMUFS_NOT_FOUND;
322                         }
323                         /* grabo el nuevo registro en el archivo de espacios libres */
324                         *err = emufs_fsc_agregar(efs, curr_block_id, block_space - chunk_size);
325                         if (*err) {
326                                 PERR("No se pudo agregar fsc");
327                                 free(block);
328                                 return EMUFS_NOT_FOUND;
329                         }
330                         /* si es el primer id de bloque obtenido, lo guardo para
331                          * agregarlo después al archivo de índices. */
332                         if (block_id == EMUFS_NOT_FOUND) {
333                                 block_id = curr_block_id;
334                         }
335                 } while (reg_header.size > block_space);
336                 free(block);
337
338         /* Encontró espacio en un bloque existente, graba registro ahí */
339         } else {
340                 /* cargo el bloque en block_id */
341                 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
342                         /* TODO Manejo de errores */
343                         PERR("no se pudo leer el bloque");
344                         return EMUFS_NOT_FOUND;
345                 }
346                 /* inserta el registro en el bloque */
347                 /* tengo que buscar un ID válido para el nuevo registro */
348                 reg_header.id = emufs_idx_get_new_id(efs, err);
349                 /* graba registro en bloque */
350                 emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
351                                 reg_header, reg);
352                 /* graba el bloque en el archivo */
353                 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
354                 if (*err) {
355                         PERR("error al grabar bloque");
356                         free(block);
357                         return EMUFS_NOT_FOUND;
358                 }
359                 free(block);
360                 /* actualizo el archivo de espacios libres */
361                 *err = emufs_fsc_actualizar(efs, block_id, fs - reg_size
362                                 - sizeof(EMUFS_TIPO1_REG_HEADER));
363                 if (*err) {
364                         PERR("No se pudo actualizar fsc");
365                         return EMUFS_NOT_FOUND;
366                 }
367         }
368                 
369         /* actualizo el indice de bloques y registros */
370         *err = emufs_idx_agregar(efs, reg_header.id, block_id);
371         if (*err){
372                 PERR("No se pudo agregar idx");
373                 return EMUFS_NOT_FOUND;
374         }
375         
376         return reg_header.id;
377 }
378
379 /*Graba un bloque en el archivo*/
380 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
381                 EMUFS_BLOCK_ID block_id, int* err)
382 {
383         FILE* file;
384         char name_f[255];
385
386         strcpy(name_f,efs->nombre);
387         strcat(name_f,".dat");
388
389         if ((file = fopen(name_f, "r+b")) == NULL) {
390                 /* TODO Manejo de errores */
391                 PERR("Error al abrir archivo");
392                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
393                 return EMUFS_NOT_FOUND;
394         }
395         /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */
396         if (block_id == EMUFS_NOT_FOUND) {
397                 /* me paro al final del archivo */
398                 if (fseek(file, 0l, SEEK_END)) {
399                         /* TODO Manejo de errores */
400                         PERR("No se pudo hacer fseek()");
401                         fclose(file);
402                         *err = 8; /* EMUFS_ERROR_SEEK_FILE */
403                         return EMUFS_NOT_FOUND;
404                 }
405                 /* Obtengo ID del bloque nuevo */
406                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
407         /* Si es un ID válido, salto hasta ese bloque. */
408         } else {
409                 /* Salta el header del archivo */
410                 if ((*err = emufs_tipo1_header_jump(file))) {
411                         PERR("no se pudo saltar la cabecera del archivo");
412                         fclose(file);
413                         return EMUFS_NOT_FOUND;
414                 }
415                 /* Salta bloques */
416                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
417                         PERR("no se pudo saltar la cabecera del bloque");
418                         fclose(file);
419                         return EMUFS_NOT_FOUND;
420                 }
421         }
422         /* Grabo el bloque */
423         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
424                 PERR("No se pudo escribir el archivo");
425                 fclose(file);
426                 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
427                 return EMUFS_NOT_FOUND;
428         }
429
430         fclose(file);
431         return block_id;
432 }
433
434 /*borra un registro de un bloque y acomoda los registros que quedan*/
435 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
436 {
437         return -1; /* FIXME Error */
438 }
439
440 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
441 {
442         return -1; /* FIXME Error */
443 }
444
445 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
446                 void *data, EMUFS_REG_SIZE size, int *error)
447 {
448         emufs_tipo1_borrar_registro(emu, id);
449         return emufs_tipo1_grabar_registro(emu, data, size, error);
450 }
451
452 size_t emufs_tipo1_header_size(void)
453 {
454         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
455 }
456
457 int emufs_tipo1_header_jump(FILE* fp)
458 {
459         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
460                 PERR("No se pudo hacer fseek()");
461                 return 8; /* EMUFS_ERROR_SEEK_FILE */
462         }
463         return 0; /* EMUFS_OK */
464 }
465
466 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
467 {
468         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
469                 PERR("No se pudo hacer fseek()");
470                 return 8; /* EMUFS_ERROR_SEEK_FILE */
471         }
472         return 0; /* EMUFS_OK */
473 }
474
475 void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header,
476                 char* reg)
477 {
478         emufs_tipo1_escribir_reg_chunk_en_memoria(dst, header, reg, header.size);
479 }
480
481 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
482                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
483 {
484         /* grabo cabecera del registro en el bloque */
485         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
486         /* incremento puntero de escritura */
487         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
488         /* grabo el registro en el bloque */
489         memcpy(dst, reg, reg_size);
490 }
491