Files
pilotclient/src/blackmisc/containerbase.h
2018-07-09 22:30:29 +02:00

222 lines
8.8 KiB
C++

/* Copyright (C) 2013
* swift project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKMISC_CONTAINERBASE_H
#define BLACKMISC_CONTAINERBASE_H
#include "range.h"
#include "predicates.h"
#include "json.h"
#include "variant.h"
#include "dbus.h"
#include <algorithm>
#include <QStringList>
namespace BlackMisc
{
//! Class providing static helper methods for different containers
class CContainerHelper
{
public:
//! Stringify value object
template <class U> static QString stringify(const U &obj, bool i18n) { return obj.toQString(i18n); }
//! Stringify int
static QString stringify(int n, bool i18n) { return i18n ? QLocale().toString(n) : QString::number(n); }
//! Stringify uint
static QString stringify(uint n, bool i18n) { return i18n ? QLocale().toString(n) : QString::number(n); }
//! Stringify qlonglong
static QString stringify(qlonglong n, bool i18n) { return i18n ? QLocale().toString(n) : QString::number(n); }
//! Stringify qulonglong
static QString stringify(qulonglong n, bool i18n) { return i18n ? QLocale().toString(n) : QString::number(n); }
//! Stringify double
static QString stringify(double n, bool i18n) { return i18n ? QLocale().toString(n) : QString::number(n); }
//! Stringify QString
static QString stringify(QString str, bool /*i18n*/) { return str; }
//! Stringify pair
template <class A, class B> static QString stringify(const std::pair<A, B> &pair, bool i18n) { return stringify(pair.first, i18n) + ":" + stringify(pair.second, i18n); }
};
/*!
* Base class for CCollection and CSequence adding mutating operations and CValueObject facility on top of CRangeBase.
*/
template <class Derived>
class CContainerBase :
public CRangeBase<Derived>,
public Mixin::MetaType<Derived>,
public Mixin::DBusOperators<Derived>,
public Mixin::JsonOperators<Derived>,
public Mixin::String<Derived>
{
public:
//! \copydoc BlackMisc::CValueObject::compare
friend int compare(const Derived &a, const Derived &b)
{
for (auto i = a.cbegin(), j = b.cbegin(); i != a.cend() && j != b.cend(); ++i, ++j)
{
if (*i < *j) { return -1; }
if (*j < *i) { return 1; }
}
if (a.size() < b.size()) { return -1; }
if (b.size() < a.size()) { return 1; }
return 0;
}
//! Return a new container of a different type, containing the same elements as this one.
//! \tparam Other the type of the new container.
//! @{
template <template <class> class Other>
auto to() const
{
return to(Other<typename Derived::value_type>());
}
//! \tparam T element type of the new container.
//! \param other an initial value for the new container; will be copied.
template <template <class> class Other, class T>
Other<T> to(Other<T> other) const
{
for (auto it = derived().cbegin(); it != derived().cend(); ++it) { other.push_back(*it); }
return other;
}
//! @}
//! Remove elements matching some particular key/value pair(s).
//! \param k0 A pointer to a member function of T.
//! \param v0 A value to compare against the value returned by k0.
//! \param keysValues Zero or more additional pairs of { pointer to member function of T, value to compare it against }.
//! \return The number of elements removed.
template <class K0, class V0, class... KeysValues>
int removeIf(K0 k0, V0 v0, KeysValues... keysValues)
{
return derived().removeIf(BlackMisc::Predicates::MemberEqual(k0, v0, keysValues...));
}
//! Simplifies composition, returns 0 for performance
friend uint qHash(const Derived &) { return 0; }
//! \copydoc BlackMisc::Mixin::JsonByMetaClass::toJson
QJsonObject toJson() const
{
QJsonArray array;
QJsonObject json;
for (auto it = derived().cbegin(); it != derived().cend(); ++it)
{
array << (*it);
}
json.insert("containerbase", array);
return json;
}
//! Convenience function JSON as string
QString toJsonString(QJsonDocument::JsonFormat format = QJsonDocument::Indented) const
{
QJsonDocument jsonDoc(toJson());
return jsonDoc.toJson(format);
}
//! \copydoc BlackMisc::Mixin::JsonByMetaClass::convertFromJson
void convertFromJson(const QJsonObject &json)
{
derived().clear();
QJsonValue value = json.value("containerbase");
if (value.isUndefined()) { throw CJsonException("Missing 'containerbase'"); }
QJsonArray array = value.toArray();
int index = 0;
for (auto i = array.begin(); i != array.end(); ++i)
{
CJsonScope scope("containerbase", index++);
Q_UNUSED(scope);
QJsonValueRef ref = (*i);
typename Derived::value_type val;
ref >> val;
derived().insert(std::move(val));
}
}
//! Assign from JSON object string
void convertFromJson(const QString &jsonString, bool acceptCacheFormat = false)
{
if (jsonString.isEmpty()) { return; }
const QJsonObject jsonObject = Json::jsonObjectFromString(jsonString, acceptCacheFormat);
this->convertFromJson(jsonObject);
}
//! Static version of convertFromJson
static Derived fromJson(const QJsonObject &json)
{
Derived derived;
derived.convertFromJson(json);
return derived;
}
//! Static version of convertFromJson
static Derived fromJson(const QString &jsonString, bool acceptCacheJson = false)
{
Derived obj;
if (jsonString.isEmpty()) { return obj; }
const QJsonObject jsonObj = acceptCacheJson ? Json::swiftDataObjectValue(jsonString) : Json::jsonObjectFromString(jsonString);
obj.convertFromJson(jsonObj);
return obj;
}
//! Call convertFromJson, catch any CJsonException that is thrown and return it as CStatusMessage.
CStatusMessage convertFromJsonNoThrow(const QJsonObject &json, const CLogCategoryList &categories, const QString &prefix); // implemented in statusmessage.h
//! Call convertFromJson, catch any CJsonException that is thrown and return it as CStatusMessage.
CStatusMessage convertFromJsonNoThrow(const QString &jsonString, const CLogCategoryList &categories, const QString &prefix); // implemented in statusmessage.h
//! \copydoc BlackMisc::Mixin::String::toQString
QString convertToQString(bool i18n = false) const
{
QString str;
for (const auto &value : derived()) { str += (str.isEmpty() ? "{" : ", ") + CContainerHelper::stringify(value, i18n); }
if (str.isEmpty()) { str = "{"; }
return str += "}";
}
//! To string list
QStringList toStringList(bool i18n = false) const
{
QStringList sl;
for (const auto &obj : this->derived()) { sl.append(obj.toQString(i18n)); }
return sl;
}
protected:
//! \copydoc BlackMisc::CValueObject::getMetaTypeId
int getMetaTypeId() const { return qMetaTypeId<Derived>(); }
public:
//! \copydoc BlackMisc::CValueObject::marshallToDbus
void marshallToDbus(QDBusArgument &argument) const
{
argument.beginArray(qMetaTypeId<typename Derived::value_type>());
std::for_each(derived().cbegin(), derived().cend(), [ & ](const auto & value) { argument << value; });
argument.endArray();
}
//! \copydoc BlackMisc::CValueObject::unmarshallFromDbus
void unmarshallFromDbus(const QDBusArgument &argument)
{
derived().clear();
argument.beginArray();
while (!argument.atEnd()) { typename Derived::value_type value; argument >> value; derived().insert(value); }
argument.endArray();
}
private:
Derived &derived() { return static_cast<Derived &>(*this); }
const Derived &derived() const { return static_cast<const Derived &>(*this); }
};
}
#endif // guard