Save and not-yet-working restore of StatefulDiffCommands.
[ardour.git] / libs / pbd / stateful_diff_command.cc
1 /*
2     Copyright (C) 2010 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/stateful_diff_command.h"
21 #include "i18n.h"
22
23 using namespace std;
24 using namespace PBD;
25
26 /** Create a new StatefulDiffCommand by examining the changes made to a Stateful
27  *  since the last time that clear_history was called on it.
28  *  @param s Stateful object.
29  */
30
31 StatefulDiffCommand::StatefulDiffCommand (Stateful* s)
32         : _object (s)
33 {
34         pair<XMLNode *, XMLNode*> const p = s->diff ();
35         _before = p.first;
36         _after = p.second;
37 }
38
39 StatefulDiffCommand::StatefulDiffCommand (Stateful* s, XMLNode const & n)
40         : _object (s)
41 {
42         _before = new XMLNode (*n.children().front());
43         _after = new XMLNode (*n.children().back());
44 }
45
46
47 StatefulDiffCommand::~StatefulDiffCommand ()
48 {
49         delete _before;
50         delete _after;
51 }
52
53 void
54 StatefulDiffCommand::operator() ()
55 {
56         _object->set_state (*_after, Stateful::current_state_version);
57 }
58
59 void
60 StatefulDiffCommand::undo ()
61 {
62         _object->set_state (*_before, Stateful::current_state_version);
63 }
64
65 XMLNode&
66 StatefulDiffCommand::get_state ()
67 {
68         XMLNode* node = new XMLNode (X_("StatefulDiffCommand"));
69
70         node->add_property ("obj-id", _object->id().to_s());
71         node->add_property ("type-name", typeid(*_object).name());
72         node->add_child_copy (*_before);
73         node->add_child_copy (*_after);
74
75         return *node;
76 }