- Replaced integer port counts (and input/output maximum/minimum) with ChanCount...
[ardour.git] / libs / ardour / ardour / chan_count.h
1 /*
2     Copyright (C) 2006 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     $Id: insert.cc 712 2006-07-28 01:08:57Z drobilla $
19 */
20
21 #ifndef __ardour_chan_count_h__
22 #define __ardour_chan_count_h__
23
24 #include <ardour/data_type.h>
25
26 namespace ARDOUR {
27
28
29 class ChanCount {
30 public:
31         ChanCount() { reset(); }
32         
33         // Convenience constructor for making single-typed streams (stereo, mono, etc)
34         ChanCount(DataType type, size_t channels)
35         {
36                 reset();
37                 set(type, channels);
38         }
39
40         void reset()
41         {
42                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
43                         _counts[(*t).to_index()] = 0;
44                 }
45         }
46
47         void   set(DataType type, size_t count) { _counts[type.to_index()] = count; }
48         size_t get(DataType type) const { return _counts[type.to_index()]; }
49         
50         size_t get_total() const
51         {
52                 size_t ret = 0;
53                 for (size_t i=0; i < DataType::num_types; ++i)
54                         ret += _counts[i];
55
56                 return ret;
57         }
58
59         bool operator==(const ChanCount& other) const
60         {
61                 for (size_t i=0; i < DataType::num_types; ++i)
62                         if (_counts[i] != other._counts[i])
63                                 return false;
64
65                 return true;
66         }
67         
68         bool operator!=(const ChanCount& other) const
69         {
70                 return ! (*this == other);
71         }
72
73         bool operator<(const ChanCount& other) const
74         {
75                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
76                         if (_counts[(*t).to_index()] >= other._counts[(*t).to_index()]) {
77                                 return false;
78                         }
79                 }
80                 return true;
81         }
82         
83         bool operator<=(const ChanCount& other) const
84         {
85                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
86                         if (_counts[(*t).to_index()] > other._counts[(*t).to_index()]) {
87                                 return false;
88                         }
89                 }
90                 return true;
91         }
92         
93         bool operator>(const ChanCount& other) const
94         {
95                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
96                         if (_counts[(*t).to_index()] <= other._counts[(*t).to_index()]) {
97                                 return false;
98                         }
99                 }
100                 return true;
101         }
102         
103         bool operator>=(const ChanCount& other) const
104         {
105                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
106                         if (_counts[(*t).to_index()] < other._counts[(*t).to_index()]) {
107                                 return false;
108                         }
109                 }
110                 return true;
111         }
112
113         static const ChanCount INFINITE;
114         static const ChanCount ZERO;
115
116 private:
117         
118         size_t _counts[DataType::num_types];
119 };
120
121
122 } // namespace ARDOUR
123
124 #endif // __ardour_chan_count_h__
125