Merge branch 'master' into audioengine
[ardour.git] / libs / pbd / pbd / enumwriter.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$
19 */
20
21 #ifndef __pbd_enumwriter_h__
22 #define __pbd_enumwriter_h__
23
24 #include <map>
25 #include <string>
26 #include <vector>
27 #include <exception>
28 #include <sstream>
29
30 namespace PBD {
31
32 class unknown_enumeration : public std::exception {
33   public:
34         unknown_enumeration (std::string const & e) throw() {
35                 std::stringstream s;
36                 s << "unknown enumerator " << e << " in PBD::EnumWriter";
37                 _message = s.str ();
38         }
39
40         ~unknown_enumeration () throw() {}
41         
42         virtual const char *what() const throw() {
43                 return _message.c_str();
44         }
45
46 private:
47         std::string _message;
48 };
49
50 class EnumWriter {
51   public:
52         static EnumWriter& instance();
53         static void destroy();
54
55         void register_distinct (std::string type, std::vector<int>, std::vector<std::string>);
56         void register_bits     (std::string type, std::vector<int>, std::vector<std::string>);
57
58         std::string write (std::string type, int value);
59         int         read  (std::string type, std::string value);
60
61         void add_to_hack_table (std::string str, std::string hacked_str);
62
63   private:
64         EnumWriter ();
65         ~EnumWriter ();
66
67         struct EnumRegistration {
68             std::vector<int> values;
69             std::vector<std::string> names;
70             bool bitwise;
71
72             EnumRegistration() {}
73             EnumRegistration (std::vector<int>& v, std::vector<std::string>& s, bool b) 
74                     : values (v), names (s), bitwise (b) {}
75         };
76
77         typedef std::map<std::string, EnumRegistration> Registry;
78         Registry registry;
79
80         std::string write_bits (EnumRegistration&, int value);
81         std::string write_distinct (EnumRegistration&, int value);
82
83         int read_bits (EnumRegistration&, std::string value);
84         int read_distinct (EnumRegistration&, std::string value);
85
86         static EnumWriter* _instance;
87         static std::map<std::string,std::string> hack_table;
88
89
90         int validate (EnumRegistration& er, int value);
91 };
92
93 }
94
95 #define enum_2_string(e) (PBD::EnumWriter::instance().write (typeid(e).name(), e))
96 #define string_2_enum(str,e) (PBD::EnumWriter::instance().read (typeid(e).name(), (str)))
97
98 #endif /*  __pbd_enumwriter_h__ */