]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
Ultimas correcciones.
[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 static CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size,
46                                         void *bloque, int num_bloque, EMUFS_FREE fs, int *err);
47 static void b_plus_actualizar_ids(EMUFS *emu, void *bloque, int num_bloque);
48
49 int emufs_tipo3_inicializar(EMUFS* efs)
50 {
51         /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
52          * (una relación 1/2 entre datos e info de control ya es lo suficientemente
53          * mala */
54         if (efs->tam_bloque < (sizeof(EMUFS_REG_ID) * 2)) {
55                 PERR("bloque demasiado chico");
56                 return EMUFS_ERROR_BLOCK_TOO_SMALL;
57         }
58         /* Asigna punteros a funciones. */
59         efs->leer_bloque       = emufs_tipo3_leer_bloque;
60         efs->leer_bloque_raw   = emufs_tipo3_leer_bloque_raw;
61         efs->grabar_registro   = emufs_tipo3_grabar_registro;
62         efs->borrar_registro   = emufs_tipo3_borrar_registro;
63         efs->leer_registro     = emufs_tipo3_leer_registro;
64         efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
65         efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
66         efs->compactar         = emufs_tipo3_compactar;
67         efs->modificar_registro= emufs_tipo3_modificar_registro;
68         efs->obtener_claves_raw= emufs_tipo3_obtener_claves_raw;
69         return EMUFS_OK;
70 }
71
72 int emufs_tipo5_inicializar(EMUFS* efs)
73 {
74         /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
75          * (una relación 1/2 entre datos e info de control ya es lo suficientemente
76          * mala */
77         if (efs->tam_bloque < (sizeof(EMUFS_REG_ID) * 2)) {
78                 PERR("bloque demasiado chico");
79                 return EMUFS_ERROR_BLOCK_TOO_SMALL;
80         }
81         /* Asigna punteros a funciones. */
82         efs->leer_bloque       = emufs_tipo3_leer_bloque;
83         efs->leer_bloque_raw   = emufs_tipo3_leer_bloque_raw;
84         efs->grabar_registro   = emufs_tipo3_insertar_ordenado;
85         efs->borrar_registro   = emufs_tipo3_eliminar_ordenado;
86         efs->leer_registro     = emufs_tipo3_leer_registro_plus;
87         efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
88         efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
89         efs->compactar         = emufs_tipo3_compactar;
90         efs->modificar_registro= emufs_tipo3_modificar_registro_plus;
91         efs->obtener_claves_raw= emufs_tipo3_obtener_claves_raw;
92         return EMUFS_OK;
93 }
94
95 /** Leo un registro del archivo, devuelve NULL si no lo encuentra.**/
96 void* emufs_tipo3_leer_registro(EMUFS *emu, CLAVE clave,
97                 EMUFS_REG_SIZE* reg_size, int* err)
98 {
99         INDICE_DATO dato;
100         char* bloque;
101         char* registro; /* registro a leer */
102         EMUFS_BLOCK_ID block;
103         EMUFS_REG_ID ID_aux, ID;
104         EMUFS_BLOCK_SIZE iterador = 0;
105         int cant_bloques = 0, resto, i, copiado=0;
106
107         cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
108         if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
109                 cant_bloques = 1;
110         
111         /*si existe, lo busco en el archivo de bloques*/
112         if ((emu->indices != NULL) && (*err != 1)) {
113                 /* TODO : Verificar donde esta el indice primario */
114                 dato = emu->indices->existe_entrada(emu->indices, clave);
115                 block = dato.bloque;
116                 ID = dato.id;
117                 PERR("Use indice");
118         } else {
119                 /* Si no tengo claves, uso el campo entero para pasar un ID
120                  * directamente.
121                  */
122                 PERR("Use directo");
123                 ID = clave.i_clave;
124                 block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
125                 if (*err == 1) *err = 0;
126         }
127         if ( block == EMUFS_NOT_FOUND ){
128                 PERR("No se encontro el bloque");
129                 *err = -1;
130                 return NULL;
131         }
132         
133         registro = (char*) malloc(emu->tam_reg);
134         if (registro == NULL) {
135                 PERR("No hay memoria");
136                 *err = EMUFS_ERROR_OUT_OF_MEMORY;
137                 return NULL;
138         }
139
140         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
141         for (i=0; i<cant_bloques; i++){
142                 if ((bloque = emufs_tipo3_leer_bloque(emu, block+i, err)) == NULL) {
143                         /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
144                          * emufs_tipo3_leer_bloque() */
145                         PERR("no se pudo leer el bloque");
146                         free(registro);
147                         return NULL; /*No se pudo leer el bloque*/
148                 }
149                 ID_aux = -1;
150                 iterador = 0;
151                 while ( iterador < emu->tam_bloque ) {
152                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
153                         iterador += sizeof(EMUFS_REG_ID);
154                         if ( ID_aux == ID ){
155                                 if ( cant_bloques == 0 )
156                                         memcpy(registro,bloque+iterador,emu->tam_reg);
157                                 else {
158                                         if ( cant_bloques-1 == i ) 
159                                                 resto = emu->tam_reg - copiado;
160                                         memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto);
161                                         copiado += resto;
162                                         break;
163                                 }
164                                 *reg_size = emu->tam_reg;
165                         }
166                         iterador += emu->tam_reg;
167                 }
168                 free(bloque);
169         }
170
171         return registro;
172 }
173
174 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
175 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID ID, int* err)
176 {
177         FILE* file;
178         char* block; /* bloque leido (en donde está el registro a leer) */
179         char name_f[255];
180         
181         strcpy(name_f,emu->nombre);
182         strcat(name_f,".dat");
183         
184         if ((file = fopen(name_f, "r")) == NULL) {
185                 PERR("No se pudo abrir el archivo de datos");
186                 *err = EMUFS_ERROR_CANT_OPEN_FILE;
187                 return NULL;
188         }
189         fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
190         /*FIXME: verificar que no se pase de fin de archivo*/
191         if (fseek(file,ID*emu->tam_bloque,SEEK_CUR) != 0){
192                 PERR("Fallo la busqueda del bloque");
193                 *err=3;
194                 return NULL;
195         }
196         
197         block = (char*) malloc(emu->tam_bloque);
198         if (block == NULL) {
199                 PERR("No hay memoria");
200                 *err = EMUFS_ERROR_OUT_OF_MEMORY;
201                 return NULL;
202         }
203         if (fread(block, emu->tam_bloque, 1, file) != 1) {
204                 /* TODO Manejo de errores */
205                 free(block);
206                 PERR("Error al leer bloque");
207                 *err = EMUFS_ERROR_FILE_READ;
208                 return NULL;
209         }
210
211         fclose(file);
212         return block;
213 }
214
215 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
216 {
217         INDICE_DATO idx_data;
218         EMUFS_REG_ID ID_aux;
219         EMUFS_FREE fs, new_fs;
220         EMUFS_BLOCK_ID num_bloque;
221         EMUFS_BLOCK_SIZE cant;
222         FILE *file;
223         char name_f[255];
224         char* bloque = NULL;
225         int cant_bloques, resto, i=0;
226         
227         PERR("TIPO3 GRABRAR REGISTRO");
228         strcpy(name_f,emu->nombre);
229         strcat(name_f,".dat");
230         
231         cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
232         if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
233                 cant_bloques = 1;
234         
235         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
236
237
238         
239         if ( cant_bloques == 1 ) 
240                 /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
241                 num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
242         else 
243                 /* me devuelve el ID del bloque donde quepan n registros y el espacio libre en "fs"*/
244                 num_bloque = emufs_fsc_buscar_n_lugares(emu, cant_bloques, emu->tam_bloque, &fs, err);
245
246         /*si no hay bloques con suficiente espacio creo un bloque nuevo */
247         if (num_bloque == EMUFS_NOT_FOUND) {
248                 if ( (file = fopen(name_f,"a+"))==NULL ) {
249                         PERR("NO SE PUDO ABRIR ARCHIVO DE DATOS");
250                         return -1; /*ERROR*/
251                 }
252                 /*tengo que buscar un ID valido para el nuevo registro*/
253                 ID_aux = emufs_idx_get_new_id(emu, err);
254                 /* El free esta al final de la funcion! */
255                 bloque = (char*)malloc(emu->tam_bloque);
256                 for (i=0; i<cant_bloques; i++) {
257                         /*crear un nuevo bloque en memoria */
258                         memset(bloque, 0, emu->tam_bloque);
259                         /* grabar el registro al principio del bloque */
260                         /*grabo el id en el bloque*/
261                         memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
262                         /*grabo el registro en el bloque*/
263                         if ( cant_bloques == 1 ){
264                                 memcpy(bloque+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                         /* me paro al final del archivo */
271                         fseek(file, 0, SEEK_END);
272                         /* grabo el bloque en el final del archivo */
273                         fwrite(bloque,emu->tam_bloque,1,file);
274                         /*tengo que buscar la cantidad de bloques que existen*/
275                         fseek(file, 0, SEEK_END); /* Me paro al final */
276                         cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
277                         cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
278                         num_bloque = cant;
279
280                         if (i == 0) {
281                                 /* Tengo que agregar el primer bloque en IDX */
282                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
283                                         PERR("FALLO AGREGAR A IDX");
284                                         free(bloque);
285                                         return -1;
286                                 }
287                                 idx_data.id = ID_aux;
288                                 idx_data.bloque = num_bloque;
289                                 emufs_indice_agregar(emu->indices, ptr, idx_data);
290                         }
291                 
292                         /* grabo el nuevo registro en el archivo de espacios libres */
293                         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) 
294                                 new_fs = emu->tam_bloque - sizeof(EMUFS_REG_ID) - resto ;
295                         else new_fs = emu->tam_bloque - sizeof(EMUFS_REG_ID) - emu->tam_reg ;
296                         if ( emufs_fsc_agregar(emu, num_bloque+i, new_fs) ) {
297                                 fclose(file);
298                                 free(bloque);
299                                 PERR("FALLO AGREGAR A IDX");
300                                 return -1;
301                         }
302                 }
303                 fclose(file);
304         } else {
305                 /*tengo que buscar un ID valido para el nuevo registro*/
306                 ID_aux = emufs_idx_get_new_id(emu, err);
307                 for (i=0; i<cant_bloques; i++){
308                         resto = emu->tam_bloque-sizeof(EMUFS_REG_ID);
309                         /*cargo el bloque en "bloque"*/
310                         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
311                                 /* TODO Manejo de errores */
312                                 PERR("no se pudo leer el bloque");
313                                 return -1;
314                         }
315                         /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
316                         /*insertar el registro en el bloque*/
317                         /*grabo el id en el bloque*/
318                         /*veo el espacio libre que queda*/ 
319                         fs = emufs_fsc_get_fs(emu, num_bloque+i);
320                         if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
321                                 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
322                         else
323                                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
324                         /*grabo el registro en el bloque*/
325                         if ( cant_bloques == 1 ){
326                                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
327                         } else {
328                                 if ( cant_bloques-1 == i )
329                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
330                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
331                         }                               
332                         
333                         /*grabo el bloque en el archivo*/
334                         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
335                                 PERR("error al grabar bloque");
336                                 if (bloque) free(bloque);
337                                 return -1; /* se produjo un error */    
338                         }
339                         
340                         /*actualizo el archivo de espacios libres*/
341                         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ){
342                                 /*Si el registro ocupa mas de un bloque  (original) resto = emu->tam_bloque-sizeof(EMUFS_REG_ID)*/
343                                 resto += sizeof(EMUFS_REG_ID);
344                                 if ( cant_bloques-1 == i )
345                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID))+sizeof(EMUFS_REG_ID);
346                                 if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
347                                         fclose(file);
348                                         if (bloque) free(bloque);
349                                         PERR("FALLO AGREGAR A IDX");
350                                         return -1;
351                                 }
352                         } else {        
353                                 /* si ocupa menos de un bloque*/
354                                 resto = emu->tam_reg;
355                                 if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
356                                         fclose(file);
357                                         if (bloque) free(bloque);
358                                         PERR("FALLO AGREGAR A FSC");
359                                         return -1;
360                                 }
361                         }
362                         if ( i == 0 ){
363                                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
364                                         if (bloque) free(bloque);
365                                         PERR("FALLO AGREGAR A IDX");
366                                         return -1;
367                                 }
368                                 idx_data.id = ID_aux;
369                                 idx_data.bloque = num_bloque;
370                                 emufs_indice_agregar(emu->indices, ptr, idx_data);
371                         }
372                 }
373         }
374         if (bloque) free(bloque);
375         PERR("GRABAR COMPLETO");
376         return ID_aux;
377 }
378
379 /*Graba un bloque en el archivo*/
380 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
381 {
382         FILE* file;
383         char name_f[255];
384         
385         strcpy(name_f,emu->nombre);
386         strcat(name_f,".dat");
387         
388         if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
389         /* Salto el header del archivo */
390         fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
391         fseek(file, num*emu->tam_bloque, SEEK_CUR);     
392         fwrite(ptr, emu->tam_bloque, 1, file);
393         
394         fclose(file);
395         return 0;
396 }
397
398 /*borra un registro de un bloque y acomoda los registros que quedan*/
399 int emufs_tipo3_borrar_registro(EMUFS *emu, CLAVE k, INDICE_DATO dato1)
400 {
401         EMUFS_BLOCK_SIZE num_bloque;
402         EMUFS_BLOCK_SIZE ptr_elim;
403         EMUFS_BLOCK_SIZE ptr_mov;
404         EMUFS_REG_ID ID_aux, ID;
405         EMUFS_FREE fs;
406         INDICE_DATO dato;
407         char *bloque;
408         int err = 0, i, cant_bloques;
409
410         /*cantidad de bloques que ocupa un registro*/
411         cant_bloques = emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1;
412         if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
413                 cant_bloques = 1;
414
415         PERR("Buscando datos del registro en el indice");
416         if (emu->indices != NULL) {
417                 dato = emu->indices->existe_entrada(emu->indices, k);
418                 num_bloque = dato.bloque;
419                 ID = dato.id;
420         } else {
421                 ID = k.i_clave;
422                 num_bloque = emufs_idx_buscar_registro(emu, ID);
423         }
424
425         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
426                 /* TODO Manejo de errores */
427                 PERR("no se pudo leer el bloque");
428                 return -1;
429         }
430
431         /*apunto al registro que voy a eliminar*/
432         ptr_elim = 0;
433         while ( ptr_elim < emu->tam_bloque ){
434                 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
435                 if ( ID_aux == ID )
436                         break;
437                 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
438         }
439
440         /*apunto al registro que voy a mover*/
441         ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
442         
443         while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
444                 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
445                 /* Blanqueo el area que movi */
446                 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
447                 ptr_elim = ptr_mov;
448                 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
449         }
450
451         /*grabo el bloque en el archivo*/       
452         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) 
453                 memset(bloque, 0, emu->tam_bloque);
454         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
455                 free(bloque);
456                 PERR("No se pudo grabar el bloque"); 
457                 return -1;
458         }
459         
460         /*actualizo archivo .fsc*/
461         if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) {
462                 for (i=0; i<cant_bloques; i++)
463                         if (emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque)) {
464                                 PERR("no se pudo agregar fsc"); 
465                                 free(bloque);
466                                 return -1;
467                         }
468         } else { 
469                 fs = emufs_fsc_get_fs(emu, num_bloque);
470                 if (emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID))) {
471                         PERR("no se pudo agregar fsc"); 
472                         free(bloque);
473                         return -1;
474                 }
475         }
476         /*actualizo archivo .did*/
477         if (emufs_did_agregar(emu, ID)) {
478                 PERR("no se pudo agregar did"); 
479                 free(bloque);
480                 return -1;
481         }
482                 
483         /*actualizo archivo .idx*/
484         if (emufs_idx_borrar(emu, ID)) {
485                 PERR("no se pudo agregar idx"); 
486                 free(bloque);
487                 return -1;
488         }
489
490         free(bloque);
491         PERR("Borrando claves");
492         emufs_indice_borrar(emu->indices, k, dato1);
493         PERR("Clave borrada de todos los indices");
494         return 0;
495 }
496
497 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
498 {
499         int err = 0,err1 = 0, err2 = 0, err3 = 0;
500         EMUFS_Estadisticas stats;
501         memset(&stats,0,sizeof(EMUFS_Estadisticas));
502         
503         { /* obtengo tamaño del archivo en bytes */
504                 char name_f[255];
505                 strcpy(name_f, emu->nombre);
506                 strcat(name_f, ".dat");
507                 stats.tam_archivo = emufs_common_get_file_size(name_f, &err);
508                 if (err) {
509                         PERR("no se pudo obtener el tamaño del archivo");
510                         return stats;
511                 }
512         }
513         
514         /* obtengo la cantidad de bloques en el archivo */
515         stats.cant_bloques = (stats.tam_archivo-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
516                                                   emu->tam_bloque;
517
518         /* obtengo la cantidad de registros en el archivo */
519         {
520                 EMUFS_REG_ID *tmp = emufs_idx_get(emu, &stats.cant_registros);
521                 if (tmp) free(tmp); /* libera memoria innecesaria */
522         }
523
524         /* obtengo información de control que guarda el archivo .dat */
525         stats.tam_info_control_dat = stats.cant_registros*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
526                                                  sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
527
528         /* Obtengo las stats de FSC */
529         stats.total_fs = emufs_fsc_get_total_fs(emu);
530         stats.media_fs = emufs_fsc_get_media_fs(emu);
531         emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
532         
533         /* obtengo informacion de control guardada por los archivos auxiliares */
534         stats.tam_archivos_aux = emufs_idx_get_file_size(emu,&err1) + emufs_fsc_get_file_size(emu,&err2)
535                                                         + emufs_did_get_file_size(emu,&err3);
536         if (err1 || err2 || err3) {
537                 PERR("Hubo problemas en lectura de filesize archivos auxiliares");
538                 return stats;
539         }               
540
541         return stats;   
542 }
543
544 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, CLAVE k, void *data, EMUFS_REG_SIZE size, int *error, INDICE_DATO dato)
545 {
546         emufs_tipo3_borrar_registro(emu, k, dato);
547         return emufs_tipo3_grabar_registro(emu, data, size, error);
548 }
549
550 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
551 {
552         char* bloque;
553         EMUFS_BLOCK_ID block;
554         EMUFS_REG_ID ID_aux;
555         EMUFS_BLOCK_SIZE iterador = 0;
556         int err;
557         
558         bloque = NULL;
559                 
560         /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
561         block = emufs_idx_buscar_registro(emu,ID);
562         if ( block == EMUFS_NOT_FOUND ) {
563                 return NULL;
564         }
565         if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
566                 return NULL;
567         }
568                 
569         ID_aux = -1;
570         iterador = 0;
571         
572         /* Busco el offset desde el comienzo desde donde arranca el registro
573          * buscado, para luego resaltarlo en al GUI
574          */
575         while ( iterador < emu->tam_bloque ) {
576                 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
577                 if ( ID_aux == ID ){
578                         *pos = iterador; 
579                         *size = emu->tam_bloque;
580                         break;
581                 }
582                 iterador += sizeof(EMUFS_REG_ID);
583                 iterador += emu->tam_reg;
584         }
585         return bloque;
586 }
587
588 void emufs_tipo3_compactar(EMUFS *emu)
589 {
590 /* TODO ARREGLAR */
591 #ifdef PEPITO_EL_GALAN 
592         EMUFS_REG_ID *tmp, max_id;
593         EMUFS_BLOCK_ID block_id;
594         EMUFS_REG_SIZE size;
595         EMUFS_FREE fs;
596         char name[255];
597         char *reg;
598         int err=0, ID_aux, i;
599         
600         strcpy(name, emu->nombre);
601         strcat(name, ".dat");
602
603         tmp = emufs_idx_get(emu, &max_id);
604         if (tmp) free(tmp);
605         for( i=0; i<max_id; i++){
606                 /* si el id no existe paso al siguiente*/
607                 if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
608                 reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
609                 if (err){
610                         PERR("No se pudo leer el registro para reacomodar");
611                         return;
612                 }
613                 emufs_tipo3_borrar_registro(emu, i);
614                 ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
615                 free(reg);
616         }
617         /*trunco el archivo sacando los bloques vacios*/
618         block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs);
619         size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque;
620         if (truncate(name, size)!=0)
621                 PERR("NO TRUNQUE NADA");
622         /*hay que truncar el fsc!!!*/
623         if(emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg) block_id = block_id/2;
624         if (emufs_fsc_truncate(emu, block_id)!= 0)
625                 PERR("NO TURNQUE EL FSC");
626 #endif
627 }
628
629 void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente,
630                                                                  EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3)
631 {
632         int err;
633         (*actual) = emufs_tipo3_leer_bloque(efs, id, &err);
634         (*anterior) = emufs_tipo3_leer_bloque(efs, id-1, &err);
635         (*siguiente) = emufs_tipo3_leer_bloque(efs, id+1, &err);
636         if (!(*anterior)) {
637                 (*anterior) = (char *)malloc(efs->tam_bloque);
638                 memset(*anterior, 0, efs->tam_bloque);          
639         }       
640         if (!(*siguiente)) {
641                 (*siguiente) = (char *)malloc(efs->tam_bloque);
642                 memset(*siguiente, 0, efs->tam_bloque);         
643         }
644         (*size1) = (*size2) = (*size3) = efs->tam_bloque;
645 }
646
647 EMUFS_REG_ID emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err)
648 {
649         INDICE_DATO idx_data;
650         CLAVE clave, menor_clave_bloque_nuevo;
651         EMUFS_BLOCK_ID num_bloque; 
652         EMUFS_REG_ID header;
653         EMUFS_REG_SIZE tam_reg, move_size;
654         INDEX_DAT query;
655         EMUFS_FREE fs;
656         char *bloque = 0, *aux, *new_bloque = 0;
657         int cant_reg, i, result, dif;
658         
659         tam_reg = size;
660         /*le asigno un posible numero de bloque para el caso en que no encuentre donde meterlo*/
661         num_bloque = emufs_get_new_block_number(emu);   
662         query.num_bloque = num_bloque;
663         /*saco la clave del stream*/
664         query.clave = emufs_indice_generar_clave(emu->indices, ptr);
665         /*mando a buscar en el arbol el bloque correspondiente a esa clave*/
666         /*en query->num_bloque tengo el bloque donde debo meter el registro*/
667         /*debo insertar el reg en el bloque en forma ordenada*/
668         /*si es el menor de todos tengo que cambiar el ancla en el arbol*/
669         /*si no entra, tengo que insertar una nueva clave en el arbol y separar los registros en 2 bloques*/
670         /* emufs_b_plus_get_bloque retorna asi
671         -1 = Nuevo bloque, retorno idem num_bloque que ingreso
672         0 = Sin problemas, retorno bloque donde insertar
673         1 = Error de lectura en algun nodo, abortar operacion en funcion invocante.
674         */
675         header = emufs_idx_get_new_id(emu, err);
676         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
677         if (result == 1){
678                 PERR("SE PRODUJO UN ERROR EN EL ARBOL.. ABORTANDO");
679                 return -1;
680         }
681         if ( result == -1 ){            
682                 /*creo un bloque nuevo*/
683                 bloque = (char*) malloc(emu->tam_bloque);
684                 if (bloque == NULL){
685                         PERR("NO SE PUDO CREAR EL BLOQUE");
686                         return -1;
687                 }
688                 memset(bloque, 0, emu->tam_bloque);
689                 if (*err) {
690                         PERR("NO SE PUDO OBTENER UN ID");
691                         free(bloque);
692                         return -1;
693                 }
694                 cant_reg = 1;
695                 /*pongo la cabecera en el registro*/
696                 memcpy(bloque, &header, sizeof(EMUFS_REG_ID)); 
697                 /*inserto el footer en el bloque*/
698                 memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
699                 /*inserto el registro en el bloqude*/
700                 if ( size <= emu->tam_bloque-sizeof(EMUFS_REG_ID)-sizeof(int) )
701                         memcpy(bloque+sizeof(EMUFS_REG_ID), ptr, size); 
702                 else {
703                         PERR("NO ENTRA EL REGISTRO EN EL BLOQUE!!!!!");
704                         free(bloque);
705                         return -1;
706                 }
707                 /*hago lugar en el archivo para grabar*/
708                 if ( num_bloque != emufs_create_new_block(emu) )        PERR("NUMEROS DE NUEVO BLOQUE DISTINTOS");
709                 /*grabo el bloque en el archivo*/ /* OJO CON LO DE FS = 0 */
710                 emufs_tipo3_grabar_bloque(emu, bloque, query.num_bloque);
711                 /*agrego la clave al arbol bplus*/
712                 emufs_b_plus_insertar(emu->indices, &query);
713                 /*agrego el id a idx*/
714                 emufs_idx_agregar(emu, header, query.num_bloque);
715                 /*actualizo los restantes arboles */
716                 idx_data.id = header;
717                 idx_data.bloque = query.num_bloque;
718                 emufs_indice_agregar(emu->indices->sig, ptr, idx_data);
719                 free(bloque);
720                 return header;
721         } else { /*tengo que meter el registro en el bloque que me dijo el arbol*/
722                 /*leo el bloque correspondiente*/
723                 bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, err);
724                 /*me fijo cuantos registros hay en el */
725                 memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
726                 /*me fijo si entra en nuevo reg en el bloque */
727                 fs = emu->tam_bloque;
728                 aux = bloque;
729                 for (i=0; i<cant_reg; i++){
730                         aux += sizeof(EMUFS_REG_ID)+tam_reg;
731                         fs -= (tam_reg+sizeof(EMUFS_REG_ID));
732                 } /*aca deberia estar apuntando al final de los registros. espacio libre*/
733                 fs -= sizeof(int); /*footer*/
734                 if ( fs >= size+sizeof(EMUFS_REG_ID) ){ /* puedo meter el registro en este bloque*/
735                         PERR("GRABO ORDENADO");                 
736                         grabar_ordenado_en_bloque(emu, ptr, size, bloque, query.num_bloque, fs, err);
737                         /*en teoria el nuevo registro no debe cambiar el ancla, por lo cual no actualizo el arbol*/
738                         idx_data.id = header;
739                         idx_data.bloque = query.num_bloque;
740                         emufs_indice_agregar(emu->indices->sig, ptr, idx_data);
741                         free(bloque);
742                         return header;
743                 } else { /* el registro no entra en el bloque, hay que crear uno nuevo y desparramar */
744                         PERR(" COMO NO ENTRA DEBO DIVIDIR LOS REGISTROS EN 2 BLOQUES");
745                         new_bloque = (char*)malloc(emu->tam_bloque);
746                         memset(new_bloque,0,emu->tam_bloque);
747                         move_size=0;
748                         aux = bloque;
749                         for(i=0; i<cant_reg/2; i++){ /*copio mitad-1 aca y mitad en el nuevo*/
750                                 /*avanzo*/
751                                 aux += sizeof(EMUFS_REG_ID)+tam_reg;
752                                 move_size += sizeof(EMUFS_REG_ID)+tam_reg;
753                         }/*apunto al reg mitad_mas_uno para copiar todo a otro bloque*/
754                         /*copio el resto del bloque al nuevo bloque*/      /*footer ¿?*/
755                         memcpy(new_bloque, aux, emu->tam_bloque-move_size-sizeof(int));
756                         /*borro lo que sobra en el bloque original, guardando el footer*/
757                         memset(aux, 0, emu->tam_bloque - move_size - sizeof(int));
758                         menor_clave_bloque_nuevo = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));                   
759                         /* TENGO QUE VER EN CUAL DE LOS DOS BLOQUES METO EL REGISTRO NUEVO */
760                         if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, query.clave) ){
761                                 PERR("GRABO EN EL BLOQUE NUEVO"); 
762                                 /*actualizo la cant de registros del bloque original (footer)*/
763                                 memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
764                                 /*actualizo el footer del nuevo bloque*/
765                                 dif = cant_reg - i; /*por las dudas*/
766                                 memcpy(new_bloque+emu->tam_bloque-sizeof(int), &dif, sizeof(int));
767                                 /*genero un nuevo espacio para un bloque en el archivo y lo cargo en queryla clave ya estaba en query desde antes*/
768                                 num_bloque = query.num_bloque;
769                                 query.num_bloque = emufs_create_new_block(emu);
770                                 /*inserto el nuevo registro en el nuevo bloque y obtengo la clave del menor*/
771                                 clave = grabar_ordenado_en_bloque(emu,ptr,size,new_bloque,query.num_bloque, emu->tam_bloque-move_size,err);
772                                 /*actualizo los ids de idx*/
773                                 b_plus_actualizar_ids(emu, new_bloque, query.num_bloque);
774                                 /*actualizo el arbol con la nueva clave*/
775                                 idx_data.id = header;
776                                 idx_data.bloque = query.num_bloque;
777                                 query.clave = clave;
778                                 emufs_b_plus_insertar(emu->indices, &query);                            
779                                 emufs_indice_agregar(emu->indices->sig, ptr, idx_data);
780                                 /*grabo el bloque original*/
781                                 emufs_tipo3_grabar_bloque(emu, bloque, num_bloque);
782                         } else {
783                                 PERR("GRABO EN BLOQUE VIEJO");
784                                 /* GRABO EN EL BLOQUE VIEJO */
785                                 /*actualizo la cant de registros del bloque original (footer)*/
786                                 memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
787                                 /*actualizo el footer del nuevo bloque*/
788                                 dif = cant_reg - i; /*por las dudas*/
789                                 /*meto el footer en el reg */
790                                 memcpy(new_bloque+emu->tam_bloque-sizeof(int), &dif, sizeof(int));
791                                 /*guardo el num de bloque original */
792                                 num_bloque = query.num_bloque;
793                                 /* pido un bloque nuevo para guardar */
794                                 query.num_bloque = emufs_create_new_block(emu);
795                                 /*grabo el bloque nuevo*/
796                                 emufs_tipo3_grabar_bloque(emu, new_bloque, query.num_bloque);
797                                 /*actualizo los ids del bloque nuevo*/
798                                 b_plus_actualizar_ids(emu, new_bloque, query.num_bloque);
799                                 /*grabo el registro en el bloque original*/
800                                 grabar_ordenado_en_bloque(emu,ptr,size,bloque,num_bloque,fs+move_size,err);
801                                 /*actualizo el arbol con la menor clave del bloque nuevo*/
802                                 query.clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
803                                 idx_data.id = header;
804                                 idx_data.bloque = query.num_bloque;
805                                 emufs_indice_agregar(emu->indices->sig, ptr, idx_data);
806                                 emufs_b_plus_insertar(emu->indices, &query);
807                         }
808                         if(*err != 0){
809                                 PERR("NO SE PUDO GRABAR ORDENADO");
810                                 free(new_bloque);
811                                 free(bloque);
812                                 return -1;
813                         }
814                         free(new_bloque);
815                         free(bloque);
816                         return header;
817                 }
818         }
819         if (new_bloque) free(new_bloque);
820         if (bloque) free(bloque);
821         return header;
822 }
823
824 /*inserta un registro ordenado en un bloque y devuelve la menor de las claves*/
825 CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void *bloque, int num_bloque, EMUFS_FREE fs, int *err)
826 {
827         char *aux, *new_bloque;
828         int cant_reg, tam_reg, i, j;
829         EMUFS_REG_ID header;
830         CLAVE clave, clave_ajena;
831
832         tam_reg = size; 
833         /*saco la cant de registros del bloque*/
834         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
835         /*obtengo la clave del nuevo registro*/
836         clave = emufs_indice_generar_clave(emu->indices, ptr);
837         /*cargo el header*/
838         header = emufs_idx_get_new_id(emu, err);
839         new_bloque = (char*)malloc(emu->tam_bloque);
840         memset(new_bloque, 0, emu->tam_bloque);
841         aux = new_bloque;
842         for (i=0; i<cant_reg+1; i++){
843                 bloque += sizeof(EMUFS_REG_ID); /*salteo el encabezado del registro*/
844                 if ( emu->tam_bloque-fs < sizeof(EMUFS_REG_ID)+emu->indices->offset ){
845                         PERR("ESTOY LEYENDO FUERA DEL BLOQUE!!!");
846                         free(new_bloque);
847                         *err = -1;
848                         return clave;
849                 }
850                 clave_ajena = emufs_indice_generar_clave(emu->indices, bloque); /*leo la clave*/
851                 bloque -= sizeof(EMUFS_REG_ID); /*vuelvo al principio*/
852                 if (  i<cant_reg && emufs_indice_es_menor(emu->indices, clave_ajena, clave) ){
853                         /*copio el reg al bloque nuevo*/
854                         memcpy(new_bloque, bloque, sizeof(EMUFS_REG_ID)+tam_reg);
855                         bloque += sizeof(EMUFS_REG_ID)+ tam_reg; /*paso al proximo*/
856                         new_bloque += sizeof(EMUFS_REG_ID)+ tam_reg; /*dejo preparado*/
857                         continue;
858                 } else {
859                         /*meto el registro que me mandan*/
860                         memcpy(new_bloque, &header, sizeof(EMUFS_REG_ID));
861                         memcpy(new_bloque+sizeof(EMUFS_REG_ID), ptr, size);
862                         new_bloque += sizeof(EMUFS_REG_ID)+size;
863                         /*tengo que copiar los que faltan*/
864                         j = i;
865                         while ( j < cant_reg ){
866                                 memcpy(new_bloque, bloque, sizeof(EMUFS_REG_ID)+tam_reg);
867                                 bloque += sizeof(EMUFS_REG_ID)+tam_reg;
868                                 new_bloque += sizeof(EMUFS_REG_ID)+tam_reg;
869                                 j++;
870                         }
871                 break; /*corto el for porque ya inserte todos*/
872                 }
873         }
874         /*grabo el bloque en el archivo*/
875         new_bloque = aux; /*apunto al principio del bloque*/
876         cant_reg++; /*voy a poner un reg mas*/
877         memcpy(new_bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
878         emufs_tipo3_grabar_bloque(emu, new_bloque, num_bloque);
879         clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
880         emufs_idx_agregar(emu, header, num_bloque);
881         free(new_bloque);
882         return clave;
883 }
884
885 int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato)
886 {
887         char *bloque, *aux;
888         INDICE_DATO idx_data;
889         INDEX_DAT query;
890         int result, iter, cant_reg;
891         EMUFS_REG_SIZE tam_reg = emu->tam_reg;
892         EMUFS_REG_ID id;
893         CLAVE clave_ajena, ancla;
894         int err = 0;
895
896         /*cargo el query para buscar*/
897         query.num_bloque = 0;
898         query.clave = clave;
899         /*mando a buscar el bloque donde esta la clave que quiero eliminar*/
900         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
901         if ( result == 1 ){
902                 PERR("SE PRODUJO UN ERROR EN EL ARBOL");
903                 return -1;
904         }
905         if ( result == -1 ){
906                 PERR("NO EXISTE EL BLOQUE ¿?¿?¿?");
907                 return -1;
908         }
909         /*cargo el bloque que corresponde*/
910         bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, &err);
911         if ( bloque == NULL ){
912                 PERR("NO SE CARGO EL BLOQUE");
913                 return -1;
914         }
915         /*me fijo si el que tengo que eliminar es el ancla del bloque*/
916         ancla = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
917         /*leo la cantidad de registros en el bloque*/
918         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
919         /*busco y elimino*/
920         iter = 0;
921         aux = bloque;
922         while ( iter < emu->tam_bloque ){
923                 clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_REG_ID));
924                 if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
925                         /*tengo que borrar este registro*/
926                         /*leo el id*/
927                         memcpy(&id, aux, sizeof(EMUFS_REG_ID));
928                         /*limpio el espacio que ocupaba*/
929                         memset(aux, 0, tam_reg+sizeof(EMUFS_REG_ID));
930                         /*hay que reacomodar todo*/
931                         /*me posiciono en el reg siguiente*/
932                         iter += tam_reg+sizeof(EMUFS_REG_ID);
933                         break;/*ya borre, corto aca*/
934                 }               
935                 iter += tam_reg+sizeof(EMUFS_REG_ID);
936                 aux += tam_reg+sizeof(EMUFS_REG_ID);
937         }
938         /*reacomodo el bloque */
939         memcpy(aux, aux+tam_reg+sizeof(EMUFS_REG_ID), emu->tam_bloque-iter-sizeof(int));
940         /*le vuelvo a copiar la cantidad de registros*/
941         cant_reg--;
942         memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
943         /*grabo el bloque en el archivo*/
944         if ( emufs_tipo3_grabar_bloque(emu, bloque, query.num_bloque) == -1){
945                 PERR("NO SE PUDO GRABAR EL BLOQUE");
946                 free(bloque);
947                 return -1;
948         }
949         /*me fijo si el que tengo que eliminar es el ancla del bloque*/
950         if ( emufs_indice_es_igual(emu->indices, clave, ancla) ){
951                 if ( cant_reg == 0 )
952                         emufs_b_plus_eliminar(emu->indices, clave, 0);
953                 else {
954                         /*obtengo la nueva ancla del bloque*/
955                         query.clave = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
956                         emufs_b_plus_reemplazar_clave(emu->indices, ancla, query, 0);
957                 }
958         }
959         emufs_idx_borrar(emu, id);
960         /* Elimino la entrada de los restantes arboles */                               
961         idx_data.id = id;
962         idx_data.bloque = query.num_bloque;
963         emufs_indice_borrar(emu->indices->sig, clave, idx_data);
964         free(bloque);
965         return 0;
966 }
967
968 void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err)
969 {
970         CLAVE clave_ajena;
971         char *reg = NULL; 
972         char *bloque, *aux;
973         INDEX_DAT query;
974         int result, cant_reg, i;
975         EMUFS_REG_SIZE tam_reg;
976         
977         tam_reg = emu->tam_reg;
978         /*cargo el query*/
979         query.clave = clave;
980         query.num_bloque = 0;
981         /*hago la consulta*/
982         
983         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
984         if (result == -1){
985                 PERR("NO EXISTE EL BLOQUE");
986                 return NULL;
987         }
988         if (result == 1){
989                 PERR("SE PRODUJO UN ERROR EN EL ARBOL");
990                 return NULL;
991         }
992         /*leo el bloque*/
993         bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, err);
994         /*busco el registro en el bloque*/
995         /*copio la cantidad de registros*/
996         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
997         aux = bloque;
998         for (i=0; i<cant_reg; i++){
999                 /*leo la clave*/
1000                 clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_REG_ID));
1001                 if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
1002                         reg = (char*)malloc(tam_reg);
1003                         if (reg == NULL){
1004                                 PERR("NO SE PUDO CARGAR EL REGISTRO");
1005                                 *err = -1;
1006                                 free(bloque);
1007                                 return NULL;
1008                         }
1009                         /*copio el registro*/
1010                         memcpy(reg, aux+sizeof(EMUFS_REG_ID), tam_reg);
1011                         *size = tam_reg;
1012                         break; /*ya lo encontre, corto el for*/
1013                 }
1014                 aux += tam_reg+sizeof(EMUFS_REG_ID); /*paso al proximo*/
1015         }
1016         if ( i == cant_reg ) *err=-1;
1017         free(bloque);
1018         return reg;
1019 }
1020
1021
1022 EMUFS_REG_ID emufs_tipo3_modificar_registro_plus(EMUFS *emu, CLAVE k, void *ptr , EMUFS_REG_SIZE size, int* err, INDICE_DATO dato)
1023 {
1024         emufs_tipo3_eliminar_ordenado(emu, k, dato);
1025         return emufs_tipo3_insertar_ordenado(emu, ptr, size, err);
1026 }
1027
1028 B_PLUS_KEYBUCKET *emufs_tipo3_obtener_claves_raw(EMUFS *emu, int num_bloque)
1029 {
1030         B_PLUS_KEYBUCKET *keys;
1031         char *bloque, *aux;
1032         int err = 0, cant_reg, i;
1033         EMUFS_REG_SIZE tam_reg = emu->tam_reg;
1034         
1035         keys = (B_PLUS_KEYBUCKET*)malloc(sizeof(B_PLUS_KEYBUCKET));
1036         if (keys == NULL){
1037                 PERR("NO SE PUDO CREAR EL BUCKET");
1038                 return NULL;
1039         }
1040         /*leo el bloque*/
1041         bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err);
1042         if ( bloque == NULL ){
1043                 PERR("NO SE PUDO LEER EL BLOQUE");
1044                 return NULL;
1045         }
1046         aux = bloque;
1047         /*leo la cantidad de registros*/
1048         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
1049         /*ya se cuanto guardarle al vector*/
1050         keys->claves = (CLAVE*)malloc(cant_reg*sizeof(CLAVE));
1051         if (keys->claves == NULL){
1052                 PERR("NO SE PUDO CREAR EL ARRAY DE CLAVES");
1053                 free(keys);
1054                 return NULL;
1055         }
1056         keys->cant_keys = cant_reg;
1057         keys->current_key = 0;
1058         
1059         for (i=0; i<cant_reg; i++){
1060                 keys->claves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
1061                 bloque += tam_reg+sizeof(EMUFS_REG_ID);
1062         }
1063         free(aux);
1064         return keys;
1065 }
1066
1067 void b_plus_actualizar_ids(EMUFS *emu, void *bloque, int num_bloque)
1068 {
1069         EMUFS_REG_ID id;
1070         int cant_reg,i;
1071         EMUFS_REG_SIZE tam_reg = emu->tam_reg;
1072         char *aux;
1073         /*leo la cantidad de registros*/
1074         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
1075         /*reemplazo todos los ids*/
1076         aux = bloque;
1077         for(i=0; i<cant_reg; i++){
1078                 /*leo id a reemplazar*/
1079                 memcpy(&id, aux, sizeof(EMUFS_REG_ID));
1080                 /*reemplazo el id*/
1081                 emufs_idx_agregar(emu, id, num_bloque);
1082                 /*me muevo para la sig iteracion*/
1083                 aux += tam_reg+sizeof(EMUFS_REG_ID);
1084         }
1085 }