summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-02-05 16:13:24 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-02-05 16:32:10 -0500
commit4010884a5b898e79c32984a9355c37ad0a01a67b (patch)
tree10448987fc209d2deae101147a2d2413b9ba0e62 /libs/pbd
parent715263410430c5872677f193fdad869ff9a16567 (diff)
expand PBD::Pool API and add additional DEBUG_TRACE output.
Expanded API splits apart some CrossThreadPool functionality, and provides access to current pool status information (available(), total(), used(), pending_size())
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/pbd/pool.h11
-rw-r--r--libs/pbd/pool.cc31
2 files changed, 36 insertions, 6 deletions
diff --git a/libs/pbd/pbd/pool.h b/libs/pbd/pbd/pool.h
index a28325cebf..1c9ac81a3e 100644
--- a/libs/pbd/pbd/pool.h
+++ b/libs/pbd/pbd/pool.h
@@ -41,7 +41,10 @@ class LIBPBD_API Pool
virtual void release (void *);
std::string name() const { return _name; }
-
+ guint available() const { return free_list.read_space(); }
+ guint used() const { return free_list.bufsize() - available(); }
+ guint total() const { return free_list.bufsize(); }
+
protected:
RingBuffer<void*> free_list; ///< a list of pointers to free items within block
std::string _name;
@@ -104,7 +107,11 @@ class LIBPBD_API CrossThreadPool : public Pool
}
bool empty ();
-
+ guint pending_size() const { return pending.read_space(); }
+
+ void flush_pending ();
+ void flush_pending_with_ev (void*);
+
private:
RingBuffer<void*> pending;
PerThreadPool* _parent;
diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc
index 234dfaeb18..b3e5c52e1a 100644
--- a/libs/pbd/pool.cc
+++ b/libs/pbd/pool.cc
@@ -222,16 +222,39 @@ CrossThreadPool::CrossThreadPool (string n, unsigned long isize, unsigned long
}
-void*
-CrossThreadPool::alloc ()
+void
+CrossThreadPool::flush_pending_with_ev (void *ptr)
{
- void* ptr;
+ push (ptr);
+ flush_pending ();
+}
- DEBUG_TRACE (DEBUG::Pool, string_compose ("%1 %2 has %3 pending free entries waiting\n", pthread_name(), name(), pending.read_space()));
+void
+CrossThreadPool::flush_pending ()
+{
+ void* ptr;
+ bool did_release = false;
+
+ DEBUG_TRACE (DEBUG::Pool, string_compose ("%1 %2 has %3 pending free entries waiting, status size %4 free %5 used %6\n", pthread_name(), name(), pending.read_space(),
+ total(), available(), used()));
+
while (pending.read (&ptr, 1) == 1) {
DEBUG_TRACE (DEBUG::Pool, string_compose ("%1 %2 pushes back a pending free list entry before allocating\n", pthread_name(), name()));
free_list.write (&ptr, 1);
+ did_release = true;
+ }
+
+ if (did_release) {
+ DEBUG_TRACE (DEBUG::Pool, string_compose ("Pool size: %1 free %2 used %3 pending now %4\n", total(), available(), used(), pending_size()));
}
+}
+
+void*
+CrossThreadPool::alloc ()
+{
+ /* process anything waiting to be deleted (i.e. moved back to the free list) */
+ flush_pending ();
+ /* now allocate from the potentially larger free list */
return Pool::alloc ();
}