MIDI branch becomes trunk
[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 (*this != other);
81         }
82
83         bool operator<=(const ChanCount& other) const
84         {
85                 return ( (*this < other) || (*this == other) );
86         }
87         
88         bool operator>(const ChanCount& other) const
89         {
90                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
91                         if (_counts[(*t).to_index()] < other._counts[(*t).to_index()]) {
92                                 return false;
93                         }
94                 }
95                 return (*this != other);
96         }
97
98         bool operator>=(const ChanCount& other) const
99         {
100                 return ( (*this > other) || (*this == other) );
101         }
102
103         static const ChanCount INFINITE;
104         static const ChanCount ZERO;
105
106 private:
107         
108         size_t _counts[DataType::num_types];
109 };
110
111
112 } // namespace ARDOUR
113
114 #endif // __ardour_chan_count_h__
115