]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
un par de test mas superados, pero cuesta
authorNicolás Dimov <ndimov@gmail.com>
Fri, 28 May 2004 20:15:34 +0000 (20:15 +0000)
committerNicolás Dimov <ndimov@gmail.com>
Fri, 28 May 2004 20:15:34 +0000 (20:15 +0000)
emufs/tipo1.c
emufs/tipo1_bplus_main.c

index 6d8c341c3e4c577898973a054e6406eee94a0343..419306c02e8596cfcf040ac7a2bdf8c04df8d1e8 100644 (file)
@@ -835,9 +835,11 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in
                        PERR("GRABO ORDENADO");                 
                        grabar_ordenado_en_bloque(emu, ptr, size, bloque, query.num_bloque, fs, err);
                        /*en teoria el nuevo registro no debe cambiar el ancla, por lo cual no actualizo el arbol*/
+                       free(bloque);
                        return 0;
                /*aca va lo que saque*/
                } else { /* el registro no entra en el bloque, hay que crear uno nuevo y desparramar */
+                       PERR(" COMO NO ENTRA DEBO DIVIDIR LOS REGISTROS EN 2 BLOQUES");
                        new_bloque = (char*)malloc(emu->tam_bloque);
                        move_size=0;
                        for(i=0; i<cant_reg/2; i++){ /*copio mitad aca y mitad en el nuevo*/
@@ -846,14 +848,17 @@ int emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, in
                                aux += sizeof(EMUFS_TIPO1_REG_HEADER)+tam_reg;
                                move_size += sizeof(EMUFS_TIPO1_REG_HEADER)+tam_reg;
                        }
+                       PERR("ME MOVI LA MITAD DE LOS REGISTROS");
                        /*copio el resto del bloque al nuevo bloque*/
                        memcpy(new_bloque, aux, emu->tam_bloque-move_size);
                        /*borro lo que sobra en el bloque original, guardando el footer*/
                        memset(aux, 0, emu->tam_bloque - move_size - sizeof(int));
                        /*actualizo la cant de registros (footer)*/
                        memcpy(bloque+emu->tam_bloque-sizeof(int), &i, sizeof(int));
+                       PERR("PASE");
                        /*grabo el bloque original*/
                        emufs_tipo1_grabar_bloque_fsc(emu, bloque, num_bloque, EMUFS_NOT_FOUND, err);
+                       PERR("GRABE EL BLOQUE 1 de 2");
                        /*actualizo el footer del nuevo bloque*/
                        dif = cant_reg - i; /*por las dudas*/
                        memcpy(new_bloque+emu->tam_bloque, &dif, sizeof(int));
@@ -887,7 +892,6 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void
        /*cargo el header*/
        header.id = emufs_idx_get_new_id(emu, err);
        header.size = size;
-       cant_reg++; /*voy a poner un reg mas*/
        new_bloque = (char*)malloc(emu->tam_bloque);
        aux = new_bloque;
        for (i=0; i<cant_reg+1; i++){
@@ -926,6 +930,7 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void
        }
        /*grabo el bloque en el archivo*/
        new_bloque = aux; /*apunto al principio del bloque*/
+       cant_reg++; /*voy a poner un reg mas*/
        memcpy(new_bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
        emufs_tipo1_grabar_bloque_fsc(emu, new_bloque, num_bloque, EMUFS_NOT_FOUND, err);
        clave = emufs_indice_generar_clave(emu->indices, new_bloque+sizeof(EMUFS_TIPO1_REG_HEADER));
index c1056c5181b5015598653da58981562c214b51dc..6e96b563590f4b6850abb5a5ece4dfdff753c0ba 100644 (file)
@@ -67,8 +67,8 @@ int main (int argc,char* argv[])
        free(r);
 
 /*REGISTRO 3*/ 
-       texto2="Este es el fin del registro tres, puse tres en numero para que sea mas largo el texto CLAVE = 60";
-       clave.i_clave = 60;     
+       texto2="Este es el fin del registro tres, puse tres en numero para que sea mas largo el texto CLAVE = 95";
+       clave.i_clave = 95;     
        r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
        imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
        len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
@@ -76,7 +76,36 @@ int main (int argc,char* argv[])
        PERR("REGISTRO 3 GRABADO");
        free(r);
        
-       
+/*REGISTRO 4*/ 
+       texto2="REGISTRO CUATRO CLAVE = 99";
+       clave.i_clave = 99;     
+       r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
+       imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
+       len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
+       emufs_tipo1_insertar_ordenado(emu, r, len, &err);
+       PERR("REGISTRO 4 GRABADO");
+       free(r);
+
+/*REGISTRO 5*/ 
+       texto2="el quinto registro tiene un largo promedio como para entrar en el bloque CLAVE = 102";
+       clave.i_clave = 102;    
+       r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
+       imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
+       len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
+       emufs_tipo1_insertar_ordenado(emu, r, len, &err);
+       PERR("REGISTRO 5 GRABADO");
+       free(r);
+
+/*REGISTRO 6*/ 
+       texto2="El registro 6 no entra CLAVE = 106";
+       clave.i_clave = 106;    
+       r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
+       imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
+       len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
+       emufs_tipo1_insertar_ordenado(emu, r, len, &err);
+       PERR("REGISTRO 6 GRABADO");
+       free(r);
+
        return 0;
        
 }