]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
* Se agregan compactar facturas y notas (notas no estoy seguro de tener
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
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:  mié mar 31 17:26:46 ART 2004
22  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id$
26  *
27  */
28
29 /** \file
30  *
31  * Archivo con bloques y registros de longitud parametrizada.
32  * 
33  * Implementación del archivo con bloques y registros de longitud
34  * parametrizada.
35  *
36  */
37
38 #include "tipo3.h"
39
40 /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
41 void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
42                 EMUFS_REG_SIZE* reg_size, int* err)
43 {
44         char* bloque;
45         char* registro; /* registro a leer */
46         EMUFS_BLOCK_ID block;
47         EMUFS_REG_ID ID_aux;
48         EMUFS_BLOCK_SIZE iterador = 0;
49         int cant_bloques = 0, resto, i, copiado=0;
50         
51         cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
52         
53         /*si existe, lo busco en el archivo de bloques*/
54         block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
55         if ( block == EMUFS_NOT_FOUND ){
56                 PERR("No se encontro el bloque");
57                 *err = -1;
58                 return NULL;
59         }
60         
61         registro = (char*) malloc(emu->tam_reg);
62         if (registro == NULL) {
63                 /* TODO Manejo de errores */
64                 free(bloque);
65                 PERR("No hay memoria");
66                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
67                 return NULL;
68         }
69
70         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
71         for (i=0; i<cant_bloques; i++){
72                 if ((bloque = emufs_tipo3_leer_bloque(emu, block+i, err)) == NULL) {
73                         /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
74                          * emufs_tipo3_leer_bloque() */
75                         PERR("no se pudo leer el bloque");
76                         return NULL; /*No se pudo leer el bloque*/
77                 }
78                 ID_aux = -1;
79                 iterador = 0;
80                 while ( iterador < emu->tam_bloque ) {
81                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
82                         iterador += sizeof(EMUFS_REG_ID);
83                         if ( ID_aux == ID ){
84                                 if ( cant_bloques == 0 )
85                                         memcpy(registro,bloque+iterador,emu->tam_reg);
86                                 else {
87                                         if ( cant_bloques-1 == i ) 
88                                                 resto = emu->tam_reg - copiado;
89                                         memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto);
90                                         copiado += resto;
91                                         break;
92                                 }
93                                 *reg_size = emu->tam_reg;
94                         }
95                         iterador += emu->tam_reg;
96                 }
97                 free(bloque);
98         }
99         
100         return registro;
101 }
102
103 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
104 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err)
105 {
106         FILE* file;
107         char* block; /* bloque leido (en donde está el registro a leer) */
108         char name_f[255];
109         
110         strcpy(name_f,emu->nombre);
111         strcat(name_f,".dat");
112         
113         if ((file = fopen(name_f, "r")) == NULL) {
114                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
115                 return NULL; /* FIXME ERROR */
116         }
117         fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
118         /*FIXME: verificar que no se pase de fin de archivo*/
119         fseek(file,ID*emu->tam_bloque,SEEK_CUR);
120         block = (char*) malloc(emu->tam_bloque);
121         if (block == NULL) {
122                 /* TODO Manejo de errores */
123                 PERR("No hay memoria");
124                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
125                 return NULL;
126         }
127         if (fread(block, emu->tam_bloque, 1, file) != 1) {
128                 /* TODO Manejo de errores */
129                 free(block);
130                 PERR("Error al leer bloque");
131                 *err = 3; /* EMUFS_ERROR_FILE_READ */
132                 return NULL;
133         }
134
135         fclose(file);
136         return block;
137 }
138
139 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
140 {
141         EMUFS_REG_ID ID_aux;
142         EMUFS_FREE fs;
143         EMUFS_BLOCK_ID num_bloque;
144         EMUFS_BLOCK_SIZE cant;
145         FILE *file;
146         char name_f[255];
147         char* bloque;
148         int cant_bloques, resto, i=0, lugar;
149         
150         strcpy(name_f,emu->nombre);
151         strcat(name_f,".dat");
152         
153         cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
154         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
155         lugar = emu->tam_reg - sizeof(EMUFS_REG_ID);
156         if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) )
157                 lugar = emu->tam_bloque;
158         /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
159         num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs);
160         /*si no hay bloques con suficiente espacio creo un bloque nuevo */
161         if (num_bloque == -1) {
162                 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
163                 /*tengo que buscar un ID valido para el nuevo registro*/
164                 ID_aux = emufs_idx_get_new_id(emu, err);
165                 /* El free esta al final de la funcion! */
166                 bloque = (char*)malloc(emu->tam_bloque);
167                 for (i=0; i<cant_bloques; i++) {
168                         /*crear un nuevo bloque en memoria */
169                         memset(bloque, 0, emu->tam_bloque);
170                         /* grabar el registro al principio del bloque */
171                         /*grabo el id en el bloque*/
172                         memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
173                         /*grabo el registro en el bloque*/
174                         if ( cant_bloques == 1 ){
175                                 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
176                         } else {
177                                 if ( cant_bloques-1 == i )
178                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
179                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
180                         }
181                         /* me paro al final del archivo */
182                         fseek(file, 0, SEEK_END);
183                         /* grabo el bloque en el final del archivo */
184                         fwrite(bloque,emu->tam_bloque,1,file);
185                         /*actualizo el archivo de espacios libres*/
186                         /*tengo que buscar la cantidad de bloques que existen*/
187                         fseek(file, 0, SEEK_END); /* Me paro al final */
188                         cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
189                         cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
190                         num_bloque = cant;
191
192                         if (i == 0) {
193                                 /* Tengo que agregar el primer bloque en IDX */
194                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
195                                         free(bloque);
196                                         return -1;
197                                 }
198                         }
199
200                         /* grabo el nuevo registro en el archivo de espacios libres */
201                         if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
202                         if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
203                                 fclose(file);
204                                 free(bloque);
205                                 return -1;
206                         }
207                                 
208                 }
209                 fclose(file);
210         } else {
211                 /*tengo que buscar un ID valido para el nuevo registro*/
212                 ID_aux = emufs_idx_get_new_id(emu, err);
213                 for (i=0; i<cant_bloques; i++){
214                         /*cargo el bloque en "bloque"*/
215                         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
216                                 /* TODO Manejo de errores */
217                                 PERR("no se pudo leer el bloque");
218                                 return -1;
219                         }
220                         /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
221                         /*insertar el registro en el bloque*/
222                         /*grabo el id en el bloque*/
223                         /*veo el espacio libre que queda*/ 
224                         fs = emufs_fsc_get_fs(emu, num_bloque+i);
225                         if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
226                                 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
227                         else
228                                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
229                         /*grabo el registro en el bloque*/
230                         if ( cant_bloques == 1 ){
231                                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
232                         } else {
233                                 if ( cant_bloques-1 == i )
234                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
235                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
236                         }                               
237                         
238                         /*grabo el bloque en el archivo*/
239                         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
240                                 PERR("error al grabar bloque");
241                                 return -1; /* se produjo un error */    
242                         }
243                         
244                         /*actualizo el archivo de espacios libres*/
245                         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){
246                                 resto = emu->tam_reg;
247                                 if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
248                                         fclose(file);
249                                         if (bloque != NULL) free(bloque);
250                                         return -1;
251                                 }
252                         } else {        
253                                 if ( cant_bloques-1 == i )
254                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
255                                 if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
256                                         fclose(file);
257                                         if (bloque != NULL) free(bloque);
258                                         return -1;
259                                 }
260                         }
261                         if ( i == 0 ){
262                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
263                                         if (bloque != NULL) free(bloque);
264                                         return -1;
265                                 }
266                         }
267                 }
268         }
269         free(bloque);
270         return ID_aux;
271 }
272
273 /*Graba un bloque en el archivo*/
274 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
275 {
276         FILE* file;
277         char name_f[255];
278         
279         strcpy(name_f,emu->nombre);
280         strcat(name_f,".dat");
281         
282         if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
283         /* Salto el header del archivo */
284         fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
285         fseek(file, num*emu->tam_bloque, SEEK_CUR);     
286         fwrite(ptr, emu->tam_bloque, 1, file);
287         
288         fclose(file);
289         return 0;
290 }
291
292 /*borra un registro de un bloque y acomoda los registros que quedan*/
293 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
294 {
295         EMUFS_BLOCK_SIZE num_bloque;
296         EMUFS_BLOCK_SIZE ptr_elim;
297         EMUFS_BLOCK_SIZE ptr_mov;
298         EMUFS_REG_ID ID_aux;
299         EMUFS_FREE fs;
300         char *bloque;
301         int err = 0, i;
302
303         num_bloque = emufs_idx_buscar_registro(emu, ID);
304         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
305                 /* TODO Manejo de errores */
306                 PERR("no se pudo leer el bloque");
307                 return -1;
308         }
309
310         /*apunto al registro que voy a eliminar*/
311         ptr_elim = 0;
312         while ( ptr_elim < emu->tam_bloque ){
313                 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
314                 if ( ID_aux == ID )
315                         break;
316                 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
317         }
318
319         /*apunto al registro que voy a mover*/
320         ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
321         
322         while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
323                 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
324                 /* Blanqueo el area que movi */
325                 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
326                 ptr_elim = ptr_mov;
327                 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
328         }
329
330         /*grabo el bloque en el archivo*/       
331         if ( emu->tam_bloque < emu->tam_reg ) 
332                 memset(bloque, 0, emu->tam_bloque);
333         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
334                 free(bloque);
335                 PERR("No se pudo grabar el bloque"); 
336                 return -1;
337         }
338
339         /*actualizo archivo .fsc*/
340         if ( emu->tam_bloque < emu->tam_reg ) {
341                 for (i=0; i<emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++)
342                         if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque) != 0 ) return -1;
343         } else { 
344                 fs = emufs_fsc_get_fs(emu, num_bloque);
345                 if ( emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
346         }
347         /*actualizo archivo .did*/
348         if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
349                 
350         /*actualizo archivo .idx*/
351         if ( emufs_idx_borrar(emu, ID) != 0 ) return -1; 
352
353         free(bloque);
354         return 0;
355 }
356
357 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
358 {
359         FILE *f;
360         EMUFS_Estadisticas stats;
361         EMUFS_REG_ID *tmp;
362         char name_f[255];
363
364         memset(&stats,0,sizeof(EMUFS_Estadisticas));
365         strcpy(name_f,emu->nombre);
366         strcat(name_f,".dat");
367         if ( (f = fopen(name_f,"r")) == NULL){
368                         PERR("No se pudo abrir el archivo");
369                         return stats;   
370         }
371         
372         fseek(f,0,SEEK_END);
373         stats.tam_archivo_bytes = ftell(f);
374         stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
375                                                  emu->tam_bloque;
376         tmp = emufs_idx_get(emu, &stats.tam_archivo);
377         if (tmp) free(tmp);
378                 stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
379                                                 sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
380         /* Obtengo las stats de FSC */
381         stats.total_fs = emufs_fsc_get_total_fs(emu);
382         stats.media_fs = emufs_fsc_get_media_fs(emu);
383         emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
384
385         fclose(f);
386         return stats;   
387 }
388
389 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
390 {
391         emufs_tipo3_borrar_registro(emu, id);
392         return emufs_tipo3_grabar_registro(emu, data, size, error);
393 }
394
395 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
396 {
397         char* bloque, *tmp, *cur;
398         EMUFS_BLOCK_ID block;
399         EMUFS_REG_ID ID_aux;
400         EMUFS_BLOCK_SIZE iterador = 0;
401         int err, cant_bloques, i;
402         
403         bloque = NULL;
404         if (emu->tam_reg < emu->tam_bloque) {
405                 /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
406                 block = emufs_idx_buscar_registro(emu,ID);
407                 if ( block == EMUFS_NOT_FOUND ) {
408                         return NULL;
409                 }
410                 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
411                         return NULL;
412                 }
413                 
414                 ID_aux = -1;
415                 iterador = 0;
416         
417                 /* Busco el offset desde el comienzo desde donde arranca el registro
418                  * buscado, para luego resaltarlo en al GUI
419                  */
420                 while ( iterador < emu->tam_bloque ) {
421                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
422                         if ( ID_aux == ID ){
423                                 *pos = iterador; 
424                                 *size = emu->tam_bloque;
425                                 break;
426                         }
427                         iterador += sizeof(EMUFS_REG_ID);
428                         iterador += emu->tam_reg;
429                 }
430         } else {
431                 /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
432                 
433                 /* Busco el primer bloque */
434                 block = emufs_idx_buscar_registro(emu,ID);
435                 if ( block == EMUFS_NOT_FOUND ){
436                         return NULL;
437                 }
438                 cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1;
439                 *size = emu->tam_bloque*cant_bloques + cant_bloques*2 - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
440                 bloque = (char *)malloc(*size);
441                 cur = bloque;
442                 *pos = 0; 
443
444                 /* El bloque 0 va completo */
445                 err = 0;
446                 if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
447                         /* Oops! ... un bloque no existe, todo mal! */
448                         free(bloque);
449                         return NULL;
450                 }
451                 memcpy(cur, tmp, emu->tam_bloque);
452                 cur += emu->tam_bloque;
453                 memcpy(cur, "<>", 2);
454                 cur += 2;
455                 free(tmp);
456                 
457                 /* En resto de los bloques no pongo el ID porque ya esta en el primero */
458                 for(i=1; i<cant_bloques; i++) {
459                         err = 0;
460                         if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
461                                 /* Oops! ... un bloque no existe, todo mal! */
462                                 free(bloque);
463                                 return NULL;
464                         }
465                         memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
466                         cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
467                         memcpy(cur, "<>", 2);
468                         cur += 2;
469                         free(tmp);
470                 }
471                 (*cur) = '\0';
472         }
473         return bloque;
474 }
475
476 void emufs_tipo3_compactar(EMUFS *emu)
477 {
478         FILE *f;
479         EMUFS_REG_ID *tmp, max_id;
480         EMUFS_REG_SIZE size;
481         EMUFS_Estadisticas s;
482         char name[255];
483         char *reg;
484         int err=0, ID_aux, cant_bloques, i, bloques_vacios=0;
485         
486         /* si el bloque es mas chico que el registro no hace falta compactar */
487         /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return;     */
488                 
489         strcpy(name,emu->nombre);
490         strcat(name,".dat");
491
492         if ( (f=fopen(name,"r") == NULL) ){
493                 PERR("No se pudo abrir el archivo");
494                 return;
495         }
496         s = emufs_tipo3_leer_estadisticas(emu);
497         cant_bloques = s.cant_bloques;
498
499         /* si solo hay un bloque no hace falta compactar */
500         if ( cant_bloques == 0 ){
501                 fclose(f);
502                 return;
503         }
504         tmp = emufs_idx_get(emu, &max_id);
505         if (tmp) free(tmp);
506         for( i=0; i<=max_id; i++){
507                 /* si el id no existe paso al siguiente*/
508                 if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
509                 reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
510                 if (err){
511                         PERR("No se pudo leer el registro");
512                         fclose(f);
513                         return;
514                 }
515                 emufs_tipo3_borrar_registro(emu, i);
516                 ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
517                 i++;
518         }
519         /*tengo que truncar el archivo*/
520         bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
521         truncate(name, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+emu->tam_bloque*(cant_bloques-bloques_vacios));
522         /*fclose(f);  problemas con el fclose FIXME!!!*/
523         free(reg);
524 }