]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/param_cte.c
no me sale lo de acomodar el archivo de bloques/ids
[z.facultad/75.06/emufs.git] / tipo3 / param_cte.c
index 0b2cc83ce9914d79917d060e071eef1a68252e1c..ab0287340c9ea32895882bddb63e7580dbc2ce19 100644 (file)
@@ -319,3 +319,107 @@ 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, cant, i;
+       char *bloque;
+       FILE *f_reg_exist, *f_block_reg, *f_block_free;
+       BLOCK_REG_T reg_b;
+       BLOCK_FREE_T reg_f;
+       BLOCK_REG_T buffer[10];
+       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);
+       
+       printf("pase %d\n",__LINE__);
+       /*actualizo archivo .idx*/
+       /*busco el registro que tengo que eliminar*/
+       if ( (f_block_reg = fopen(name_f_block_reg,"r+")) == NULL ) return -1;
+       while ( !feof(f_block_reg) ){
+               if ( fread(&reg_b,sizeof(BLOCK_REG_T),1,f_block_reg) != 1 ) continue;
+               if ( reg_b.id_reg == ID )
+                       break;
+       }
+       printf("registro borrado= %ld   en bloque = %d\n",reg_b.id_reg,reg_b.block);
+       /*justifico en archivo a la izquieda*/
+       while ( !feof(f_block_reg) ){
+               cant = fread(&buffer,sizeof(BLOCK_REG_T),10,f_block_reg);
+               fseek(f_block_reg, -cant*sizeof(BLOCK_REG_T)-1, SEEK_CUR);
+               for (i=0; i<cant; i++){
+                       fwrite(&buffer[i],sizeof(BLOCK_REG_T),1,f_block_reg);
+                       if ( feof(f_block_reg) ) continue;
+               }
+               if ( feof(f_block_reg) ) continue;
+               fseek(f_block_reg, sizeof(BLOCK_REG_T), SEEK_CUR);
+       }
+       
+       /*trunco el ultimo registro del archivo
+       fseek(f_block_reg,0,SEEK_END);
+       truncate(name_f_block_reg,ftell(f_block_reg)-sizeof(BLOCK_REG_T));
+       */
+       fclose(f_block_reg);
+
+       free(bloque);
+
+return 0;
+}