summaryrefslogtreecommitdiff
path: root/gtk2_ardour/gui_object.cc
blob: fa708b25ad4ffb4319e81b44713450eb1f327de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
    Copyright (C) 2011 Paul Davis

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include <iostream>
#include <iomanip>
#include <sstream>

#include <boost/variant/static_visitor.hpp>

#include "gui_object.h"
#include "i18n.h"

using std::string;

const string GUIObjectState::xml_node_name (X_("GUIObjectState"));

GUIObjectState::~GUIObjectState ()
{
	clear_maps ();
}

void
GUIObjectState::clear_maps ()
{
	_property_maps.clear ();
}

class gos_string_vistor : public boost::static_visitor<> {
  public:
    gos_string_vistor (std::ostream& o) 
	    : stream (o) {}
	    
    void operator() (const int64_t& i) {
	    stream << i;
    }

    void operator() (const std::string& s) {
	    stream << s;
    }

  private:
    std::ostream& stream;
};

std::string 
GUIObjectState::get_string (const std::string& id, const std::string& prop_name, bool* empty)
{
	StringPropertyMap::iterator i = _property_maps.find (id);
	
	if (i == _property_maps.end()) {
		if (empty) {
			*empty = true;
		}
		return string();
	}
	
	const PropertyMap& pmap (i->second);
	PropertyMap::const_iterator p = pmap.find (prop_name);
	
	if (p == pmap.end()) {
		if (empty) {
			*empty = true;
		}
		return string();
	}
	
	std::stringstream ss;
	gos_string_vistor gsv (ss);

	boost::apply_visitor (gsv, p->second);

	if (empty) {
		*empty = false;
	}
	
	return ss.str ();
}

XMLNode&
GUIObjectState::get_state () const
{
	XMLNode* root = new XMLNode (xml_node_name);
	
	for (StringPropertyMap::const_iterator i = _property_maps.begin(); i != _property_maps.end(); ++i) {

		const PropertyMap& pmap (i->second);
		XMLNode* id_node = new XMLNode (X_("Object"));
		
		id_node->add_property ("id", i->first);
		
		for (PropertyMap::const_iterator p = pmap.begin(); p != pmap.end(); ++p) {
			std::stringstream ss;
			gos_string_vistor gsv (ss);
			boost::apply_visitor (gsv, p->second);
			id_node->add_property (p->first.c_str(), ss.str());
		}
		
		root->add_child_nocopy (*id_node);
	}


	return *root;
}

int
GUIObjectState::set_state (const XMLNode& node)
{
	if (node.name() != xml_node_name) {
		return -1;
	}
	
	clear_maps ();
	
	for (XMLNodeList::const_iterator i = node.children().begin(); i != node.children().end(); ++i) {
		if ((*i)->name() == X_("Object")) {

			XMLNode* child = (*i);
			const XMLProperty* idp = child->property (X_("id"));

			if (!idp) {
				continue;
			}

			string id (idp->value());
			
			for (XMLPropertyList::const_iterator p = child->properties().begin(); p != child->properties().end(); ++p) {
				/* note that this always sets the property with
				   a string value, and so is not equivalent to
				   a call made by the program that passed a
				   scalar.
				*/
				if ((*p)->name() != X_("id")) {
					set (id, (*p)->name(), (*p)->value());
				}
			}
		}
	}

	return 0;
}


void
GUIObjectState::load (const XMLNode& node)
{
	(void) set_state (node);
}

GUIObjectState&
GUIObjectState::operator= (const GUIObjectState& other)
{
	_property_maps = other._property_maps;

	return *this;
}

/** @return begin iterator into our StringPropertyMap */
GUIObjectState::StringPropertyMap::const_iterator
GUIObjectState::begin () const
{
	return _property_maps.begin ();
}

/** @return end iterator into our StringPropertyMap */
GUIObjectState::StringPropertyMap::const_iterator
GUIObjectState::end () const
{
	return _property_maps.end ();
}