midway snapshot of work done on managing Region & Source lifetimes correctly. may...
[ardour.git] / libs / pbd / pbd / stateful.h
1 /*
2     Copyright (C) 2000-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 #ifndef __pbd_stateful_h__
21 #define __pbd_stateful_h__
22
23 #include <string>
24 #include <list>
25 #include <cassert>
26
27 #include "pbd/id.h"
28 #include "pbd/xml++.h"
29 #include "pbd/property_basics.h"
30 #include "pbd/signals.h"
31
32 class XMLNode;
33
34 namespace PBD {
35
36 namespace sys {
37         class path;
38 }
39
40 class PropertyList;
41 class OwnedPropertyList;
42
43 /** Base class for objects with saveable and undoable state */
44 class Stateful {
45   public:
46         Stateful ();
47         virtual ~Stateful();
48
49         virtual XMLNode& get_state (void) = 0;
50         virtual int set_state (const XMLNode&, int version) = 0;
51         virtual bool set_property (const PropertyBase&);
52
53         PropertyChange set_properties (const PropertyList&);
54         const OwnedPropertyList& properties() const { return *_properties; }
55
56         void add_property (PropertyBase& s);
57
58         /* Extra XML node: so that 3rd parties can attach state to the XMLNode
59            representing the state of this object.
60          */
61
62         void add_extra_xml (XMLNode&);
63         XMLNode *extra_xml (const std::string& str);
64
65         const PBD::ID& id() const { return _id; }
66
67         /* history management */
68
69         void clear_history ();
70         void diff (PropertyList&, PropertyList&, Command*) const;
71         bool changed() const;
72
73         /* create a property list from an XMLNode
74          */
75         virtual PropertyList* property_factory(const XMLNode&) const { return 0; }
76
77         /* How stateful's notify of changes to their properties
78          */
79         PBD::Signal1<void,const PropertyChange&> PropertyChanged;
80
81         static int current_state_version;
82         static int loading_state_version;
83
84         virtual void suspend_property_changes ();
85         virtual void resume_property_changes ();
86
87         void unlock_property_changes () { _no_property_changes = false; }
88         void block_property_changes () { _no_property_changes = true; }
89         
90   protected:
91
92         void add_instant_xml (XMLNode&, const sys::path& directory_path);
93         XMLNode *instant_xml (const std::string& str, const sys::path& directory_path);
94         void add_properties (XMLNode &);
95         /* derived types can call this from ::set_state() (or elsewhere)
96            to get basic property setting done.
97         */
98         PropertyChange set_properties (XMLNode const &);
99         
100         /* derived classes can implement this to do cross-checking
101            of property values after either a PropertyList or XML 
102            driven property change.
103         */
104         virtual void post_set () { };
105
106         XMLNode *_extra_xml;
107         XMLNode *_instant_xml;
108         PBD::ID  _id;
109         int32_t  _frozen;
110         bool     _no_property_changes;
111         PBD::PropertyChange     _pending_changed;
112         Glib::Mutex _lock;
113
114         std::string _xml_node_name; ///< name of node to use for this object in XML
115         OwnedPropertyList* _properties;
116
117         virtual void send_change (const PropertyChange&);
118         /** derived classes can implement this in order to process a property change
119             within thaw() just before send_change() is called.
120         */
121         virtual void mid_thaw (const PropertyChange&) { }
122         bool property_changes_suspended() const { return g_atomic_int_get (&_frozen) > 0; }
123 };
124
125 } // namespace PBD
126
127 #endif /* __pbd_stateful_h__ */
128