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