}
-/*busco el ID en el archivo xxxxx.ids, para ver si puedo usar ese ID.*/
+/*busco el ID en el archivo xxxxx.did, para ver si puedo usar ese ID.*/
int existe_registro(EMUFS *emu, int ID)
{
FILE* f_reg_exist;
int reg;
char name_f_reg_exist[255];
strcpy(name_f_reg_exist,emu->nombre);
- strcat(name_f_reg_exist,".ids");
+ strcat(name_f_reg_exist,".did");
if ( (f_reg_exist = fopen(name_f_reg_exist,"r")) == NULL) return -1; /*ERROR*/
while ( !feof(f_reg_exist) ){
fread(®,sizeof(int),1,f_reg_exist);
/*printf("FS = %d\n", fs);*/
reg.free_space = emu->tam_bloque - tam-sizeof(int);
/*lo guardo en el archivo al final "a+"*/
- if ( (f_block_free = fopen(name_f_free,"a+"))==NULL ) return -1; /*ERROR*/
+ if ( (f_block_free = fopen(name_f_free,"a+"))==NULL ) {
+ free(bloque);
+ return -1; /*ERROR*/
+ }
fwrite(®,sizeof(BLOCK_FREE_T),1,f_block_free);
fclose(f_block_free);
} else {
}
/*actualizo el archivo de espacios libres*/
/*busco el bloque que modifique*/
- if ( (f_block_free = fopen(name_f_free,"r+")) == NULL) return -1; /*ERROR*/
+ if ( (f_block_free = fopen(name_f_free,"r+")) == NULL) {
+ free(bloque);
+ return -1; /*ERROR*/
+ }
while ( !feof(f_block_free) ){
fread(®,sizeof(BLOCK_FREE_T),1,f_block_free);
if ( reg.block == num_bloque ){
}
/*actualizo el archivo de bloques y registros*/
- if ( (f_block_reg = fopen(name_f_block_reg,"ab+"))==NULL ) return -1; /*ERROR*/
+ if ( (f_block_reg = fopen(name_f_block_reg,"ab+"))==NULL ) {
+ free(bloque);
+ return -1; /*ERROR*/
+ }
reg_b.block = reg.block;
reg_b.id_reg = ID_aux;
fwrite(®_b,sizeof(BLOCK_REG_T),1,f_block_reg);
strcat(name_f_block_reg,".idx");
strcpy(name_f_reg_exist,emu->nombre);
- strcat(name_f_reg_exist,".ids");
+ strcat(name_f_reg_exist,".did");
if ( (f_reg_exist = fopen(name_f_reg_exist,"r")) == NULL) return -1; /*ERROR*/
fseek(f_reg_exist, 0, SEEK_END);
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;
+}