+ EMUFS_REG_ID pos_gap_before = 0, pos_gap_after = 0;
+ unsigned long source,destination,limit,file_size,reg_count = 0,cant_moved = 0;
+ char found = 0;
+
+ strcpy(name_f_fsc,emu->nombre);
+ strcat(name_f_fsc, EMUFS_FSC_EXT);
+
+ gap_before.marker = -1;
+ gap_after.marker = -1;
+
+ /* Busco si hay un GAP por delante y/o por detras del que se esta por crear */
+ /* para en dicho caso realizar un merge! */
+ if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1;
+ while ( !feof(f_fsc) ){
+ if ( fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
+
+ /* Chequeo si es un gap justo anterior al nuestro */
+ if (gap_aux.marker+gap_aux.freespace == marker) {
+ gap_before.marker = gap_aux.marker;
+ gap_before.freespace = gap_aux.freespace;
+ pos_gap_before = reg_count;
+ }
+
+ /* Chequeo si es un gap justo posterior al nuestro */
+ if (gap_aux.marker == marker+freespace) {
+ gap_after.marker = gap_aux.marker;
+ gap_after.freespace = gap_aux.freespace;
+ pos_gap_after = reg_count;
+ }
+ reg_count += 1;
+ }
+
+/* Si no encontre gaps ni por delante ni por detras */
+ if ((gap_before.marker == -1) && (gap_after.marker == -1)) {
+ /* Lo guardo ordenado donde deba ir */
+ gap_new.marker = marker;
+ gap_new.freespace = freespace;
+ /* Busco el gap que sucede a este */
+ fseek(f_fsc,0,SEEK_SET);
+ while (!feof(f_fsc)) {
+ fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
+ if (gap_aux.marker > gap_new.marker) {
+ found = 1;
+ break;
+ }
+ }
+ if (found == 1) {
+ /* Movemos todos los gaps desde el sucesor hasta el final, una pos adelante */
+ limit = ftell(f_fsc) - sizeof(EMUFS_FSC);
+ fseek(f_fsc,0,SEEK_END);
+ reg_count = (ftell(f_fsc) - limit) / sizeof(EMUFS_FSC);
+ source = ftell(f_fsc) - sizeof(EMUFS_FSC);
+
+ while (cant_moved < reg_count)
+ {
+ fseek(f_fsc,source,SEEK_SET);
+ fread(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
+ fwrite(&gap_aux,sizeof(EMUFS_FSC),1,f_fsc);
+ source -= sizeof(EMUFS_FSC);
+ ++cant_moved;
+ }
+ /* Agrego el nuevo registro */
+ fseek(f_fsc,limit,SEEK_SET);
+ fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
+ }
+ else {
+ fseek(f_fsc,0,SEEK_END);
+ fwrite(&gap_new,sizeof(EMUFS_FSC),1,f_fsc);
+ }
+
+ fclose(f_fsc);
+ }