remove Track::hidden(); replace with Stripable::is_private_route()
[ardour.git] / libs / ardour / port_insert.cc
1 /*
2     Copyright (C) 2000,2007 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 <string>
21
22 #include "pbd/xml++.h"
23
24 #include "ardour/audio_port.h"
25 #include "ardour/audioengine.h"
26 #include "ardour/delivery.h"
27 #include "ardour/io.h"
28 #include "ardour/mtdm.h"
29 #include "ardour/port_insert.h"
30 #include "ardour/session.h"
31 #include "ardour/types.h"
32
33 #include "pbd/i18n.h"
34
35 using namespace std;
36 using namespace ARDOUR;
37 using namespace PBD;
38
39 string
40 PortInsert::name_and_id_new_insert (Session& s, uint32_t& bitslot)
41 {
42         bitslot = s.next_insert_id ();
43         return string_compose (_("insert %1"), bitslot+ 1);
44 }
45
46 PortInsert::PortInsert (Session& s, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster> mm)
47         : IOProcessor (s, true, true, name_and_id_new_insert (s, _bitslot), "", DataType::AUDIO, true)
48         , _out (new Delivery (s, _output, pannable, mm, _name, Delivery::Insert))
49 {
50         _mtdm = 0;
51         _latency_detect = false;
52         _latency_flush_frames = 0;
53         _measured_latency = 0;
54 }
55
56 PortInsert::~PortInsert ()
57 {
58         _session.unmark_insert_id (_bitslot);
59         delete _mtdm;
60 }
61
62 void
63 PortInsert::set_pre_fader (bool p)
64 {
65         Processor::set_pre_fader (p);
66         _out->set_pre_fader (p);
67 }
68
69 void
70 PortInsert::start_latency_detection ()
71 {
72         delete _mtdm;
73         _mtdm = new MTDM (_session.frame_rate());
74         _latency_flush_frames = 0;
75         _latency_detect = true;
76         _measured_latency = 0;
77 }
78
79 void
80 PortInsert::stop_latency_detection ()
81 {
82         _latency_flush_frames = signal_latency() + _session.engine().samples_per_cycle();
83         _latency_detect = false;
84 }
85
86 void
87 PortInsert::set_measured_latency (framecnt_t n)
88 {
89         _measured_latency = n;
90 }
91
92 framecnt_t
93 PortInsert::latency() const
94 {
95         /* because we deliver and collect within the same cycle,
96            all I/O is necessarily delayed by at least frames_per_cycle().
97
98            if the return port for insert has its own latency, we
99            need to take that into account too.
100         */
101
102         if (_measured_latency == 0) {
103                 return _session.engine().samples_per_cycle() + _input->latency();
104         } else {
105                 return _measured_latency;
106         }
107 }
108
109 void
110 PortInsert::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, double speed, pframes_t nframes, bool)
111 {
112         if (_output->n_ports().n_total() == 0) {
113                 return;
114         }
115
116         if (_latency_detect) {
117
118                 if (_input->n_ports().n_audio() != 0) {
119
120                         AudioBuffer& outbuf (_output->ports().nth_audio_port(0)->get_audio_buffer (nframes));
121                         Sample* in = _input->ports().nth_audio_port(0)->get_audio_buffer (nframes).data();
122                         Sample* out = outbuf.data();
123
124                         _mtdm->process (nframes, in, out);
125
126                         outbuf.set_written (true);
127                 }
128
129                 return;
130
131         } else if (_latency_flush_frames) {
132
133                 /* wait for the entire input buffer to drain before picking up input again so that we can't
134                    hear the remnants of whatever MTDM pumped into the pipeline.
135                 */
136
137                 silence (nframes, start_frame);
138
139                 if (_latency_flush_frames > nframes) {
140                         _latency_flush_frames -= nframes;
141                 } else {
142                         _latency_flush_frames = 0;
143                 }
144
145                 return;
146         }
147
148         if (!_active && !_pending_active) {
149                 /* deliver silence */
150                 silence (nframes, start_frame);
151                 goto out;
152         }
153
154         _out->run (bufs, start_frame, end_frame, speed, nframes, true);
155         _input->collect_input (bufs, nframes, ChanCount::ZERO);
156
157   out:
158         _active = _pending_active;
159 }
160
161 XMLNode&
162 PortInsert::get_state(void)
163 {
164         return state (true);
165 }
166
167 XMLNode&
168 PortInsert::state (bool full)
169 {
170         XMLNode& node = IOProcessor::state(full);
171         node.set_property ("type", "port");
172         node.set_property ("bitslot", _bitslot);
173         node.set_property ("latency", _measured_latency);
174         node.set_property ("block-size", _session.get_block_size());
175
176         return node;
177 }
178
179 int
180 PortInsert::set_state (const XMLNode& node, int version)
181 {
182         XMLNodeList nlist = node.children();
183         XMLNodeIterator niter;
184         XMLPropertyList plist;
185
186         const XMLNode* insert_node = &node;
187
188         // legacy sessions: search for child Redirect node
189         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
190                 if ((*niter)->name() == "Redirect") {
191                         insert_node = *niter;
192                         break;
193                 }
194         }
195
196         IOProcessor::set_state (*insert_node, version);
197
198         std::string type_str;
199         if (!node.get_property ("type", type_str)) {
200                 error << _("XML node describing port insert is missing the `type' field") << endmsg;
201                 return -1;
202         }
203
204         if (type_str != "port") {
205                 error << _("non-port insert XML used for port plugin insert") << endmsg;
206                 return -1;
207         }
208
209         uint32_t blocksize = 0;
210         node.get_property ("block-size", blocksize);
211
212         //if the jack period is the same as when the value was saved, we can recall our latency..
213         if ( (_session.get_block_size() == blocksize) ) {
214                 node.get_property ("latency", _measured_latency);
215         }
216
217         if (!node.property ("ignore-bitslot")) {
218                 uint32_t bitslot;
219                 if (node.get_property ("bitslot", bitslot)) {
220                         _session.unmark_insert_id (_bitslot);
221                         _bitslot = bitslot;
222                         _session.mark_insert_id (_bitslot);
223                 } else {
224                         _bitslot = _session.next_insert_id();
225                 }
226         }
227
228         return 0;
229 }
230
231 ARDOUR::framecnt_t
232 PortInsert::signal_latency() const
233 {
234         /* because we deliver and collect within the same cycle,
235            all I/O is necessarily delayed by at least frames_per_cycle().
236
237            if the return port for insert has its own latency, we
238            need to take that into account too.
239         */
240
241         if (_measured_latency == 0) {
242                 return _session.engine().samples_per_cycle() + _input->signal_latency();
243         } else {
244                 return _measured_latency;
245         }
246 }
247
248 /** Caller must hold process lock */
249 bool
250 PortInsert::configure_io (ChanCount in, ChanCount out)
251 {
252 #ifndef PLATFORM_WINDOWS
253         assert (!AudioEngine::instance()->process_lock().trylock());
254 #endif
255
256         /* for an insert, processor input corresponds to IO output, and vice versa */
257
258         if (_input->ensure_io (in, false, this) != 0) {
259                 return false;
260         }
261
262         if (_output->ensure_io (out, false, this) != 0) {
263                 return false;
264         }
265
266         return Processor::configure_io (in, out);
267 }
268
269 bool
270 PortInsert::can_support_io_configuration (const ChanCount& in, ChanCount& out)
271 {
272         out = in;
273         return true;
274 }
275
276 bool
277 PortInsert::set_name (const std::string& name)
278 {
279         bool ret = Processor::set_name (name);
280
281         ret = (ret && _input->set_name (name) && _output->set_name (name));
282
283         return ret;
284 }
285
286 void
287 PortInsert::activate ()
288 {
289         IOProcessor::activate ();
290
291         _out->activate ();
292 }
293
294 void
295 PortInsert::deactivate ()
296 {
297         IOProcessor::deactivate ();
298
299         _out->deactivate ();
300 }