]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
Ya casi lo tenemo al muchacho insertar...
[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         if (efs->indices != NULL) {
380                 dato = efs->indices->existe_entrada(efs->indices, k);
381                 block_id = dato.bloque; /*emufs_idx_buscar_registro(emu, ID);*/
382                 reg_id = dato.id;
383         } else {
384                 reg_id = k.i_clave;
385                 block_id = emufs_idx_buscar_registro(efs, reg_id);
386                 if (block_id == EMUFS_NOT_FOUND) {
387                         PERR("Registro no encontrado");
388                         return EMUFS_NOT_FOUND;
389                 }
390         }
391
392         if (reg_id == -1) return EMUFS_NOT_FOUND;
393
394         if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
395                 PERR("no se pudo reservar memoria");
396                 return err;
397         }
398
399         /* Busco secuencialmente en el bloque el registro a leer */
400         offset = 0;
401         do {
402                 /* Copio la cabecera del registro actual. */
403                 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
404                 if (curr_reg_header.id == reg_id) {
405                         /* identificador del bloque actual */
406                         EMUFS_BLOCK_ID curr_block_id = block_id;
407                         /* tamaño máximo ultilizable para datos en un bloque */
408                         EMUFS_BLOCK_SIZE block_space
409                                         = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
410                         /* cantidad de espacio libre original del ultimo bloque */
411                         EMUFS_FREE orig_fs; 
412
413                         while (1) {
414                                 EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
415                                 orig_fs = emufs_fsc_get_fs(efs, curr_block_id);
416                                 /* actualizo archivo de espacio libre por bloque */
417                                 fs = orig_fs + MIN(curr_reg_header.size, block_space)
418                                         + sizeof(EMUFS_TIPO1_REG_HEADER);
419                                 if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
420                                         PERR("no se pudo actualizar .fsc");
421                                         free(block);
422                                         return err;
423                                 }
424                                 /* falta liberar un bloque (o porción) */
425                                 if (curr_reg_header.size > block_space) {
426                                         free(block);
427                                         if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
428                                                                         ++curr_block_id, &err))) {
429                                                 PERR("no se pudo leer el bloque");
430                                                 return err;
431                                         }
432                                         /* copio la cabecera del primer registro (si ocupa más de un
433                                          * registro está en bloques contiguos) */
434                                         memcpy(&curr_reg_header, block,
435                                                         sizeof(EMUFS_TIPO1_REG_HEADER));
436                                 } else { /* se terminó de leer */
437                                         break;
438                                 }
439                         }
440
441                         /* actualizo archivo de identificadores de registros borrados */
442                         if ((err = emufs_did_agregar(efs, reg_id))) {
443                                 PERR("no se pudo actualizar .did");
444                                 free(block);
445                                 return err;
446                         }
447                         /*actualizo archivo .idx*/
448                         if ((err = emufs_idx_borrar(efs, reg_id))) {
449                                 PERR("no se pudo actualizar .did");
450                                 free(block);
451                                 return err;
452                         }
453
454                         /* desplazo registros a izquierda */
455                         {   /* offset del fin del registro a borrar */
456                                 EMUFS_BLOCK_SIZE offset_reg_end = offset
457                                         + sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
458                                 /* si es necesario desplazar */
459                                 if (offset < offset_reg_end) {
460                                         /* muevo la porción de bloque a izquierda */
461                                         /* XXX Este memcpy() puede copiar regiones de memoria que
462                                          * se superponen, si copia de principio a fin y byte a byte
463                                          * no debería haber problema */
464                                         memcpy(block + offset, block + offset_reg_end,
465                                                 efs->tam_bloque - offset_reg_end);
466                                         /* rellena el espacio libre con ceros para la GUI */
467                                         memset(block + efs->tam_bloque - offset_reg_end - orig_fs + offset,
468                                                         0, offset_reg_end + orig_fs - offset);
469                                 }
470                         }
471                         /* guardo el bloque en disco (actualizando espacio libre) */
472                         emufs_tipo1_grabar_bloque_fsc(efs, block, curr_block_id,
473                                         EMUFS_NOT_FOUND, &err);
474                         if (err) {
475                                 PERR("no se pudo grabar bloque en disco");
476                                 free(block);
477                                 return err;
478                         }
479
480                         break; /* salgo del loop, ya terminé lo que tenía que hacer */
481                 }
482                 /* desplazo el offset */
483                 offset += sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
484
485         /* esto no debería ser nunca false porque sé positivamente que el */
486         } while (offset < efs->tam_bloque); /* registro está en el bloque */
487
488         free(block);
489         return EMUFS_OK;
490 }
491
492 /* \bug Si hay registros multibloque, no se calcula bien el
493  *         stats.tam_info_control_dat.
494  */
495 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
496 {
497         int err = 0;
498         EMUFS_Estadisticas stats;
499         memset(&stats, 0, sizeof(EMUFS_Estadisticas));
500
501         { /* obtengo tamaño del archivo en bytes */
502                 char name_f[255];
503                 strcpy(name_f, efs->nombre);
504                 strcat(name_f, ".dat");
505                 stats.tam_archivo = emufs_common_get_file_size(name_f, &err);
506                 if (err) {
507                         PERR("no se pudo obtener el tamaño del archivo");
508                         return stats;
509                 }
510         }
511
512         /* obtengo cantidad de bloques en el archivo */
513         stats.cant_bloques = (stats.tam_archivo - emufs_tipo1_header_size())
514                         / efs->tam_bloque;
515
516         /* obtengo la cantidad de registros en el archivo */
517         {
518                 EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.cant_registros);
519                 if (tmp) free(tmp); /* libera memoria innecesaria */
520         }
521
522         /* obtengo información de control que guarda el archivo .dat */
523         stats.tam_info_control_dat = emufs_tipo1_header_size() /* cabecera del archivo */
524                         /* mas las cabeceras de todos los registros */
525                         + stats.cant_registros * sizeof(EMUFS_TIPO1_REG_HEADER);
526
527         /* obtengo las estadísticas del archivo de espacio libre por bloque */
528         stats.total_fs = emufs_fsc_get_total_fs(efs);
529         stats.media_fs = emufs_fsc_get_media_fs(efs);
530         emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
531         
532         /* obtengo informacion de control guardada por los archivos auxiliares */
533         stats.tam_archivos_aux = emufs_idx_get_file_size(efs, &err)
534                 + emufs_fsc_get_file_size(efs, &err)
535                 + emufs_did_get_file_size(efs, &err);
536         if (err) {
537                 PERR("error al obtener tamaño de alguno de los archivos auxiliares");
538                 return stats;
539         }       
540
541         return stats;   
542 }
543
544 void emufs_tipo1_compactar(EMUFS* efs)
545 {
546 #ifdef ARREGLAR
547         EMUFS_BLOCK_SIZE block_space /* tamaño para datos de un bloque */
548                 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
549         EMUFS_REG_ID total_ids; /* cantidad total de registros en el array */
550         /* array con los identificadores de los registros */
551         EMUFS_REG_ID* reg_ids = emufs_idx_get(efs, &total_ids);
552         int i; /* índice de elemento actual del array */
553
554         /* recorro cada registro válido del archivo */
555         for (i = 0; i < total_ids; ++i) {
556                 EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
557                 char* reg; /* buffer para el registro a mover */
558                 int err = 0; /* para almacenar código de error */
559                 /* bloque al que pertenece el registro */
560                 EMUFS_BLOCK_ID block_id = emufs_idx_buscar_registro(efs, reg_ids[i]);
561
562                 /* obtengo identificador del registro actual */
563                 header.id = reg_ids[i];
564                 /* si el registro está borrado, continúo con el próximo */
565                 if (block_id == EMUFS_NOT_FOUND) {
566                         continue;
567                 }
568                 /* leo el registro */
569                 reg = (char*) efs->leer_registro(efs, header.id, &header.size, &err);
570                 if (err) {
571                         PERR("error al leer registro");
572                         return;
573                 }
574                 /* borro el registro */
575                 if ((err = efs->borrar_registro(efs, header.id))) {
576                         PERR("error al borrar registro");
577                         free(reg);
578                         return;
579                 }
580                 /* lo inserto en la nueva posición */
581                 emufs_tipo1_grabar_registro(efs, reg, header.size, &err);
582                 if (err) {
583                         PERR("error al grabar registro");
584                         free(reg);
585                         return;
586                 }
587                 free(reg);
588         }
589         free(reg_ids); /* libero lista de ids */
590
591         /* truncamos el archivo si hay bloques libres al final */
592         {
593                 EMUFS_FREE fs; /* espacio libre en el bloque */
594                 /* busco si hay algún bloque completo libre */
595                 EMUFS_BLOCK_ID block_id = emufs_fsc_buscar_lugar(efs, block_space, &fs);
596                 /* si hay, el resto del archivo tiene que estar vacío */
597                 if (block_id != EMUFS_NOT_FOUND) {
598                         long size = emufs_tipo1_header_size() /* cabecera del archivo */
599                                 + block_id * efs->tam_bloque; /* mas los bloques compactos */
600                         char filename[255];
601
602                         /* trunca archivo de datos */
603                         strcpy(filename, efs->nombre);
604                         strcat(filename, ".dat");
605                         truncate(filename, size);
606                         /* trunca archivo de de espacio libre */
607                         emufs_fsc_truncate(efs, block_id);
608                 }
609         }
610 #endif
611 }
612
613 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
614                 EMUFS_BLOCK_ID block_id, EMUFS_FREE fs, int* err)
615 {
616         FILE* file;
617         char name_f[255];
618         EMUFS_BLOCK_SIZE num_blocks;
619
620         /* obtengo nombre del archivo */
621         strcpy(name_f, efs->nombre);
622         strcat(name_f,".dat");
623
624         /* obtengo cantidad de bloques */
625         num_blocks =
626                 (emufs_common_get_file_size(name_f, err) - emufs_tipo1_header_size())
627                 / efs->tam_bloque;
628         if (*err) {
629                 PERR("Error al obtener tamaño del archivo.");
630                 return EMUFS_NOT_FOUND;
631         }
632
633         /* abre archivo */
634         strcpy(name_f,efs->nombre);
635         strcat(name_f,".dat");
636         if ((file = fopen(name_f, "r+b")) == NULL) {
637                 PERR("Error al abrir archivo");
638                 *err = EMUFS_ERROR_CANT_OPEN_FILE;
639                 return EMUFS_NOT_FOUND;
640         }
641         /* Si es NOT_FOUND o mayor a la cantidad de bloques presentes,
642          * tengo que agregar un bloque al final del archivo */
643         if ((block_id == EMUFS_NOT_FOUND) || (block_id >= num_blocks)) {
644                 /* me paro al final del archivo */
645                 if (fseek(file, 0l, SEEK_END)) {
646                         PERR("No se pudo hacer fseek()");
647                         fclose(file);
648                         *err = EMUFS_ERROR_SEEK_FILE;
649                         return EMUFS_NOT_FOUND;
650                 }
651                 /* Obtengo ID del bloque nuevo */
652                 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
653                 /* si me lo solicitan, actualizo el .fsc */
654                 if (fs != EMUFS_NOT_FOUND) {
655                         *err = emufs_fsc_agregar(efs, block_id, fs);
656                         if (*err) {
657                                 PERR("No se pudo agregar al .fsc");
658                                 fclose(file);
659                                 return EMUFS_NOT_FOUND;
660                         }
661                 }
662         /* Si es un ID válido, salto hasta ese bloque. */
663         } else {
664                 /* Salta el header del archivo */
665                 if ((*err = emufs_tipo1_header_jump(file))) {
666                         PERR("no se pudo saltar la cabecera del archivo");
667                         fclose(file);
668                         return EMUFS_NOT_FOUND;
669                 }
670                 /* Salta bloques */
671                 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
672                         PERR("no se pudo saltar la cabecera del bloque");
673                         fclose(file);
674                         return EMUFS_NOT_FOUND;
675                 }
676                 /* si me lo solicitan, actualizo el .fsc */
677                 if (fs != EMUFS_NOT_FOUND) {
678                         if ((*err = emufs_fsc_actualizar(efs, block_id, fs))) {
679                                 PERR("no se pudo actualizar .fsc");
680                                 fclose(file);
681                                 return EMUFS_NOT_FOUND;
682                         }
683                 }
684         }
685         /* Grabo el bloque */
686         if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
687                 PERR("No se pudo escribir el archivo");
688                 fclose(file);
689                 *err = EMUFS_ERROR_WRITE_FILE;
690                 return EMUFS_NOT_FOUND;
691         }
692
693         fclose(file);
694         return block_id;
695 }
696
697 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS* efs, CLAVE k,
698                 void *data, EMUFS_REG_SIZE size, int* err)
699 {
700         emufs_tipo1_borrar_registro(efs, k);
701         return emufs_tipo1_grabar_registro(efs, data, size, err);
702 }
703
704 size_t emufs_tipo1_header_size(void)
705 {
706         return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
707 }
708
709 int emufs_tipo1_header_jump(FILE* fp)
710 {
711         if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
712                 PERR("No se pudo hacer fseek()");
713                 return EMUFS_ERROR_SEEK_FILE;
714         }
715         return EMUFS_OK;
716 }
717
718 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
719 {
720         if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
721                 PERR("No se pudo hacer fseek()");
722                 return EMUFS_ERROR_SEEK_FILE;
723         }
724         return EMUFS_OK;
725 }
726
727 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
728                 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
729 {
730         /* grabo cabecera del registro en el bloque */
731         memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
732         /* incremento puntero de escritura */
733         dst += sizeof(EMUFS_TIPO1_REG_HEADER);
734         /* grabo el registro en el bloque */
735         memcpy(dst, reg, reg_size);
736 }
737
738 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)
739 {
740         int err = 0;
741         (*actual) = emufs_tipo1_leer_bloque(efs, id, &err);
742         (*anterior) = emufs_tipo1_leer_bloque(efs, id-1, &err);
743         (*siguiente) = emufs_tipo1_leer_bloque(efs, id+1, &err);
744         (*size1) = (*size2) = (*size3) = efs->tam_bloque;
745 }