*/
#include "fsc.h"
-#include <string.h>
#include <unistd.h>
+#include <sys/types.h>
+#include <string.h>
/* Crea un archivo de Gaps o Espacio Libre en Bloque */
int emufs_fsc_crear(EMUFS* efs)
return reg.marker;
}
+/** Busca n lugares consecutivos devolviendo el id del primer bloque. */
+EMUFS_BLOCK_ID emufs_fsc_buscar_n_lugares(EMUFS* efs, size_t n,
+ EMUFS_FREE reg_size, EMUFS_FREE *freespace, int* err)
+{
+ FILE *f_fsc;
+ EMUFS_FSC reg;
+ char name_f_fsc[255];
+
+ /* chequeo que al menos se busque un lugar */
+ if (!n) {
+ PERR("Se debe buscar al menos un lugar");
+ *err = 13; /* EMUFS_ERROR_WRONG_ARGUMENT */
+ return EMUFS_NOT_FOUND;
+ }
+
+ /* abre archivo */
+ strcpy(name_f_fsc, efs->nombre);
+ strcat(name_f_fsc, EMUFS_FSC_EXT);
+ if (!(f_fsc = fopen(name_f_fsc, "rb"))) {
+ PERR("No se puede abrir archivo");
+ *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
+ return EMUFS_NOT_FOUND;
+ }
+
+ /* busca el espacio libre */
+ while(!feof(f_fsc)) {
+ if ((fread(®, sizeof(EMUFS_FSC), 1, f_fsc) != 1)) {
+ if (feof(f_fsc)) break;
+ PERR("No se puede leer el archivo");
+ *err = 3; /* EMUFS_ERROR_FILE_READ */
+ return EMUFS_NOT_FOUND;
+ }
+ if (reg.freespace >= reg_size) {
+ int found = 1;
+ EMUFS_BLOCK_ID first_id = reg.marker;
+ *freespace = reg.freespace;
+ while (--n) {
+ if (fread(®, sizeof(EMUFS_FSC), 1, f_fsc) != 1) {
+ if (feof(f_fsc)) break;
+ PERR("No se puede leer el archivo");
+ *err = 3; /* EMUFS_ERROR_FILE_READ */
+ return EMUFS_NOT_FOUND;
+ }
+ /* no hay otro lugar consecutivo */
+ if (reg.freespace < reg_size) {
+ found = 0;
+ break;
+ }
+ }
+ if (found) {
+ fclose(f_fsc);
+ return first_id;
+ }
+ }
+ }
+ /* no se encontrĂ³ espacio libre */
+ *freespace = efs->tam_bloque;
+ return EMUFS_NOT_FOUND;
+}
+
/* Devuelve el espacio libre de un Bloque o Gap dado */
EMUFS_FREE emufs_fsc_get_fs(EMUFS *emu, EMUFS_BLOCK_ID marker)
{