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