Deliver MIDI events to atom ports that support it, merged with transport events.
[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
20 #ifdef WAF_BUILD
21 #include "libardour-config.h"
22 #endif
23
24 #include <iostream>
25 #include <algorithm>
26 #include <sstream>
27
28 #include "pbd/compose.h"
29 #include "pbd/failed_constructor.h"
30
31 #include "ardour/buffer.h"
32 #include "ardour/buffer_set.h"
33 #include "ardour/debug.h"
34 #include "ardour/midi_buffer.h"
35 #include "ardour/port.h"
36 #include "ardour/port_set.h"
37 #ifdef LV2_SUPPORT
38 #include "ardour/lv2_plugin.h"
39 #include "lv2_evbuf.h"
40 #endif
41 #if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT
42 #include "ardour/vestige/aeffectx.h"
43 #endif
44
45 namespace ARDOUR {
46
47 /** Create a new, empty BufferSet */
48 BufferSet::BufferSet()
49         : _is_mirror(false)
50 {
51         for (size_t i=0; i < DataType::num_types; ++i) {
52                 _buffers.push_back(BufferVec());
53         }
54
55         _count.reset();
56         _available.reset();
57 }
58
59 BufferSet::~BufferSet()
60 {
61         clear();
62 }
63
64 /** Destroy all contained buffers.
65  */
66 void
67 BufferSet::clear()
68 {
69         if (!_is_mirror) {
70                 for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
71                         for (BufferVec::iterator j = (*i).begin(); j != (*i).end(); ++j) {
72                                 delete *j;
73                         }
74                         (*i).clear();
75                 }
76         }
77         _buffers.clear();
78         _count.reset();
79         _available.reset();
80
81 #if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT 
82         for (VSTBuffers::iterator i = _vst_buffers.begin(); i != _vst_buffers.end(); ++i) {
83                 delete *i;
84         }
85
86         _vst_buffers.clear ();
87 #endif
88
89 }
90
91 /** Set up this BufferSet so that its data structures mirror a PortSet's buffers.
92  *  This is quite expensive and not RT-safe, so it should not be called in a process context;
93  *  get_jack_port_addresses() will fill in a structure set up by this method.
94  *
95  *  XXX: this *is* called in a process context; I'm not sure quite what `should not' means above.
96  */
97 void
98 BufferSet::attach_buffers (PortSet& ports)
99 {
100         const ChanCount& count (ports.count());
101
102         clear ();
103
104         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
105                 _buffers.push_back (BufferVec());
106                 BufferVec& v = _buffers[*t];
107                 v.assign (count.n (*t), (Buffer*) 0);
108         }
109
110         _count = ports.count();
111         _available = ports.count();
112
113
114         _is_mirror = true;
115 }
116
117 /** Write the JACK port addresses from a PortSet into our data structures.  This
118  *  call assumes that attach_buffers() has already been called for the same PortSet.
119  *  Does not allocate, so RT-safe BUT you can only call Port::get_buffer() from
120  *  the process() callback tree anyway, so this has to be called in RT context.
121  */
122 void
123 BufferSet::get_jack_port_addresses (PortSet& ports, framecnt_t nframes)
124 {
125         assert (_count == ports.count ());
126         assert (_available == ports.count ());
127         assert (_is_mirror);
128
129         assert (_buffers.size() == DataType::num_types);
130
131         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
132                 BufferVec& v = _buffers[*t];
133
134                 assert (v.size() == ports.num_ports (*t));
135
136                 int i = 0;
137                 for (PortSet::iterator p = ports.begin(*t); p != ports.end(*t); ++p) {
138                         v[i] = &p->get_buffer (nframes);
139                         ++i;
140                 }
141         }
142 }
143
144 /** Ensure that there are @a num_buffers buffers of type @a type available,
145  * each of size at least @a buffer_size
146  */
147 void
148 BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capacity)
149 {
150         assert(type != DataType::NIL);
151         assert(type < _buffers.size());
152
153         if (num_buffers == 0) {
154                 return;
155         }
156
157         // The vector of buffers of the type we care about
158         BufferVec& bufs = _buffers[type];
159
160         // If we're a mirror just make sure we're ok
161         if (_is_mirror) {
162                 assert(_count.get(type) >= num_buffers);
163                 assert(bufs[0]->type() == type);
164                 return;
165         }
166
167         // If there's not enough or they're too small, just nuke the whole thing and
168         // rebuild it (so I'm lazy..)
169         if (bufs.size() < num_buffers
170                         || (bufs.size() > 0 && bufs[0]->capacity() < buffer_capacity)) {
171
172                 // Nuke it
173                 for (BufferVec::iterator i = bufs.begin(); i != bufs.end(); ++i) {
174                         delete (*i);
175                 }
176                 bufs.clear();
177
178                 // Rebuild it
179                 for (size_t i = 0; i < num_buffers; ++i) {
180                         bufs.push_back(Buffer::create(type, buffer_capacity));
181                 }
182
183                 _available.set(type, num_buffers);
184                 _count.set (type, num_buffers);
185         }
186
187 #ifdef LV2_SUPPORT
188         // Ensure enough low level MIDI format buffers are available for conversion
189         // in both directions (input & output, out-of-place)
190         if (type == DataType::MIDI && _lv2_buffers.size() < _buffers[type].size() * 2 + 1) {
191                 while (_lv2_buffers.size() < _buffers[type].size() * 2) {
192                         _lv2_buffers.push_back(
193                                 std::make_pair(false, lv2_evbuf_new(buffer_capacity,
194                                                                     LV2_EVBUF_EVENT,
195                                                                     LV2Plugin::urids.atom_Chunk,
196                                                                     LV2Plugin::urids.atom_Sequence)));
197                 }
198         }
199 #endif
200
201 #if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT
202         // As above but for VST
203         if (type == DataType::MIDI) {
204                 while (_vst_buffers.size() < _buffers[type].size()) {
205                         _vst_buffers.push_back (new VSTBuffer (buffer_capacity));
206                 }
207         }
208 #endif
209
210         // Post-conditions
211         assert(bufs[0]->type() == type);
212         assert(bufs.size() >= num_buffers);
213         assert(bufs.size() == _available.get(type));
214         assert(bufs[0]->capacity() >= buffer_capacity);
215 }
216
217 /** Ensure that the number of buffers of each type @a type matches @a chns
218  * and each buffer is of size at least @a buffer_capacity
219  */
220 void
221 BufferSet::ensure_buffers(const ChanCount& chns, size_t buffer_capacity)
222 {
223         for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
224                 ensure_buffers (*i, chns.get (*i), buffer_capacity);
225         }
226 }
227
228 /** Get the capacity (size) of the available buffers of the given type.
229  *
230  * All buffers of a certain type always have the same capacity.
231  */
232 size_t
233 BufferSet::buffer_capacity(DataType type) const
234 {
235         assert(_available.get(type) > 0);
236         return _buffers[type][0]->capacity();
237 }
238
239 Buffer&
240 BufferSet::get(DataType type, size_t i)
241 {
242         assert(i < _available.get(type));
243         return *_buffers[type][i];
244 }
245
246 const Buffer&
247 BufferSet::get(DataType type, size_t i) const
248 {
249         assert(i < _available.get(type));
250         return *_buffers[type][i];
251 }
252
253 #ifdef LV2_SUPPORT
254
255 LV2_Evbuf*
256 BufferSet::get_lv2_midi(bool input, size_t i, bool old_api)
257 {
258         assert(count().get(DataType::MIDI) > i);
259
260         LV2Buffers::value_type b     = _lv2_buffers.at(i * 2 + (input ? 0 : 1));
261         LV2_Evbuf*             evbuf = b.second;
262
263         lv2_evbuf_set_type(evbuf, old_api ? LV2_EVBUF_EVENT : LV2_EVBUF_ATOM);
264         lv2_evbuf_reset(evbuf, input);
265         return evbuf;
266 }
267
268 void
269 BufferSet::flush_lv2_midi(bool input, size_t i)
270 {
271         MidiBuffer&            mbuf  = get_midi(i);
272         LV2Buffers::value_type b     = _lv2_buffers.at(i * 2 + (input ? 0 : 1));
273         LV2_Evbuf*             evbuf = b.second;
274
275         mbuf.silence(0, 0);
276         for (LV2_Evbuf_Iterator i = lv2_evbuf_begin(evbuf);
277              lv2_evbuf_is_valid(i);
278              i = lv2_evbuf_next(i)) {
279                 uint32_t frames;
280                 uint32_t subframes;
281                 uint32_t type;
282                 uint32_t size;
283                 uint8_t* data;
284                 lv2_evbuf_get(i, &frames, &subframes, &type, &size, &data);
285 #ifndef NDEBUG
286                 DEBUG_TRACE (PBD::DEBUG::LV2, string_compose ("(FLUSH) MIDI event of size %1\n", size));
287                 for (uint16_t x = 0; x < size; ++x) {
288                         DEBUG_TRACE (PBD::DEBUG::LV2, string_compose ("\tByte[%1] = %2\n", x, (int) data[x]));
289                 }
290 #endif
291                 if (type == LV2Plugin::urids.midi_MidiEvent) {
292                         // TODO: Make Ardour event buffers generic so plugins can communicate
293                         mbuf.push_back(frames, size, data);
294                 }
295         }
296 }
297
298 #endif /* LV2_SUPPORT */
299
300 #if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT
301
302 VstEvents*
303 BufferSet::get_vst_midi (size_t b)
304 {
305         MidiBuffer& m = get_midi (b);
306         VSTBuffer* vst = _vst_buffers[b];
307
308         vst->clear ();
309
310         for (MidiBuffer::iterator i = m.begin(); i != m.end(); ++i) {
311                 vst->push_back (*i);
312         }
313
314         return vst->events();
315 }
316
317 BufferSet::VSTBuffer::VSTBuffer (size_t c)
318   : _capacity (c)
319 {
320         _events = static_cast<VstEvents*> (malloc (sizeof (VstEvents) + _capacity * sizeof (VstEvent *)));
321         _midi_events = static_cast<VstMidiEvent*> (malloc (sizeof (VstMidiEvent) * _capacity));
322
323         if (_events == 0 || _midi_events == 0) {
324                 free (_events);
325                 free (_midi_events);
326                 throw failed_constructor ();
327         }
328
329         _events->numEvents = 0;
330         _events->reserved = 0;
331 }
332
333 BufferSet::VSTBuffer::~VSTBuffer ()
334 {
335         free (_events);
336         free (_midi_events);
337 }
338
339 void
340 BufferSet::VSTBuffer::clear ()
341 {
342         _events->numEvents = 0;
343 }
344
345 void
346 BufferSet::VSTBuffer::push_back (Evoral::MIDIEvent<framepos_t> const & ev)
347 {
348         if (ev.size() > 3) {
349                 /* XXX: this will silently drop MIDI messages longer than 3 bytes, so
350                    they won't be passed to VST plugins or VSTis
351                 */
352                 return;
353         }
354         int const n = _events->numEvents;
355         assert (n < (int) _capacity);
356
357         _events->events[n] = reinterpret_cast<VstEvent*> (_midi_events + n);
358         VstMidiEvent* v = reinterpret_cast<VstMidiEvent*> (_events->events[n]);
359
360         v->type = kVstMidiType;
361         v->byteSize = sizeof (VstMidiEvent);
362         v->deltaFrames = ev.time ();
363
364         v->flags = 0;
365         v->detune = 0;
366         v->noteLength = 0;
367         v->noteOffset = 0;
368         v->reserved1 = 0;
369         v->reserved2 = 0;
370         v->noteOffVelocity = 0;
371         memcpy (v->midiData, ev.buffer(), ev.size());
372         v->midiData[3] = 0;
373
374         _events->numEvents++;
375 }
376
377 #endif /* WINDOWS_VST_SUPPORT */
378
379 /** Copy buffers of one type from `in' to this BufferSet */
380 void
381 BufferSet::read_from (const BufferSet& in, framecnt_t nframes, DataType type)
382 {
383         assert (available().get (type) >= in.count().get (type));
384
385         BufferSet::iterator o = begin (type);
386         for (BufferSet::const_iterator i = in.begin (type); i != in.end (type); ++i, ++o) {
387                 o->read_from (*i, nframes);
388         }
389
390         _count.set (type, in.count().get (type));
391 }
392
393 /** Copy buffers of all types from `in' to this BufferSet */
394 void
395 BufferSet::read_from (const BufferSet& in, framecnt_t nframes)
396 {
397         assert(available() >= in.count());
398
399         // Copy all buffers 1:1
400         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
401                 read_from (in, nframes, *t);
402         }
403 }
404
405 void
406 BufferSet::merge_from (const BufferSet& in, framecnt_t nframes)
407 {
408         /* merge all input buffers into out existing buffers.
409
410            NOTE: if "in" contains more buffers than this set,
411            we will drop the extra buffers.
412
413         */
414
415         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
416                 BufferSet::iterator o = begin(*t);
417                 for (BufferSet::const_iterator i = in.begin(*t); i != in.end(*t) && o != end (*t); ++i, ++o) {
418                         o->merge_from (*i, nframes);
419                 }
420         }
421 }
422
423 void
424 BufferSet::silence (framecnt_t nframes, framecnt_t offset)
425 {
426         for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
427                 for (BufferVec::iterator b = i->begin(); b != i->end(); ++b) {
428                         (*b)->silence (nframes, offset);
429                 }
430         }
431 }
432
433 void
434 BufferSet::set_is_silent (bool yn)
435 {
436         for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
437                 for (BufferVec::iterator b = i->begin(); b != i->end(); ++b) {
438                         (*b)->set_is_silent (yn);
439                 }
440         }
441
442 }
443
444 } // namespace ARDOUR
445