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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
/* Gobby - GTK-based collaborative text editor
* Copyright (C) 2008-2014 Armin Burgmeier <armin@arbur.net>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _GOBBY_CONFIG_HPP_
#define _GOBBY_CONFIG_HPP_
#include "serialize.hpp"
#include <map>
#include <memory>
#include <glibmm/error.h>
#include <glibmm/ustring.h>
#include <gdkmm/color.h>
// TODO: Use registry on windows, gconf with gnome
#include <libxml++/nodes/element.h>
#include <libxml++/nodes/textnode.h>
namespace Gobby
{
namespace serialize
{
template<>
class default_context_to<Glib::ustring>: public context_base_to<Glib::ustring>
{
public:
typedef Glib::ustring data_type;
virtual std::string to_string(const data_type& from) const;
};
template<>
class default_context_from<Glib::ustring>:
public context_base_from<Glib::ustring>
{
public:
typedef Glib::ustring data_type;
virtual data_type from_string(const std::string& from) const;
};
} // namespace serialize
class Config
{
public:
/** @brief Abstract base class for configuration file entries.
*/
class Entry
{
public:
Entry(const Glib::ustring& name);
virtual ~Entry() {}
/** @brief Saves this entry into the given element.
*/
virtual void save(xmlpp::Element& elem) const = 0;
/** @brief Returns the name of this entry.
*/
const Glib::ustring& get_name() const;
protected:
Glib::ustring m_name;
};
/** @brief Entry that contains a value.
*/
class ValueEntry: public Entry
{
public:
/** @brief Stores an object of the given type into this
* entry.
*/
template<typename DataType>
ValueEntry(
const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx =
serialize::default_context_to<DataType>()
);
/** @brief Returns the value of this entry and tries to
* convert it to the requested type.
*/
template<typename DataType>
DataType get(
const serialize::context_base_from<DataType>& ctx =
serialize::default_context_from<DataType>()
) const;
protected:
serialize::data m_data;
};
/** Value entry with type information. Useful for future storage
* backends like gconf or windows registry.
*/
template<typename DataType>
class TypedValueEntry: public ValueEntry
{
public:
/** @brief Creates a new typed value entry that is converted
* to a string using the given context.
*/
TypedValueEntry(
const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx =
serialize::default_context_to<DataType>()
);
/** @brief Reads a value entry from a xml element.
*/
TypedValueEntry(const xmlpp::Element& elem);
/** @brief Stores this entry into the given element.
*/
virtual void save(xmlpp::Element& elem) const;
};
/** @brief Entry containing child entries.
*/
class ParentEntry: public Entry
{
protected:
typedef std::map<Glib::ustring, Entry*> map_type;
public:
template<typename BaseIterator, typename Entry>
class iterator_base
{
public:
typedef BaseIterator base_iterator;
iterator_base(const base_iterator& iter);
iterator_base& operator++();
iterator_base operator++(int);
bool operator==(const iterator_base& other) const;
bool operator!=(const iterator_base& other) const;
Entry& operator*() const;
Entry* operator->() const;
protected:
base_iterator m_iter;
};
typedef iterator_base<map_type::iterator, Entry>
iterator;
typedef iterator_base<map_type::const_iterator, const Entry>
const_iterator;
/** @brief Creates a new ParentEntry of the given name with
* no children.
*/
ParentEntry(const Glib::ustring& name);
/** @brief a new ParentEntry from the given xml element.
*/
ParentEntry(const xmlpp::Element& elem);
virtual ~ParentEntry();
/** @brief Stores this ParentEntry into the given xml element.
*/
virtual void save(xmlpp::Element& elem) const;
/** @brief Returns a child entry with the given name.
*
* Returns NULL if there is no such child.
*/
Entry* get_child(const Glib::ustring& name);
/** @brief Returns a child entry with the given name.
*
* Returns NULL if there is no such child.
*/
const Entry* get_child(const Glib::ustring& name) const;
/** @brief Returns a child that is another parent entry
* and has the given name.
*
* Returns NULL if there is no such child.
*/
ParentEntry* get_parent_child(const Glib::ustring& name);
/** @brief Returns a child that is another parent entry
* and has the given name.
*
* Returns NULL if there is no such child.
*/
const ParentEntry*
get_parent_child(const Glib::ustring& name) const;
/** @brief Returns a child that is a value entry and has
* the given name.
*
* Returns NULL if there is no such child.
*/
ValueEntry* get_value_child(const Glib::ustring& name);
/** @brief Returns a child that is a value entry and has
* the given name.
*
* Returns NULL if there is no such child.
*/
const ValueEntry*
get_value_child(const Glib::ustring& name) const;
/** @brief: Returns whether there is a child ValueEntry with
* the given name.
*/
bool has_value(const Glib::ustring& name) const;
/** @brief Returns the value from the child with the given
* name.
*
* If there is no such child (or it is not a ValueEntry), the
* given default value is returned.
*/
template<typename DataType>
DataType get_value(
const Glib::ustring& name,
const DataType& default_value = DataType(),
const serialize::context_base_from<DataType>& ctx =
serialize::default_context_from<DataType>()
) const;
/** @brief Returns the value from the child with the given
* name.
*
* If there is no such child (or it is not a ValueEntry), a
* new child will be created (replacing a potential old one)
* and assigned the given default value.
*/
template<typename DataType>
DataType supply_value(
const Glib::ustring& name,
const DataType& default_value = DataType(),
const serialize::context_base_from<DataType>& ctx_from =
serialize::default_context_from<DataType>(),
const serialize::context_base_to<DataType>& ctx_to =
serialize::default_context_to<DataType>()
);
/** @brief Creates a new child ValueEntry with the given name
* and value.
*
* If there is already a child with this name, it will be
* removed.
*/
template<typename DataType>
void set_value(
const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx =
serialize::default_context_to<DataType>()
);
/** @brief Returns the parent entry at name.
*
* If there is no parent node, a new one will be created
* that overwrites the current entry (if any).
*/
ParentEntry& operator[](const Glib::ustring& name);
/** @brief Creates a new ParentEntry with the given name.
*
* If there is already a child with this name, it will be
* removed.
*/
ParentEntry& set_parent(const Glib::ustring& name);
/** @brief Returns an iterator to the beginning of the
* child entry sequence.
*/
iterator begin();
/** @brief Returns an iterator to the beginning of the
* child entry sequence.
*/
const_iterator begin() const;
/** @brief Returns an iterator to the end of the child
* entry sequence.
*/
iterator end();
/** @brief Returns an iterator to the end of the child
* entry sequence.
*/
const_iterator end() const;
protected:
map_type m_map;
};
Config(const Glib::ustring& file);
~Config();
ParentEntry& get_root();
const ParentEntry& get_root() const;
protected:
Glib::ustring m_filename;
std::unique_ptr<ParentEntry> m_root;
};
template<typename DataType>
Config::ValueEntry::
ValueEntry(const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx):
Entry(name), m_data(value, ctx)
{
}
template<typename DataType>
DataType Config::ValueEntry::
get(const serialize::context_base_from<DataType>& from) const
{
return m_data.Gobby::serialize::data::as<DataType>(from);
}
template<typename DataType>
Config::TypedValueEntry<DataType>::
TypedValueEntry(const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx):
ValueEntry(name, value, ctx)
{
}
template<typename DataType>
Config::TypedValueEntry<DataType>::TypedValueEntry(const xmlpp::Element& elem):
ValueEntry(elem.get_name(), elem.get_child_text()->get_content() )
{
}
template<typename DataType>
void Config::TypedValueEntry<DataType>::save(xmlpp::Element& elem) const
{
elem.set_child_text(m_data.serialized() );
}
template<typename BaseIterator, typename Entry>
Config::ParentEntry::iterator_base<BaseIterator, Entry>::
iterator_base(const base_iterator& iter):
m_iter(iter)
{
}
template<typename BaseIterator, typename Entry>
Config::ParentEntry::iterator_base<BaseIterator, Entry>&
Config::ParentEntry::iterator_base<BaseIterator, Entry>::operator++()
{
++ m_iter;
return *this;
}
template<typename BaseIterator, typename Entry>
Config::ParentEntry::iterator_base<BaseIterator, Entry>
Config::ParentEntry::iterator_base<BaseIterator, Entry>::operator++(int)
{
iterator_base<BaseIterator, Entry> temp(*this);
++ m_iter;
return temp;
}
template<typename BaseIterator, typename Entry>
bool Config::ParentEntry::iterator_base<BaseIterator, Entry>::
operator==(const iterator_base& other) const
{
return m_iter == other.m_iter;
}
template<typename BaseIterator, typename Entry>
bool Config::ParentEntry::iterator_base<BaseIterator, Entry>::
operator!=(const iterator_base& other) const
{
return m_iter != other.m_iter;
}
template<typename BaseIterator, typename Entry>
Entry& Config::ParentEntry::iterator_base<BaseIterator, Entry>::
operator*() const
{
return *m_iter->second;
}
template<typename BaseIterator, typename Entry>
Entry* Config::ParentEntry::iterator_base<BaseIterator, Entry>::
operator->() const
{
return m_iter->second;
}
template<typename DataType>
DataType Config::ParentEntry::
get_value(const Glib::ustring& name,
const DataType& default_value,
const serialize::context_base_from<DataType>& ctx) const
{
const ValueEntry* entry = get_value_child(name);
if(entry == NULL) return default_value;
return entry->ValueEntry::get<DataType>(ctx);
}
template<typename DataType>
DataType Config::ParentEntry::
supply_value(const Glib::ustring& name,
const DataType& default_value,
const serialize::context_base_from<DataType>& ctx_from,
const serialize::context_base_to<DataType>& ctx_to)
{
ValueEntry* entry = get_value_child(name);
if(entry != NULL) return entry->get(ctx_from);
set_value(name, default_value, ctx_to);
return default_value;
}
template<typename DataType>
void Config::ParentEntry::
set_value(const Glib::ustring& name,
const DataType& value,
const serialize::context_base_to<DataType>& ctx)
{
Entry* entry = get_child(name);
if(entry != NULL) delete entry;
m_map[name] = new TypedValueEntry<DataType>(name, value, ctx);
}
} // namespace Gobby
#endif // _GOBBY_CONFIG_HPP_
|