editor toggle button fix from lincoln; refresh location display when loop range chang...
[ardour.git] / libs / ardour / buffer_set.cc
1 /*
2     Copyright (C) 2006 Paul Davis 
3     
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8     
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13     
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <iostream>
20 #include <algorithm>
21 #include "ardour/buffer.h"
22 #include "ardour/buffer_set.h"
23 #include "ardour/midi_buffer.h"
24 #include "ardour/port.h"
25 #include "ardour/port_set.h"
26 #include "ardour/audioengine.h"
27 #ifdef HAVE_SLV2
28 #include "ardour/lv2_plugin.h"
29 #include "ardour/lv2_event_buffer.h"
30 #endif
31
32 namespace ARDOUR {
33
34 /** Create a new, empty BufferSet */
35 BufferSet::BufferSet()
36         : _is_mirror(false)
37         , _is_silent(false)
38 {
39         for (size_t i=0; i < DataType::num_types; ++i) {
40                 _buffers.push_back(BufferVec());
41         }
42
43         _count.reset();
44         _available.reset();
45 }
46
47 BufferSet::~BufferSet()
48 {
49         clear();
50 }
51
52 /** Destroy all contained buffers.
53  */
54 void
55 BufferSet::clear()
56 {
57         if (!_is_mirror) {
58                 for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
59                         for (BufferVec::iterator j = (*i).begin(); j != (*i).end(); ++j) {
60                                 delete *j;
61                         }
62                         (*i).clear();
63                 }
64         }
65         _buffers.clear();
66         _count.reset();
67         _available.reset();
68 }
69
70 /** Make this BufferSet a direct mirror of a PortSet's buffers.
71  */
72 void
73 BufferSet::attach_buffers(PortSet& ports, nframes_t nframes, nframes_t offset)
74 {
75         clear();
76
77         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
78                 _buffers.push_back(BufferVec());
79                 BufferVec& v = _buffers[*t];
80
81                 for (PortSet::iterator p = ports.begin(*t); p != ports.end(*t); ++p) {
82                         assert(p->type() == *t);
83                         v.push_back(&(p->get_buffer(nframes, offset)));
84                 }
85         }
86         
87         _count = ports.count();
88         _available = ports.count();
89
90         _is_mirror = true;
91 }
92
93 /** Ensure that there are @a num_buffers buffers of type @a type available,
94  * each of size at least @a buffer_size
95  */
96 void
97 BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capacity)
98 {
99         assert(type != DataType::NIL);
100         assert(type < _buffers.size());
101
102         if (num_buffers == 0) {
103                 return;
104         }
105
106         // The vector of buffers of the type we care about
107         BufferVec& bufs = _buffers[type];
108         
109         // If we're a mirror just make sure we're ok
110         if (_is_mirror) {
111                 assert(_count.get(type) >= num_buffers);
112                 assert(bufs[0]->type() == type);
113                 return;
114         }
115
116         // If there's not enough or they're too small, just nuke the whole thing and
117         // rebuild it (so I'm lazy..)
118         if (bufs.size() < num_buffers
119                         || (bufs.size() > 0 && bufs[0]->capacity() < buffer_capacity)) {
120
121                 // Nuke it
122                 for (BufferVec::iterator i = bufs.begin(); i != bufs.end(); ++i) {
123                         delete (*i);
124                 }
125                 bufs.clear();
126
127                 // Rebuild it
128                 for (size_t i = 0; i < num_buffers; ++i) {
129                         bufs.push_back(Buffer::create(type, buffer_capacity));
130                 }
131         
132                 _available.set(type, num_buffers);
133         }
134
135 #ifdef HAVE_SLV2
136         // Ensure enough low level MIDI format buffers are available for conversion
137         // in both directions (input & output, out-of-place)
138         if (type == DataType::MIDI && _lv2_buffers.size() < _buffers[type].size() * 2 + 1) {
139                 while (_lv2_buffers.size() < _buffers[type].size() * 2) {
140                         _lv2_buffers.push_back(std::make_pair(false, new LV2EventBuffer(buffer_capacity)));
141                 }
142         }
143 #endif
144
145         // Post-conditions
146         assert(bufs[0]->type() == type);
147         assert(bufs.size() >= num_buffers);
148         assert(bufs.size() == _available.get(type));
149         assert(bufs[0]->capacity() >= buffer_capacity);
150 }
151
152 /** Get the capacity (size) of the available buffers of the given type.
153  *
154  * All buffers of a certain type always have the same capacity.
155  */
156 size_t
157 BufferSet::buffer_capacity(DataType type) const
158 {
159         assert(_available.get(type) > 0);
160         return _buffers[type][0]->capacity();
161 }
162
163 Buffer&
164 BufferSet::get(DataType type, size_t i)
165 {
166         assert(i < _available.get(type));
167         return *_buffers[type][i];
168 }
169
170 #ifdef HAVE_SLV2
171
172 LV2EventBuffer&
173 BufferSet::get_lv2_midi(bool input, size_t i)
174 {
175         MidiBuffer& mbuf = get_midi(i);
176         LV2Buffers::value_type b = _lv2_buffers.at(i * 2 + (input ? 0 : 1));
177         LV2EventBuffer* ebuf = b.second;
178         
179         ebuf->reset();
180         if (input) {
181                 for (MidiBuffer::iterator e = mbuf.begin(); e != mbuf.end(); ++e) {
182                         const Evoral::MIDIEvent<nframes_t> ev(*e, false);
183                         uint32_t type = LV2Plugin::midi_event_type();
184                         ebuf->append(ev.time(), 0, type, ev.size(), ev.buffer());
185                 }
186         }
187         return *ebuf;
188 }
189
190 void
191 BufferSet::flush_lv2_midi(bool input, size_t i)
192 {
193         MidiBuffer& mbuf = get_midi(i);
194         LV2Buffers::value_type b = _lv2_buffers.at(i * 2 + (input ? 0 : 1));
195         LV2EventBuffer* ebuf = b.second;
196
197         mbuf.silence(0, 0);
198         for (ebuf->rewind(); ebuf->is_valid(); ebuf->increment()) {
199                 uint32_t frames;
200                 uint32_t subframes;
201                 uint16_t type;
202                 uint16_t size;
203                 uint8_t* data;
204                 ebuf->get_event(&frames, &subframes, &type, &size, &data);
205                 mbuf.push_back(frames, size, data);
206         }
207 }
208
209 #endif
210
211 // FIXME: make 'in' const
212 void
213 BufferSet::read_from (BufferSet& in, nframes_t nframes)
214 {
215         assert(available() >= in.count());
216
217         // Copy all buffers 1:1
218         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
219                 BufferSet::iterator o = begin(*t);
220                 for (BufferSet::iterator i = in.begin(*t); i != in.end(*t); ++i, ++o) {
221                         o->read_from (*i, nframes);
222                 }
223         }
224
225         set_count(in.count());
226 }
227
228 // FIXME: make 'in' const
229 void
230 BufferSet::merge_from (BufferSet& in, nframes_t nframes)
231 {
232         /* merge all input buffers into out existing buffers.
233
234            NOTE: if "in" contains more buffers than this set,
235            we will drop the extra buffers.
236
237         */
238
239         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
240                 BufferSet::iterator o = begin(*t);
241                 for (BufferSet::iterator i = in.begin(*t); i != in.end(*t) && o != end (*t); ++i, ++o) {
242                         o->merge_from (*i, nframes);
243                 }
244         }
245 }
246
247 void
248 BufferSet::silence (nframes_t nframes, nframes_t offset)
249 {
250         for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
251                 for (BufferVec::iterator b = i->begin(); b != i->end(); ++b) {
252                         (*b)->silence (nframes, offset);
253                 }
254         }
255 }
256
257 } // namespace ARDOUR
258