]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
bugfix.
[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 <unistd.h>
41 #include <sys/types.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                         /*actualizo el archivo de espacios libres*/
195                         /*tengo que buscar la cantidad de bloques que existen*/
196                         fseek(file, 0, SEEK_END); /* Me paro al final */
197                         cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
198                         cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
199                         num_bloque = cant;
200
201                         if (i == 0) {
202                                 /* Tengo que agregar el primer bloque en IDX */
203                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
204                                         free(bloque);
205                                         return -1;
206                                 }
207                         }
208
209                         /* grabo el nuevo registro en el archivo de espacios libres */
210                         if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
211                         if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
212                                 fclose(file);
213                                 free(bloque);
214                                 return -1;
215                         }
216                                 
217                 }
218                 fclose(file);
219         } else {
220                 /*tengo que buscar un ID valido para el nuevo registro*/
221                 ID_aux = emufs_idx_get_new_id(emu, err);
222                 for (i=0; i<cant_bloques; i++){
223                         /*cargo el bloque en "bloque"*/
224                         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
225                                 /* TODO Manejo de errores */
226                                 PERR("no se pudo leer el bloque");
227                                 return -1;
228                         }
229                         /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
230                         /*insertar el registro en el bloque*/
231                         /*grabo el id en el bloque*/
232                         /*veo el espacio libre que queda*/ 
233                         fs = emufs_fsc_get_fs(emu, num_bloque+i);
234                         if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
235                                 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
236                         else
237                                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
238                         /*grabo el registro en el bloque*/
239                         if ( cant_bloques == 1 ){
240                                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
241                         } else {
242                                 if ( cant_bloques-1 == i )
243                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
244                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
245                         }                               
246                         
247                         /*grabo el bloque en el archivo*/
248                         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
249                                 PERR("error al grabar bloque");
250                                 if (bloque) free(bloque);
251                                 return -1; /* se produjo un error */    
252                         }
253                         
254                         /*actualizo el archivo de espacios libres*/
255                         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){
256                                 resto = emu->tam_reg;
257                                 if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
258                                         fclose(file);
259                                         if (bloque) free(bloque);
260                                         return -1;
261                                 }
262                         } else {        
263                                 if ( cant_bloques-1 == i )
264                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
265                                 if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
266                                         fclose(file);
267                                         if (bloque) free(bloque);
268                                         return -1;
269                                 }
270                         }
271                         if ( i == 0 ){
272                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
273                                         if (bloque) free(bloque);
274                                         return -1;
275                                 }
276                         }
277                 }
278         }
279         if (bloque) free(bloque);
280         return ID_aux;
281 }
282
283 /*Graba un bloque en el archivo*/
284 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
285 {
286         FILE* file;
287         char name_f[255];
288         
289         strcpy(name_f,emu->nombre);
290         strcat(name_f,".dat");
291         
292         if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
293         /* Salto el header del archivo */
294         fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
295         fseek(file, num*emu->tam_bloque, SEEK_CUR);     
296         fwrite(ptr, emu->tam_bloque, 1, file);
297         
298         fclose(file);
299         return 0;
300 }
301
302 /*borra un registro de un bloque y acomoda los registros que quedan*/
303 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
304 {
305         EMUFS_BLOCK_SIZE num_bloque;
306         EMUFS_BLOCK_SIZE ptr_elim;
307         EMUFS_BLOCK_SIZE ptr_mov;
308         EMUFS_REG_ID ID_aux;
309         EMUFS_FREE fs;
310         char *bloque;
311         int err = 0, i;
312
313         num_bloque = emufs_idx_buscar_registro(emu, ID);
314         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
315                 /* TODO Manejo de errores */
316                 PERR("no se pudo leer el bloque");
317                 return -1;
318         }
319
320         /*apunto al registro que voy a eliminar*/
321         ptr_elim = 0;
322         while ( ptr_elim < emu->tam_bloque ){
323                 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
324                 if ( ID_aux == ID )
325                         break;
326                 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
327         }
328
329         /*apunto al registro que voy a mover*/
330         ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
331         
332         while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
333                 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
334                 /* Blanqueo el area que movi */
335                 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
336                 ptr_elim = ptr_mov;
337                 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
338         }
339
340         /*grabo el bloque en el archivo*/       
341         if ( emu->tam_bloque < emu->tam_reg ) 
342                 memset(bloque, 0, emu->tam_bloque);
343         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
344                 free(bloque);
345                 PERR("No se pudo grabar el bloque"); 
346                 return -1;
347         }
348
349         /*actualizo archivo .fsc*/
350         if ( emu->tam_bloque < emu->tam_reg ) {
351                 for (i=0; i<emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++)
352                         if (emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque)) {
353                                 PERR("no se pudo agregar fsc"); 
354                                 free(bloque);
355                                 return -1;
356                         }
357         } else { 
358                 fs = emufs_fsc_get_fs(emu, num_bloque);
359                 if (emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID))) {
360                         PERR("no se pudo agregar fsc"); 
361                         free(bloque);
362                         return -1;
363                 }
364         }
365         /*actualizo archivo .did*/
366         if (emufs_did_agregar(emu, ID)) {
367                 PERR("no se pudo agregar did"); 
368                 free(bloque);
369                 return -1;
370         }
371                 
372         /*actualizo archivo .idx*/
373         if (emufs_idx_borrar(emu, ID)) {
374                 PERR("no se pudo agregar idx"); 
375                 free(bloque);
376                 return -1;
377         }
378
379         free(bloque);
380         return 0;
381 }
382
383 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
384 {
385         FILE *f;
386         EMUFS_Estadisticas stats;
387         EMUFS_REG_ID *tmp;
388         char name_f[255];
389
390         memset(&stats,0,sizeof(EMUFS_Estadisticas));
391         strcpy(name_f,emu->nombre);
392         strcat(name_f,".dat");
393         if ( (f = fopen(name_f,"r")) == NULL){
394                         PERR("No se pudo abrir el archivo");
395                         return stats;   
396         }
397         
398         fseek(f,0,SEEK_END);
399         stats.tam_archivo_bytes = ftell(f);
400         stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
401                                                  emu->tam_bloque;
402         tmp = emufs_idx_get(emu, &stats.tam_archivo);
403         if (tmp) free(tmp);
404                 stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
405                                                 sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
406         /* Obtengo las stats de FSC */
407         stats.total_fs = emufs_fsc_get_total_fs(emu);
408         stats.media_fs = emufs_fsc_get_media_fs(emu);
409         emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
410
411         fclose(f);
412         return stats;   
413 }
414
415 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
416 {
417         emufs_tipo3_borrar_registro(emu, id);
418         return emufs_tipo3_grabar_registro(emu, data, size, error);
419 }
420
421 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
422 {
423         char* bloque, *tmp, *cur;
424         EMUFS_BLOCK_ID block;
425         EMUFS_REG_ID ID_aux;
426         EMUFS_BLOCK_SIZE iterador = 0;
427         int err, cant_bloques, i;
428         
429         bloque = NULL;
430         if (emu->tam_reg < emu->tam_bloque) {
431                 /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
432                 block = emufs_idx_buscar_registro(emu,ID);
433                 if ( block == EMUFS_NOT_FOUND ) {
434                         return NULL;
435                 }
436                 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
437                         return NULL;
438                 }
439                 
440                 ID_aux = -1;
441                 iterador = 0;
442         
443                 /* Busco el offset desde el comienzo desde donde arranca el registro
444                  * buscado, para luego resaltarlo en al GUI
445                  */
446                 while ( iterador < emu->tam_bloque ) {
447                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
448                         if ( ID_aux == ID ){
449                                 *pos = iterador; 
450                                 *size = emu->tam_bloque;
451                                 break;
452                         }
453                         iterador += sizeof(EMUFS_REG_ID);
454                         iterador += emu->tam_reg;
455                 }
456         } else {
457                 /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
458                 
459                 /* Busco el primer bloque */
460                 block = emufs_idx_buscar_registro(emu,ID);
461                 if ( block == EMUFS_NOT_FOUND ){
462                         return NULL;
463                 }
464                 cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1;
465                 *size = emu->tam_bloque*cant_bloques /*+ cant_bloques*2*/ - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
466                 bloque = (char *)malloc(*size);
467                 cur = bloque;
468                 *pos = 0; 
469
470                 /* El bloque 0 va completo */
471                 err = 0;
472                 if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
473                         /* Oops! ... un bloque no existe, todo mal! */
474                         free(bloque);
475                         return NULL;
476                 }
477                 memcpy(cur, tmp, emu->tam_bloque);
478                 cur += emu->tam_bloque;
479 /*              memcpy(cur, "<>", 2);
480                 cur += 2;*/
481                 free(tmp);
482                 
483                 /* En resto de los bloques no pongo el ID porque ya esta en el primero */
484                 for(i=1; i<cant_bloques; i++) {
485                         err = 0;
486                         if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
487                                 /* Oops! ... un bloque no existe, todo mal! */
488                                 free(bloque);
489                                 return NULL;
490                         }
491                         memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
492                         cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
493 /*                      memcpy(cur, "<>", 2);
494                         cur += 2;*/
495                         free(tmp);
496                 }
497                 (*cur) = '\0';
498         }
499         return bloque;
500 }
501
502 void emufs_tipo3_compactar(EMUFS *emu)
503 {
504         EMUFS_REG_ID *tmp, max_id;
505         EMUFS_BLOCK_ID block_id;
506         EMUFS_REG_SIZE size;
507         EMUFS_FREE fs;
508         char name[255];
509         char *reg;
510         int err=0, ID_aux, i;
511         
512         strcpy(name, emu->nombre);
513         strcat(name, ".dat");
514         
515         /* si el bloque es mas chico que el registro no hace falta compactar */
516         /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return;     */
517
518         tmp = emufs_idx_get(emu, &max_id);
519         if (tmp) free(tmp);
520         for( i=0; i<=max_id; i++){
521                 /* si el id no existe paso al siguiente*/
522                 if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
523                 reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
524                 if (err){
525                         PERR("No se pudo leer el registro");
526                         return;
527                 }
528                 emufs_tipo3_borrar_registro(emu, i);
529                 ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
530                 free(reg);
531         }
532         /*tengo que truncar el archivo*/
533         /*bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
534         */
535         block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs);
536         size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque;
537         if (truncate(name, size)!=0)
538                 PERR("NO TRUNQUE NADA");
539         /*hay que truncar el fsc!!!*/
540         if(emu->tam_bloque<emu->tam_reg-sizeof(EMUFS_REG_ID)) block_id = block_id/2;
541         if (emufs_fsc_truncate(emu, block_id)!= 0)
542                 PERR("NO TURNQUE EL FSC");
543 }
544
545 void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente,
546                                                                  EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3)
547 {
548         int err;
549         (*actual) = emufs_tipo3_leer_bloque(efs, id, &err);
550         (*anterior) = emufs_tipo3_leer_bloque(efs, id-1, &err);
551         (*siguiente) = emufs_tipo3_leer_bloque(efs, id+1, &err);
552         if (!(*anterior)) {
553                 (*anterior) = (char *)malloc(efs->tam_bloque);
554                 memset(*anterior, 0, efs->tam_bloque);          
555         }       
556         if (!(*siguiente)) {
557                 (*siguiente) = (char *)malloc(efs->tam_bloque);
558                 memset(*siguiente, 0, efs->tam_bloque);         
559         }
560         (*size1) = (*size2) = (*size3) = efs->tam_bloque;
561 }