summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2014-11-03 18:20:58 +0000
committerandreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf>2014-11-03 18:20:58 +0000
commited50d684bf212da7a7a01ddb4bc82928f238f56d (patch)
treed7e830e4f8fc336242a0fd451df025fc5409a6fe /src
parenta0145fffef9a8f220b8fd852d8f78656386881f3 (diff)
fixed bugs in garbage collector, improved handle classes, added some more unit tests
git-svn-id: file:///var/local/svn/basicwriter@97 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src')
-rw-r--r--src/core/dom/Node.cpp20
-rw-r--r--src/core/dom/Node.hpp92
2 files changed, 72 insertions, 40 deletions
diff --git a/src/core/dom/Node.cpp b/src/core/dom/Node.cpp
index 8df0787..7c4852a 100644
--- a/src/core/dom/Node.cpp
+++ b/src/core/dom/Node.cpp
@@ -187,7 +187,6 @@ void NodeManager::addRef(Node *tar, Node *src)
// Store the tar <- src reference
assert(dTar);
dTar->incrNodeDegree(RefDir::in, src);
-
if (src) {
// Store the src -> tar reference
assert(dSrc);
@@ -222,15 +221,23 @@ void NodeManager::deleteRef(Node *tar, Node *src, bool all)
// is larger than the threshold value and this function was not
// called from inside the deleteNode function
marked.insert(tar);
- if (marked.size() >= threshold) {
- sweep();
- }
}
}
+
+ // Call the garbage collector if the marked size is larger than the actual
+ // value
+ if (marked.size() >= threshold) {
+ sweep();
+ }
}
void NodeManager::deleteNode(Node *n, NodeDescriptor *descr)
{
+ // Abort if the node already is on the "deleted" list
+ if (deleted.find(n) != deleted.end()) {
+ return;
+ }
+
// Increment the recursion depth counter. The "deleteRef" function called
// below
// may descend further into this function and the actual deletion should be
@@ -277,6 +284,11 @@ void NodeManager::purgeDeleted()
void NodeManager::sweep()
{
+ // Only execute sweep on the highest recursion level
+ if (deletionRecursionDepth > 0) {
+ return;
+ }
+
// Set containing nodes which are reachable from a rooted node
std::unordered_set<Node *> reachable;
diff --git a/src/core/dom/Node.hpp b/src/core/dom/Node.hpp
index ce1e7f1..6869253 100644
--- a/src/core/dom/Node.hpp
+++ b/src/core/dom/Node.hpp
@@ -280,19 +280,19 @@ public:
template <class T>
Handle<T> acquire(const BaseHandle<T> &h)
{
- return Handle<T>(h, this);
+ return Handle<T>{h, this};
}
template <class T>
Handle<T> acquire(BaseHandle<T> &&h)
{
- return Handle<T>(h, this);
+ return Handle<T>{h, this};
}
template <class T>
Handle<T> acquire(T *t)
{
- return Handle<T>(t, this);
+ return Handle<T>{t, this};
}
};
@@ -318,6 +318,11 @@ public:
BaseHandle(T *ptr) : ptr(ptr) {}
/**
+ * Returns the underlying pointer.
+ */
+ T *get() const { return ptr; }
+
+ /**
* Provides access to the underlying node.
*/
T *operator->() { return ptr; }
@@ -398,6 +403,25 @@ public:
}
/**
+ * Constructor of the handle class.
+ *
+ * @param ptr is the node the handle should represent.
+ */
+ RootedHandle(T *ptr) : BaseHandle<T>(ptr) { addRef(); }
+
+ /**
+ * Constructor of the handle class.
+ *
+ * @param h is another handle whose Node should be used.
+ */
+ template <class T2>
+ RootedHandle(const BaseHandle<T2> &h)
+ : BaseHandle<T>(h.get())
+ {
+ addRef();
+ }
+
+ /**
* Assignment operator. Assigns the given handle to this handle instance.
* Both handles are indistinguishable after the operation.
*
@@ -454,20 +478,6 @@ public:
}
/**
- * Constructor of the handle class.
- *
- * @param ptr is the node the handle should represent.
- */
- RootedHandle(T *ptr) : BaseHandle<T>(ptr) { addRef(); }
-
- /**
- * Constructor of the handle class.
- *
- * @param h is another handle whose Node should be used.
- */
- RootedHandle(BaseHandle<T> h) : BaseHandle<T>(h.ptr) { addRef(); }
-
- /**
* Destructor of the RootedHandle class, deletes all refrences the class is
* still holding.
*/
@@ -511,7 +521,20 @@ public:
*
* @param h is the handle that should be asigned to this instance.
*/
- Handle(const Handle<T> &h) : BaseHandle<T>(h.ptr), owner(h.owner)
+ Handle(const Handle<T> &h) : BaseHandle<T>(h.get()), owner(h.getOwner())
+ {
+ addRef();
+ }
+
+ /**
+ * Copies the given handle of another derived type to this handle instance.
+ * Both handles are indistinguishable after the operation (except for the
+ * type). Note that especially the handle owner is copied.
+ *
+ * @param h is the handle that should be asigned to this instance.
+ */
+ template<class T2>
+ Handle(const Handle<T2> &h) : BaseHandle<T>(h.get()), owner(h.getOwner())
{
addRef();
}
@@ -521,7 +544,7 @@ public:
*
* @param h is the handle to be moved to this instance.
*/
- Handle(Handle<T> &&h) : BaseHandle<T>(h.ptr), owner(h.owner)
+ Handle(Handle<T> &&h) : BaseHandle<T>(h.get()), owner(h.getOwner())
{
h.ptr = nullptr;
}
@@ -537,7 +560,7 @@ public:
{
deleteRef();
this->ptr = h.ptr;
- this->owner = h.owner;
+ this->owner = h.getOwner();
addRef();
return *this;
}
@@ -552,7 +575,7 @@ public:
{
deleteRef();
this->ptr = h.ptr;
- this->owner = h.owner;
+ this->owner = h.getOwner();
h.ptr = nullptr;
return *this;
}
@@ -573,34 +596,31 @@ public:
* @param owner is the node which owns this handle instance. The ptr node
* is guaranteed to live at least as long as the owner.
*/
- Handle(const BaseHandle<T> &h, Node *owner)
- : BaseHandle<T>(h.ptr), owner(owner)
+ template <class T2>
+ Handle(const BaseHandle<T2> &h, Node *owner)
+ : BaseHandle<T>(h.get()), owner(owner)
{
addRef();
}
/**
- * Constructor of the handle class.
- *
- * @param h is another handle whose Node should be used.
- * @param owner is the node which owns this handle instance. The ptr node
- * is guaranteed to live at least as long as the owner.
- */
- Handle(BaseHandle<T> &&h, Node *owner) : BaseHandle<T>(h.ptr), owner(owner)
- {
- h.ptr = nullptr;
- }
-
- /**
* Destructor of the Handle class, deletes all refrences the class is still
* holding.
*/
~Handle() { deleteRef(); }
+
+ /**
+ * Returns the reference to the owner of the handle.
+ *
+ * @return the handle owner.
+ */
+ Node* getOwner() const {
+ return owner;
+ }
};
using RootedNode = RootedHandle<Node>;
using NodeHandle = Handle<Node>;
-
}
}