Oops. Fix XML stuff in GUI as well.
[ardour.git] / libs / pbd / controllable.cc
1 /*
2     Copyright (C) 2000-2007 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 */
19
20 #include <pbd/controllable.h>
21 #include <pbd/xml++.h>
22 #include <pbd/error.h>
23
24 #include "i18n.h"
25
26 using namespace PBD;
27
28 sigc::signal<void,Controllable*> Controllable::Destroyed;
29 sigc::signal<bool,Controllable*> Controllable::StartLearning;
30 sigc::signal<void,Controllable*> Controllable::StopLearning;
31 sigc::signal<void,Controllable*,int,int> Controllable::CreateBinding;
32 sigc::signal<void,Controllable*> Controllable::DeleteBinding;
33
34 Glib::Mutex* Controllable::registry_lock = 0;
35 Controllable::Controllables Controllable::registry;
36
37 Controllable::Controllable (std::string name)
38         : _name (name)
39 {
40         if (registry_lock == 0) {
41                 registry_lock = new Glib::Mutex;
42         }
43
44         add ();
45 }
46
47 void
48 Controllable::add ()
49 {
50         Glib::Mutex::Lock lm (*registry_lock);
51         registry.insert (this);
52         this->GoingAway.connect (mem_fun (this, &Controllable::remove));
53 }
54
55 void
56 Controllable::remove ()
57 {
58         Glib::Mutex::Lock lm (*registry_lock);
59         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
60                 if ((*i) == this) {
61                         registry.erase (i);
62                         break;
63                 }
64         }
65 }
66
67 Controllable*
68 Controllable::by_id (const ID& id)
69 {
70         Glib::Mutex::Lock lm (*registry_lock);
71
72         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
73                 if ((*i)->id() == id) {
74                         return (*i);
75                 }
76         }
77         return 0;
78 }
79
80
81 Controllable*
82 Controllable::by_name (const std::string& str)
83 {
84         Glib::Mutex::Lock lm (*registry_lock);
85
86         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
87                 if ((*i)->_name == str) {
88                         return (*i);
89                 }
90         }
91         return 0;
92 }
93
94 XMLNode&
95 Controllable::get_state ()
96 {
97         XMLNode* node = new XMLNode (X_("Controllable"));
98         char buf[64];
99
100         node->add_property (X_("name"), _name); // not reloaded from XML state, just there to look at
101         _id.print (buf, sizeof (buf));
102         node->add_property (X_("id"), buf);
103         return *node;
104 }
105
106 int
107 Controllable::set_state (const XMLNode& node)
108 {
109         const XMLProperty* prop = node.property (X_("id"));
110
111         if (prop) {
112                 _id = prop->value();
113                 return 0;
114         } else {
115                 error << _("Controllable state node has no ID property") << endmsg;
116                 return -1;
117         }
118 }