The great audio processing overhaul.
[ardour.git] / libs / ardour / ardour / chan_count.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Author: Dave Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_chan_count_h__
21 #define __ardour_chan_count_h__
22
23 #include <cassert>
24 #include <ostream>
25
26 #include "pbd/xml++.h"
27 #include "ardour/data_type.h"
28
29 namespace ARDOUR {
30
31
32 /** A count of channels, possibly with many types.
33  *
34  * Operators are defined so this may safely be used as if it were a simple
35  * (single-typed) integer count of channels.
36  */
37 class ChanCount {
38 public:
39         ChanCount(const XMLNode& node);
40         ChanCount() { reset(); }
41         
42         // Convenience constructor for making single-typed streams (stereo, mono, etc)
43         ChanCount(DataType type, uint32_t channels) {
44                 reset();
45                 set(type, channels);
46         }
47
48         void reset() {
49                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
50                         _counts[*t] = 0;
51                 }
52         }
53         
54         void     set(DataType t, uint32_t count) { assert(t != DataType::NIL); _counts[t] = count; }
55         uint32_t get(DataType t) const { assert(t != DataType::NIL); return _counts[t]; }
56         
57         inline uint32_t n_audio() const { return _counts[DataType::AUDIO]; }
58         inline void set_audio(uint32_t a) { _counts[DataType::AUDIO] = a; }
59         
60         inline uint32_t n_midi()  const { return _counts[DataType::MIDI]; }
61         inline void set_midi(uint32_t m) { _counts[DataType::MIDI] = m; }
62         
63         uint32_t n_total() const {
64                 uint32_t ret = 0;
65                 for (uint32_t i=0; i < DataType::num_types; ++i)
66                         ret += _counts[i];
67
68                 return ret;
69         }
70
71         bool operator==(const ChanCount& other) const {
72                 for (uint32_t i=0; i < DataType::num_types; ++i)
73                         if (_counts[i] != other._counts[i])
74                                 return false;
75
76                 return true;
77         }
78         
79         bool operator!=(const ChanCount& other) const {
80                 return ! (*this == other);
81         }
82
83         bool operator<(const ChanCount& other) const {
84                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
85                         if (_counts[*t] > other._counts[*t]) {
86                                 return false;
87                         }
88                 }
89                 return (*this != other);
90         }
91
92         bool operator<=(const ChanCount& other) const {
93                 return ( (*this < other) || (*this == other) );
94         }
95         
96         bool operator>(const ChanCount& other) const {
97                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
98                         if (_counts[*t] < other._counts[*t]) {
99                                 return false;
100                         }
101                 }
102                 return (*this != other);
103         }
104
105         bool operator>=(const ChanCount& other) const {
106                 return ( (*this > other) || (*this == other) );
107         }
108         
109         static ChanCount min(const ChanCount& a, const ChanCount& b) {
110                 ChanCount ret;
111                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
112                         ret.set(*t, std::min(a.get(*t), b.get(*t)));
113                 }
114                 return ret;
115         }
116         
117         static ChanCount max(const ChanCount& a, const ChanCount& b) {
118                 ChanCount ret;
119                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
120                         ret.set(*t, std::max(a.get(*t), b.get(*t)));
121                 }
122                 return ret;
123         }
124         
125         XMLNode* state(const std::string& name) const;
126
127         static const ChanCount INFINITE;
128         static const ChanCount ZERO;
129
130 private:
131         uint32_t _counts[DataType::num_types];
132 };
133
134 } // namespace ARDOUR
135
136 std::ostream& operator<<(std::ostream& o, const ARDOUR::ChanCount& c);
137
138 #endif // __ardour_chan_count_h__
139