Coding style. Fix a valgrind warning. Stop a close on a handle of -1.
[ardour.git] / gtk2_ardour / port_group.cc
1 /*
2     Copyright (C) 2002-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 <cstring>
21 #include <boost/shared_ptr.hpp>
22
23 #include "ardour/audio_track.h"
24 #include "ardour/audioengine.h"
25 #include "ardour/bundle.h"
26 #include "ardour/user_bundle.h"
27 #include "ardour/io_processor.h"
28 #include "ardour/midi_track.h"
29 #include "ardour/port.h"
30 #include "ardour/session.h"
31 #include "ardour/auditioner.h"
32
33 #include "port_group.h"
34 #include "port_matrix.h"
35 #include "time_axis_view.h"
36 #include "public_editor.h"
37
38 #include "i18n.h"
39
40 using namespace std;
41 using namespace Gtk;
42 using namespace ARDOUR;
43
44 /** PortGroup constructor.
45  * @param n Name.
46  */
47 PortGroup::PortGroup (std::string const & n)
48         : name (n), _visible (true)
49 {
50         
51 }
52
53 void
54 PortGroup::add_bundle (boost::shared_ptr<Bundle> b)
55 {
56         add_bundle (b, boost::shared_ptr<IO> ());
57 }
58
59 /** Add a bundle to a group.
60  *  @param b Bundle.
61  */
62 void
63 PortGroup::add_bundle (boost::shared_ptr<Bundle> b, boost::shared_ptr<IO> io)
64 {
65         assert (b.get());
66
67         BundleRecord r;
68         r.bundle = b;
69         r.io = io;
70         r.has_colour = false;
71         r.changed_connection = b->Changed.connect (sigc::mem_fun (*this, &PortGroup::bundle_changed));
72
73         _bundles.push_back (r);
74
75         Changed ();
76 }
77
78 /** Add a bundle to a group.
79  *  @param b Bundle.
80  *  @param c Colour to represent the group with.
81  */
82 void
83 PortGroup::add_bundle (boost::shared_ptr<Bundle> b, boost::shared_ptr<IO> io, Gdk::Color c)
84 {
85         assert (b.get());
86
87         BundleRecord r;
88         r.bundle = b;
89         r.io = io;
90         r.colour = c;
91         r.has_colour = true;
92         r.changed_connection = b->Changed.connect (sigc::mem_fun (*this, &PortGroup::bundle_changed));
93
94         _bundles.push_back (r);
95
96         Changed ();
97 }
98
99 void
100 PortGroup::remove_bundle (boost::shared_ptr<Bundle> b)
101 {
102         assert (b.get());
103
104         BundleList::iterator i = _bundles.begin ();
105         while (i != _bundles.end() && i->bundle != b) {
106                 ++i;
107         }
108
109         if (i == _bundles.end()) {
110                 return;
111         }
112
113         i->changed_connection.disconnect ();
114         _bundles.erase (i);
115         
116         Changed ();
117 }
118
119 void
120 PortGroup::bundle_changed (Bundle::Change c)
121 {
122         BundleChanged (c);
123 }
124
125
126 void
127 PortGroup::clear ()
128 {
129         for (BundleList::iterator i = _bundles.begin(); i != _bundles.end(); ++i) {
130                 i->changed_connection.disconnect ();
131         }
132
133         _bundles.clear ();
134         Changed ();
135 }
136
137 bool
138 PortGroup::has_port (std::string const& p) const
139 {
140         for (BundleList::const_iterator i = _bundles.begin(); i != _bundles.end(); ++i) {
141                 if (i->bundle->offers_port_alone (p)) {
142                         return true;
143                 }
144         }
145
146         return false;
147 }
148
149 boost::shared_ptr<Bundle>
150 PortGroup::only_bundle ()
151 {
152         assert (_bundles.size() == 1);
153         return _bundles.front().bundle;
154 }
155
156
157 uint32_t
158 PortGroup::total_channels () const
159 {
160         uint32_t n = 0;
161         for (BundleList::const_iterator i = _bundles.begin(); i != _bundles.end(); ++i) {
162                 n += i->bundle->nchannels ();
163         }
164
165         return n;
166 }
167
168 boost::shared_ptr<IO>
169 PortGroup::io_from_bundle (boost::shared_ptr<ARDOUR::Bundle> b) const
170 {
171         BundleList::const_iterator i = _bundles.begin ();
172         while (i != _bundles.end() && i->bundle != b) {
173                 ++i;
174         }
175
176         if (i == _bundles.end()) {
177                 return boost::shared_ptr<IO> ();
178         }
179
180         return i->io;
181 }
182
183
184 /** PortGroupList constructor.
185  */
186 PortGroupList::PortGroupList ()
187         : _type (DataType::AUDIO), _signals_suspended (false), _pending_change (false)
188 {
189         
190 }
191
192 void
193 PortGroupList::set_type (DataType t)
194 {
195         _type = t;
196         clear ();
197 }
198
199 void
200 PortGroupList::maybe_add_processor_to_bundle (boost::weak_ptr<Processor> wp, boost::shared_ptr<RouteBundle> rb, bool inputs, set<boost::shared_ptr<IO> >& used_io)
201 {
202         boost::shared_ptr<Processor> p (wp.lock());
203
204         if (!p) {
205                 return;
206         }
207
208         boost::shared_ptr<IOProcessor> iop = boost::dynamic_pointer_cast<IOProcessor> (p);
209         
210         if (iop) {
211
212                 boost::shared_ptr<IO> io = inputs ? iop->input() : iop->output();
213                 
214                 if (io && used_io.find (io) == used_io.end()) {
215                         rb->add_processor_bundle (io->bundle ());
216                         used_io.insert (io);
217                 }
218         }
219 }
220
221
222 /** Gather bundles from around the system and put them in this PortGroupList */
223 void
224 PortGroupList::gather (ARDOUR::Session& session, bool inputs)
225 {
226         clear ();
227
228         boost::shared_ptr<PortGroup> bus (new PortGroup (_("Bus")));
229         boost::shared_ptr<PortGroup> track (new PortGroup (_("Track")));
230         boost::shared_ptr<PortGroup> system (new PortGroup (_("System")));
231         boost::shared_ptr<PortGroup> ardour (new PortGroup (_("Ardour")));
232         boost::shared_ptr<PortGroup> other (new PortGroup (_("Other")));
233
234         /* Find the bundles for routes.  We use the RouteBundle class to join
235            the route's input/output and processor bundles together so that they
236            are presented as one bundle in the matrix. */
237
238         boost::shared_ptr<RouteList> routes = session.get_routes ();
239
240         for (RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) {
241
242                 /* keep track of IOs that we have taken bundles from, so that maybe_add_processor... below
243                    can avoid taking the same IO from both Route::output() and the main_outs Delivery */
244                    
245                 set<boost::shared_ptr<IO> > used_io;
246                 boost::shared_ptr<IO> io = inputs ? (*i)->input() : (*i)->output();
247                 used_io.insert (io);
248                 
249                 boost::shared_ptr<RouteBundle> rb (new RouteBundle (io->bundle()));
250
251                 (*i)->foreach_processor (bind (mem_fun (*this, &PortGroupList::maybe_add_processor_to_bundle), rb, inputs, used_io));
252
253                 /* Work out which group to put this bundle in */
254                 boost::shared_ptr<PortGroup> g;
255                 if (_type == DataType::AUDIO) {
256
257                         if (boost::dynamic_pointer_cast<AudioTrack> (*i)) {
258                                 g = track;
259                         } else if (!boost::dynamic_pointer_cast<MidiTrack>(*i)) {
260                                 g = bus;
261                         } 
262
263
264                 } else if (_type == DataType::MIDI) {
265
266                         if (boost::dynamic_pointer_cast<MidiTrack> (*i)) {
267                                 g = track;
268                         }
269
270                         /* No MIDI busses yet */
271                 } 
272                         
273                 if (g) {
274
275                         TimeAxisView* tv = PublicEditor::instance().axis_view_from_route (i->get());
276                         if (tv) {
277                                 g->add_bundle (rb, io, tv->color ());
278                         } else {
279                                 g->add_bundle (rb, io);
280                         }
281                 }
282         }
283
284         /* Bundles owned by the session.  We only add the mono ones and the User ones
285            otherwise there is duplication of the same ports within the matrix */
286         
287         boost::shared_ptr<BundleList> b = session.bundles ();
288         for (BundleList::iterator i = b->begin(); i != b->end(); ++i) {
289                 if ((*i)->ports_are_inputs() == inputs && (*i)->type() == _type) {
290
291                         if ((*i)->nchannels() == 1 || boost::dynamic_pointer_cast<UserBundle> (*i)) {
292                                 system->add_bundle (*i);
293                         }
294                 
295                 }
296         }
297
298         /* Ardour stuff */
299
300         if (!inputs && _type == DataType::AUDIO) {
301                 ardour->add_bundle (session.the_auditioner()->output()->bundle());
302                 ardour->add_bundle (session.click_io()->bundle());
303         }
304
305         /* Now find all other ports that we haven't thought of yet */
306
307         std::vector<std::string> extra_system;
308         std::vector<std::string> extra_other;
309
310         const char **ports = session.engine().get_ports ("", _type.to_jack_type(), inputs ? 
311                                                          JackPortIsInput : JackPortIsOutput);
312         if (ports) {
313
314                 int n = 0;
315                 string client_matching_string;
316
317                 client_matching_string = session.engine().client_name();
318                 client_matching_string += ':';
319
320                 while (ports[n]) {
321                         
322                         std::string const p = ports[n];
323
324                         if (!system->has_port(p) && !bus->has_port(p) && !track->has_port(p) && !ardour->has_port(p) && !other->has_port(p)) {
325                                 
326                                 if (port_has_prefix (p, "system:") ||
327                                     port_has_prefix (p, "alsa_pcm") ||
328                                     port_has_prefix (p, "ardour:")) {
329                                         extra_system.push_back (p);
330                                 } else {
331                                         extra_other.push_back (p);
332                                 }
333                         }
334                         
335                         ++n;
336                 }
337
338                 free (ports);
339         }
340
341         if (!extra_system.empty()) {
342                 system->add_bundle (make_bundle_from_ports (extra_system, inputs));
343         }
344
345         if (!extra_other.empty()) {
346                 other->add_bundle (make_bundle_from_ports (extra_other, inputs));
347         }
348
349         add_group (system);
350         add_group (bus);
351         add_group (track);
352         add_group (ardour);
353         add_group (other);
354
355         emit_changed ();
356 }
357
358 boost::shared_ptr<Bundle>
359 PortGroupList::make_bundle_from_ports (std::vector<std::string> const & p, bool inputs) const
360 {
361         boost::shared_ptr<Bundle> b (new Bundle ("", _type, inputs));
362
363         std::string const pre = common_prefix (p);
364         if (!pre.empty()) {
365                 b->set_name (pre.substr (0, pre.length() - 1));
366         }
367
368         for (uint32_t j = 0; j < p.size(); ++j) {
369                 b->add_channel (p[j].substr (pre.length()));
370                 b->set_port (j, p[j]);
371         }
372
373         return b;
374 }
375
376 bool
377 PortGroupList::port_has_prefix (const std::string& n, const std::string& p) const
378 {
379         return n.substr (0, p.length()) == p;
380 }
381
382 std::string
383 PortGroupList::common_prefix_before (std::vector<std::string> const & p, std::string const & s) const
384 {
385         /* we must have some strings and the first must contain the separator string */
386         if (p.empty() || p[0].find_first_of (s) == std::string::npos) {
387                 return "";
388         }
389
390         /* prefix of the first string */
391         std::string const fp = p[0].substr (0, p[0].find_first_of (s) + 1);
392
393         /* see if the other strings also start with fp */
394         uint32_t j = 1;
395         while (j < p.size()) {
396                 if (p[j].substr (0, fp.length()) != fp) {
397                         break;
398                 }
399                 ++j;
400         }
401
402         if (j != p.size()) {
403                 return "";
404         }
405
406         return fp;
407 }
408         
409
410 std::string
411 PortGroupList::common_prefix (std::vector<std::string> const & p) const
412 {
413         /* common prefix before '/' ? */
414         std::string cp = common_prefix_before (p, "/");
415         if (!cp.empty()) {
416                 return cp;
417         }
418
419         cp = common_prefix_before (p, ":");
420         if (!cp.empty()) {
421                 return cp;
422         }
423
424         return "";
425 }
426
427 void
428 PortGroupList::clear ()
429 {
430         _groups.clear ();
431
432         for (std::vector<sigc::connection>::iterator i = _bundle_changed_connections.begin(); i != _bundle_changed_connections.end(); ++i) {
433                 i->disconnect ();
434         }
435
436         _bundle_changed_connections.clear ();
437
438         emit_changed ();
439 }
440
441
442 PortGroup::BundleList const &
443 PortGroupList::bundles () const
444 {
445         _bundles.clear ();
446         
447         for (PortGroupList::List::const_iterator i = begin (); i != end (); ++i) {
448                 std::copy ((*i)->bundles().begin(), (*i)->bundles().end(), std::back_inserter (_bundles));
449         }
450         
451         return _bundles;
452 }
453
454 uint32_t
455 PortGroupList::total_visible_channels () const
456 {
457         uint32_t n = 0;
458         
459         for (PortGroupList::List::const_iterator i = begin(); i != end(); ++i) {
460                 if ((*i)->visible()) {
461                         n += (*i)->total_channels ();
462                 }
463         }
464
465         return n;
466 }
467
468
469 void
470 PortGroupList::add_group (boost::shared_ptr<PortGroup> g)
471 {
472         _groups.push_back (g);
473         
474         g->Changed.connect (sigc::mem_fun (*this, &PortGroupList::emit_changed));
475         
476         _bundle_changed_connections.push_back (
477                 g->BundleChanged.connect (sigc::hide (sigc::mem_fun (*this, &PortGroupList::emit_changed)))
478                 );
479
480         emit_changed ();
481 }
482
483 void
484 PortGroupList::remove_bundle (boost::shared_ptr<Bundle> b)
485 {
486         for (List::iterator i = _groups.begin(); i != _groups.end(); ++i) {
487                 (*i)->remove_bundle (b);
488         }
489
490         emit_changed ();
491 }
492
493 void
494 PortGroupList::emit_changed ()
495 {
496         if (_signals_suspended) {
497                 _pending_change = true;
498         } else {
499                 Changed ();
500         }
501 }
502                 
503 void
504 PortGroupList::suspend_signals ()
505 {
506         _signals_suspended = true;
507 }
508
509 void
510 PortGroupList::resume_signals ()
511 {
512         if (_pending_change) {
513                 Changed ();
514                 _pending_change = false;
515         }
516
517         _signals_suspended = false;
518 }
519
520 boost::shared_ptr<IO>
521 PortGroupList::io_from_bundle (boost::shared_ptr<ARDOUR::Bundle> b) const
522 {
523         List::const_iterator i = _groups.begin ();
524         while (i != _groups.end()) {
525                 boost::shared_ptr<IO> io = (*i)->io_from_bundle (b);
526                 if (io) {
527                         return io;
528                 }
529                 ++i;
530         }
531
532         return boost::shared_ptr<IO> ();
533 }
534
535
536 RouteBundle::RouteBundle (boost::shared_ptr<Bundle> r)
537         : _route (r)
538 {
539         _route->Changed.connect (sigc::hide (sigc::mem_fun (*this, &RouteBundle::reread_component_bundles)));
540         reread_component_bundles ();
541 }
542
543 void
544 RouteBundle::reread_component_bundles ()
545 {
546         suspend_signals ();
547         
548         remove_channels ();
549
550         set_name (_route->name());
551
552         for (uint32_t i = 0; i < _route->nchannels(); ++i) {
553                 add_channel (_route->channel_name (i));
554                 PortList const & pl = _route->channel_ports (i);
555                 for (uint32_t j = 0; j < pl.size(); ++j) {
556                         add_port_to_channel (i, pl[j]);
557                 }
558         }
559                 
560         for (std::vector<boost::shared_ptr<Bundle> >::iterator i = _processor.begin(); i != _processor.end(); ++i) {
561                 add_channels_from_bundle (*i);
562         }
563
564         resume_signals ();
565 }
566
567 void
568 RouteBundle::add_processor_bundle (boost::shared_ptr<Bundle> p)
569 {
570         p->Changed.connect (sigc::hide (sigc::mem_fun (*this, &RouteBundle::reread_component_bundles)));
571         _processor.push_back (p);
572         
573         reread_component_bundles ();
574 }
575