]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/param_cte.c
* Agrego funciones para castear los tipos de datos los widgets
[z.facultad/75.06/emufs.git] / tipo3 / param_cte.c
index 0b2cc83ce9914d79917d060e071eef1a68252e1c..9ba368d13b32e321f271c11669cea14d39e7df62 100644 (file)
@@ -319,3 +319,83 @@ int get_id(EMUFS *emu)
        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(&reg_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(&reg_f,sizeof(BLOCK_FREE_T),1,f_block_free);
+               }
+               fread(&reg_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;
+}