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