MIDI region forking, plus Playlist::regions_to_read() fix forward ported from 2.X...
[ardour.git] / libs / ardour / ardour / port_set.h
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 #ifndef __ardour_port_set_h__
20 #define __ardour_port_set_h__
21
22 #include <vector>
23 #include "ardour/chan_count.h"
24 #include <boost/utility.hpp>
25
26 namespace ARDOUR {
27
28 class Port;
29 class AudioPort;
30 class MidiPort;
31
32 /** An ordered list of Ports, possibly of various types.
33  *
34  * This allows access to all the ports as a list, ignoring type, or accessing
35  * the nth port of a given type.  Note that port(n) and nth_audio_port(n) may
36  * NOT return the same port.
37  */
38 class PortSet : public boost::noncopyable {
39 public:
40         PortSet();
41
42         size_t num_ports() const;
43         size_t num_ports(DataType type) const { return _ports[type].size(); }
44
45         void add(Port* port);
46         bool remove(Port* port);
47
48         /** nth port */
49         Port* port(size_t index) const;
50
51         /** nth port of type @a t, or nth port if t = NIL */
52         Port* port(DataType t, size_t index) const;
53
54         AudioPort* nth_audio_port(size_t n) const;
55
56         MidiPort* nth_midi_port(size_t n) const;
57
58         bool contains(const Port* port) const;
59
60         /** Remove all ports from the PortSet.  Ports are not deregistered with
61          * the engine, it's the caller's responsibility to not leak here!
62          */
63         void clear() { _ports.clear(); }
64
65         const ChanCount& count() const { return _count; }
66
67         bool empty() const { return (_count.n_total() == 0); }
68
69         template<typename PS, typename P>
70         class iterator_base {
71         public:
72                 P& operator*()  { return *_set.port(_type, _index); }
73                 P* operator->() { return _set.port(_type, _index); }
74                 iterator_base<PS,P>& operator++() { ++_index; return *this; } // yes, prefix only
75                 bool operator==(const iterator_base<PS,P>& other) { return (_index == other._index); }
76                 bool operator!=(const iterator_base<PS,P>& other) { return (_index != other._index); }
77
78         private:
79                 friend class PortSet;
80
81                 iterator_base<PS,P>(PS& list, DataType type, size_t index)
82                         : _set(list), _type(type), _index(index) {}
83
84                 PS&      _set;
85                 DataType _type; ///< Ignored if NIL (to iterator over entire set)
86                 size_t   _index;
87         };
88
89         typedef iterator_base<PortSet, Port>             iterator;
90         typedef iterator_base<const PortSet, const Port> const_iterator;
91
92         iterator begin(DataType type = DataType::NIL) {
93                 return iterator(*this, type, 0);
94         }
95
96         iterator end(DataType type = DataType::NIL) {
97                 return iterator(*this, type,
98                         (type == DataType::NIL) ? _count.n_total() : _count.get(type));
99         }
100
101         const_iterator begin(DataType type = DataType::NIL) const {
102                 return const_iterator(*this, type, 0);
103         }
104
105         const_iterator end(DataType type = DataType::NIL) const {
106                 return const_iterator(*this, type,
107                         (type == DataType::NIL) ? _count.n_total() : _count.get(type));
108         }
109
110         class audio_iterator {
111         public:
112                 AudioPort& operator*()  { return *_set.nth_audio_port(_index); }
113                 AudioPort* operator->() { return _set.nth_audio_port(_index); }
114                 audio_iterator& operator++() { ++_index; return *this; } // yes, prefix only
115                 bool operator==(const audio_iterator& other) { return (_index == other._index); }
116                 bool operator!=(const audio_iterator& other) { return (_index != other._index); }
117
118         private:
119                 friend class PortSet;
120
121                 audio_iterator(PortSet& list, size_t index) : _set(list), _index(index) {}
122
123                 PortSet& _set;
124                 size_t   _index;
125         };
126
127         audio_iterator audio_begin() { return audio_iterator(*this, 0); }
128         audio_iterator audio_end()   { return audio_iterator(*this, _count.n_audio()); }
129
130 private:
131         typedef std::vector<Port*> PortVec;
132
133         // Vector of vectors, indexed by DataType::to_index()
134         std::vector<PortVec> _ports;
135
136         ChanCount _count;
137 };
138
139
140 } // namespace ARDOUR
141
142 #endif // __ardour_port_set_h__