68d9554904fbd95ac85edd89fc6f58e1a7727633
[ardour.git] / libs / ardour / ardour / data_type.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 it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9     
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14     
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_data_type_h__
21 #define __ardour_data_type_h__
22
23 #include <string>
24 #include <ardour/data_type.h>
25 #include <jack/jack.h>
26
27 namespace ARDOUR {
28
29
30 /** A type of Data Ardour is capable of processing.
31  *
32  * The majority of this class is dedicated to conversion to and from various
33  * other type representations, simple comparison between then, etc.  This code
34  * is deliberately 'ugly' so other code doesn't have to be.
35  */
36 class DataType
37 {
38 public:
39         /** Numeric symbol for this DataType.
40          *
41          * Castable to int for use as an array index (e.g. by ChanCount).
42          * Note this means NIL is (ntypes-1) and guaranteed to change when
43          * types are added, so this number is NOT suitable for serialization,
44          * network, or binary anything.
45          *
46          * WARNING: The number of non-NIL entries here must match num_types.
47          */
48         enum Symbol {
49                 AUDIO = 0,
50                 MIDI = 1,
51                 NIL = 2,
52         };
53         
54         /** Number of types (not including NIL).
55          * WARNING: make sure this matches Symbol!
56          */
57         static const uint32_t num_types = 2;
58
59         DataType(const Symbol& symbol)
60         : _symbol(symbol)
61         {}
62
63         /** Construct from a string (Used for loading from XML and Ports)
64          * The string can be as in an XML file (eg "audio" or "midi"), or a
65          * Jack type string (from jack_port_type) */
66         DataType(const std::string& str)
67         : _symbol(NIL) {
68                 if (str == "audio" || str == JACK_DEFAULT_AUDIO_TYPE)
69                         _symbol = AUDIO;
70                 else if (str == "midi" || str == JACK_DEFAULT_MIDI_TYPE)
71                         _symbol = MIDI;
72         }
73
74         /** Get the Jack type this DataType corresponds to */
75         const char* to_jack_type() const {
76                 switch (_symbol) {
77                         case AUDIO: return JACK_DEFAULT_AUDIO_TYPE;
78                         case MIDI:  return JACK_DEFAULT_MIDI_TYPE;
79                         default:    return "";
80                 }
81         }
82         
83         /** Inverse of the from-string constructor */
84         const char* to_string() const {
85                 switch (_symbol) {
86                         case AUDIO: return "audio";
87                         case MIDI:  return "midi";
88                         default:    return "unknown"; // reeeally shouldn't ever happen
89                 }
90         }
91
92         inline operator uint32_t() const { return (uint32_t)_symbol; }
93
94         /** DataType iterator, for writing generic loops that iterate over all
95          * available types.
96          */
97         class iterator {
98         public:
99
100                 iterator(uint32_t index) : _index(index) {}
101
102                 DataType  operator*()  { return DataType((Symbol)_index); }
103                 iterator& operator++() { ++_index; return *this; } // yes, prefix only
104                 bool operator==(const iterator& other) { return (_index == other._index); }
105                 bool operator!=(const iterator& other) { return (_index != other._index); }
106
107         private:
108                 friend class DataType;
109
110                 uint32_t _index;
111         };
112
113         static iterator begin() { return iterator(0); }
114         static iterator end()   { return iterator(num_types); }
115         
116         bool operator==(const Symbol symbol) { return (_symbol == symbol); }
117         bool operator!=(const Symbol symbol) { return (_symbol != symbol); }
118         
119         bool operator==(const DataType other) { return (_symbol == other._symbol); }
120         bool operator!=(const DataType other) { return (_symbol != other._symbol); }
121
122 private:
123         Symbol _symbol; // could be const if not for the string constructor
124 };
125
126
127
128 } // namespace ARDOUR
129
130 #endif // __ardour_data_type_h__
131