X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ee8568afe20289bebd04904350c3f2563fc90e4a..2b317be73e4cfc0751df22597752cd98ce51740c:/emufs/did.c diff --git a/emufs/did.c b/emufs/did.c index 407b123..5c386b5 100644 --- a/emufs/did.c +++ b/emufs/did.c @@ -40,18 +40,21 @@ #include #include +/* Crea un archivo de ID's Liberados. */ int emufs_did_crear(EMUFS* efs) { return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_DID_EXT); } -int emufs_did_get_last(EMUFS *emu) +/* Devuelve el ID Libre, liberado mas recientemente (pila) */ +EMUFS_REG_ID emufs_did_get_last(EMUFS *efs) { - FILE * f_did; - int id, offset; + FILE *f_did; + EMUFS_REG_ID n_RegId; + EMUFS_OFFSET n_Offset; char name_f_did[255]; - strcpy(name_f_did, emu->nombre); + strcpy(name_f_did, efs->nombre); strcat(name_f_did, EMUFS_DID_EXT); if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/ @@ -59,35 +62,35 @@ int emufs_did_get_last(EMUFS *emu) if (ftell(f_did) > 0){ /* si el archivo no esta vacio es porque hay un nro disponible*/ - fseek(f_did, -sizeof(int),SEEK_END); + fseek(f_did, -sizeof(EMUFS_REG_ID),SEEK_END); /* leo el ultimo numero */ - fread(&id,sizeof(int),1,f_did); + fread(&n_RegId,sizeof(EMUFS_REG_ID),1,f_did); /* voy al final */ fseek(f_did, 0, SEEK_END); /* mido el tamaño del archivo*/ - offset = ftell(f_did); + n_Offset = ftell(f_did); fclose(f_did); /*lo trunco */ - truncate(name_f_did, offset - sizeof(int)); + truncate(name_f_did, n_Offset - sizeof(EMUFS_REG_ID)); } else { fclose(f_did); /* si el archivo esta vacio */ - id = -1; + n_RegId = -1; } - return id; + return n_RegId; } -/*agrego un elemento al archivo */ -int emufs_did_agregar(EMUFS *emu, int ID) +/* Agrega un registro al archivo de ID's Libres (pila) */ +int emufs_did_agregar(EMUFS *efs, EMUFS_REG_ID n_RegId) { FILE *f_did; char name_f_did[255]; - strcpy(name_f_did, emu->nombre); + strcpy(name_f_did, efs->nombre); strcat(name_f_did, EMUFS_DID_EXT); if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1; - fwrite(&ID, sizeof(int), 1, f_did); + fwrite(&n_RegId, sizeof(EMUFS_REG_ID), 1, f_did); fclose(f_did); return 0;