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