X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/e4e1c30961f8271ccf63a9762606c2ab1ebd234f..1a91316f990d419553dcad3b40074f6484d28b28:/emufs/tipo3.c diff --git a/emufs/tipo3.c b/emufs/tipo3.c index 23df2f9..60a7139 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -163,7 +163,6 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t lugar = emu->tam_bloque; /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/ num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs); - printf("lugar encontrado en %d\n", num_bloque); /*si no hay bloques con suficiente espacio creo un bloque nuevo */ if (num_bloque == -1) { if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/ @@ -222,7 +221,6 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) { /* TODO Manejo de errores */ PERR("no se pudo leer el bloque"); - printf("bloque: %d i= %d\n", num_bloque, i); return -1; } /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/ @@ -444,7 +442,7 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE return NULL; } cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1; - *size = emu->tam_bloque*cant_bloques + cant_bloques*2 - sizeof(EMUFS_REG_ID)*(cant_bloques-1); + *size = emu->tam_bloque*cant_bloques /*+ cant_bloques*2*/ - sizeof(EMUFS_REG_ID)*(cant_bloques-1); bloque = (char *)malloc(*size); cur = bloque; *pos = 0; @@ -458,8 +456,8 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE } memcpy(cur, tmp, emu->tam_bloque); cur += emu->tam_bloque; - memcpy(cur, "<>", 2); - cur += 2; +/* memcpy(cur, "<>", 2); + cur += 2;*/ free(tmp); /* En resto de los bloques no pongo el ID porque ya esta en el primero */ @@ -472,8 +470,8 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE } memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID)); cur += emu->tam_bloque - sizeof(EMUFS_REG_ID); - memcpy(cur, "<>", 2); - cur += 2; +/* memcpy(cur, "<>", 2); + cur += 2;*/ free(tmp); } (*cur) = '\0'; @@ -519,6 +517,7 @@ void emufs_tipo3_compactar(EMUFS *emu) if (truncate(name, size)!=0) PERR("NO TRUNQUE NADA"); /*hay que truncar el fsc!!!*/ + if(emu->tam_bloquetam_reg-sizeof(EMUFS_REG_ID)) block_id = block_id/2; if (emufs_fsc_truncate(emu, block_id)!= 0) PERR("NO TURNQUE EL FSC"); free(reg);