]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1.c
* Agrego a la lista capacidad de imprimirse a un archivo, para
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
index 319b3e298cc1fd233351b1495df1cdc823c1eb95..05e2f7170fe8c4340b38e4af4ac23d665ab256d6 100644 (file)
@@ -98,6 +98,8 @@ int emufs_tipo1_inicializar(EMUFS* efs)
        efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
        efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
        efs->compactar         = emufs_tipo1_compactar;
+       efs->modificar_registro= emufs_tipo1_modificar_registro;
+       efs->obtener_claves_raw= emufs_tipo1_obtener_claves_raw;
        efs->tam_reg = 0;
        return EMUFS_OK;
 }
@@ -120,6 +122,8 @@ int emufs_tipo4_inicializar(EMUFS* efs)
        efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
        efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
        efs->compactar         = emufs_tipo1_compactar;
+       efs->modificar_registro= emufs_tipo1_modificar_registro_plus;
+       efs->obtener_claves_raw= emufs_tipo1_obtener_claves_raw;
        efs->tam_reg = 0;
        return EMUFS_OK;
 }
@@ -722,7 +726,9 @@ EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque_fsc(EMUFS *efs, void *block,
 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS* efs, CLAVE k,
                void *data, EMUFS_REG_SIZE size, int* err, INDICE_DATO dato)
 {
+       PERR("Tipo1 Modificar Borrando");
        emufs_tipo1_borrar_registro(efs, k, dato);
+       PERR("Tipo1 Modificar Agregando de nuevo");
        return emufs_tipo1_grabar_registro(efs, data, size, err);
 }
 
@@ -874,7 +880,7 @@ EMUFS_REG_ID emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE
                        memset(aux, 0, emu->tam_bloque - move_size - sizeof(int));
                        menor_clave_bloque_nuevo = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_TIPO1_REG_HEADER));
                        /* TENGO QUE VER EN CUAL DE LOS DOS BLOQUES METO EL REGISTRO NUEVO */
-                       if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, clave) ){
+                       if ( emufs_indice_es_menor(emu->indices, menor_clave_bloque_nuevo, query.clave) ){
                                /* GRABO EN EL BLOQUE NUEVO */
                                /*actualizo la cant de registros del bloque original (footer)*/
                                memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
@@ -1129,7 +1135,7 @@ EMUFS_REG_ID emufs_tipo1_modificar_registro_plus(EMUFS *emu, CLAVE k, void *ptr
 B_PLUS_KEYBUCKET *emufs_tipo1_obtener_claves_raw(EMUFS *emu, int num_bloque)
 {
        B_PLUS_KEYBUCKET *keys;
-       char *bloque;
+       char *bloque, *aux;;
        int err = 0, cant_reg, i;
        EMUFS_REG_SIZE tam_reg;
        
@@ -1144,12 +1150,14 @@ B_PLUS_KEYBUCKET *emufs_tipo1_obtener_claves_raw(EMUFS *emu, int num_bloque)
                PERR("NO SE PUDO LEER EL BLOQUE");
                return NULL;
        }
+       aux = bloque;
        /*leo la cantidad de registros*/
        memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
        /*ya se cuanto guardarle al vector*/
        keys->claves = (CLAVE*)malloc(cant_reg*sizeof(CLAVE));
        if (keys->claves == NULL){
                PERR("NO SE PUDO CREAR EL ARRAY DE CLAVES");
+               free(bloque);
                free(keys);
                return NULL;
        }
@@ -1160,6 +1168,6 @@ B_PLUS_KEYBUCKET *emufs_tipo1_obtener_claves_raw(EMUFS *emu, int num_bloque)
                keys->claves[i] = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_TIPO1_REG_HEADER));
                bloque += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER);
        }
-       free(bloque);
+       free(aux);
        return keys;
 }