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