]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1.c
eliminar ordenado, compila. TODAVIA NO HAY NADA PROBADO, todo mal
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
index e82e1b4dc957cc34cdf9500321b88d73131cbcdc..0841612760627d344cfeeea4eec95a9dded6d5f9 100644 (file)
@@ -967,3 +967,70 @@ CLAVE grabar_ordenado_en_bloque(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, void
        free(new_bloque);
        return clave;
 }
+
+int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err)
+{
+       char *bloque, *aux;
+       INDEX_DAT query;
+       int result, iter, cant_reg;
+       EMUFS_REG_SIZE tam_reg;
+       CLAVE clave_ajena;
+       /*cargo el query para buscar*/
+       query.num_bloque = 0;
+       query.clave = clave;
+       /*mando a buscar el bloque donde esta la clave que quiero eliminar*/
+       result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
+       if ( result == 1 ){
+               PERR("SE PRODUJO UN ERROR EN EL ARBOL");
+               return -1;
+       }
+       if ( result == -1 ){
+               PERR("NO EXISTE EL BLOQUE ¿?¿?¿?");
+               return -1;
+       }
+       /*cargo el bloque que corresponde*/
+       bloque = emufs_tipo1_leer_bloque(emu, query.num_bloque, err);
+       if ( bloque == NULL ){
+               PERR("NO SE CARGO EL BLOQUE");
+               return -1;
+       }
+       /*leo la cantidad de registros en el bloque*/
+       memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
+       /*busco y elimino*/
+       iter = 0;
+       aux = bloque;
+       /*me fijo si el que tengo que eliminar es el ancla del bloque*/
+       clave_ajena = emufs_indice_generar_clave(emu->indices, bloque+sizeof(EMUFS_TIPO1_REG_HEADER));
+       if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
+               /* TENGOQ QUE BORRAR LA CLAVE DEL ARBOL !!!!*/
+               /* Y HAY QUE BORRAR EL BLOQUE DEL ARCHIVO*/
+       }
+       while ( iter < emu->tam_bloque ){
+               memcpy(&tam_reg, aux+sizeof(EMUFS_REG_ID), sizeof(EMUFS_REG_SIZE));
+               clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_TIPO1_REG_HEADER));
+               if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
+                       /*tenngo que borrar este registro*/
+                       /*limpio el espacio que ocupaba*/
+                       memset(aux, 0, tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER));
+                       /*hay que reacomodar todo*/
+                       /*me posiciono en el reg siguiente*/
+                       iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER);
+                       break;/*ya borre, corto aca*/
+               }
+               iter += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER);
+               aux += iter;
+       }
+       
+       /*reacomodo el bloque */
+       memcpy(bloque+iter-tam_reg-sizeof(EMUFS_TIPO1_REG_HEADER), aux+iter, emu->tam_bloque-iter-sizeof(int)); 
+       /*le vuelvo a copiar la cantidad de registros*/
+       cant_reg--;
+       memcpy(bloque+emu->tam_bloque-sizeof(int), &cant_reg, sizeof(int));
+       /*grabo el bloque en el archivo*/
+       if ( emufs_tipo1_grabar_bloque_fsc(emu, bloque, query.num_bloque, EMUFS_NOT_FOUND, err) == EMUFS_NOT_FOUND ){
+               PERR("NO SE PUDO GRABAR EL BLOQUE");
+               return -1;
+       }
+       free(bloque);
+       return 0;
+}