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 $
23 #include <pbd/stateful.h>
24 #include <pbd/xml++.h>
25 #include <pbd/error.h>
37 Stateful::~Stateful ()
39 // Do not delete _extra_xml. The use of add_child_nocopy()
40 // means it needs to live on indefinately.
48 Stateful::add_extra_xml (XMLNode
& node
)
50 if (_extra_xml
== 0) {
51 _extra_xml
= new XMLNode ("extra");
54 _extra_xml
->remove_nodes (node
.name());
55 _extra_xml
->add_child_nocopy (node
);
59 Stateful::extra_xml (const string
& str
)
61 if (_extra_xml
== 0) {
65 const XMLNodeList
& nlist
= _extra_xml
->children();
66 XMLNodeConstIterator i
;
68 for (i
= nlist
.begin(); i
!= nlist
.end(); ++i
) {
69 if ((*i
)->name() == str
) {
78 Stateful::add_instant_xml (XMLNode
& node
, const string
& dir
)
80 if (_instant_xml
== 0) {
81 _instant_xml
= new XMLNode ("instant");
84 _instant_xml
->remove_nodes_and_delete (node
.name());
85 _instant_xml
->add_child_copy (node
);
88 tree
.set_filename(dir
+"/instant.xml");
90 /* Important: the destructor for an XMLTree deletes
91 all of its nodes, starting at _root. We therefore
92 cannot simply hand it our persistent _instant_xml
93 node as its _root, because we will lose it whenever
94 the Tree goes out of scope.
96 So instead, copy the _instant_xml node (which does
97 a deep copy), and hand that to the tree.
100 XMLNode
* copy
= new XMLNode (*_instant_xml
);
101 tree
.set_root (copy
);
104 error
<< string_compose(_("Error: could not write %1"), dir
+"/instant.xml") << endmsg
;
109 Stateful::instant_xml (const string
& str
, const string
& dir
)
111 if (_instant_xml
== 0) {
112 string instant_file
= dir
+ "/instant.xml";
113 if (access(instant_file
.c_str(), F_OK
) == 0) {
115 if (tree
.read(dir
+"/instant.xml")) {
116 _instant_xml
= new XMLNode(*(tree
.root()));
118 warning
<< string_compose(_("Could not understand XML file %1"), instant_file
) << endmsg
;
126 const XMLNodeList
& nlist
= _instant_xml
->children();
127 XMLNodeConstIterator i
;
129 for (i
= nlist
.begin(); i
!= nlist
.end(); ++i
) {
130 if ((*i
)->name() == str
) {