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