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