explicit checks for all components of the LV2 stack
[ardour.git] / libs / ardour / internal_send.cc
1 /*
2     Copyright (C) 2009 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 "pbd/error.h"
21 #include "pbd/failed_constructor.h"
22
23 #include "ardour/amp.h"
24 #include "ardour/audio_buffer.h"
25 #include "ardour/internal_return.h"
26 #include "ardour/internal_send.h"
27 #include "ardour/meter.h"
28 #include "ardour/panner_shell.h"
29 #include "ardour/route.h"
30 #include "ardour/session.h"
31 #include "ardour/audioengine.h"
32
33 #include "i18n.h"
34
35 namespace ARDOUR { class MuteMaster; class Pannable; }
36
37 using namespace PBD;
38 using namespace ARDOUR;
39 using namespace std;
40
41 PBD::Signal1<void, pframes_t> InternalSend::CycleStart;
42
43 InternalSend::InternalSend (Session& s, boost::shared_ptr<Pannable> p, boost::shared_ptr<MuteMaster> mm, boost::shared_ptr<Route> sendto, Delivery::Role role)
44         : Send (s, p, mm, role)
45 {
46         if (sendto) {
47                 if (use_target (sendto)) {
48                         throw failed_constructor();
49                 }
50         }
51
52         init_gain ();
53
54         CycleStart.connect_same_thread (*this, boost::bind (&InternalSend::cycle_start, this, _1));
55 }
56
57 InternalSend::~InternalSend ()
58 {
59         if (_send_to) {
60                 _send_to->remove_send_from_internal_return (this);
61         }
62 }
63
64 void
65 InternalSend::init_gain ()
66 {
67         if (_role == Listen) {
68                 /* send to monitor bus is always at unity */
69                 _amp->set_gain (1.0, this);
70         } else {
71                 /* aux sends start at -inf dB */
72                 _amp->set_gain (0, this);
73         }
74 }
75
76 int
77 InternalSend::use_target (boost::shared_ptr<Route> sendto)
78 {
79         if (_send_to) {
80                 _send_to->remove_send_from_internal_return (this);
81         }
82
83         _send_to = sendto;
84
85         _send_to->add_send_to_internal_return (this);
86
87         mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), _session.get_block_size());
88         mixbufs.set_count (_send_to->internal_return()->input_streams());
89
90         reset_panner ();
91
92         set_name (sendto->name());
93         _send_to_id = _send_to->id();
94
95         target_connections.drop_connections ();
96
97         _send_to->DropReferences.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_going_away, this));
98         _send_to->PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_property_changed, this, _1));;
99
100         return 0;
101 }
102
103 void
104 InternalSend::send_to_going_away ()
105 {
106         target_connections.drop_connections ();
107         _send_to.reset ();
108         _send_to_id = "0";
109 }
110
111 void
112 InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool)
113 {
114         if ((!_active && !_pending_active) || !_send_to) {
115                 _meter->reset ();
116                 return;
117         }
118
119         // we have to copy the input, because we may alter the buffers with the amp
120         // in-place, which a send must never do.
121
122         if (_panshell && !_panshell->bypassed()) {
123                 _panshell->run (bufs, mixbufs, start_frame, end_frame, nframes);
124         } else {
125                 if (role() == Listen) {
126                         /* We're going to the monitor bus, so discard MIDI data */
127                         
128                         uint32_t const bufs_audio = bufs.count().get (DataType::AUDIO);
129                         uint32_t const mixbufs_audio = mixbufs.count().get (DataType::AUDIO);
130                         
131                         assert (mixbufs.available().get (DataType::AUDIO) >= bufs_audio);
132
133                         /* Copy bufs into mixbufs, going round bufs more than once if necessary
134                            to ensure that every mixbuf gets some data.
135                         */
136
137                         uint32_t j = 0;
138                         for (uint32_t i = 0; i < mixbufs_audio; ++i) {
139                                 mixbufs.get_audio(i).read_from (bufs.get_audio(j), nframes);
140                                 ++j;
141
142                                 if (j == bufs_audio) {
143                                         j = 0;
144                                 }
145                         }
146
147                 } else {
148                         assert (mixbufs.available() >= bufs.count());
149                         mixbufs.read_from (bufs, nframes);
150                 }
151         }
152
153         /* gain control */
154
155         gain_t tgain = target_gain ();
156
157         if (tgain != _current_gain) {
158
159                 /* target gain has changed */
160
161                 Amp::apply_gain (mixbufs, nframes, _current_gain, tgain);
162                 _current_gain = tgain;
163
164         } else if (tgain == 0.0) {
165
166                 /* we were quiet last time, and we're still supposed to be quiet.
167                 */
168
169                 _meter->reset ();
170                 Amp::apply_simple_gain (mixbufs, nframes, 0.0);
171                 goto out;
172
173         } else if (tgain != 1.0) {
174
175                 /* target gain has not changed, but is not zero or unity */
176                 Amp::apply_simple_gain (mixbufs, nframes, tgain);
177         }
178
179         // Can't automate gain for sends or returns yet because we need different buffers
180         // so that we don't overwrite the main automation data for the route amp
181         // _amp->setup_gain_automation (start_frame, end_frame, nframes);
182
183         _amp->run (mixbufs, start_frame, end_frame, nframes, true);
184
185         /* consider metering */
186
187         if (_metering) {
188                 if (_amp->gain_control()->get_value() == 0) {
189                         _meter->reset();
190                 } else {
191                         _meter->run (mixbufs, start_frame, end_frame, nframes, true);
192                 }
193         }
194
195         /* target will pick up our output when it is ready */
196
197   out:
198         _active = _pending_active;
199 }
200
201 int
202 InternalSend::set_block_size (pframes_t nframes)
203 {
204         if (_send_to) {
205                 mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), nframes);
206         }
207
208         return 0;
209 }
210
211 bool
212 InternalSend::feeds (boost::shared_ptr<Route> other) const
213 {
214         return _send_to == other;
215 }
216
217 XMLNode&
218 InternalSend::state (bool full)
219 {
220         XMLNode& node (Send::state (full));
221
222         /* this replaces any existing "type" property */
223
224         node.add_property ("type", "intsend");
225
226         if (_send_to) {
227                 node.add_property ("target", _send_to->id().to_s());
228         }
229
230         return node;
231 }
232
233 XMLNode&
234 InternalSend::get_state()
235 {
236         return state (true);
237 }
238
239 int
240 InternalSend::set_state (const XMLNode& node, int version)
241 {
242         const XMLProperty* prop;
243
244         init_gain ();
245
246         Send::set_state (node, version);
247
248         if ((prop = node.property ("target")) != 0) {
249
250                 _send_to_id = prop->value();
251
252                 /* if we're loading a session, the target route may not have been
253                    create yet. make sure we defer till we are sure that it should
254                    exist.
255                 */
256
257                 if (!IO::connecting_legal) {
258                         IO::ConnectingLegal.connect_same_thread (connect_c, boost::bind (&InternalSend::connect_when_legal, this));
259                 } else {
260                         connect_when_legal ();
261                 }
262         }
263
264         return 0;
265 }
266
267 int
268 InternalSend::connect_when_legal ()
269 {
270         connect_c.disconnect ();
271
272         if (_send_to_id == "0") {
273                 /* it vanished before we could connect */
274                 return 0;
275         }
276
277         boost::shared_ptr<Route> sendto;
278
279         if ((sendto = _session.route_by_id (_send_to_id)) == 0) {
280                 error << string_compose (_("%1 - cannot find any track/bus with the ID %2 to connect to"), display_name(), _send_to_id) << endmsg;
281                 cerr << string_compose (_("%1 - cannot find any track/bus with the ID %2 to connect to"), display_name(), _send_to_id) << endl;
282                 return -1;
283         }
284
285         return use_target (sendto);
286 }
287
288 bool
289 InternalSend::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
290 {
291         out = in;
292         return true;
293 }
294
295 uint32_t
296 InternalSend::pan_outs () const
297 {
298         /* the number of targets for our panner is determined by what we are
299            sending to, if anything.
300         */
301
302         if (_send_to) {
303                 return _send_to->internal_return()->input_streams().n_audio();
304         }
305
306         return 1; /* zero is more accurate, but 1 is probably safer as a way to
307                    * say "don't pan"
308                    */
309 }
310
311 bool
312 InternalSend::configure_io (ChanCount in, ChanCount out)
313 {
314         bool ret = Send::configure_io (in, out);
315         set_block_size (_session.engine().frames_per_cycle());
316         return ret;
317 }
318
319 bool
320 InternalSend::set_name (const string& str)
321 {
322         /* rules for external sends don't apply to us */
323         return IOProcessor::set_name (str);
324 }
325
326 string
327 InternalSend::display_name () const
328 {
329         if (_role == Aux) {
330                 return string_compose (X_("%1"), _name);
331         } else {
332                 return _name;
333         }
334 }
335
336 bool
337 InternalSend::visible () const
338 {
339         if (_role == Aux) {
340                 return true;
341         }
342
343         return false;
344 }
345
346 void
347 InternalSend::send_to_property_changed (const PropertyChange& what_changed)
348 {
349         if (what_changed.contains (Properties::name)) {
350                 set_name (_send_to->name ());
351         }
352 }
353
354 void
355 InternalSend::set_can_pan (bool yn)
356 {
357         if (_panshell) {
358                 _panshell->set_bypassed (!yn);
359         }
360 }
361
362 void
363 InternalSend::cycle_start (pframes_t /*nframes*/)
364 {
365         for (BufferSet::audio_iterator b = mixbufs.audio_begin(); b != mixbufs.audio_end(); ++b) {
366                 b->prepare ();
367         }
368 }