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