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