]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
Agrego uso de indices primarios para grabra y recuperar en tipo1 y tipo2
[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                 /* TODO ID de donde lo puedo sacar :-) , lo cargo en 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, EMUFS_REG_ID reg_id)
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         int err = 0; /* para almacenar código de error */
376
377         block_id = emufs_idx_buscar_registro(efs, reg_id);
378         if (block_id == EMUFS_NOT_FOUND) {
379                 PERR("Registro no encontrado");
380                 return EMUFS_NOT_FOUND;
381         }
382         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
383                 PERR("no se pudo reservar memoria");
384                 return err;
385         }
386
387         /* Busco secuencialmente en el bloque el registro a leer */
388         offset = 0;
389         do {
390                 /* Copio la cabecera del registro actual. */
391                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
392                 if (curr_reg_header.id == reg_id) {
393                         /* identificador del bloque actual */
394                         EMUFS_BLOCK_ID curr_block_id = block_id;
395                         /* tamaño máximo ultilizable para datos en un bloque */
396                         EMUFS_BLOCK_SIZE block_space
397                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
398                         /* cantidad de espacio libre original del ultimo bloque */
399                         EMUFS_FREE orig_fs; 
400
401                         while (1) {
402                                 EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
403                                 orig_fs = emufs_fsc_get_fs(efs, curr_block_id);
404                                 /* actualizo archivo de espacio libre por bloque */
405                                 fs = orig_fs + MIN(curr_reg_header.size, block_space)
406                                         + sizeof(EMUFS_TIPO1_REG_HEADER);
407                                 if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
408                                         PERR("no se pudo actualizar .fsc");
409                                         free(block);
410                                         return err;
411                                 }
412                                 /* falta liberar un bloque (o porción) */
413                                 if (curr_reg_header.size > block_space) {
414                                         free(block);
415                                         if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
416                                                                         ++curr_block_id, &err))) {
417                                                 PERR("no se pudo leer el bloque");
418                                                 return err;
419                                         }
420                                         /* copio la cabecera del primer registro (si ocupa más de un
421                                          * registro está en bloques contiguos) */
422                                         memcpy(&curr_reg_header, block,
423                                                         sizeof(EMUFS_TIPO1_REG_HEADER));
424                                 } else { /* se terminó de leer */
425                                         break;
426                                 }
427                         }
428
429                         /* actualizo archivo de identificadores de registros borrados */
430                         if ((err = emufs_did_agregar(efs, reg_id))) {
431                                 PERR("no se pudo actualizar .did");
432                                 free(block);
433                                 return err;
434                         }
435                         /*actualizo archivo .idx*/
436                         if ((err = emufs_idx_borrar(efs, reg_id))) {
437                                 PERR("no se pudo actualizar .did");
438                                 free(block);
439                                 return err;
440                         }
441
442                         /* desplazo registros a izquierda */
443                         {   /* offset del fin del registro a borrar */
444                                 EMUFS_BLOCK_SIZE offset_reg_end = offset
445                                         + sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
446                                 /* si es necesario desplazar */
447                                 if (offset < offset_reg_end) {
448                                         /* muevo la porción de bloque a izquierda */
449                                         /* XXX Este memcpy() puede copiar regiones de memoria que
450                                          * se superponen, si copia de principio a fin y byte a byte
451                                          * no debería haber problema */
452                                         memcpy(block + offset, block + offset_reg_end,
453                                                 efs->tam_bloque - offset_reg_end);
454                                         /* rellena el espacio libre con ceros para la GUI */
455                                         memset(block + efs->tam_bloque - offset_reg_end - orig_fs + offset,
456                                                         0, offset_reg_end + orig_fs - offset);
457                                 }
458                         }
459                         /* guardo el bloque en disco (actualizando espacio libre) */
460                         emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
461                                         EMUFS_NOT_FOUND, &err);
462                         if (err) {
463                                 PERR("no se pudo grabar bloque en disco");
464                                 free(block);
465                                 return err;
466                         }
467
468                         break; /* salgo del loop, ya terminé lo que tenía que hacer */
469                 }
470                 /* desplazo el offset */
471                 offset += sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
472
473         /* esto no debería ser nunca false porque sé positivamente que el */
474         } while (offset < efs->tam_bloque); /* registro está en el bloque */
475
476         free(block);
477         return EMUFS_OK;
478 }
479
480 /* \bug Si hay registros multibloque, no se calcula bien el
481  *         stats.tam_info_control_dat.
482  */
483 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
484 {
485         int err = 0;
486         EMUFS_Estadisticas stats;
487         memset(&stats, 0, sizeof(EMUFS_Estadisticas));
488
489         { /* obtengo tamaño del archivo en bytes */
490                 char name_f[255];
491                 strcpy(name_f, efs->nombre);
492                 strcat(name_f, ".dat");
493                 stats.tam_archivo = emufs_common_get_file_size(name_f, &err);
494                 if (err) {
495                         PERR("no se pudo obtener el tamaño del archivo");
496                         return stats;
497                 }
498         }
499
500         /* obtengo cantidad de bloques en el archivo */
501         stats.cant_bloques = (stats.tam_archivo - emufs_tipo1_header_size())
502                         / efs->tam_bloque;
503
504         /* obtengo la cantidad de registros en el archivo */
505         {
506                 EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.cant_registros);
507                 if (tmp) free(tmp); /* libera memoria innecesaria */
508         }
509
510         /* obtengo información de control que guarda el archivo .dat */
511         stats.tam_info_control_dat = emufs_tipo1_header_size() /* cabecera del archivo */
512                         /* mas las cabeceras de todos los registros */
513                         + stats.cant_registros * sizeof(EMUFS_TIPO1_REG_HEADER);
514
515         /* obtengo las estadísticas del archivo de espacio libre por bloque */
516         stats.total_fs = emufs_fsc_get_total_fs(efs);
517         stats.media_fs = emufs_fsc_get_media_fs(efs);
518         emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
519         
520         /* obtengo informacion de control guardada por los archivos auxiliares */
521         stats.tam_archivos_aux = emufs_idx_get_file_size(efs, &err)
522                 + emufs_fsc_get_file_size(efs, &err)
523                 + emufs_did_get_file_size(efs, &err);
524         if (err) {
525                 PERR("error al obtener tamaño de alguno de los archivos auxiliares");
526                 return stats;
527         }       
528
529         return stats;   
530 }
531
532 void emufs_tipo1_compactar(EMUFS* efs)
533 {
534 #ifdef ARREGLAR
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 #endif
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         EMUFS_BLOCK_SIZE num_blocks;
607
608         /* obtengo nombre del archivo */
609         strcpy(name_f, efs->nombre);
610         strcat(name_f,".dat");
611
612         /* obtengo cantidad de bloques */
613         num_blocks =
614                 (emufs_common_get_file_size(name_f, err) - emufs_tipo1_header_size())
615                 / efs->tam_bloque;
616         if (*err) {
617                 PERR("Error al obtener tamaño del archivo.");
618                 return EMUFS_NOT_FOUND;
619         }
620
621         /* abre archivo */
622         strcpy(name_f,efs->nombre);
623         strcat(name_f,".dat");
624         if ((file = fopen(name_f, "r+b")) == NULL) {
625                 PERR("Error al abrir archivo");
626                 *err = EMUFS_ERROR_CANT_OPEN_FILE;
627                 return EMUFS_NOT_FOUND;
628         }
629         /* Si es NOT_FOUND o mayor a la cantidad de bloques presentes,
630          * tengo que agregar un bloque al final del archivo */
631         if ((block_id == EMUFS_NOT_FOUND) || (block_id >= num_blocks)) {
632                 /* me paro al final del archivo */
633                 if (fseek(file, 0l, SEEK_END)) {
634                         PERR("No se pudo hacer fseek()");
635                         fclose(file);
636                         *err = EMUFS_ERROR_SEEK_FILE;
637                         return EMUFS_NOT_FOUND;
638                 }
639                 /* Obtengo ID del bloque nuevo */
640                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
641                 /* si me lo solicitan, actualizo el .fsc */
642                 if (fs != EMUFS_NOT_FOUND) {
643                         *err = emufs_fsc_agregar(efs, block_id, fs);
644                         if (*err) {
645                                 PERR("No se pudo agregar al .fsc");
646                                 fclose(file);
647                                 return EMUFS_NOT_FOUND;
648                         }
649                 }
650         /* Si es un ID válido, salto hasta ese bloque. */
651         } else {
652                 /* Salta el header del archivo */
653                 if ((*err = emufs_tipo1_header_jump(file))) {
654                         PERR("no se pudo saltar la cabecera del archivo");
655                         fclose(file);
656                         return EMUFS_NOT_FOUND;
657                 }
658                 /* Salta bloques */
659                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
660                         PERR("no se pudo saltar la cabecera del bloque");
661                         fclose(file);
662                         return EMUFS_NOT_FOUND;
663                 }
664                 /* si me lo solicitan, actualizo el .fsc */
665                 if (fs != EMUFS_NOT_FOUND) {
666                         if ((*err = emufs_fsc_actualizar(efs, block_id, fs))) {
667                                 PERR("no se pudo actualizar .fsc");
668                                 fclose(file);
669                                 return EMUFS_NOT_FOUND;
670                         }
671                 }
672         }
673         /* Grabo el bloque */
674         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
675                 PERR("No se pudo escribir el archivo");
676                 fclose(file);
677                 *err = EMUFS_ERROR_WRITE_FILE;
678                 return EMUFS_NOT_FOUND;
679         }
680
681         fclose(file);
682         return block_id;
683 }
684
685 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS* efs, EMUFS_REG_ID id,
686                 void *data, EMUFS_REG_SIZE size, int* err)
687 {
688         emufs_tipo1_borrar_registro(efs, id);
689         return emufs_tipo1_grabar_registro(efs, data, size, err);
690 }
691
692 size_t emufs_tipo1_header_size(void)
693 {
694         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
695 }
696
697 int emufs_tipo1_header_jump(FILE* fp)
698 {
699         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
700                 PERR("No se pudo hacer fseek()");
701                 return EMUFS_ERROR_SEEK_FILE;
702         }
703         return EMUFS_OK;
704 }
705
706 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
707 {
708         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
709                 PERR("No se pudo hacer fseek()");
710                 return EMUFS_ERROR_SEEK_FILE;
711         }
712         return EMUFS_OK;
713 }
714
715 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
716                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
717 {
718         /* grabo cabecera del registro en el bloque */
719         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
720         /* incremento puntero de escritura */
721         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
722         /* grabo el registro en el bloque */
723         memcpy(dst, reg, reg_size);
724 }
725
726 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)
727 {
728         int err = 0;
729         (*actual) = emufs_tipo1_leer_bloque(efs, id, &err);
730         (*anterior) = emufs_tipo1_leer_bloque(efs, id-1, &err);
731         (*siguiente) = emufs_tipo1_leer_bloque(efs, id+1, &err);
732         (*size1) = (*size2) = (*size3) = efs->tam_bloque;
733 }