mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
151 lines
5.5 KiB
C++
151 lines
5.5 KiB
C++
/* Copyright (C) 2013 VATSIM Community / authors
|
|
* 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/. */
|
|
|
|
#ifndef BLACKMISC_SERVER_H
|
|
#define BLACKMISC_SERVER_H
|
|
|
|
#include "blackmisc/valueobject.h"
|
|
#include "blackmisc/sequence.h"
|
|
#include "blackmisc/collection.h"
|
|
#include "blackmisc/dictionary.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
/*!
|
|
* Value object encapsulating information of a server
|
|
*/
|
|
class CTestValueObject : public BlackMisc::CValueObject
|
|
{
|
|
public:
|
|
//! \brief Default constructor.
|
|
CTestValueObject() {}
|
|
|
|
//! \brief Constructor.
|
|
CTestValueObject(const QString &name, const QString &description)
|
|
: m_name(name), m_description(description) {}
|
|
|
|
//! \copydoc CValueObject::toQVariant
|
|
virtual QVariant toQVariant() const override
|
|
{
|
|
return QVariant::fromValue(*this);
|
|
}
|
|
|
|
//! \brief Get name
|
|
const QString &getName() const { return m_name; }
|
|
|
|
//! \brief Set name
|
|
void setName(const QString &name) { m_name = name; }
|
|
|
|
//! \brief Get description
|
|
const QString &getDescription() const { return m_description; }
|
|
|
|
//! \brief Set description
|
|
void setDescription(const QString &description) { m_description = description; }
|
|
|
|
//! \brief Equal operator ==
|
|
bool operator ==(const CTestValueObject &other) const;
|
|
|
|
//! \brief Unequal operator !=
|
|
bool operator !=(const CTestValueObject &other) const;
|
|
|
|
//! \copydoc CValueObject::getValueHash()
|
|
virtual uint getValueHash() const override;
|
|
|
|
//! \copydoc CValueObject::toJson
|
|
virtual QJsonObject toJson() const override;
|
|
|
|
//! \copydoc CValueObject::fromJson
|
|
void fromJson(const QJsonObject &json) override;
|
|
|
|
//! \brief Register metadata
|
|
static void registerMetadata();
|
|
|
|
//! \copydoc TupleConverter<>::jsonMembers()
|
|
static const QStringList &jsonMembers();
|
|
|
|
//! \brief Properties by index
|
|
enum ColumnIndex
|
|
{
|
|
IndexName = 0,
|
|
IndexDescription,
|
|
};
|
|
|
|
//! \copydoc CValueObject::propertyByIndex(int)
|
|
QVariant propertyByIndex(int index) const override;
|
|
|
|
//! \copydoc CValueObject::setPropertyByIndex(const QVariant &, int index)
|
|
void setPropertyByIndex(const QVariant &variant, int index) override;
|
|
|
|
//! \copydoc CValueObject::propertyByIndexAsString()
|
|
QString propertyByIndexAsString(int index, bool i18n) const;
|
|
|
|
protected:
|
|
//! \copydoc CValueObject::convertToQString()
|
|
virtual QString convertToQString(bool i18n = false) const override;
|
|
|
|
//! \copydoc CValueObject::getMetaTypeId
|
|
virtual int getMetaTypeId() const override;
|
|
|
|
//! \copydoc CValueObject::isA
|
|
virtual bool isA(int metaTypeId) const override;
|
|
|
|
//! \copydoc CValueObject::compareImpl
|
|
virtual int compareImpl(const CValueObject &other) const override;
|
|
|
|
//! \copydoc CValueObject::marshallToDbus
|
|
virtual void marshallToDbus(QDBusArgument &argument) const override;
|
|
|
|
//! \copydoc CValueObject::unmarshallFromDbus
|
|
virtual void unmarshallFromDbus(const QDBusArgument &argument) override;
|
|
|
|
private:
|
|
BLACK_ENABLE_TUPLE_CONVERSION(CTestValueObject)
|
|
QString m_name;
|
|
QString m_description;
|
|
};
|
|
|
|
//! \cond NO_DOXYGEN
|
|
struct CNotHashable
|
|
{
|
|
int n;
|
|
bool operator <(const CNotHashable &other) const { return n < other.n; }
|
|
QString toQString(bool = false) const { return {}; }
|
|
};
|
|
inline QJsonArray &operator <<(QJsonArray &a, const CNotHashable &) { return a; }
|
|
inline const QJsonValueRef &operator >>(const QJsonValueRef &v, CNotHashable &) { return v; }
|
|
inline QDBusArgument &operator <<(QDBusArgument &a, const CNotHashable &) { return a; }
|
|
inline const QDBusArgument &operator >>(const QDBusArgument &a, const CNotHashable &) { return a; }
|
|
//! \endcond
|
|
|
|
} // namespace
|
|
|
|
BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::CTestValueObject, (o.m_name, o.m_description))
|
|
Q_DECLARE_METATYPE(BlackMisc::CTestValueObject)
|
|
Q_DECLARE_METATYPE(BlackMisc::CCollection<BlackMisc::CTestValueObject>)
|
|
Q_DECLARE_METATYPE(BlackMisc::CSequence<BlackMisc::CTestValueObject>)
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::CNotHashable)
|
|
|
|
// We need to typedef because 'commas' confuse the Q_DECLARE_METATYPE macro
|
|
// https://bugreports.qt-project.org/browse/QTBUG-11485
|
|
typedef BlackMisc::CDictionary<BlackMisc::CTestValueObject, BlackMisc::CTestValueObject> CValueObjectDictionary;
|
|
typedef BlackMisc::CDictionary<BlackMisc::CTestValueObject, BlackMisc::CTestValueObject, QHash> CValueObjectHashDictionary;
|
|
typedef BlackMisc::CDictionary<BlackMisc::CNotHashable, QString> CNotHashableDictionary;
|
|
typedef BlackMisc::CDictionary<BlackMisc::CNotHashable, QString, QMap> CNotHashableMapDictionary;
|
|
Q_DECLARE_METATYPE(CValueObjectDictionary)
|
|
Q_DECLARE_METATYPE(CValueObjectHashDictionary)
|
|
Q_DECLARE_METATYPE(CNotHashableDictionary)
|
|
Q_DECLARE_METATYPE(CNotHashableMapDictionary)
|
|
|
|
// MSVC has trouble with these checks
|
|
#if !defined(Q_CC_MSVC)
|
|
static_assert(std::is_same<CValueObjectDictionary::impl_type, CValueObjectHashDictionary::impl_type>::value,
|
|
"Expected CValueObjectDictionary to use QHash");
|
|
static_assert(std::is_same<CNotHashableDictionary::impl_type, CNotHashableMapDictionary::impl_type>::value,
|
|
"Expected CDictionary<CNotHashableDictionary, Value> to use QMap");
|
|
#endif // ! Q_CC_MSVC
|
|
|
|
#endif // guard
|