changes for OS X support: change waf config define to COREAUDIO_SUPPORT, remove Plugi...
[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/debug.h"
26 #include "ardour/thread_buffers.h"
27
28 using namespace ARDOUR;
29 using namespace PBD;
30
31 RingBufferNPT<ThreadBuffers*>* BufferManager::thread_buffers = 0;
32 std::list<ThreadBuffers*>* BufferManager::thread_buffers_list = 0;
33 Glib::StaticMutex BufferManager::rb_mutex = GLIBMM_STATIC_MUTEX_INIT;
34
35 void
36 BufferManager::init (uint32_t size)
37 {
38         thread_buffers = new ThreadBufferFIFO (size+1); // must be one larger than requested
39         thread_buffers_list = new ThreadBufferList;
40
41         /* and populate with actual ThreadBuffers
42          */
43
44         for (uint32_t n = 0; n < size; ++n) {
45                 ThreadBuffers* ts = new ThreadBuffers;
46                 thread_buffers->write (&ts, 1);
47                 thread_buffers_list->push_back (ts);
48         }
49 }
50
51 ThreadBuffers*
52 BufferManager::get_thread_buffers ()
53 {
54         Glib::Mutex::Lock em (rb_mutex);
55         ThreadBuffers* tbp;
56
57         if (thread_buffers->read (&tbp, 1) == 1) {
58                 return tbp;
59         }
60
61         return 0;
62 }
63
64 void
65 BufferManager::put_thread_buffers (ThreadBuffers* tbp)
66 {
67         Glib::Mutex::Lock em (rb_mutex);
68         thread_buffers->write (&tbp, 1);
69 }
70
71 void
72 BufferManager::ensure_buffers (ChanCount howmany)
73 {
74         /* this is protected by the audioengine's process lock: we do not  */
75
76         DEBUG_TRACE (DEBUG::Processors, string_compose ("BufferManager::ensure_buffers (%1)\n", howmany));
77
78         for (ThreadBufferList::iterator i = thread_buffers_list->begin(); i != thread_buffers_list->end(); ++i) {
79                 DEBUG_TRACE (DEBUG::Processors, string_compose ("BufferManager::ensure_buffers, thread buffers @ %1\n", (*i)));
80                 (*i)->ensure_buffers (howmany);
81         }
82 }