use std::vector::assign() in BufferSet::attach_buffers() rather than an explicit...
[ardour2.git] / libs / ardour / delivery.cc
blob967e01187e762a3e5c8a87ea2f92bcee243fac57
1 /*
2 Copyright (C) 2009 Paul Davis
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.
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.
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.
19 #include <cmath>
20 #include <algorithm>
22 #include "pbd/enumwriter.h"
23 #include "pbd/convert.h"
25 #include "ardour/midi_buffer.h"
27 #include "ardour/debug.h"
28 #include "ardour/delivery.h"
29 #include "ardour/audio_buffer.h"
30 #include "ardour/audio_port.h"
31 #include "ardour/amp.h"
32 #include "ardour/buffer_set.h"
33 #include "ardour/configuration.h"
34 #include "ardour/io.h"
35 #include "ardour/meter.h"
36 #include "ardour/mute_master.h"
37 #include "ardour/panner.h"
38 #include "ardour/panner_shell.h"
39 #include "ardour/pannable.h"
40 #include "ardour/port.h"
41 #include "ardour/session.h"
42 #include "ardour/audioengine.h"
44 #include "i18n.h"
46 using namespace std;
47 using namespace PBD;
48 using namespace ARDOUR;
50 PBD::Signal1<void, pframes_t> Delivery::CycleStart;
51 PBD::Signal0<int> Delivery::PannersLegal;
52 bool Delivery::panners_legal = false;
54 /* deliver to an existing IO object */
56 Delivery::Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<Pannable> pannable,
57 boost::shared_ptr<MuteMaster> mm, const string& name, Role r)
58 : IOProcessor(s, boost::shared_ptr<IO>(), (role_requires_output_ports (r) ? io : boost::shared_ptr<IO>()), name)
59 , _role (r)
60 , _output_buffers (new BufferSet())
61 , _current_gain (1.0)
62 , _no_outs_cuz_we_no_monitor (false)
63 , _mute_master (mm)
64 , no_panner_reset (false)
65 , scnt (0)
67 if (pannable) {
68 _panshell = boost::shared_ptr<PannerShell>(new PannerShell (_name, _session, pannable));
71 _display_to_user = false;
73 if (_output) {
74 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
77 CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
80 /* deliver to a new IO object */
82 Delivery::Delivery (Session& s, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster> mm, const string& name, Role r)
83 : IOProcessor(s, false, (role_requires_output_ports (r) ? true : false), name)
84 , _role (r)
85 , _output_buffers (new BufferSet())
86 , _current_gain (1.0)
87 , _no_outs_cuz_we_no_monitor (false)
88 , _mute_master (mm)
89 , no_panner_reset (false)
90 , scnt (0)
92 if (pannable) {
93 _panshell = boost::shared_ptr<PannerShell>(new PannerShell (_name, _session, pannable));
96 _display_to_user = false;
98 if (_output) {
99 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
102 CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
106 Delivery::~Delivery()
108 DEBUG_TRACE (DEBUG::Destruction, string_compose ("delivery %1 destructor\n", _name));
109 delete _output_buffers;
112 std::string
113 Delivery::display_name () const
115 switch (_role) {
116 case Main:
117 return _("main outs");
118 break;
119 case Listen:
120 return _("listen");
121 break;
122 case Send:
123 case Insert:
124 default:
125 return name();
129 void
130 Delivery::cycle_start (pframes_t /*nframes*/)
132 _no_outs_cuz_we_no_monitor = false;
135 bool
136 Delivery::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
138 if (_role == Main) {
140 /* the out buffers will be set to point to the port output buffers
141 of our output object.
144 if (_output) {
145 if (_output->n_ports() != ChanCount::ZERO) {
146 /* increase number of output ports if the processor chain requires it */
147 out = ChanCount::max (_output->n_ports(), in);
148 return true;
149 } else {
150 /* not configured yet - we will passthru */
151 out = in;
152 return true;
154 } else {
155 fatal << "programming error: this should never be reached" << endmsg;
156 /*NOTREACHED*/
160 } else if (_role == Insert) {
162 /* the output buffers will be filled with data from the *input* ports
163 of this Insert.
166 if (_input) {
167 if (_input->n_ports() != ChanCount::ZERO) {
168 out = _input->n_ports();
169 return true;
170 } else {
171 /* not configured yet - we will passthru */
172 out = in;
173 return true;
175 } else {
176 fatal << "programming error: this should never be reached" << endmsg;
177 /*NOTREACHED*/
180 } else {
181 fatal << "programming error: this should never be reached" << endmsg;
184 return false;
187 /** Caller must hold process lock */
188 bool
189 Delivery::configure_io (ChanCount in, ChanCount out)
191 assert (!AudioEngine::instance()->process_lock().trylock());
193 /* check configuration by comparison with our I/O port configuration, if appropriate.
194 see ::can_support_io_configuration() for comments
197 if (_role == Main) {
199 if (_output) {
200 if (_output->n_ports() != out) {
201 if (_output->n_ports() != ChanCount::ZERO) {
202 _output->ensure_io (out, false, this);
203 } else {
204 /* I/O not yet configured */
209 } else if (_role == Insert) {
211 if (_input) {
212 if (_input->n_ports() != in) {
213 if (_input->n_ports() != ChanCount::ZERO) {
214 fatal << _name << " programming error: configure_io called with " << in << " and " << out << " with " << _input->n_ports() << " input ports" << endmsg;
215 /*NOTREACHED*/
216 } else {
217 /* I/O not yet configured */
224 if (!Processor::configure_io (in, out)) {
225 return false;
228 reset_panner ();
230 return true;
233 void
234 Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool result_required)
236 assert (_output);
238 PortSet& ports (_output->ports());
239 gain_t tgain;
241 if (_output->n_ports ().get (_output->default_type()) == 0) {
242 goto out;
245 if (!_active && !_pending_active) {
246 _output->silence (nframes);
247 goto out;
250 /* this setup is not just for our purposes, but for anything that comes after us in the
251 processing pathway that wants to use this->output_buffers() for some reason.
254 output_buffers().get_jack_port_addresses (ports, nframes);
256 // this Delivery processor is not a derived type, and thus we assume
257 // we really can modify the buffers passed in (it is almost certainly
258 // the main output stage of a Route). Contrast with Send::run()
259 // which cannot do this.
261 tgain = target_gain ();
263 if (tgain != _current_gain) {
264 /* target gain has changed */
266 Amp::apply_gain (bufs, nframes, _current_gain, tgain);
267 _current_gain = tgain;
269 } else if (tgain == 0.0) {
271 /* we were quiet last time, and we're still supposed to be quiet.
272 Silence the outputs, and make sure the buffers are quiet too,
275 _output->silence (nframes);
276 if (result_required) {
277 bufs.set_count (output_buffers().count ());
278 Amp::apply_simple_gain (bufs, nframes, 0.0);
280 goto out;
282 } else if (tgain != 1.0) {
284 /* target gain has not changed, but is not unity */
285 Amp::apply_simple_gain (bufs, nframes, tgain);
288 if (_panshell && !_panshell->bypassed() && _panshell->panner()) {
290 // Use the panner to distribute audio to output port buffers
292 _panshell->run (bufs, output_buffers(), start_frame, end_frame, nframes);
294 // MIDI data will not have been delivered by the panner
296 if (bufs.count().n_midi() > 0 && ports.count().n_midi () > 0) {
297 _output->copy_to_outputs (bufs, DataType::MIDI, nframes, 0);
300 } else {
302 // Do a 1:1 copy of data to output ports
304 if (bufs.count().n_audio() > 0 && ports.count().n_audio () > 0) {
305 _output->copy_to_outputs (bufs, DataType::AUDIO, nframes, 0);
308 if (bufs.count().n_midi() > 0 && ports.count().n_midi () > 0) {
309 _output->copy_to_outputs (bufs, DataType::MIDI, nframes, 0);
313 if (result_required) {
314 bufs.read_from (output_buffers (), nframes);
317 out:
318 _active = _pending_active;
321 XMLNode&
322 Delivery::state (bool full_state)
324 XMLNode& node (IOProcessor::state (full_state));
326 if (_role & Main) {
327 node.add_property("type", "main-outs");
328 } else if (_role & Listen) {
329 node.add_property("type", "listen");
330 } else {
331 node.add_property("type", "delivery");
334 node.add_property("role", enum_2_string(_role));
336 if (_panshell) {
337 node.add_child_nocopy (_panshell->get_state ());
340 return node;
344 Delivery::set_state (const XMLNode& node, int version)
346 const XMLProperty* prop;
348 if (IOProcessor::set_state (node, version)) {
349 return -1;
352 if ((prop = node.property ("role")) != 0) {
353 _role = Role (string_2_enum (prop->value(), _role));
354 // std::cerr << this << ' ' << _name << " set role to " << enum_2_string (_role) << std::endl;
355 } else {
356 // std::cerr << this << ' ' << _name << " NO ROLE INFO\n";
359 XMLNode* pan_node = node.child (X_("PannerShell"));
361 if (pan_node && _panshell) {
362 _panshell->set_state (*pan_node, version);
365 reset_panner ();
367 return 0;
370 void
371 Delivery::unpan ()
373 /* caller must hold process lock */
375 _panshell.reset ();
378 void
379 Delivery::reset_panner ()
381 if (panners_legal) {
382 if (!no_panner_reset) {
384 uint32_t ntargets;
386 if (_output) {
387 ntargets = _output->n_ports().n_audio();
388 } else {
389 ntargets = _configured_output.n_audio();
392 if (_panshell) {
393 _panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, ntargets));
395 if (_role == Main) {
396 _panshell->pannable()->set_panner (_panshell->panner());
401 } else {
402 panner_legal_c.disconnect ();
403 PannersLegal.connect_same_thread (panner_legal_c, boost::bind (&Delivery::panners_became_legal, this));
408 Delivery::panners_became_legal ()
410 uint32_t ntargets;
412 if (_output) {
413 ntargets = _output->n_ports().n_audio();
414 } else {
415 ntargets = _configured_output.n_audio();
418 if (_panshell) {
419 _panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, ntargets));
421 if (_role == Main) {
422 _panshell->pannable()->set_panner (_panshell->panner());
426 panner_legal_c.disconnect ();
427 return 0;
430 void
431 Delivery::defer_pan_reset ()
433 no_panner_reset = true;
436 void
437 Delivery::allow_pan_reset ()
439 no_panner_reset = false;
440 reset_panner ();
445 Delivery::disable_panners (void)
447 panners_legal = false;
448 return 0;
452 Delivery::reset_panners ()
454 panners_legal = true;
455 return *PannersLegal ();
458 void
459 Delivery::flush_buffers (framecnt_t nframes, framepos_t time)
461 /* io_lock, not taken: function must be called from Session::process() calltree */
463 PortSet& ports (_output->ports());
465 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
466 (*i).flush_buffers (nframes, time);
470 void
471 Delivery::transport_stopped (framepos_t now)
473 Processor::transport_stopped (now);
475 if (_panshell) {
476 _panshell->pannable()->transport_stopped (now);
479 if (_output) {
480 PortSet& ports (_output->ports());
482 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
483 (*i).transport_stopped ();
488 void
489 Delivery::realtime_locate ()
491 if (_output) {
492 PortSet& ports (_output->ports());
494 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
495 (*i).realtime_locate ();
500 gain_t
501 Delivery::target_gain ()
503 /* if we've been requested to deactivate, our target gain is zero */
505 if (!_pending_active) {
506 return 0.0;
509 /* if we've been told not to output because its a monitoring situation and
510 we're not monitoring, then be quiet.
513 if (_no_outs_cuz_we_no_monitor) {
514 return 0.0;
517 MuteMaster::MutePoint mp = MuteMaster::Main; // stupid gcc uninit warning
519 switch (_role) {
520 case Main:
521 mp = MuteMaster::Main;
522 break;
523 case Listen:
524 mp = MuteMaster::Listen;
525 break;
526 case Send:
527 case Insert:
528 case Aux:
529 if (_pre_fader) {
530 mp = MuteMaster::PreFader;
531 } else {
532 mp = MuteMaster::PostFader;
534 break;
537 gain_t desired_gain = _mute_master->mute_gain_at (mp);
539 if (_role == Listen && _session.monitor_out() && !_session.listening()) {
541 /* nobody is soloed, and this delivery is a listen-send to the
542 control/monitor/listen bus, we should be silent since
543 it gets its signal from the master out.
546 desired_gain = 0.0;
550 return desired_gain;
553 void
554 Delivery::no_outs_cuz_we_no_monitor (bool yn)
556 _no_outs_cuz_we_no_monitor = yn;
559 bool
560 Delivery::set_name (const std::string& name)
562 bool ret = IOProcessor::set_name (name);
564 if (ret) {
565 ret = _panshell->set_name (name);
568 return ret;
571 bool ignore_output_change = false;
573 void
574 Delivery::output_changed (IOChange change, void* /*src*/)
576 if (change.type & IOChange::ConfigurationChanged) {
577 reset_panner ();
578 _output_buffers->attach_buffers (_output->ports ());
582 boost::shared_ptr<Panner>
583 Delivery::panner () const
585 if (_panshell) {
586 return _panshell->panner();
587 } else {
588 return boost::shared_ptr<Panner>();