newly created files for use in recording appear in a .stubs folder, and are moved...
[ardour2.git] / libs / pbd / stateful.cc
blob1c3d08b3a9c348fdf77df1a9baa090288dbc114b
1 /*
2 Copyright (C) 2000-2001 Paul Davis
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.
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.
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.
18 $Id: stateful.cc 629 2006-06-21 23:01:03Z paul $
21 #include <unistd.h>
23 #include "pbd/debug.h"
24 #include "pbd/stateful.h"
25 #include "pbd/property_list.h"
26 #include "pbd/properties.h"
27 #include "pbd/destructible.h"
28 #include "pbd/filesystem.h"
29 #include "pbd/xml++.h"
30 #include "pbd/error.h"
32 #include "i18n.h"
34 using namespace std;
36 namespace PBD {
38 int Stateful::current_state_version = 0;
39 int Stateful::loading_state_version = 0;
41 Stateful::Stateful ()
42 : _frozen (0)
43 , _no_property_changes (false)
44 , _properties (new OwnedPropertyList)
46 _extra_xml = 0;
47 _instant_xml = 0;
50 Stateful::~Stateful ()
52 delete _properties;
54 // Do not delete _extra_xml. The use of add_child_nocopy()
55 // means it needs to live on indefinately.
57 delete _instant_xml;
60 void
61 Stateful::add_extra_xml (XMLNode& node)
63 if (_extra_xml == 0) {
64 _extra_xml = new XMLNode ("Extra");
67 _extra_xml->remove_nodes (node.name());
68 _extra_xml->add_child_nocopy (node);
71 XMLNode *
72 Stateful::extra_xml (const string& str)
74 if (_extra_xml == 0) {
75 return 0;
78 const XMLNodeList& nlist = _extra_xml->children();
79 XMLNodeConstIterator i;
81 for (i = nlist.begin(); i != nlist.end(); ++i) {
82 if ((*i)->name() == str) {
83 return (*i);
87 return 0;
90 void
91 Stateful::add_instant_xml (XMLNode& node, const sys::path& directory_path)
93 sys::create_directories (directory_path); // may throw
95 if (_instant_xml == 0) {
96 _instant_xml = new XMLNode ("instant");
99 _instant_xml->remove_nodes_and_delete (node.name());
100 _instant_xml->add_child_copy (node);
102 sys::path instant_xml_path(directory_path);
104 instant_xml_path /= "instant.xml";
106 XMLTree tree;
107 tree.set_filename(instant_xml_path.to_string());
109 /* Important: the destructor for an XMLTree deletes
110 all of its nodes, starting at _root. We therefore
111 cannot simply hand it our persistent _instant_xml
112 node as its _root, because we will lose it whenever
113 the Tree goes out of scope.
115 So instead, copy the _instant_xml node (which does
116 a deep copy), and hand that to the tree.
119 XMLNode* copy = new XMLNode (*_instant_xml);
120 tree.set_root (copy);
122 if (!tree.write()) {
123 error << string_compose(_("Error: could not write %1"), instant_xml_path.to_string()) << endmsg;
127 XMLNode *
128 Stateful::instant_xml (const string& str, const sys::path& directory_path)
130 if (_instant_xml == 0) {
132 sys::path instant_xml_path(directory_path);
133 instant_xml_path /= "instant.xml";
135 if (exists(instant_xml_path)) {
136 XMLTree tree;
137 if (tree.read(instant_xml_path.to_string())) {
138 _instant_xml = new XMLNode(*(tree.root()));
139 } else {
140 warning << string_compose(_("Could not understand XML file %1"), instant_xml_path.to_string()) << endmsg;
141 return 0;
143 } else {
144 return 0;
148 const XMLNodeList& nlist = _instant_xml->children();
149 XMLNodeConstIterator i;
151 for (i = nlist.begin(); i != nlist.end(); ++i) {
152 if ((*i)->name() == str) {
153 return (*i);
157 return 0;
160 /** Forget about any old state for this object */
161 void
162 Stateful::clear_history ()
164 for (OwnedPropertyList::iterator i = _properties->begin(); i != _properties->end(); ++i) {
165 i->second->clear_history ();
169 void
170 Stateful::diff (PropertyList& before, PropertyList& after, Command* cmd) const
172 for (OwnedPropertyList::const_iterator i = _properties->begin(); i != _properties->end(); ++i) {
173 i->second->diff (before, after, cmd);
177 /** Set state of some/all _properties from an XML node.
178 * @param owner_state Node.
179 * @return PropertyChanges made.
181 PropertyChange
182 Stateful::set_properties (XMLNode const & owner_state)
184 PropertyChange c;
186 for (OwnedPropertyList::iterator i = _properties->begin(); i != _properties->end(); ++i) {
187 if (i->second->set_state_from_owner_state (owner_state)) {
188 c.add (i->first);
192 post_set ();
194 return c;
197 PropertyChange
198 Stateful::set_properties (const PropertyList& property_list)
200 PropertyChange c;
201 PropertyList::const_iterator p;
203 DEBUG_TRACE (DEBUG::Stateful, string_compose ("Stateful %1 setting properties from list of %2\n", this, property_list.size()));
205 for (PropertyList::const_iterator pp = property_list.begin(); pp != property_list.end(); ++pp) {
206 DEBUG_TRACE (DEBUG::Stateful, string_compose ("in plist: %1\n", pp->second->property_name()));
209 for (PropertyList::const_iterator i = property_list.begin(); i != property_list.end(); ++i) {
210 if ((p = _properties->find (i->first)) != _properties->end()) {
211 DEBUG_TRACE (DEBUG::Stateful, string_compose ("actually setting property %1\n", p->second->property_name()));
212 if (set_property (*i->second)) {
213 c.add (i->first);
215 } else {
216 DEBUG_TRACE (DEBUG::Stateful, string_compose ("passed in property %1 not found in own property list\n",
217 i->second->property_name()));
221 post_set ();
223 send_change (c);
225 return c;
228 /** Add property states to an XML node.
229 * @param owner_state Node.
231 void
232 Stateful::add_properties (XMLNode& owner_state)
234 for (OwnedPropertyList::iterator i = _properties->begin(); i != _properties->end(); ++i) {
235 i->second->add_state_to_owner_state (owner_state);
239 void
240 Stateful::add_property (PropertyBase& s)
242 _properties->add (s);
245 void
246 Stateful::send_change (const PropertyChange& what_changed)
248 if (what_changed.empty()) {
249 return;
253 Glib::Mutex::Lock lm (_lock);
254 if (_frozen) {
255 _pending_changed.add (what_changed);
256 return;
260 PropertyChanged (what_changed);
263 void
264 Stateful::suspend_property_changes ()
266 _frozen++;
269 void
270 Stateful::resume_property_changes ()
272 PropertyChange what_changed;
275 Glib::Mutex::Lock lm (_lock);
277 if (_frozen && --_frozen > 0) {
278 return;
281 if (!_pending_changed.empty()) {
282 what_changed = _pending_changed;
283 _pending_changed.clear ();
287 mid_thaw (what_changed);
289 send_change (what_changed);
292 bool
293 Stateful::changed() const
295 for (OwnedPropertyList::const_iterator i = _properties->begin(); i != _properties->end(); ++i) {
296 if (i->second->changed()) {
297 return true;
301 return false;
304 bool
305 Stateful::set_property (const PropertyBase& prop)
307 OwnedPropertyList::iterator i = _properties->find (prop.property_id());
308 if (i == _properties->end()) {
309 return false;
312 i->second->set_state_from_property (&prop);
313 return true;
316 } // namespace PBD