Patch from Tim Mayberry:
[ardour.git] / libs / ardour / buffer_manager.cc
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21
22 #include "pbd/compose.h"
23
24 #include "ardour/buffer_manager.h"
25 #include "ardour/thread_buffers.h"
26
27 using namespace ARDOUR;
28 using namespace PBD;
29
30 RingBufferNPT<ThreadBuffers*>* BufferManager::thread_buffers = 0;
31 std::list<ThreadBuffers*>* BufferManager::thread_buffers_list = 0;
32 Glib::StaticMutex BufferManager::rb_mutex = GLIBMM_STATIC_MUTEX_INIT;
33
34 void
35 BufferManager::init (uint32_t size)
36 {
37         thread_buffers = new ThreadBufferFIFO (size+1); // must be one larger than requested
38         thread_buffers_list = new ThreadBufferList;
39
40         /* and populate with actual ThreadBuffers
41          */
42
43         for (uint32_t n = 0; n < size; ++n) {
44                 ThreadBuffers* ts = new ThreadBuffers;
45                 thread_buffers->write (&ts, 1);
46                 thread_buffers_list->push_back (ts);
47         }
48 }
49
50 ThreadBuffers*
51 BufferManager::get_thread_buffers ()
52 {
53         Glib::Mutex::Lock em (rb_mutex);
54         ThreadBuffers* tbp;
55
56         if (thread_buffers->read (&tbp, 1) == 1) {
57                 return tbp;
58         }
59
60         return 0;
61 }
62
63 void
64 BufferManager::put_thread_buffers (ThreadBuffers* tbp)
65 {
66         Glib::Mutex::Lock em (rb_mutex);
67         thread_buffers->write (&tbp, 1);
68 }
69
70 void
71 BufferManager::ensure_buffers (ChanCount howmany)
72 {
73         /* this is protected by the audioengine's process lock: we do not  */
74
75         for (ThreadBufferList::iterator i = thread_buffers_list->begin(); i != thread_buffers_list->end(); ++i) {
76                 (*i)->ensure_buffers (howmany);
77         }
78 }