]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
4c68ce432a40e4e490fef30213682678f728d385
[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 /*------------------ Declaraciones privadas ----------------------*/
48
49 /** Cabecera de un registro de un archivo tipo1. */
50 typedef struct {
51         EMUFS_REG_ID   id;   /**< Identificador del registro. */
52         EMUFS_REG_SIZE size; /**< Tamaño del registro. */
53 } EMUFS_TIPO1_REG_HEADER;
54
55 static size_t emufs_tipo1_header_size(void);
56
57 static int emufs_tipo1_header_jump(FILE*);
58
59 static int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
60
61 static void emufs_tipo1_escribir_reg_en_memoria(char*, EMUFS_TIPO1_REG_HEADER,
62                 char*);
63
64 /*------------------ Funciones públicas ----------------------*/
65
66 int emufs_tipo1_inicializar(EMUFS* efs)
67 {
68         /* Asigna punteros a funciones. */
69         efs->leer_bloque       = emufs_tipo1_leer_bloque;
70         efs->grabar_registro   = emufs_tipo1_grabar_registro;
71         efs->borrar_registro   = emufs_tipo1_borrar_registro;
72         efs->leer_registro     = emufs_tipo1_leer_registro;
73         efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
74         return 0;
75 }
76
77 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
78                 EMUFS_REG_SIZE* reg_size, int *err)
79 {
80         char* block; /* bloque leido (en donde está el registro a leer) */
81         char* registro; /* registro a leer */
82         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
83         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
84         EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
85         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
86
87         block_id = emufs_idx_buscar_registro(efs, reg_id);
88         if (block_id == EMUFS_NOT_FOUND) {
89                 /* TODO Manejo de errores */
90                 PERR("Registro no encontrado");
91                 *err = EMUFS_NOT_FOUND;
92                 return NULL;
93         }
94         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
95                 /* TODO Manejo de errores */
96                 PERR("no se pudo leer el bloque");
97                 return NULL;
98         }
99
100         /* Busco secuencialmente en el bloque el registro a leer */
101         offset = 0;
102         do {
103                 /* Copio la cabecera del registro actual. */
104                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
105                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
106                 if (curr_reg_header.id == reg_id) {
107                         registro = (char*) malloc(curr_reg_header.size);
108                         if (registro == NULL) {
109                                 /* TODO Manejo de errores */
110                                 free(block);
111                                 PERR("No hay memoria");
112                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
113                                 return NULL;
114                         }
115                         memcpy(registro, block + offset, curr_reg_header.size);
116                         *reg_size = curr_reg_header.size;
117                         break;
118                 }
119                 /* Desplazo el offset */
120                 offset += curr_reg_header.size;
121         } while (offset < block_size);
122
123         free(block);
124         return registro;
125 }
126
127 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
128 {
129         FILE* file;
130         char* block; /* bloque leido (en donde está el registro a leer) */
131         char  name_f[255];
132
133         strcpy(name_f,efs->nombre);
134         strcat(name_f,".dat");
135
136         if ((file = fopen(name_f, "r")) == NULL) {
137                 PERR("No se puede abrir archivo");
138                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
139                 return NULL; /* FIXME ERROR */
140         }
141         emufs_tipo1_header_jump(file); /* salta cabeceras */
142         emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
143         /* FIXME: verificar que no se pase de fin de archivo*/
144         block = (char*) malloc(efs->tam_bloque);
145         if (block == NULL) {
146                 /* TODO Manejo de errores */
147                 PERR("No hay memoria");
148                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
149                 return NULL;
150         }
151         if (fread(block, efs->tam_bloque, 1, file) != 1) {
152                 /* TODO Manejo de errores */
153                 free(block);
154                 PERR("Error al leer bloque");
155                 *err = 3; /* EMUFS_ERROR_FILE_READ */
156                 return NULL;
157         }
158         fclose(file);
159         return block;
160 }
161
162 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
163                 EMUFS_REG_SIZE reg_size, int* err)
164 {
165         EMUFS_TIPO1_REG_HEADER reg_header;
166         EMUFS_FREE             fs;
167         EMUFS_BLOCK_ID         block_id;
168         char                   name_f[255];
169         char*                  block;
170
171         strcpy(name_f, efs->nombre);
172         strcat(name_f, ".dat");
173
174         /* pongo tamaño del registro en la cabecera. */
175         reg_header.size = reg_size;
176         /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
177         block_id = emufs_fsc_buscar_lugar(efs, reg_size
178                         + sizeof(EMUFS_TIPO1_REG_HEADER), &fs);
179         /* si no hay bloques con suficiente espacio creo un bloque nuevo */
180         if (block_id == EMUFS_NOT_FOUND) {
181                 /* crear un nuevo bloque en memoria */
182                 block = (char*) malloc(efs->tam_bloque);
183                 if (block == NULL) {
184                         /* TODO Manejo de errores */
185                         PERR("No hay memoria");
186                         *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
187                         return EMUFS_NOT_FOUND;
188                 }
189                 memset(block, 0, efs->tam_bloque); /* inicializa bloque */
190                 reg_header.id = emufs_idx_get_new_id(efs, err);
191                 /* graba registro en bloque */
192                 /* TODO if (reg_size > efs->tam_bloque) */
193                 emufs_tipo1_escribir_reg_en_memoria(block, reg_header, reg);
194                 /* graba el bloque en el archivo */
195                 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
196                 if (*err) {
197                         PERR("error al grabar bloque");
198                         free(block);
199                         return EMUFS_NOT_FOUND;
200                 }
201                 free(block);
202                 /* grabo el nuevo registro en el archivo de espacios libres */
203                 *err = emufs_fsc_agregar(efs, block_id, efs->tam_bloque - reg_size
204                                 - sizeof(EMUFS_TIPO1_REG_HEADER));
205                 if (*err) {
206                         PERR("No se pudo agregar fsc");
207                         return EMUFS_NOT_FOUND;
208                 }
209
210         /* Encontró espacio en un bloque existente, graba registro ahí */
211         } else {
212                 /* cargo el bloque en block_id */
213                 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
214                         /* TODO Manejo de errores */
215                         PERR("no se pudo leer el bloque");
216                         return EMUFS_NOT_FOUND;
217                 }
218                 /* inserta el registro en el bloque */
219                 /* tengo que buscar un ID válido para el nuevo registro */
220                 reg_header.id = emufs_idx_get_new_id(efs, err);
221                 /* graba registro en bloque */
222                 emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
223                                 reg_header, reg);
224                 /* graba el bloque en el archivo */
225                 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, err);
226                 if (*err) {
227                         PERR("error al grabar bloque");
228                         free(block);
229                         return EMUFS_NOT_FOUND;
230                 }
231                 free(block);
232                 /* actualizo el archivo de espacios libres */
233                 *err = emufs_fsc_actualizar(efs, block_id, fs - reg_size
234                                 - sizeof(EMUFS_TIPO1_REG_HEADER));
235                 if (*err) {
236                         PERR("No se pudo actualizar fsc");
237                         return EMUFS_NOT_FOUND;
238                 }
239         }
240                 
241         /* actualizo el indice de bloques y registros */
242         *err = emufs_idx_agregar(efs, reg_header.id, block_id);
243         if (*err){
244                 PERR("No se pudo agregar idx");
245                 return EMUFS_NOT_FOUND;
246         }
247         
248         return reg_header.id;
249 }
250
251 /*Graba un bloque en el archivo*/
252 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
253                 EMUFS_BLOCK_ID block_id, int* err)
254 {
255         FILE* file;
256         char name_f[255];
257
258         strcpy(name_f,efs->nombre);
259         strcat(name_f,".dat");
260
261         if ((file = fopen(name_f, "r+b")) == NULL) {
262                 /* TODO Manejo de errores */
263                 PERR("Error al abrir archivo");
264                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
265                 return EMUFS_NOT_FOUND;
266         }
267         /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */
268         if (block_id == EMUFS_NOT_FOUND) {
269                 /* me paro al final del archivo */
270                 if (fseek(file, 0l, SEEK_END)) {
271                         /* TODO Manejo de errores */
272                         PERR("No se pudo hacer fseek()");
273                         fclose(file);
274                         *err = 8; /* EMUFS_ERROR_SEEK_FILE */
275                         return EMUFS_NOT_FOUND;
276                 }
277                 /* Obtengo ID del bloque nuevo */
278                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
279         /* Si es un ID válido, salto hasta ese bloque. */
280         } else {
281                 /* Salta el header del archivo */
282                 if ((*err = emufs_tipo1_header_jump(file))) {
283                         PERR("no se pudo saltar la cabecera del archivo");
284                         fclose(file);
285                         return EMUFS_NOT_FOUND;
286                 }
287                 /* Salta bloques */
288                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
289                         PERR("no se pudo saltar la cabecera del bloque");
290                         fclose(file);
291                         return EMUFS_NOT_FOUND;
292                 }
293         }
294         /* Grabo el bloque */
295         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
296                 PERR("No se pudo escribir el archivo");
297                 fclose(file);
298                 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
299                 return EMUFS_NOT_FOUND;
300         }
301
302         fclose(file);
303         return block_id;
304 }
305
306 /*borra un registro de un bloque y acomoda los registros que quedan*/
307 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
308 {
309         return -1; /* FIXME Error */
310 }
311
312 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
313 {
314         return -1; /* FIXME Error */
315 }
316
317 size_t emufs_tipo1_header_size(void)
318 {
319         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
320 }
321
322 int emufs_tipo1_header_jump(FILE* fp)
323 {
324         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
325                 PERR("No se pudo hacer fseek()");
326                 return 8; /* EMUFS_ERROR_SEEK_FILE */
327         }
328         return 0; /* EMUFS_OK */
329 }
330
331 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
332 {
333         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
334                 PERR("No se pudo hacer fseek()");
335                 return 8; /* EMUFS_ERROR_SEEK_FILE */
336         }
337         return 0; /* EMUFS_OK */
338 }
339
340 void emufs_tipo1_escribir_reg_en_memoria(char* dst,     EMUFS_TIPO1_REG_HEADER header,
341                 char* reg) {
342         /* grabo cabecera del registro en el bloque */
343         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
344         /* incremento puntero de escritura */
345         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
346         /* grabo el registro en el bloque */
347         memcpy(dst, reg, header.size);
348 }
349
350 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
351                 void *data, EMUFS_REG_SIZE size, int *error)
352 {
353         emufs_tipo1_borrar_registro(emu, id);
354         return emufs_tipo1_grabar_registro(emu, data, size, error);
355 }
356
357 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
358                 EMUFS_REG_SIZE *size, int *pos)
359 {
360         char* block; /* bloque leido (en donde está el registro a leer) */
361         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
362         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
363         EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
364         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
365         int err;
366
367         block_id = emufs_idx_buscar_registro(efs, id);
368         if (block_id == EMUFS_NOT_FOUND) {
369                 return NULL;
370         }
371         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
372                 return NULL;
373         }
374
375         /* Busco secuencialmente en el bloque el registro a leer */
376         offset = 0;
377         do {
378                 /* Copio la cabecera del registro. */
379                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
380                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
381                 if (curr_reg_header.id == id) {
382                         *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
383                         break;
384                 }
385                 /* Desplazo el offset */
386                 offset += curr_reg_header.size;
387         } while (offset < block_size);
388
389         (*size) = block_size;
390         return block;
391 }
392