Ardour  9.0-pre0-350-gf17a656217
memento_command.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006-2015 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2006 Hans Fugal <hans@fugal.net>
4  * Copyright (C) 2007-2009 David Robillard <d@drobilla.net>
5  * Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
6  * Copyright (C) 2016-2017 Tim Mayberry <mojofunk@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22 
23 #pragma once
24 
25 #include <iostream>
26 
27 #include "pbd/libpbd_visibility.h"
28 #include "pbd/command.h"
29 #include "pbd/xml++.h"
30 #include "pbd/demangle.h"
31 
32 #include <sigc++/slot.h>
33 #include <typeinfo>
34 
53 template <class obj_T>
55 {
56 public:
57  virtual void set_state (XMLNode const &, int version) const = 0;
58  virtual XMLNode& get_state () const = 0;
59 
61  virtual std::string type_name () const = 0;
62 
64  virtual void add_state (XMLNode *) = 0;
65 };
66 
68 template <class obj_T>
70 {
71 public:
73  : _object (o)
74  {
75  _object.Destroyed.connect_same_thread (_object_death_connection, std::bind (&SimpleMementoCommandBinder::object_died, this));
76  }
77 
78  void set_state (XMLNode const & node , int version) const { _object.set_state (node, version); }
79  XMLNode& get_state () const { return _object.get_state(); }
80  std::string type_name() const {
81  return PBD::demangled_name (_object);
82  }
83 
84  void add_state (XMLNode* node) {
85  node->set_property ("obj-id", _object.id().to_s());
86  }
87 
88  void object_died () {
89  /* The object we are binding died, so drop references to ourselves */
90  this->drop_references ();
91  }
92 
93 private:
94  obj_T& _object;
96 };
97 
102 template <class obj_T>
104 {
105 public:
106  MementoCommand (obj_T& a_object, XMLNode* a_before, XMLNode* a_after)
107  : _binder (new SimpleMementoCommandBinder<obj_T> (a_object)), before (a_before), after (a_after)
108  {
109  /* The binder's object died, so we must die */
110  _binder->DropReferences.connect_same_thread (_binder_death_connection, std::bind (&MementoCommand::binder_dying, this));
111  }
112 
114  : _binder (b), before (a_before), after (a_after)
115  {
116  /* The binder's object died, so we must die */
117  _binder->DropReferences.connect_same_thread (_binder_death_connection, std::bind (&MementoCommand::binder_dying, this));
118  }
119 
121  delete before;
122  delete after;
123  delete _binder;
124  }
125 
126  void binder_dying () {
127  /* delegate to UndoTransaction::command_death */
128  drop_references ();
129  }
130 
131  void operator() () {
132  if (after) {
133  _binder->set_state(*after, Stateful::current_state_version);
134  }
135  }
136 
137  void undo() {
138  if (before) {
139  _binder->set_state(*before, Stateful::current_state_version);
140  }
141  }
142 
143  virtual XMLNode &get_state() const {
144  std::string name;
145  if (before && after) {
146  name = "MementoCommand";
147  } else if (before) {
148  name = "MementoUndoCommand";
149  } else {
150  name = "MementoRedoCommand";
151  }
152 
153  XMLNode* node = new XMLNode(name);
154  _binder->add_state (node);
155 
156  node->set_property ("type-name", _binder->type_name ());
157 
158  if (before) {
159  node->add_child_copy(*before);
160  }
161 
162  if (after) {
163  node->add_child_copy(*after);
164  }
165 
166  return *node;
167  }
168 
169 protected:
174 };
175 
virtual void add_state(XMLNode *)=0
virtual void set_state(XMLNode const &, int version) const =0
virtual std::string type_name() const =0
virtual XMLNode & get_state() const =0
MementoCommand(MementoCommandBinder< obj_T > *b, XMLNode *a_before, XMLNode *a_after)
virtual XMLNode & get_state() const
PBD::ScopedConnection _binder_death_connection
MementoCommandBinder< obj_T > * _binder
MementoCommand(obj_T &a_object, XMLNode *a_before, XMLNode *a_after)
virtual void drop_references()
Definition: destructible.h:33
std::string type_name() const
void add_state(XMLNode *node)
void set_state(XMLNode const &node, int version) const
XMLNode & get_state() const
PBD::ScopedConnection _object_death_connection
Definition: xml++.h:114
bool set_property(const char *name, const std::string &value)
XMLNode * add_child_copy(const XMLNode &)
GtkImageIconNameData name
Definition: gtkimage.h:6
#define LIBPBD_TEMPLATE_API
std::string demangled_name(T const &obj)
Definition: demangle.h:45