From af2db71b678cb55506b2f4362879e962bf6e277e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicol=C3=A1s=20Dimov?= Date: Fri, 28 May 2004 20:15:34 +0000 Subject: [PATCH] un par de test mas superados, pero cuesta --- emufs/tipo1.c | 7 ++++++- emufs/tipo1_bplus_main.c | 35 ++++++++++++++++++++++++++++++++--- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 6d8c341..419306c 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -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; itam_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; itam_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)); diff --git a/emufs/tipo1_bplus_main.c b/emufs/tipo1_bplus_main.c index c1056c5..6e96b56 100644 --- a/emufs/tipo1_bplus_main.c +++ b/emufs/tipo1_bplus_main.c @@ -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; } -- 2.43.0