+/** 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 = 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 = 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 = 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 = 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;
+}
+