]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
* Agrego a la lista capacidad de imprimirse a un archivo, para
[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         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         CLAVE clave, menor_clave_bloque_nuevo;
650         EMUFS_BLOCK_ID num_bloque; 
651         EMUFS_REG_ID header;
652         EMUFS_REG_SIZE tam_reg, move_size;
653         INDEX_DAT query;
654         EMUFS_FREE fs;
655         char *bloque = 0, *aux, *new_bloque = 0;
656         int cant_reg, i, result, dif;
657         
658         tam_reg = size;
659         /*le asigno un posible numero de bloque para el caso en que no encuentre donde meterlo*/
660         num_bloque = emufs_get_new_block_number(emu);   
661         query.num_bloque = num_bloque;
662         /*saco la clave del stream*/
663         query.clave = emufs_indice_generar_clave(emu->indices, ptr);
664         /*mando a buscar en el arbol el bloque correspondiente a esa clave*/
665         /*en query->num_bloque tengo el bloque donde debo meter el registro*/
666         /*debo insertar el reg en el bloque en forma ordenada*/
667         /*si es el menor de todos tengo que cambiar el ancla en el arbol*/
668         /*si no entra, tengo que insertar una nueva clave en el arbol y separar los registros en 2 bloques*/
669         /* emufs_b_plus_get_bloque retorna asi
670         -1 = Nuevo bloque, retorno idem num_bloque que ingreso
671         0 = Sin problemas, retorno bloque donde insertar
672         1 = Error de lectura en algun nodo, abortar operacion en funcion invocante.
673         */
674         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
675         if (result == 1){
676                 PERR("SE PRODUJO UN ERROR EN EL ARBOL.. ABORTANDO");
677                 return -1;
678         }
679         if ( result == -1 ){            
680                 /*creo un bloque nuevo*/
681                 bloque = (char*) malloc(emu->tam_bloque);
682                 if (bloque == NULL){
683                         PERR("NO SE PUDO CREAR EL BLOQUE");
684                         return -1;
685                 }
686                 memset(bloque, 0, emu->tam_bloque);
687                 header = emufs_idx_get_new_id(emu, err);
688                 if (*err) {
689                         PERR("NO SE PUDO OBTENER UN ID");
690                         free(bloque);
691                         return -1;
692                 }
693                 cant_reg = 1;
694                 /*pongo la cabecera en el registro*/
695                 memcpy(bloque, &header, sizeof(EMUFS_REG_ID)); 
696                 /*inserto el footer en el bloque*/
697                 memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
698                 /*inserto el registro en el bloqude*/
699                 if ( size <= emu->tam_bloque-sizeof(EMUFS_REG_ID)-sizeof(int) )
700                         memcpy(bloque+sizeof(EMUFS_REG_ID), ptr, size); 
701                 else {
702                         PERR("NO ENTRA EL REGISTRO EN EL BLOQUE!!!!!");
703                         free(bloque);
704                         return -1;
705                 }
706                 /*hago lugar en el archivo para grabar*/
707                 if ( num_bloque != emufs_create_new_block(emu) )        PERR("NUMEROS DE NUEVO BLOQUE DISTINTOS");
708                 /*grabo el bloque en el archivo*/ /* OJO CON LO DE FS = 0 */
709                 emufs_tipo3_grabar_bloque(emu, bloque, query.num_bloque);
710                 /*agrego la clave al arbol*/
711                 emufs_b_plus_insertar(emu->indices, &query);
712                 free(bloque);
713                 return header;
714         } else { /*tengo que meter el registro en el bloque que me dijo el arbol*/
715                 /*leo el bloque correspondiente*/
716                 bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, err);
717                 /*me fijo cuantos registros hay en el */
718                 memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
719                 /*me fijo si entra en nuevo reg en el bloque */
720                 fs = emu->tam_bloque;
721                 aux = bloque;
722                 for (i=0; i<cant_reg; i++){
723                         aux += sizeof(EMUFS_REG_ID)+tam_reg;
724                         fs -= (tam_reg+sizeof(EMUFS_REG_ID));
725                 } /*aca deberia estar apuntando al final de los registros. espacio libre*/
726                 fs -= sizeof(int); /*footer*/
727                 if ( fs >= size+sizeof(EMUFS_REG_ID) ){ /* puedo meter el registro en este bloque*/
728                         PERR("GRABO ORDENADO");                 
729                         grabar_ordenado_en_bloque(emu, ptr, size, bloque, query.num_bloque, fs, err);
730                         /*en teoria el nuevo registro no debe cambiar el ancla, por lo cual no actualizo el arbol*/
731                         free(bloque);
732                         return header;
733                 } else { /* el registro no entra en el bloque, hay que crear uno nuevo y desparramar */
734                         PERR(" COMO NO ENTRA DEBO DIVIDIR LOS REGISTROS EN 2 BLOQUES");
735                         new_bloque = (char*)malloc(emu->tam_bloque);
736                         memset(new_bloque,0,emu->tam_bloque);
737                         move_size=0;
738                         aux = bloque;
739                         for(i=0; i<cant_reg/2; i++){ /*copio mitad-1 aca y mitad en el nuevo*/
740                                 /*avanzo*/
741                                 aux += sizeof(EMUFS_REG_ID)+tam_reg;
742                                 move_size += sizeof(EMUFS_REG_ID)+tam_reg;
743                         }/*apunto al reg mitad_mas_uno para copiar todo a otro bloque*/
744                         /*copio el resto del bloque al nuevo bloque*/      /*footer ¿?*/
745                         memcpy(new_bloque, aux, emu->tam_bloque-move_size-sizeof(int));
746                         /*borro lo que sobra en el bloque original, guardando el footer*/
747                         memset(aux, 0, emu->tam_bloque - move_size - sizeof(int));
748                         menor_clave_bloque_nuevo = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));                   
749                         /* TENGO QUE VER EN CUAL DE LOS DOS BLOQUES METO EL REGISTRO NUEVO */
750                         if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, query.clave) ){
751                                 PERR("GRABO EN EL BLOQUE NUEVO"); 
752                                 /*actualizo la cant de registros del bloque original (footer)*/
753                                 memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
754                                 /*actualizo el footer del nuevo bloque*/
755                                 dif = cant_reg - i; /*por las dudas*/
756                                 memcpy(new_bloque+emu->tam_bloque-sizeof(int), &dif, sizeof(int));
757                                 /*genero un nuevo espacio para un bloque en el archivo y lo cargo en queryla clave ya estaba en query desde antes*/
758                                 num_bloque = query.num_bloque;
759                                 query.num_bloque = emufs_create_new_block(emu);
760                                 /*inserto el nuevo registro en el nuevo bloque y obtengo la clave del menor*/
761                                 clave = grabar_ordenado_en_bloque(emu,ptr,size,new_bloque,query.num_bloque, emu->tam_bloque-move_size,err);
762                                 /*actualizo el arbol con la nueva clave*/
763                                 query.clave = clave;
764                                 emufs_b_plus_insertar(emu->indices, &query);
765                                 /*grabo el bloque original*/
766                                 emufs_tipo3_grabar_bloque(emu, bloque, num_bloque);
767                         } else {
768                                 PERR("GRABO EN BLOQUE VIEJO");
769                                 /* GRABO EN EL BLOQUE VIEJO */
770                                 /*actualizo la cant de registros del bloque original (footer)*/
771                                 memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
772                                 /*actualizo el footer del nuevo bloque*/
773                                 dif = cant_reg - i; /*por las dudas*/
774                                 /*meto el footer en el reg */
775                                 memcpy(new_bloque+emu->tam_bloque-sizeof(int), &dif, sizeof(int));
776                                 /*guardo el num de bloque original */
777                                 num_bloque = query.num_bloque;
778                                 /* pido un bloque nuevo para guardar */
779                                 query.num_bloque = emufs_create_new_block(emu);
780                                 /*grabo el bloque nuevo*/
781                                 emufs_tipo3_grabar_bloque(emu, new_bloque, query.num_bloque);
782                                 /*grabo el registro en el bloque original*/
783                                 grabar_ordenado_en_bloque(emu,ptr,size,bloque,num_bloque,fs+move_size,err);
784                                 /*actualizo el arbol con la menor clave del bloque nuevo*/
785                                 query.clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
786                                 emufs_b_plus_insertar(emu->indices, &query);
787                         }
788                         if(*err != 0){
789                                 PERR("NO SE PUDO GRABAR ORDENADO");
790                                 free(new_bloque);
791                                 free(bloque);
792                                 return -1;
793                         }
794                         free(new_bloque);
795                         free(bloque);
796                         return header;
797                 }
798         }
799         if (new_bloque) free(new_bloque);
800         if (bloque) free(bloque);
801         return header;
802 }
803
804 /*inserta un registro ordenado en un bloque y devuelve la menor de las claves*/
805 CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void *bloque, int num_bloque, EMUFS_FREE fs, int *err)
806 {
807         char *aux, *new_bloque;
808         int cant_reg, tam_reg, i, j;
809         EMUFS_REG_ID header;
810         CLAVE clave, clave_ajena;
811
812         tam_reg = size; 
813         /*saco la cant de registros del bloque*/
814         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
815         /*obtengo la clave del nuevo registro*/
816         clave = emufs_indice_generar_clave(emu->indices, ptr);
817         /*cargo el header*/
818         header = emufs_idx_get_new_id(emu, err);
819         new_bloque = (char*)malloc(emu->tam_bloque);
820         memset(new_bloque, 0, emu->tam_bloque);
821         aux = new_bloque;
822         for (i=0; i<cant_reg+1; i++){
823                 bloque += sizeof(EMUFS_REG_ID); /*salteo el encabezado del registro*/
824                 if ( emu->tam_bloque-fs < sizeof(EMUFS_REG_ID)+emu->indices->offset ){
825                         PERR("ESTOY LEYENDO FUERA DEL BLOQUE!!!");
826                         free(new_bloque);
827                         *err = -1;
828                         return clave;
829                 }
830                 clave_ajena = emufs_indice_generar_clave(emu->indices, bloque); /*leo la clave*/
831                 bloque -= sizeof(EMUFS_REG_ID); /*vuelvo al principio*/
832                 if (  i<cant_reg && emufs_indice_es_menor(emu->indices, clave_ajena, clave) ){
833                         /*copio el reg al bloque nuevo*/
834                         memcpy(new_bloque, bloque, sizeof(EMUFS_REG_ID)+tam_reg);
835                         bloque += sizeof(EMUFS_REG_ID)+ tam_reg; /*paso al proximo*/
836                         new_bloque += sizeof(EMUFS_REG_ID)+ tam_reg; /*dejo preparado*/
837                         continue;
838                 } else {
839                         /*meto el registro que me mandan*/
840                         memcpy(new_bloque, &header, sizeof(EMUFS_REG_ID));
841                         memcpy(new_bloque+sizeof(EMUFS_REG_ID), ptr, size);
842                         new_bloque += sizeof(EMUFS_REG_ID)+size;
843                         /*tengo que copiar los que faltan*/
844                         j = i;
845                         while ( j < cant_reg ){
846                                 memcpy(new_bloque, bloque, sizeof(EMUFS_REG_ID)+tam_reg);
847                                 bloque += sizeof(EMUFS_REG_ID)+tam_reg;
848                                 new_bloque += sizeof(EMUFS_REG_ID)+tam_reg;
849                                 j++;
850                         }
851                 break; /*corto el for porque ya inserte todos*/
852                 }
853         }
854         /*grabo el bloque en el archivo*/
855         new_bloque = aux; /*apunto al principio del bloque*/
856         cant_reg++; /*voy a poner un reg mas*/
857         memcpy(new_bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
858         emufs_tipo3_grabar_bloque(emu, new_bloque, num_bloque);
859         clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_REG_ID));
860         free(new_bloque);
861         return clave;
862 }
863
864 int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato)
865 {
866         char *bloque, *aux;
867         INDEX_DAT query;
868         int result, iter, cant_reg;
869         EMUFS_REG_SIZE tam_reg = emu->tam_reg;
870         CLAVE clave_ajena, ancla;
871         int err = 0;
872
873         /*cargo el query para buscar*/
874         query.num_bloque = 0;
875         query.clave = clave;
876         /*mando a buscar el bloque donde esta la clave que quiero eliminar*/
877         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
878         if ( result == 1 ){
879                 PERR("SE PRODUJO UN ERROR EN EL ARBOL");
880                 return -1;
881         }
882         if ( result == -1 ){
883                 PERR("NO EXISTE EL BLOQUE ¿?¿?¿?");
884                 return -1;
885         }
886         /*cargo el bloque que corresponde*/
887         bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, &err);
888         if ( bloque == NULL ){
889                 PERR("NO SE CARGO EL BLOQUE");
890                 return -1;
891         }
892         /*me fijo si el que tengo que eliminar es el ancla del bloque*/
893         ancla = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
894         /*leo la cantidad de registros en el bloque*/
895         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
896         /*busco y elimino*/
897         iter = 0;
898         aux = bloque;
899         while ( iter < emu->tam_bloque ){
900                 clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_REG_ID));
901                 if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
902                         /*tenngo que borrar este registro*/
903                         /*limpio el espacio que ocupaba*/
904                         memset(aux, 0, tam_reg+sizeof(EMUFS_REG_ID));
905                         /*hay que reacomodar todo*/
906                         /*me posiciono en el reg siguiente*/
907                         iter += tam_reg+sizeof(EMUFS_REG_ID);
908                         break;/*ya borre, corto aca*/
909                 }
910                 iter += tam_reg+sizeof(EMUFS_REG_ID);
911                 aux += tam_reg+sizeof(EMUFS_REG_ID);
912         }
913         /*reacomodo el bloque */
914         memcpy(aux, aux+tam_reg+sizeof(EMUFS_REG_ID), emu->tam_bloque-iter-sizeof(int));
915         /*le vuelvo a copiar la cantidad de registros*/
916         cant_reg--;
917         memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
918         /*grabo el bloque en el archivo*/
919         if ( emufs_tipo3_grabar_bloque(emu, bloque, query.num_bloque) == -1){
920                 PERR("NO SE PUDO GRABAR EL BLOQUE");
921                 free(bloque);
922                 return -1;
923         }
924         /*me fijo si el que tengo que eliminar es el ancla del bloque*/
925         if ( emufs_indice_es_igual(emu->indices, clave, ancla) ){
926                 if ( cant_reg == 0 )
927                         emufs_b_plus_eliminar(emu->indices, clave, 0);
928                 else {
929                         /*obtengo la nueva ancla del bloque*/
930                         query.clave = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
931                         emufs_b_plus_reemplazar_clave(emu->indices, ancla, query, 0);
932                 }
933         }
934         free(bloque);
935         return 0;
936 }
937
938 void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err)
939 {
940         CLAVE clave_ajena;
941         char *reg = NULL; 
942         char *bloque, *aux;
943         INDEX_DAT query;
944         int result, cant_reg, i;
945         EMUFS_REG_SIZE tam_reg;
946         
947         tam_reg = emu->tam_reg;
948         /*cargo el query*/
949         query.clave = clave;
950         query.num_bloque = 0;
951         /*hago la consulta*/
952         
953         result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
954         if (result == -1){
955                 PERR("NO EXISTE EL BLOQUE");
956                 return NULL;
957         }
958         if (result == 1){
959                 PERR("SE PRODUJO UN ERROR EN EL ARBOL");
960                 return NULL;
961         }
962         /*leo el bloque*/
963         bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, err);
964         /*busco el registro en el bloque*/
965         /*copio la cantidad de registros*/
966         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
967         aux = bloque;
968         for (i=0; i<cant_reg; i++){
969                 /*leo la clave*/
970                 clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_REG_ID));
971                 if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
972                         reg = (char*)malloc(tam_reg);
973                         if (reg == NULL){
974                                 PERR("NO SE PUDO CARGAR EL REGISTRO");
975                                 *err = -1;
976                                 free(bloque);
977                                 return NULL;
978                         }
979                         /*copio el registro*/
980                         memcpy(reg, aux+sizeof(EMUFS_REG_ID), tam_reg);
981                         *size = tam_reg;
982                         break; /*ya lo encontre, corto el for*/
983                 }
984                 aux += tam_reg+sizeof(EMUFS_REG_ID); /*paso al proximo*/
985         }
986         if ( i == cant_reg ) *err=-1;
987         free(bloque);
988         return reg;
989 }
990
991
992 EMUFS_REG_ID emufs_tipo3_modificar_registro_plus(EMUFS *emu, CLAVE k, void *ptr , EMUFS_REG_SIZE size, int* err, INDICE_DATO dato)
993 {
994         emufs_tipo3_eliminar_ordenado(emu, k, dato);
995         return emufs_tipo3_insertar_ordenado(emu, ptr, size, err);
996 }
997
998 B_PLUS_KEYBUCKET *emufs_tipo3_obtener_claves_raw(EMUFS *emu, int num_bloque)
999 {
1000         B_PLUS_KEYBUCKET *keys;
1001         char *bloque, *aux;
1002         int err = 0, cant_reg, i;
1003         EMUFS_REG_SIZE tam_reg = emu->tam_reg;
1004         
1005         keys = (B_PLUS_KEYBUCKET*)malloc(sizeof(B_PLUS_KEYBUCKET));
1006         if (keys == NULL){
1007                 PERR("NO SE PUDO CREAR EL BUCKET");
1008                 return NULL;
1009         }
1010         /*leo el bloque*/
1011         bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err);
1012         if ( bloque == NULL ){
1013                 PERR("NO SE PUDO LEER EL BLOQUE");
1014                 return NULL;
1015         }
1016         aux = bloque;
1017         /*leo la cantidad de registros*/
1018         memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
1019         /*ya se cuanto guardarle al vector*/
1020         keys->claves = (CLAVE*)malloc(cant_reg*sizeof(CLAVE));
1021         if (keys->claves == NULL){
1022                 PERR("NO SE PUDO CREAR EL ARRAY DE CLAVES");
1023                 free(keys);
1024                 return NULL;
1025         }
1026         keys->cant_keys = cant_reg;
1027         keys->current_key = 0;
1028         
1029         for (i=0; i<cant_reg; i++){
1030                 keys->claves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_REG_ID));
1031                 bloque += tam_reg+sizeof(EMUFS_REG_ID);
1032         }
1033         free(aux);
1034         return keys;
1035 }