]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
5812bfe69302dbef5262bab6d1011492f89e7f70
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
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 <unistd.h>
43 #include <sys/types.h>
44 #include <stdio.h>
45 #include <math.h>
46 #include <stdlib.h>
47 #include <string.h>
48
49 #ifndef MIN
50 #       define MIN(x, y) (((x) > (y)) ? (y) : (x))
51 #endif
52
53 /*------------------ Declaraciones privadas ----------------------*/
54
55 /** Cabecera de un registro de un archivo tipo1. */
56 typedef struct {
57         EMUFS_REG_ID   id;   /**< Identificador del registro. */
58         EMUFS_REG_SIZE size; /**< Tamaño del registro. */
59 } EMUFS_TIPO1_REG_HEADER;
60
61 static size_t emufs_tipo1_header_size(void);
62
63 static int emufs_tipo1_header_jump(FILE*);
64
65 static int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
66
67 static void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
68                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size);
69
70 /** Lee el bloque \param num_bloque y lo almacena en \c ptr. */
71 static void* emufs_tipo1_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*);
72
73 /** Graba un bloque en el archivo y actualiza .fsc, si se solicita. */
74 static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS*, void*,
75                 EMUFS_BLOCK_ID, EMUFS_FREE, int*);
76
77 /** Obtiene el tamaño del archivo. */
78 static long emufs_tipo1_get_file_size(EMUFS*, int*);
79
80 /*------------------ Funciones públicas ----------------------*/
81
82 int emufs_tipo1_inicializar(EMUFS* efs)
83 {
84         /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
85          * (una relación 1/2 entre datos e info de control ya es lo suficientemente
86          * mala */
87         if (efs->tam_bloque < (sizeof(EMUFS_TIPO1_REG_HEADER) * 2)) {
88                 PERR("bloque demasiado chico");
89                 return 1000; /* EMUFS_ERROR_BLOCK_SIZE_TOO_SMALL */
90         }
91         /* Asigna punteros a funciones. */
92         efs->leer_bloque       = emufs_tipo1_leer_bloque;
93         efs->grabar_registro   = emufs_tipo1_grabar_registro;
94         efs->borrar_registro   = emufs_tipo1_borrar_registro;
95         efs->leer_registro     = emufs_tipo1_leer_registro;
96         efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
97         efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
98         efs->compactar         = emufs_tipo1_compactar;
99         return 0; /* EMUFS_OK */
100 }
101
102 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
103                 EMUFS_REG_SIZE* reg_size, int *err)
104 {
105         char* block; /* bloque leido (en donde está el registro a leer) */
106         char* registro; /* registro a leer */
107         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
108         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
109         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
110
111         block_id = emufs_idx_buscar_registro(efs, reg_id);
112         if (block_id == EMUFS_NOT_FOUND) {
113                 /* TODO Manejo de errores */
114                 PERR("Registro no encontrado");
115                 *err = EMUFS_NOT_FOUND;
116                 return NULL;
117         }
118         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
119                 /* TODO Manejo de errores */
120                 PERR("no se pudo reservar memoria");
121                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
122                 return NULL;
123         }
124
125         /* Busco secuencialmente en el bloque el registro a leer */
126         offset = 0;
127         do {
128                 /* Copio la cabecera del registro actual. */
129                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
130                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
131                 if (curr_reg_header.id == reg_id) {
132                         /* tamaño máximo ultilizable para datos en un bloque */
133                         EMUFS_BLOCK_SIZE block_space
134                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
135                         /* tamaño de la porción de registro que se guarda */
136                         EMUFS_REG_SIZE chunk_size = 0; 
137                         /* puntero a la porción actual del registro */
138                         char* chunk_ptr;
139
140                         *reg_size = curr_reg_header.size;
141                         registro = chunk_ptr = (char*) malloc(*reg_size);
142                         if (registro == NULL) {
143                                 /* TODO Manejo de errores */
144                                 free(block);
145                                 PERR("No hay memoria");
146                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
147                                 return NULL;
148                         }
149                         while (1) {
150                                 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
151                                 curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
152                                 chunk_size = MIN(curr_reg_header.size, block_space);
153                                 /* copio porción de registro en el buffer */
154                                 memcpy(chunk_ptr, block + offset, chunk_size);
155                                  /* falta leer un bloque */
156                                 if (curr_reg_header.size > block_space) {
157                                         free(block);
158                                         if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
159                                                                         ++block_id, err))) {
160                                                 /* TODO Manejo de errores */
161                                                 free(registro);
162                                                 PERR("no se pudo reservar memoria");
163                                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
164                                                 return NULL;
165                                         }
166                                 } else { /* se terminó de leer */
167                                         break;
168                                 }
169                         }
170                         break;
171                 }
172                 /* Desplazo el offset */
173                 offset += curr_reg_header.size;
174
175         /* esto no debería ser nunca false porque sé positivamente que el */
176         } while (offset < efs->tam_bloque); /* registro está en el bloque */
177
178         free(block);
179         return registro;
180 }
181
182 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
183 {
184         char *chunk_ptr;
185         char* block; /* bloque leido (en donde está el registro a leer) */
186         char* registro; /* registro a leer */
187         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
188         EMUFS_BLOCK_SIZE offset, block_space; /* offset del bloque leído */
189         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
190         EMUFS_REG_SIZE cant_bloques;
191         int err, i;
192
193         block_id = emufs_idx_buscar_registro(efs, id);
194         if (block_id == EMUFS_NOT_FOUND) {
195                 /* TODO Manejo de errores */
196                 PERR("Registro no encontrado");
197                 *pos = 0;
198                 *size = 0;
199                 return NULL;
200         }
201         err = 0;
202         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
203                 /* TODO Manejo de errores */
204                 PERR("no se pudo reservar memoria");
205                 *pos = 0;
206                 *size = 0;
207                 return NULL;
208         }
209
210         /* Busco secuencialmente en el bloque el registro a leer */
211         offset = 0;
212         do {
213                 /* Copio la cabecera del registro actual. */
214                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
215                 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
216                 if (curr_reg_header.id == id) {
217                         /* tamaño máximo ultilizable para datos en un bloque */
218                         *pos = offset-sizeof(EMUFS_TIPO1_REG_HEADER);
219                         block_space = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
220                         /* tamaño de la porción de registro que se guarda */
221
222                         cant_bloques = curr_reg_header.size / block_space + 1;
223                         *size = cant_bloques*efs->tam_bloque;
224                         registro = chunk_ptr = (char*) malloc(*size - (cant_bloques-1)*sizeof(EMUFS_TIPO1_REG_HEADER) + (cant_bloques-1)*2);
225                         if (registro == NULL) {
226                                 /* TODO Manejo de errores */
227                                 free(block);
228                                 PERR("No hay memoria");
229                                 *pos = 0;
230                                 *size = 0;
231                                 return NULL;
232                         }
233                         memcpy(registro, block, efs->tam_bloque);
234                         chunk_ptr += efs->tam_bloque;
235                         /* Copio los otros bloques, si los hay */
236                         free(block);
237                         for(i=1; i<cant_bloques; i++) {
238                                 err = 0;
239                                 block = (char*)emufs_tipo1_leer_bloque(efs, block_id+i, &err);
240                                 /* Solo grabo el header del primer pedazo! */
241                                 memcpy(chunk_ptr, "<>", 2);
242                                 chunk_ptr += 2;
243                                 memcpy(chunk_ptr, block+sizeof(EMUFS_TIPO1_REG_HEADER), efs->tam_bloque-sizeof(EMUFS_TIPO1_REG_HEADER));
244                                 chunk_ptr += efs->tam_bloque-sizeof(EMUFS_TIPO1_REG_HEADER);
245                                 free(block);
246                         }
247                         /* Todo listo! */
248                         break;
249                 }
250                 /* Desplazo el offset */
251                 offset += curr_reg_header.size;
252         } while (offset < efs->tam_bloque);
253
254         return registro;
255 }
256
257 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
258 {
259         FILE* file;
260         char* block; /* bloque leido (en donde está el registro a leer) */
261         char  name_f[255];
262
263         strcpy(name_f,efs->nombre);
264         strcat(name_f,".dat");
265
266         if ((file = fopen(name_f, "r")) == NULL) {
267                 PERR("No se puede abrir archivo");
268                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
269                 return NULL; /* FIXME ERROR */
270         }
271         emufs_tipo1_header_jump(file); /* salta cabeceras */
272         emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
273         /* FIXME: verificar que no se pase de fin de archivo*/
274         block = (char*) malloc(efs->tam_bloque);
275         if (block == NULL) {
276                 /* TODO Manejo de errores */
277                 PERR("No hay memoria");
278                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
279                 return NULL;
280         }
281         if (fread(block, efs->tam_bloque, 1, file) != 1) {
282                 /* TODO Manejo de errores */
283                 free(block);
284                 PERR("Error al leer bloque");
285                 *err = 3; /* EMUFS_ERROR_FILE_READ */
286                 return NULL;
287         }
288         fclose(file);
289         return block;
290 }
291
292 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
293                 EMUFS_REG_SIZE reg_size, int* err)
294 {
295         EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
296         EMUFS_FREE fs; /* espacio libre en el bloque */
297         EMUFS_BLOCK_ID block_id; /* identificador del 1er bloque */
298         char* block; /* buffer del bloque a guardar en disco */
299         char* chunk_ptr = reg; /* puntero a la poción del registro */
300         EMUFS_BLOCK_SIZE block_space /* tamaño máximo para datos en un bloque */
301                 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
302         /* identificador del bloque que se guarda */
303         EMUFS_BLOCK_ID curr_block_id;
304         /* tamaño de la porción de registro que se guarda */
305         EMUFS_REG_SIZE chunk_size = 0; 
306
307         /* obtengo identificador que corresponderá al registro */
308         header.id = emufs_idx_get_new_id(efs, err);
309         if (*err) {
310                 PERR("no se pudo obtener un id para el registro nuevo");
311                 return EMUFS_NOT_FOUND;
312         }
313         header.size = reg_size; /* tamaño del registro */
314
315         /* busco lugar para el registro en un bloque existente */
316         block_id = emufs_fsc_buscar_n_lugares(efs,
317                         /* cantidad de bloques que necesita el registro */
318                         (EMUFS_BLOCK_SIZE) ceil(header.size / (double) block_space),
319                         /* cabecera + si es un registro multibloque, tomo el bloque */
320                         sizeof(EMUFS_TIPO1_REG_HEADER) + MIN(header.size, block_space),
321                         &fs, err);
322         /* si no hay bloques con suficiente espacio creo un bloque nuevo */
323         if (block_id == EMUFS_NOT_FOUND) {
324                 /* crear un nuevo bloque en memoria */
325                 block = (char*) malloc(efs->tam_bloque);
326                 if (block == NULL) {
327                         /* TODO Manejo de errores */
328                         PERR("No hay memoria");
329                         *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
330                         return EMUFS_NOT_FOUND;
331                 }
332                 memset(block, 0, efs->tam_bloque); /* inicializa bloque */
333                 curr_block_id = EMUFS_NOT_FOUND; /* pongo de bloque actual el final */
334         /* si hay bloques con suficiente espacio, levanto el primero */
335         } else {
336                 /* cargo el bloque en block_id */
337                 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
338                         /* TODO Manejo de errores */
339                         PERR("no se pudo leer el bloque");
340                         return EMUFS_NOT_FOUND;
341                 }
342                 curr_block_id = block_id; /* pongo de bloque actual el primero */
343         }
344
345         do {
346                 EMUFS_BLOCK_ID new_block_id; /* identificador del bloque nuevo */
347                 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
348                 header.size -= chunk_size; /* Resto lo que ya guardé */
349                 chunk_size = MIN(header.size, block_space);
350
351                 /* graba porción del registro en bloque */ /* destino: fin de bloque */
352                 emufs_tipo1_escribir_reg_chunk_en_memoria(block + efs->tam_bloque - fs,
353                                 header, chunk_ptr, chunk_size);
354                 /* graba el bloque en el archivo */
355                 new_block_id = emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
356                                 fs - sizeof(EMUFS_TIPO1_REG_HEADER) - chunk_size, err);
357                 if (*err) {
358                         PERR("error al grabar bloque");
359                         free(block);
360                         return EMUFS_NOT_FOUND;
361                 }
362                 /* si es el primer id de bloque obtenido, lo guardo para
363                  * agregarlo después al archivo de índices. */
364                 if (block_id == EMUFS_NOT_FOUND) {
365                         block_id = new_block_id;
366                 }
367                 /* si no estoy por fuera del archivo, incremento el nro. de bloque */
368                 if (curr_block_id != EMUFS_NOT_FOUND) {
369                         ++curr_block_id;
370                 }
371
372         /* mientras que el chunk no entre en un bloque */
373         } while (header.size > block_space);
374
375         /* libera el bloque */
376         free(block);
377
378         /* actualizo el indice de bloques y registros */
379         *err = emufs_idx_agregar(efs, header.id, block_id);
380         if (*err) {
381                 PERR("No se pudo agregar idx");
382                 return EMUFS_NOT_FOUND;
383         }
384
385         return header.id;
386 }
387
388 int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
389 {
390         char* block; /* bloque leido (en donde está el registro a leer) */
391         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
392         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
393         EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
394         int err = 0; /* para almacenar código de error */
395
396         block_id = emufs_idx_buscar_registro(efs, reg_id);
397         if (block_id == EMUFS_NOT_FOUND) {
398                 /* TODO Manejo de errores */
399                 PERR("Registro no encontrado");
400                 return EMUFS_NOT_FOUND;
401         }
402         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
403                 /* TODO Manejo de errores */
404                 PERR("no se pudo reservar memoria");
405                 return err;
406         }
407
408         /* Busco secuencialmente en el bloque el registro a leer */
409         offset = 0;
410         do {
411                 /* Copio la cabecera del registro actual. */
412                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
413                 if (curr_reg_header.id == reg_id) {
414                         /* identificador del bloque actual */
415                         EMUFS_BLOCK_ID curr_block_id = block_id;
416                         /* tamaño máximo ultilizable para datos en un bloque */
417                         EMUFS_BLOCK_SIZE block_space
418                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
419                         EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
420
421                         while (1) {
422                                 /* actualizo archivo de espacio libre por bloque */
423                                 fs = emufs_fsc_get_fs(efs, curr_block_id)
424                                         + MIN(curr_reg_header.size, block_space)
425                                         + sizeof(EMUFS_TIPO1_REG_HEADER);
426                                 if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
427                                         /* TODO Manejo de errores */
428                                         PERR("no se pudo actualizar .fsc");
429                                         free(block);
430                                         return err;
431                                 }
432                                 /* falta liberar un bloque (o porción) */
433                                 if (curr_reg_header.size > block_space) {
434                                         free(block);
435                                         if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
436                                                                         ++curr_block_id, &err))) {
437                                                 /* TODO Manejo de errores */
438                                                 PERR("no se pudo leer el bloque");
439                                                 return err;
440                                         }
441                                         /* copio la cabecera del primer registro (si ocupa más de un
442                                          * registro está en bloques contiguos) */
443                                         memcpy(&curr_reg_header, block,
444                                                         sizeof(EMUFS_TIPO1_REG_HEADER));
445                                 } else { /* se terminó de leer */
446                                         break;
447                                 }
448                         }
449
450                         /* actualizo archivo de identificadores de registros borrados */
451                         if ((err = emufs_did_agregar(efs, reg_id))) {
452                                 /* TODO Manejo de errores */
453                                 PERR("no se pudo actualizar .did");
454                                 free(block);
455                                 return err;
456                         }
457                         /*actualizo archivo .idx*/
458                         if ((err = emufs_idx_borrar(efs, reg_id))) {
459                                 /* TODO Manejo de errores */
460                                 PERR("no se pudo actualizar .did");
461                                 free(block);
462                                 return err;
463                         }
464
465                         /* desplazo registros a izquierda */
466                         {   /* offset del fin del registro a borrar */
467                                 EMUFS_BLOCK_SIZE offset_reg_end = offset
468                                         + sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
469                                 /* si es necesario desplazar */
470                                 if (offset < offset_reg_end) {
471                                         /* muevo la porción de bloque a izquierda */
472                                         memcpy(block + offset, block + offset_reg_end,
473                                                 efs->tam_bloque - offset_reg_end);
474                                 }
475                         }
476                         /* guardo el bloque en disco (actualizando espacio libre) */
477                         emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
478                                         EMUFS_NOT_FOUND, &err);
479                         if (err) {
480                                 /* TODO Manejo de errores */
481                                 PERR("no se pudo grabar bloque en disco");
482                                 free(block);
483                                 return err;
484                         }
485
486                         break; /* salgo del loop, ya hice todo lo que tenía que hacer */
487                 }
488                 /* desplazo el offset */
489                 offset += sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
490
491         /* esto no debería ser nunca false porque sé positivamente que el */
492         } while (offset < efs->tam_bloque); /* registro está en el bloque */
493
494         free(block);
495         return 0; /* EMUFS_OK */
496 }
497
498 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
499 {
500         int err = 0;
501         EMUFS_Estadisticas stats;
502         memset(&stats, 0, sizeof(EMUFS_Estadisticas));
503
504         stats.tam_archivo_bytes = emufs_tipo1_get_file_size(efs, &err);
505         if (err) {
506                 /* TODO manejo de errores */
507                 PERR("no se pudo obtener el tamaño del archivo");
508                 return stats;
509         }
510
511         /* obtengo cantidad de bloques */
512         stats.cant_bloques = (stats.tam_archivo_bytes - emufs_tipo1_header_size())
513                         / efs->tam_bloque;
514
515         /* obtengo la cantidad de registros en el archivo */
516         {
517                 EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.tam_archivo);
518                 if (tmp) free(tmp); /* libera memoria innecesaria */
519         }
520
521         /* obtengo total de información de control que guarda el archivo */
522         stats.info_control = emufs_tipo1_header_size() /* cabecera del archivo */
523                         /* mas las cabeceras de todos los registros */
524                         + stats.tam_archivo * sizeof(EMUFS_TIPO1_REG_HEADER);
525
526         /* obtengo las estadísticas del archivo de espacio libre por bloque */
527         stats.total_fs = emufs_fsc_get_total_fs(efs);
528         stats.media_fs = emufs_fsc_get_media_fs(efs);
529         emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
530
531         return stats;   
532 }
533
534 void emufs_tipo1_compactar(EMUFS* efs)
535 {
536         EMUFS_BLOCK_SIZE block_space /* tamaño para datos de un bloque */
537                 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
538         EMUFS_REG_ID total_ids; /* cantidad total de registros en el array */
539         /* array con los identificadores de los registros */
540         EMUFS_REG_ID* reg_ids = emufs_idx_get(efs, &total_ids);
541         int i; /* índice de elemento actual del array */
542
543         /* recorro cada registro válido del archivo */
544         for (i = 0; i < total_ids; ++i) {
545                 EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
546                 char* reg; /* buffer para el registro a mover */
547                 int err = 0; /* para almacenar código de error */
548                 /* bloque al que pertenece el registro */
549                 EMUFS_BLOCK_ID block_id = emufs_idx_buscar_registro(efs, reg_ids[i]);
550
551                 /* obtengo identificador del registro actual */
552                 header.id = reg_ids[i];
553                 /* si el registro está borrado, continúo con el próximo */
554                 if (block_id == EMUFS_NOT_FOUND) {
555                         continue;
556                 }
557                 /* leo el registro */
558                 reg = (char*) efs->leer_registro(efs, header.id, &header.size, &err);
559                 if (err) {
560                         PERR("error al leer registro");
561                         return;
562                 }
563                 /* borro el registro */
564                 if ((err = efs->borrar_registro(efs, header.id))) {
565                         PERR("error al borrar registro");
566                         free(reg);
567                         return;
568                 }
569                 /* lo inserto en la nueva posición */
570                 emufs_tipo1_grabar_registro(efs, reg, header.size, &err);
571                 if (err) {
572                         PERR("error al grabar registro");
573                         free(reg);
574                         return;
575                 }
576                 free(reg);
577         }
578         free(reg_ids); /* libero lista de ids */
579
580         /* truncamos el archivo si hay bloques libres al final */
581         {
582                 EMUFS_FREE fs; /* espacio libre en el bloque */
583                 /* busco si hay algún bloque completo libre */
584                 EMUFS_BLOCK_ID block_id = emufs_fsc_buscar_lugar(efs, block_space, &fs);
585                 /* si hay, el resto del archivo tiene que estar vacío */
586                 if (block_id != EMUFS_NOT_FOUND) {
587                         long size = emufs_tipo1_header_size() /* cabecera del archivo */
588                                 + block_id * efs->tam_bloque; /* mas los bloques compactos */
589                         char filename[255];
590
591                         /* trunca archivo de datos */
592                         strcpy(filename, efs->nombre);
593                         strcat(filename, ".dat");
594                         truncate(filename, size);
595                         /* trunca archivo de de espacio libre */
596                         emufs_fsc_truncate(efs, block_id);
597                 }
598         }
599 }
600
601 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
602                 EMUFS_BLOCK_ID block_id, EMUFS_FREE fs, int* err)
603 {
604         FILE* file;
605         char name_f[255];
606         /* obtengo cantidad de bloques */
607         EMUFS_BLOCK_SIZE num_blocks =
608                 (emufs_tipo1_get_file_size(efs, err) - emufs_tipo1_header_size())
609                 / efs->tam_bloque;
610
611         /* abre archivo */
612         strcpy(name_f,efs->nombre);
613         strcat(name_f,".dat");
614         if ((file = fopen(name_f, "r+b")) == NULL) {
615                 /* TODO Manejo de errores */
616                 PERR("Error al abrir archivo");
617                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
618                 return EMUFS_NOT_FOUND;
619         }
620         /* Si es NOT_FOUND o mayor a la cantidad de bloques presentes,
621          * tengo que agregar un bloque al final del archivo */
622         if ((block_id == EMUFS_NOT_FOUND) || (block_id >= num_blocks)) {
623                 /* me paro al final del archivo */
624                 if (fseek(file, 0l, SEEK_END)) {
625                         /* TODO Manejo de errores */
626                         PERR("No se pudo hacer fseek()");
627                         fclose(file);
628                         *err = 8; /* EMUFS_ERROR_SEEK_FILE */
629                         return EMUFS_NOT_FOUND;
630                 }
631                 /* Obtengo ID del bloque nuevo */
632                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
633                 /* si me lo solicitan, actualizo el .fsc */
634                 if (fs != EMUFS_NOT_FOUND) {
635                         *err = emufs_fsc_agregar(efs, block_id, fs);
636                         if (*err) {
637                                 PERR("No se pudo agregar al .fsc");
638                                 fclose(file);
639                                 return EMUFS_NOT_FOUND;
640                         }
641                 }
642         /* Si es un ID válido, salto hasta ese bloque. */
643         } else {
644                 /* Salta el header del archivo */
645                 if ((*err = emufs_tipo1_header_jump(file))) {
646                         PERR("no se pudo saltar la cabecera del archivo");
647                         fclose(file);
648                         return EMUFS_NOT_FOUND;
649                 }
650                 /* Salta bloques */
651                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
652                         PERR("no se pudo saltar la cabecera del bloque");
653                         fclose(file);
654                         return EMUFS_NOT_FOUND;
655                 }
656                 /* si me lo solicitan, actualizo el .fsc */
657                 if (fs != EMUFS_NOT_FOUND) {
658                         if ((*err = emufs_fsc_actualizar(efs, block_id, fs))) {
659                                 /* TODO Manejo de errores */
660                                 PERR("no se pudo actualizar .fsc");
661                                 fclose(file);
662                                 return EMUFS_NOT_FOUND;
663                         }
664                 }
665         }
666         /* Grabo el bloque */
667         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
668                 PERR("No se pudo escribir el archivo");
669                 fclose(file);
670                 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
671                 return EMUFS_NOT_FOUND;
672         }
673
674         fclose(file);
675         return block_id;
676 }
677
678 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
679                 void *data, EMUFS_REG_SIZE size, int *error)
680 {
681         emufs_tipo1_borrar_registro(emu, id);
682         return emufs_tipo1_grabar_registro(emu, data, size, error);
683 }
684
685 size_t emufs_tipo1_header_size(void)
686 {
687         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
688 }
689
690 int emufs_tipo1_header_jump(FILE* fp)
691 {
692         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
693                 PERR("No se pudo hacer fseek()");
694                 return 8; /* EMUFS_ERROR_SEEK_FILE */
695         }
696         return 0; /* EMUFS_OK */
697 }
698
699 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
700 {
701         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
702                 PERR("No se pudo hacer fseek()");
703                 return 8; /* EMUFS_ERROR_SEEK_FILE */
704         }
705         return 0; /* EMUFS_OK */
706 }
707
708 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
709                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
710 {
711         /* grabo cabecera del registro en el bloque */
712         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
713         /* incremento puntero de escritura */
714         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
715         /* grabo el registro en el bloque */
716         memcpy(dst, reg, reg_size);
717 }
718
719 long emufs_tipo1_get_file_size(EMUFS* efs, int* err)
720 {
721         long  file_size;
722         FILE* file;
723         char  name_f[255];
724
725         strcpy(name_f, efs->nombre);
726         strcat(name_f, ".dat");
727         if ((file = fopen(name_f, "ab")) == NULL) {
728                 /* TODO Manejo de errores */
729                 PERR("Error al abrir archivo");
730                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
731                 return 0;
732         }
733         file_size = ftell(file);
734         fclose(file);
735         return file_size;
736 }
737