- Changed IO's vector<Port*>'s to PortList
[ardour.git] / libs / ardour / port_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 #include <ardour/port_set.h>
20
21 namespace ARDOUR {
22
23 PortSet::PortSet()
24 {
25         for (size_t i=0; i < DataType::num_types; ++i)
26                 _ports.push_back( PortVec() );
27 }
28
29 static bool sort_ports_by_name (Port* a, Port* b)
30 {
31         return (a->name() < b->name());
32 }
33
34 void
35 PortSet::add_port(Port* port)
36 {
37         const size_t list_index = port->type().to_index();
38         assert(list_index < _ports.size());
39         
40         PortVec& v = _ports[list_index];
41         
42         v.push_back(port);
43         sort(v.begin(), v.end(), sort_ports_by_name);
44
45         _chan_count.set_count(port->type(), _chan_count.get_count(port->type()) + 1);
46
47         assert(_chan_count.get_count(port->type()) == _ports[port->type().to_index()].size());
48 }
49
50
51 /** Get the total number of ports (of all types) in the PortSet
52  */
53 size_t
54 PortSet::num_ports() const
55 {
56         size_t ret = 0;
57
58         for (std::vector<PortVec>::const_iterator l = _ports.begin(); l != _ports.end(); ++l)
59                 ret += (*l).size();
60
61         return ret;
62 }
63
64 bool
65 PortSet::contains(const Port* port) const
66 {
67         for (std::vector<PortVec>::const_iterator l = _ports.begin(); l != _ports.end(); ++l)
68                 if (find((*l).begin(), (*l).end(), port) != (*l).end())
69                         return true;
70
71         return false;
72 }
73
74 Port*
75 PortSet::port(size_t n) const
76 {
77         // This is awesome
78         
79         size_t size_so_far = 0;
80
81         for (std::vector<PortVec>::const_iterator l = _ports.begin(); l != _ports.end(); ++l) {
82                 if (n < size_so_far + (*l).size())
83                         return (*l)[n - size_so_far];
84                 else
85                         size_so_far += (*l).size();
86         }
87
88         return NULL; // n out of range
89 }
90
91 Port*
92 PortSet::nth_port_of_type(DataType type, size_t n) const
93 {
94         const PortVec& v = _ports[type.to_index()];
95         assert(n < v.size());
96         return v[n];
97 }
98
99 AudioPort*
100 PortSet::nth_audio_port(size_t n) const
101 {
102         return dynamic_cast<AudioPort*>(nth_port_of_type(DataType::AUDIO, n));
103 }
104
105 MidiPort*
106 PortSet::nth_midi_port(size_t n) const
107 {
108         return dynamic_cast<MidiPort*>(nth_port_of_type(DataType::MIDI, n));
109 }
110
111 } // namepace ARDOUR