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