X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3283ff57869dd9ea293c86cd7bfbcbbe1e920f8a..5a387a8b34609840f1e86a5fc4af8ef47cee8fdd:/emufs/tipo3.c diff --git a/emufs/tipo3.c b/emufs/tipo3.c index 1170f28..feb000f 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -36,51 +36,76 @@ */ #include "tipo3.h" +#include "error.h" +#include +#include +#include +#include /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/ -void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID, int* err) +void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID, + EMUFS_REG_SIZE* reg_size, int* err) { char* bloque; char* registro; /* registro a leer */ EMUFS_BLOCK_ID block; EMUFS_REG_ID ID_aux; EMUFS_BLOCK_SIZE iterador = 0; + int cant_bloques = 0, resto, i, copiado=0; + + cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1; /*si existe, lo busco en el archivo de bloques*/ block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/ - if ((bloque = emufs_tipo3_leer_bloque(emu, block, err)) == NULL) { - /* TODO Manejo de errores, queda en el codigo de error lo que devolvio - * emufs_tipo3_leer_bloque() */ - printf("no se pudo leer el bloque\n"); - return NULL; /*No se pudo leer el bloque*/ + if ( block == EMUFS_NOT_FOUND ){ + PERR("No se encontro el bloque"); + *err = -1; + return NULL; + } + + registro = (char*) malloc(emu->tam_reg); + if (registro == NULL) { + PERR("No hay memoria"); + *err = EMUFS_ERROR_OUT_OF_MEMORY; + return NULL; } - ID_aux = -1; - iterador = 0; - while ( iterador < emu->tam_bloque ) { - memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID)); - iterador += sizeof(EMUFS_REG_ID); - if ( ID_aux == ID ){ - registro = (char*) malloc(emu->tam_reg); - if (registro == NULL) { - /* TODO Manejo de errores */ - free(bloque); - printf("No hay memoria.\n"); - *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */ - return NULL; + resto = emu->tam_bloque - sizeof(EMUFS_REG_ID); + for (i=0; itam_bloque ) { + memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID)); + iterador += sizeof(EMUFS_REG_ID); + if ( ID_aux == ID ){ + if ( cant_bloques == 0 ) + memcpy(registro,bloque+iterador,emu->tam_reg); + else { + if ( cant_bloques-1 == i ) + resto = emu->tam_reg - copiado; + memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto); + copiado += resto; + break; + } + *reg_size = emu->tam_reg; } - memcpy(registro,bloque+iterador,emu->tam_reg); - break; + iterador += emu->tam_reg; } - iterador += emu->tam_reg; + free(bloque); } - - free(bloque); + return registro; } /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/ -void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err) +void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID ID, int* err) { FILE* file; char* block; /* bloque leido (en donde está el registro a leer) */ @@ -90,24 +115,29 @@ void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err) strcat(name_f,".dat"); if ((file = fopen(name_f, "r")) == NULL) { - *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */ - return NULL; /* FIXME ERROR */ + PERR("No se pudo abrir el archivo de datos"); + *err = EMUFS_ERROR_CANT_OPEN_FILE; + return NULL; } - fseek(file,sizeof(EMUFS_TYPE)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET); + fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET); /*FIXME: verificar que no se pase de fin de archivo*/ - fseek(file,ID*emu->tam_bloque,SEEK_CUR); + if (fseek(file,ID*emu->tam_bloque,SEEK_CUR) != 0){ + PERR("Fallo la busqueda del bloque"); + *err=3; + return NULL; + } + block = (char*) malloc(emu->tam_bloque); if (block == NULL) { - /* TODO Manejo de errores */ - printf("No hay memoria.\n"); - *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */ + PERR("No hay memoria"); + *err = EMUFS_ERROR_OUT_OF_MEMORY; return NULL; } if (fread(block, emu->tam_bloque, 1, file) != 1) { /* TODO Manejo de errores */ free(block); - printf("Error al leer bloque.\n"); - *err = 3; /* EMUFS_ERROR_FILE_READ */ + PERR("Error al leer bloque"); + *err = EMUFS_ERROR_FILE_READ; return NULL; } @@ -115,7 +145,7 @@ void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err) return block; } -EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam) +EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err) { EMUFS_REG_ID ID_aux; EMUFS_FREE fs; @@ -123,89 +153,133 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t EMUFS_BLOCK_SIZE cant; FILE *file; char name_f[255]; - char* bloque; - int err = 0; + char* bloque = NULL; + int cant_bloques, resto, i=0, lugar; strcpy(name_f,emu->nombre); strcat(name_f,".dat"); + cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1; + resto = emu->tam_bloque - sizeof(EMUFS_REG_ID); + lugar = emu->tam_reg + sizeof(EMUFS_REG_ID); + if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) ) + 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, emu->tam_reg, &fs); + num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs); /*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*/ - /*crear un nuevo bloque en memoria */ - bloque = (char*)malloc(emu->tam_bloque); - /* grabar el registro al principio del bloque */ /*tengo que buscar un ID valido para el nuevo registro*/ - ID_aux = emufs_tipo3_get_id(emu); - /*grabo el id en el bloque*/ - memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID)); - /*grabo el registro en el bloque*/ - memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg); - /* me paro al final del archivo */ - fseek(file, 0, SEEK_END); - /* grabo el bloque en el final del archivo */ - fwrite(bloque,emu->tam_bloque,1,file); - /*actualizo el archivo de espacios libres*/ - /*tengo que buscar la cantidad de bloques que existen*/ - /*me paro al principio salteando el encabezado del archivo*/ - fseek(file, 0, SEEK_END); /* Me paro al final */ - cant = (ftell(file)-(sizeof(EMUFS_TYPE)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque; - cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */ - fclose(file); - num_bloque = cant; - /* grabo el nuevo registro en el archivo de espacios libres */ - if ( emufs_fsc_agregar(emu, num_bloque, emu->tam_bloque - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ) { - free(bloque); - return -1; + ID_aux = emufs_idx_get_new_id(emu, err); + /* El free esta al final de la funcion! */ + bloque = (char*)malloc(emu->tam_bloque); + for (i=0; itam_bloque); + /* grabar el registro al principio del bloque */ + /*grabo el id en el bloque*/ + memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID)); + /*grabo el registro en el bloque*/ + if ( cant_bloques == 1 ){ + memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg); + } else { + if ( cant_bloques-1 == i ) + resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID)); + memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto); + } + /* me paro al final del archivo */ + fseek(file, 0, SEEK_END); + /* grabo el bloque en el final del archivo */ + fwrite(bloque,emu->tam_bloque,1,file); + /*actualizo el archivo de espacios libres*/ + /*tengo que buscar la cantidad de bloques que existen*/ + fseek(file, 0, SEEK_END); /* Me paro al final */ + cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque; + cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */ + num_bloque = cant; + + if (i == 0) { + /* Tengo que agregar el primer bloque en IDX */ + if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){ + free(bloque); + return -1; + } + } + + /* grabo el nuevo registro en el archivo de espacios libres */ + if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg; + if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) { + fclose(file); + free(bloque); + return -1; + } + } + fclose(file); } else { - /*cargo el bloque en "bloque"*/ - if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) { - /* TODO Manejo de errores */ - printf("no se pudo leer el bloque\n"); - return -1; - } - /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/ - /*insertar el registro en el bloque*/ /*tengo que buscar un ID valido para el nuevo registro*/ - ID_aux = emufs_tipo3_get_id(emu); - /*grabo el id en el bloque*/ - memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID)); - /*grabo el registro en el bloque*/ - memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg); - if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) != 0) { - printf("error al grabar bloque\n"); - return -1; /* se produjo un error */ - } - /*actualizo el archivo de espacios libres*/ - if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){ - free(bloque); - return -1; + ID_aux = emufs_idx_get_new_id(emu, err); + for (i=0; itam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg) + memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID)); + else + memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID)); + /*grabo el registro en el bloque*/ + if ( cant_bloques == 1 ){ + memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg); + } else { + if ( cant_bloques-1 == i ) + resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID)); + memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto); + } + + /*grabo el bloque en el archivo*/ + if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) { + PERR("error al grabar bloque"); + if (bloque) free(bloque); + return -1; /* se produjo un error */ + } + + /*actualizo el archivo de espacios libres*/ + if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){ + resto = emu->tam_reg; + if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) { + fclose(file); + if (bloque) free(bloque); + return -1; + } + } else { + if ( cant_bloques-1 == i ) + resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID)); + if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){ + fclose(file); + if (bloque) free(bloque); + return -1; + } + } + if ( i == 0 ){ + if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){ + if (bloque) free(bloque); + return -1; + } + } } } - - /*actualizo el archivo de bloques y registros*/ - if ( emufs_idx_agregar(emu, num_bloque, ID_aux) != 0 ){ - free(bloque); - return -1; - } - - free(bloque); + if (bloque) free(bloque); return ID_aux; } -/*Busco en el archivo de Id`s un Id valido para un nuevo registro*/ -EMUFS_REG_ID emufs_tipo3_get_id(EMUFS *emu) -{ - EMUFS_REG_ID id; - - if ( (id = emufs_did_get_last(emu)) == -1 ) - id = emufs_idx_buscar_mayor_id(emu); - return id; -} - /*Graba un bloque en el archivo*/ int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num) { @@ -217,7 +291,7 @@ int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num) if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/ /* Salto el header del archivo */ - fseek(file, sizeof(EMUFS_TYPE)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET); + fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET); fseek(file, num*emu->tam_bloque, SEEK_CUR); fwrite(ptr, emu->tam_bloque, 1, file); @@ -234,12 +308,12 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID) EMUFS_REG_ID ID_aux; EMUFS_FREE fs; char *bloque; - int err = 0; + int err = 0, i; num_bloque = emufs_idx_buscar_registro(emu, ID); if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) { /* TODO Manejo de errores */ - printf("no se pudo leer el bloque\n"); + PERR("no se pudo leer el bloque"); return -1; } @@ -251,33 +325,237 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID) break; ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID); } - + /*apunto al registro que voy a mover*/ ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID); - while ( ptr_mov < emu->tam_bloque ){ + while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){ memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg); + /* Blanqueo el area que movi */ + memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg); ptr_elim = ptr_mov; ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg; } - + /*grabo el bloque en el archivo*/ + if ( emu->tam_bloque < emu->tam_reg ) + memset(bloque, 0, emu->tam_bloque); if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){ free(bloque); - printf("No se pudo grabar el bloque\n"); + PERR("No se pudo grabar el bloque"); return -1; } - + /*actualizo archivo .fsc*/ - fs = emufs_fsc_get_fs(emu, num_bloque); - if ( emufs_fsc_actualizar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1; - + if ( emu->tam_bloque < emu->tam_reg ) { + for (i=0; itam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++) + if (emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque)) { + PERR("no se pudo agregar fsc"); + free(bloque); + return -1; + } + } else { + fs = emufs_fsc_get_fs(emu, num_bloque); + if (emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID))) { + PERR("no se pudo agregar fsc"); + free(bloque); + return -1; + } + } /*actualizo archivo .did*/ - if ( emufs_did_agregar(emu, ID) != 0 ) return -1; + if (emufs_did_agregar(emu, ID)) { + PERR("no se pudo agregar did"); + free(bloque); + return -1; + } /*actualizo archivo .idx*/ - if ( emufs_idx_borrar(emu, ID) != 0 ) return -1; - + if (emufs_idx_borrar(emu, ID)) { + PERR("no se pudo agregar idx"); + free(bloque); + return -1; + } + free(bloque); return 0; } + +EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu) +{ + FILE *f; + EMUFS_Estadisticas stats; + EMUFS_REG_ID *tmp; + char name_f[255]; + + memset(&stats,0,sizeof(EMUFS_Estadisticas)); + strcpy(name_f,emu->nombre); + strcat(name_f,".dat"); + if ( (f = fopen(name_f,"r")) == NULL){ + PERR("No se pudo abrir el archivo"); + return stats; + } + + fseek(f,0,SEEK_END); + stats.tam_archivo_bytes = ftell(f); + stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/ + emu->tam_bloque; + tmp = emufs_idx_get(emu, &stats.tam_archivo); + if (tmp) free(tmp); + stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+ + sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE); + /* Obtengo las stats de FSC */ + stats.total_fs = emufs_fsc_get_total_fs(emu); + stats.media_fs = emufs_fsc_get_media_fs(emu); + emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs); + + fclose(f); + return stats; +} + +EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error) +{ + emufs_tipo3_borrar_registro(emu, id); + return emufs_tipo3_grabar_registro(emu, data, size, error); +} + +void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos) +{ + char* bloque, *tmp, *cur; + EMUFS_BLOCK_ID block; + EMUFS_REG_ID ID_aux; + EMUFS_BLOCK_SIZE iterador = 0; + int err, cant_bloques, i; + + bloque = NULL; + if (emu->tam_reg < emu->tam_bloque) { + /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */ + block = emufs_idx_buscar_registro(emu,ID); + if ( block == EMUFS_NOT_FOUND ) { + return NULL; + } + if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) { + return NULL; + } + + ID_aux = -1; + iterador = 0; + + /* Busco el offset desde el comienzo desde donde arranca el registro + * buscado, para luego resaltarlo en al GUI + */ + while ( iterador < emu->tam_bloque ) { + memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID)); + if ( ID_aux == ID ){ + *pos = iterador; + *size = emu->tam_bloque; + break; + } + iterador += sizeof(EMUFS_REG_ID); + iterador += emu->tam_reg; + } + } else { + /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */ + + /* Busco el primer bloque */ + block = emufs_idx_buscar_registro(emu,ID); + if ( block == EMUFS_NOT_FOUND ){ + 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); + bloque = (char *)malloc(*size); + cur = bloque; + *pos = 0; + + /* El bloque 0 va completo */ + err = 0; + if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) { + /* Oops! ... un bloque no existe, todo mal! */ + free(bloque); + return NULL; + } + memcpy(cur, tmp, emu->tam_bloque); + cur += emu->tam_bloque; +/* memcpy(cur, "<>", 2); + cur += 2;*/ + free(tmp); + + /* En resto de los bloques no pongo el ID porque ya esta en el primero */ + for(i=1; itam_bloque-sizeof(EMUFS_REG_ID)); + cur += emu->tam_bloque - sizeof(EMUFS_REG_ID); +/* memcpy(cur, "<>", 2); + cur += 2;*/ + free(tmp); + } + (*cur) = '\0'; + } + return bloque; +} + +void emufs_tipo3_compactar(EMUFS *emu) +{ + EMUFS_REG_ID *tmp, max_id; + EMUFS_BLOCK_ID block_id; + EMUFS_REG_SIZE size; + EMUFS_FREE fs; + char name[255]; + char *reg; + int err=0, ID_aux, i; + + strcpy(name, emu->nombre); + strcat(name, ".dat"); + + /* si el bloque es mas chico que el registro no hace falta compactar */ + /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return; */ + + tmp = emufs_idx_get(emu, &max_id); + if (tmp) free(tmp); + for( i=0; i<=max_id; i++){ + /* si el id no existe paso al siguiente*/ + if ( emufs_idx_existe_id(emu, i) != 0 ) continue; + reg = emufs_tipo3_leer_registro(emu, i, &size, &err); + if (err){ + PERR("No se pudo leer el registro"); + return; + } + emufs_tipo3_borrar_registro(emu, i); + ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err); + free(reg); + } + /*tengo que truncar el archivo*/ + /*bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1; + */ + block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs); + size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque; + 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"); +} + +void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente, + EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3) +{ + int err; + (*actual) = emufs_tipo3_leer_bloque(efs, id, &err); + (*anterior) = emufs_tipo3_leer_bloque(efs, id-1, &err); + (*siguiente) = emufs_tipo3_leer_bloque(efs, id+1, &err); + if (!(*anterior)) { + (*anterior) = (char *)malloc(efs->tam_bloque); + memset(*anterior, 0, efs->tam_bloque); + } + if (!(*siguiente)) { + (*siguiente) = (char *)malloc(efs->tam_bloque); + memset(*siguiente, 0, efs->tam_bloque); + } + (*size1) = (*size2) = (*size3) = efs->tam_bloque; +}