ba6b32282b9d74e3999d5df06be4528203d35f3a
[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         , _touching (false)
40 {
41         if (registry_lock == 0) {
42                 registry_lock = new Glib::Mutex;
43         }
44
45         add ();
46 }
47
48 void
49 Controllable::add ()
50 {
51         Glib::Mutex::Lock lm (*registry_lock);
52         registry.insert (this);
53         this->GoingAway.connect (mem_fun (this, &Controllable::remove));
54 }
55
56 void
57 Controllable::remove ()
58 {
59         Glib::Mutex::Lock lm (*registry_lock);
60         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
61                 if ((*i) == this) {
62                         registry.erase (i);
63                         break;
64                 }
65         }
66 }
67
68 Controllable*
69 Controllable::by_id (const ID& id)
70 {
71         Glib::Mutex::Lock lm (*registry_lock);
72
73         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
74                 if ((*i)->id() == id) {
75                         return (*i);
76                 }
77         }
78         return 0;
79 }
80
81
82 Controllable*
83 Controllable::by_name (const std::string& str)
84 {
85         Glib::Mutex::Lock lm (*registry_lock);
86
87         for (Controllables::iterator i = registry.begin(); i != registry.end(); ++i) {
88                 if ((*i)->_name == str) {
89                         return (*i);
90                 }
91         }
92         return 0;
93 }
94
95 XMLNode&
96 Controllable::get_state ()
97 {
98         XMLNode* node = new XMLNode (X_("Controllable"));
99         char buf[64];
100
101         node->add_property (X_("name"), _name); // not reloaded from XML state, just there to look at
102         _id.print (buf, sizeof (buf));
103         node->add_property (X_("id"), buf);
104         return *node;
105 }
106
107 int
108 Controllable::set_state (const XMLNode& node)
109 {
110         const XMLProperty* prop = node.property (X_("id"));
111
112         if (prop) {
113                 _id = prop->value();
114                 return 0;
115         } else {
116                 error << _("Controllable state node has no ID property") << endmsg;
117                 return -1;
118         }
119 }