fclose(f_reg_exist);
return id;
}
+
+/*borra un registro de un bloque y acomoda los registros que quedan*/
+int borrar_registro(EMUFS *emu, int ID, int tam_reg)
+{
+ int num_bloque, ptr_elim, ptr_mov, ID_aux;
+ char *bloque;
+ FILE *f_reg_exist, *f_block_reg, *f_block_free;
+ BLOCK_REG_T reg_b;
+ BLOCK_FREE_T reg_f;
+ char name_f_reg_exist[255];
+ char name_f_block_reg[255];
+ char name_f_block_free[255];
+
+ strcpy(name_f_block_reg,emu->nombre);
+ strcat(name_f_block_reg,".idx");
+
+ strcpy(name_f_reg_exist,emu->nombre);
+ strcat(name_f_reg_exist,".did");
+
+ strcpy(name_f_block_free,emu->nombre);
+ strcat(name_f_block_free,".fsc");
+
+ num_bloque = buscar_registro(emu, ID);
+ bloque = (char*)malloc(emu->tam_bloque);
+ if ( leer_bloque(emu,num_bloque, bloque) == -1 ){
+ printf("No se encontro el bloque\n");
+ return -1;
+ }
+
+ /*apunto al registro que voy a eliminar*/
+ ptr_elim = 0;
+ while ( ptr_elim < emu->tam_bloque ){
+ memcpy(&ID_aux, bloque+ptr_elim, sizeof(int));
+ if ( ID_aux == ID )
+ break;
+ ptr_elim += tam_reg + sizeof(int);
+ }
+
+ /*apunto al registro que voy a mover*/
+ ptr_mov = ptr_elim + tam_reg + sizeof(int);
+
+ while ( ptr_mov < emu->tam_bloque ){
+ memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(int)+tam_reg);
+ ptr_elim = ptr_mov;
+ ptr_mov += sizeof(int) + tam_reg;
+ }
+
+ /*grabo el bloque en el archivo*/
+ if ( grabar_bloque(emu, bloque, num_bloque) == -1 ){
+ printf("No se pudo grabar el bloque\n");
+ return -1;
+ }
+
+ /*actualizo archivo .fsc*/
+ if ( (f_block_free = fopen(name_f_block_free,"r+")) == NULL ) return -1;
+ fread(®_f,sizeof(BLOCK_FREE_T),1,f_block_free);
+ while ( !feof(f_block_free) ){
+ if ( reg_f.block == num_bloque ){
+ reg_f.free_space += tam_reg + sizeof(int);
+ fseek(f_block_free,-sizeof(BLOCK_FREE_T),SEEK_CUR);
+ fwrite(®_f,sizeof(BLOCK_FREE_T),1,f_block_free);
+ }
+ fread(®_f,sizeof(BLOCK_FREE_T),1,f_block_free);
+ }
+ fclose(f_block_free);
+
+ /*actualizo archivo .did*/
+ if ( (f_reg_exist = fopen(name_f_reg_exist,"a+")) == NULL) return -1;
+ fwrite(&ID, sizeof(int), 1, f_reg_exist);
+ fclose(f_reg_exist);
+
+
+ /*actualizo archivo .idx*/
+
+
+
+ free(bloque);
+
+return 0;
+}