]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
23df2f96a0230dabefd604a365856a0e342b7d43
[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_BLOCK_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                 PERR("No se pudo abrir el archivo de datos");
115                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
116                 return NULL; /* FIXME ERROR */
117         }
118         fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
119         /*FIXME: verificar que no se pase de fin de archivo*/
120         if (fseek(file,ID*emu->tam_bloque,SEEK_CUR) != 0){
121                 PERR("Fallo la busqueda del bloque");
122                 *err=3;
123                 return NULL;
124         }
125         
126         block = (char*) malloc(emu->tam_bloque);
127         if (block == NULL) {
128                 /* TODO Manejo de errores */
129                 PERR("No hay memoria");
130                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
131                 return NULL;
132         }
133         if (fread(block, emu->tam_bloque, 1, file) != 1) {
134                 /* TODO Manejo de errores */
135                 free(block);
136                 PERR("Error al leer bloque");
137                 *err = 3; /* EMUFS_ERROR_FILE_READ */
138                 return NULL;
139         }
140
141         fclose(file);
142         return block;
143 }
144
145 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
146 {
147         EMUFS_REG_ID ID_aux;
148         EMUFS_FREE fs;
149         EMUFS_BLOCK_ID num_bloque;
150         EMUFS_BLOCK_SIZE cant;
151         FILE *file;
152         char name_f[255];
153         char* bloque;
154         int cant_bloques, resto, i=0, lugar;
155         
156         strcpy(name_f,emu->nombre);
157         strcat(name_f,".dat");
158         
159         cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
160         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
161         lugar = emu->tam_reg + sizeof(EMUFS_REG_ID);
162         if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) )
163                 lugar = emu->tam_bloque;
164         /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
165         num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs);
166         printf("lugar encontrado en %d\n", num_bloque);
167         /*si no hay bloques con suficiente espacio creo un bloque nuevo */
168         if (num_bloque == -1) {
169                 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
170                 /*tengo que buscar un ID valido para el nuevo registro*/
171                 ID_aux = emufs_idx_get_new_id(emu, err);
172                 /* El free esta al final de la funcion! */
173                 bloque = (char*)malloc(emu->tam_bloque);
174                 for (i=0; i<cant_bloques; i++) {
175                         /*crear un nuevo bloque en memoria */
176                         memset(bloque, 0, emu->tam_bloque);
177                         /* grabar el registro al principio del bloque */
178                         /*grabo el id en el bloque*/
179                         memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
180                         /*grabo el registro en el bloque*/
181                         if ( cant_bloques == 1 ){
182                                 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
183                         } else {
184                                 if ( cant_bloques-1 == i )
185                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
186                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
187                         }
188                         /* me paro al final del archivo */
189                         fseek(file, 0, SEEK_END);
190                         /* grabo el bloque en el final del archivo */
191                         fwrite(bloque,emu->tam_bloque,1,file);
192                         /*actualizo el archivo de espacios libres*/
193                         /*tengo que buscar la cantidad de bloques que existen*/
194                         fseek(file, 0, SEEK_END); /* Me paro al final */
195                         cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
196                         cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
197                         num_bloque = cant;
198
199                         if (i == 0) {
200                                 /* Tengo que agregar el primer bloque en IDX */
201                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
202                                         free(bloque);
203                                         return -1;
204                                 }
205                         }
206
207                         /* grabo el nuevo registro en el archivo de espacios libres */
208                         if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
209                         if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
210                                 fclose(file);
211                                 free(bloque);
212                                 return -1;
213                         }
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                                 printf("bloque: %d  i= %d\n", num_bloque, i);
226                                 return -1;
227                         }
228                         /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
229                         /*insertar el registro en el bloque*/
230                         /*grabo el id en el bloque*/
231                         /*veo el espacio libre que queda*/ 
232                         fs = emufs_fsc_get_fs(emu, num_bloque+i);
233                         if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
234                                 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
235                         else
236                                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
237                         /*grabo el registro en el bloque*/
238                         if ( cant_bloques == 1 ){
239                                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
240                         } else {
241                                 if ( cant_bloques-1 == i )
242                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
243                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
244                         }                               
245                         
246                         /*grabo el bloque en el archivo*/
247                         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
248                                 PERR("error al grabar 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 != NULL) 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 != NULL) 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 != NULL) free(bloque);
272                                         return -1;
273                                 }
274                         }
275                 }
276         }
277         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) != 0 ) return -1;
351         } else { 
352                 fs = emufs_fsc_get_fs(emu, num_bloque);
353                 if ( emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
354         }
355         /*actualizo archivo .did*/
356         if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
357                 
358         /*actualizo archivo .idx*/
359         if ( emufs_idx_borrar(emu, ID) != 0 ) return -1; 
360
361         free(bloque);
362         return 0;
363 }
364
365 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
366 {
367         FILE *f;
368         EMUFS_Estadisticas stats;
369         EMUFS_REG_ID *tmp;
370         char name_f[255];
371
372         memset(&stats,0,sizeof(EMUFS_Estadisticas));
373         strcpy(name_f,emu->nombre);
374         strcat(name_f,".dat");
375         if ( (f = fopen(name_f,"r")) == NULL){
376                         PERR("No se pudo abrir el archivo");
377                         return stats;   
378         }
379         
380         fseek(f,0,SEEK_END);
381         stats.tam_archivo_bytes = ftell(f);
382         stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
383                                                  emu->tam_bloque;
384         tmp = emufs_idx_get(emu, &stats.tam_archivo);
385         if (tmp) free(tmp);
386                 stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
387                                                 sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
388         /* Obtengo las stats de FSC */
389         stats.total_fs = emufs_fsc_get_total_fs(emu);
390         stats.media_fs = emufs_fsc_get_media_fs(emu);
391         emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
392
393         fclose(f);
394         return stats;   
395 }
396
397 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
398 {
399         emufs_tipo3_borrar_registro(emu, id);
400         return emufs_tipo3_grabar_registro(emu, data, size, error);
401 }
402
403 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
404 {
405         char* bloque, *tmp, *cur;
406         EMUFS_BLOCK_ID block;
407         EMUFS_REG_ID ID_aux;
408         EMUFS_BLOCK_SIZE iterador = 0;
409         int err, cant_bloques, i;
410         
411         bloque = NULL;
412         if (emu->tam_reg < emu->tam_bloque) {
413                 /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
414                 block = emufs_idx_buscar_registro(emu,ID);
415                 if ( block == EMUFS_NOT_FOUND ) {
416                         return NULL;
417                 }
418                 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
419                         return NULL;
420                 }
421                 
422                 ID_aux = -1;
423                 iterador = 0;
424         
425                 /* Busco el offset desde el comienzo desde donde arranca el registro
426                  * buscado, para luego resaltarlo en al GUI
427                  */
428                 while ( iterador < emu->tam_bloque ) {
429                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
430                         if ( ID_aux == ID ){
431                                 *pos = iterador; 
432                                 *size = emu->tam_bloque;
433                                 break;
434                         }
435                         iterador += sizeof(EMUFS_REG_ID);
436                         iterador += emu->tam_reg;
437                 }
438         } else {
439                 /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
440                 
441                 /* Busco el primer bloque */
442                 block = emufs_idx_buscar_registro(emu,ID);
443                 if ( block == EMUFS_NOT_FOUND ){
444                         return NULL;
445                 }
446                 cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1;
447                 *size = emu->tam_bloque*cant_bloques + cant_bloques*2 - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
448                 bloque = (char *)malloc(*size);
449                 cur = bloque;
450                 *pos = 0; 
451
452                 /* El bloque 0 va completo */
453                 err = 0;
454                 if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
455                         /* Oops! ... un bloque no existe, todo mal! */
456                         free(bloque);
457                         return NULL;
458                 }
459                 memcpy(cur, tmp, emu->tam_bloque);
460                 cur += emu->tam_bloque;
461                 memcpy(cur, "<>", 2);
462                 cur += 2;
463                 free(tmp);
464                 
465                 /* En resto de los bloques no pongo el ID porque ya esta en el primero */
466                 for(i=1; i<cant_bloques; i++) {
467                         err = 0;
468                         if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
469                                 /* Oops! ... un bloque no existe, todo mal! */
470                                 free(bloque);
471                                 return NULL;
472                         }
473                         memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
474                         cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
475                         memcpy(cur, "<>", 2);
476                         cur += 2;
477                         free(tmp);
478                 }
479                 (*cur) = '\0';
480         }
481         return bloque;
482 }
483
484 void emufs_tipo3_compactar(EMUFS *emu)
485 {
486         EMUFS_REG_ID *tmp, max_id;
487         EMUFS_BLOCK_ID block_id;
488         EMUFS_REG_SIZE size;
489         EMUFS_Estadisticas s;
490         char name[255];
491         char *reg;
492         int err=0, ID_aux, i,fs;
493         
494         strcpy(name, emu->nombre);
495         strcat(name, ".dat");
496         
497         /* si el bloque es mas chico que el registro no hace falta compactar */
498         /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return;     */
499
500         tmp = emufs_idx_get(emu, &max_id);
501         if (tmp) free(tmp);
502         for( i=0; i<=max_id; i++){
503                 /* si el id no existe paso al siguiente*/
504                 if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
505                 reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
506                 if (err){
507                         PERR("No se pudo leer el registro");
508                         return;
509                 }
510                 emufs_tipo3_borrar_registro(emu, i);
511                 ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
512                 i++;
513         }
514         /*tengo que truncar el archivo*/
515         /*bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
516         */
517         block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs);
518         size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque;
519         if (truncate(name, size)!=0)
520                 PERR("NO TRUNQUE NADA");
521         /*hay que truncar el fsc!!!*/
522         if (emufs_fsc_truncate(emu, block_id)!= 0)
523                 PERR("NO TURNQUE EL FSC");
524         free(reg);
525 }