Created
September 30, 2014 13:09
-
-
Save brcha/d392b2fe5f1e427cc8a6 to your computer and use it in GitHub Desktop.
Qt Yaml support using yaml-cpp library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ***** BEGIN LICENSE BLOCK ***** | |
* Version: MPL 2.0 | |
* | |
* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
* | |
* ***** END LICENSE BLOCK ***** */ | |
/* | |
* Copyright (c) 2014, Filip Brcic <[email protected]>. All rights reserved. | |
* | |
* This file is part of lusim | |
*/ | |
#ifndef QTYAML_H | |
#define QTYAML_H | |
#include <yaml-cpp/yaml.h> | |
#include <QtCore/QString> | |
#include <QtCore/QMap> | |
#include <QtCore/QVector> | |
#include <QtCore/QList> | |
#include <QtCore/QPair> | |
namespace YAML { | |
// QString | |
template<> | |
struct convert<QString> | |
{ | |
static Node encode(const QString& rhs) | |
{ | |
return Node(rhs.toStdString()); | |
} | |
static bool decode(const Node& node, QString& rhs) | |
{ | |
if (!node.IsScalar()) | |
return false; | |
rhs = QString::fromStdString(node.Scalar()); | |
return true; | |
} | |
}; | |
// QMap | |
template<typename Key, typename Value> | |
struct convert<QMap<Key, Value> > | |
{ | |
static Node encode(const QMap<Key,Value>& rhs) | |
{ | |
Node node(NodeType::Map); | |
auto it = rhs.constBegin(); | |
while (it != rhs.constEnd()) | |
{ | |
node.force_insert(it.key(), it.value()); | |
++it; | |
} | |
return node; | |
} | |
static bool decode(const Node& node, QMap<Key, Value>& rhs) | |
{ | |
if (!node.IsMap()) | |
return false; | |
rhs.clear(); | |
const_iterator it = node.begin(); | |
while (it != node.end()) | |
{ | |
rhs[it->first.as<Key>()] = it->second.as<Value>(); | |
++it; | |
} | |
return true; | |
} | |
}; | |
// QVector | |
template<typename T> | |
struct convert<QVector<T> > | |
{ | |
static Node encode(const QVector<T>& rhs) | |
{ | |
Node node(NodeType::Sequence); | |
foreach (T value, rhs) { | |
node.push_back(value); | |
} | |
return node; | |
} | |
static bool decode(const Node& node, QVector<T>& rhs) | |
{ | |
if (!node.IsSequence()) | |
return false; | |
rhs.clear(); | |
const_iterator it = node.begin(); | |
while (it != node.end()) | |
{ | |
rhs.push_back(it->as<T>()); | |
++it; | |
} | |
return true; | |
} | |
}; | |
// QList | |
template<typename T> | |
struct convert<QList<T> > | |
{ | |
static Node encode(const QList<T>& rhs) | |
{ | |
Node node(NodeType::Sequence); | |
foreach (T value, rhs) { | |
node.push_back(value); | |
} | |
return node; | |
} | |
static bool decode(const Node& node, QList<T>& rhs) | |
{ | |
if (!node.IsSequence()) | |
return false; | |
rhs.clear(); | |
const_iterator it = node.begin(); | |
while (it != node.end()) | |
{ | |
rhs.push_back(it->as<T>()); | |
++it; | |
} | |
return true; | |
} | |
}; | |
// QPair | |
template<typename T, typename U> | |
struct convert<QPair<T,U> > | |
{ | |
static Node encode(const QPair<T,U>& rhs) | |
{ | |
Node node(NodeType::Sequence); | |
node.push_back(rhs.first); | |
node.push_back(rhs.second); | |
return node; | |
} | |
static bool decode(const Node& node, QPair<T,U>& rhs) | |
{ | |
if (!node.IsSequence()) | |
return false; | |
if (node.size() != 2) | |
return false; | |
rhs.first = node[0].as<T>(); | |
rhs.second = node[1].as<U>(); | |
return true; | |
} | |
}; | |
// TODO: Add the rest of the container classes | |
// QLinkedList, QStack, QQueue, QSet, QMultiMap, QHash, QMultiHash, QStringList, ... | |
} // end namespace YAML | |
#endif // QTYAML_H |
i would like to add something kind of
inline QString toString(const Node& node, const QString &defaultValue = QString())
{
if(node.IsNull() || !node.IsScalar())
return defaultValue;
return QString::fromStdString(node.Scalar());
}
template<typename T>
inline QList<T> toList(const Node& node)
{
if(node.IsNull())
return QList<T>();
return QList<T>::fromStdList(node.as<std::list<T>>());
}
template<typename Key, typename Value>
inline QMap<Key, Value> toMap(const Node& node)
{
if(node.IsNull())
return QMap<Key, Value>();
return QMap<Key, Value>(node.as<std::map<Key, Value>>());
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add QStringList