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