]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/btree.cpp
tagged 1.1
[z.facultad/75.52/treemulator.git] / src / btree.cpp
index 575ca597b6eff9d07f4e21028df4015d188108c2..cce07595dbae924ffd7fdd431c014c031e350758 100644 (file)
@@ -20,6 +20,8 @@ BTree::BTree (const std::string &name, unsigned int block_size, int tt, int kt,
        header.tree_type = tt;
        header.key_type = kt;
        header.block_data_counter = 0;
+       strcpy (header.magic, "DILUMA");
+       header.magic[6] = '\0';
        WriteFileHeader ();
 
        /* Creo el primer bloque vacio */
@@ -50,11 +52,25 @@ BTree::BTree (const std::string &name)
                fclose (fp);
        }
 
+       del = filename + ".blockdel";
+
+       fp = fopen (del.c_str (), "wb");
+       if (fp != NULL) {
+               uint i;
+
+               while (fread (&i, 1, sizeof (uint), fp)) {
+                       deleted_block_data.push_back (i);
+               }
+
+               fclose (fp);
+       }
+
        fp = fopen (name.c_str(), "rb+");
        if (!fp) {
                /* TODO : mandar una exception ? */
                return;
        }
+       filename = name;
        ReadFileHeader ();
 }
 
@@ -73,6 +89,16 @@ BTree::~BTree ()
                it++;
        }
 
+       del = filename + ".del";
+
+       fp = fopen (del.c_str (), "wb");
+       it = deleted_block_data.begin ();
+
+       while (it != deleted_block_data.end ()) {
+               uint i = *it;
+               fwrite (&i, 1, sizeof (uint), fp);
+               it++;
+       }
        fclose (fp);
 }