src/models/client.cpp \
src/controllers/master-controller.cpp \
src/framework/command.cpp \
- src/controllers/commandcontroller.cpp
+ src/controllers/commandcontroller.cpp \
+ src/data/datadecorator.cpp \
+ src/data/stringdecorator.cpp \
+ src/data/intdecorator.cpp \
+ src/data/datetimedecorator.cpp \
+ src/data/enumeratordecorator.cpp \
+ src/data/entity.cpp
HEADERS += \
src/models/client.h \
src/controllers/master-controller.h \
src/controllers/navigation-controller.h \
src/framework/command.h \
- src/controllers/commandcontroller.h
+ src/controllers/commandcontroller.h \
+ src/data/datadecorator.h \
+ src/data/stringdecorator.h \
+ src/data/intdecorator.h \
+ src/data/datetimedecorator.h \
+ src/data/enumeratordecorator.h \
+ src/data/entity.h
unix {
target.path = /usr/lib
--- /dev/null
+#include "datadecorator.h"
+
+namespace cm::data {
+
+ class DataDecorator::Implementation {
+ public:
+ Implementation(Entity* _parent, const QString& _key, const QString& _label)
+ : parentEntity(_parent)
+ , key(_key)
+ , label(_label)
+ {
+ }
+
+ Entity* parentEntity{nullptr};
+ QString key;
+ QString label;
+
+ };
+
+ DataDecorator::DataDecorator(Entity* parent, const QString& key, const QString& label)
+ : QObject(dynamic_cast<QObject*>(parent))
+ {
+ implementation.reset(new Implementation(parent, key, label));
+ }
+
+ DataDecorator::~DataDecorator()
+ {}
+
+ const QString& DataDecorator::key() const
+ {
+ return implementation->key;
+ }
+
+ const QString& DataDecorator::label() const
+ {
+ return implementation->label;
+ }
+
+ Entity* DataDecorator::parentEntity() {
+ return implementation->parentEntity;
+ }
+}
--- /dev/null
+#ifndef DATADECORATOR_H
+#define DATADECORATOR_H
+
+#include <QObject>
+#include <QJsonObject>
+#include <QJsonValue>
+#include <QScopedPointer>
+
+#include "cm-lib_global.h"
+#include "entity.h"
+
+namespace cm::data {
+
+ class CMLIBSHARED_EXPORT DataDecorator : public QObject
+ {
+ Q_OBJECT
+ Q_PROPERTY( QString ui_label READ label CONSTANT )
+ public:
+ DataDecorator(Entity* parent = nullptr, const QString& key = "SomeItemKey", const QString& label = "");
+
+ virtual ~DataDecorator();
+
+ const QString& key() const;
+ const QString& label() const;
+
+ Entity* parentEntity();
+
+ virtual QJsonValue jsonValue() const = 0;
+ virtual void update(const QJsonObject& jsonObject) = 0;
+
+ private:
+ class Implementation;
+ QScopedPointer<Implementation> implementation;
+ };
+}
+#endif // DATADECORATOR_H
--- /dev/null
+#include "datetimedecorator.h"
+
+#include <QVariant>
+
+namespace cm::data {
+
+ class DateTimeDecorator::Implementation {
+ public:
+ Implementation(DateTimeDecorator* _dateTimeDecorator, const QDateTime& _value)
+ : dateTimeDecorator(_dateTimeDecorator)
+ , value(_value)
+ {}
+
+ DateTimeDecorator* dateTimeDecorator{nullptr};
+ QDateTime value;
+ };
+
+ DateTimeDecorator::DateTimeDecorator(Entity* parentEntity, const QString& key, const QString& label, const QDateTime& value)
+ : DataDecorator(parentEntity, key, label)
+ {
+ implementation.reset(new Implementation(this, value));
+ }
+
+ DateTimeDecorator::~DateTimeDecorator()
+ {}
+
+ const QDateTime& DateTimeDecorator::value() const
+ {
+ return implementation->value;
+ }
+
+ DateTimeDecorator& DateTimeDecorator::setValue(const QDateTime& value)
+ {
+ if (value != implementation->value) {
+ // ... Validation required ...
+ implementation->value = value;
+ emit valueChanged();
+ }
+ return *this;
+ }
+
+ QJsonValue DateTimeDecorator::jsonValue() const
+ {
+ return QJsonValue::fromVariant(QVariant(implementation->value));
+ }
+
+ void DateTimeDecorator::update(const QJsonObject& _jsonObject)
+ {
+ if (_jsonObject.contains(key())) {
+ setValue(QDateTime::fromString(_jsonObject.value(key()).toString()));
+ } else {
+ setValue(QDateTime());
+ }
+ }
+
+ QString DateTimeDecorator::toIso8601String() const
+ {
+ if (implementation->value.isNull()) return "Not Set";
+ return implementation->value.toString(Qt::ISODate);
+ }
+
+ QString DateTimeDecorator::toPrettyString() const
+ {
+ if (implementation->value.isNull()) return "Not Set";
+ return implementation->value.toString("ddd d MMM yyyy @ HH:mm:ss");
+ }
+
+ QString DateTimeDecorator::toPrettyDateString() const
+ {
+ if (implementation->value.isNull()) return "Not Set";
+ return implementation->value.toString("d MMM yyyy");
+ }
+
+ QString DateTimeDecorator::toPrettyTimeString() const
+ {
+ if (implementation->value.isNull()) return "Not Set";
+ return implementation->value.toString("hh:mm ap");
+ }
+
+}
--- /dev/null
+#ifndef DATETIMEDECORATOR_H
+#define DATETIMEDECORATOR_H
+
+#include <QObject>
+#include <QString>
+#include <QDateTime>
+#include <QJsonObject>
+#include <QJsonValue>
+#include <QScopedPointer>
+
+#include "cm-lib_global.h"
+#include "data/datadecorator.h"
+#include "data/entity.h"
+
+namespace cm::data {
+
+ class CMLIBSHARED_EXPORT DateTimeDecorator : public DataDecorator
+ {
+ Q_OBJECT
+ Q_PROPERTY(QDateTime ui_value READ value WRITE setValue NOTIFY valueChanged)
+ Q_PROPERTY(QString ui_iso8601String READ toIso8601String NOTIFY valueChanged)
+ Q_PROPERTY(QString ui_prettyDateString READ toPrettyDateString NOTIFY valueChanged)
+ Q_PROPERTY(QString ui_prettyTimeStringString READ toPrettyTimeString NOTIFY valueChanged)
+ Q_PROPERTY(QString ui_prettyString READ toPrettyString NOTIFY valueChanged)
+ public:
+ DateTimeDecorator(Entity* parentEntity = nullptr,
+ const QString& key = "SomeItemKey", const QString& label = "", const QDateTime& value = QDateTime());
+
+ ~DateTimeDecorator() override;
+
+ DateTimeDecorator& setValue(const QDateTime& value);
+ const QDateTime& value() const;
+ QJsonValue jsonValue() const override;
+ void update(const QJsonObject& jsonObject) override;
+ QString toIso8601String() const;
+ QString toPrettyDateString() const;
+ QString toPrettyTimeString() const;
+ QString toPrettyString() const;
+
+ signals:
+ void valueChanged();
+
+ private:
+ class Implementation;
+ QScopedPointer<Implementation> implementation;
+ };
+}
+#endif // DATETIMEDECORATOR_H
--- /dev/null
+#include "entity.h"
+
+Entity::Entity(QObject *parent) : QObject(parent)
+{
+
+}
--- /dev/null
+#ifndef ENTITY_H
+#define ENTITY_H
+
+#include <QObject>
+
+class Entity : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Entity(QObject *parent = nullptr);
+
+signals:
+
+public slots:
+};
+
+#endif // ENTITY_H
\ No newline at end of file
--- /dev/null
+#include "enumeratordecorator.h"
+
+#include <QVariant>
+
+namespace cm::data {
+
+ class EnumeratorDecorator::Implementation {
+ public:
+ Implementation(EnumeratorDecorator* _enumeratorDecorator, const int _value, const std::map<int, QString>& _descriptionMapper)
+ : enumeratorDecorator(_enumeratorDecorator)
+ , value(_value)
+ , descriptionMapper(_descriptionMapper)
+ {}
+
+ EnumeratorDecorator* enumeratorDecorator{nullptr};
+ int value;
+ std::map<int, QString> descriptionMapper;
+ };
+
+ EnumeratorDecorator::EnumeratorDecorator(Entity* parentEntity, const QString& key, const QString& label,
+ const int value, const std::map<int, QString>& descriptionMapper)
+ : DataDecorator(parentEntity, key, label)
+ {
+ implementation.reset(new Implementation(this, value, descriptionMapper));
+ }
+
+ EnumeratorDecorator::~EnumeratorDecorator()
+ {}
+
+ int EnumeratorDecorator::value() const
+ {
+ return implementation->value;
+ }
+
+ EnumeratorDecorator& EnumeratorDecorator::setValue(const int value)
+ {
+ if (value != implementation->value) {
+ // ... Validation required ...
+ implementation->value = value;
+ emit valueChanged();
+ }
+ return *this;
+ }
+
+ QJsonValue EnumeratorDecorator::jsonValue() const
+ {
+ return QJsonValue::fromVariant(QVariant(implementation->value));
+ }
+
+ void EnumeratorDecorator::update(const QJsonObject& _jsonObject)
+ {
+ if (_jsonObject.contains(key())) {
+ setValue(_jsonObject.value(key()).toInt());
+ } else {
+ setValue(0);
+ }
+ }
+
+ QString EnumeratorDecorator::valueDescription() const
+ {
+ if (implementation->descriptionMapper.find(implementation->value) != implementation->descriptionMapper.end()) {
+ return implementation->descriptionMapper.at(implementation->value);
+ }
+ return {};
+ }
+
+}
--- /dev/null
+#ifndef ENUMERATORDECORATOR_H
+#define ENUMERATORDECORATOR_H
+
+#include <map>
+
+#include <QObject>
+#include <QScopedPointer>
+#include <QJsonObject>
+#include <QJsonValue>
+
+#include "data/datadecorator.h"
+#include "cm-lib_global.h"
+
+namespace cm::data {
+
+ class CMLIBSHARED_EXPORT EnumeratorDecorator : public DataDecorator
+ {
+ Q_OBJECT
+ Q_PROPERTY(int ui_value READ value WRITE setValue NOTIFY valueChanged)
+ Q_PROPERTY(QString ui_valueDescription READ valueDescription NOTIFY valueChanged)
+
+ public:
+ EnumeratorDecorator(Entity* parentEntity = nullptr,
+ const QString& key = "SomeItemKey", const QString& label = "", int value = 0,
+ const std::map<int, QString>& descriptionMapper = std::map<int, QString>());
+
+ ~EnumeratorDecorator() override;
+
+ EnumeratorDecorator& setValue(int value);
+ int value() const;
+ QString valueDescription() const;
+
+ QJsonValue jsonValue() const override;
+ void update(const QJsonObject& jsonObject) override;
+
+ signals:
+ void valueChanged();
+
+ private:
+ class Implementation;
+ QScopedPointer<Implementation> implementation;
+ };
+}
+
+#endif // ENUMERATORDECORATOR_H
--- /dev/null
+#include "intdecorator.h"
+
+#include <QVariant>
+
+namespace cm::data {
+
+ class IntDecorator::Implementation {
+ public:
+ Implementation(IntDecorator* _intDecorator, const int _value)
+ : intDecorator(_intDecorator)
+ , value(_value)
+ {}
+
+ IntDecorator* intDecorator{nullptr};
+ int value;
+ };
+
+ IntDecorator::IntDecorator(Entity* parentEntity, const QString& key, const QString& label, const int value)
+ : DataDecorator(parentEntity, key, label)
+ {
+ implementation.reset(new Implementation(this, value));
+ }
+
+ IntDecorator::~IntDecorator()
+ {}
+
+ int IntDecorator::value() const
+ {
+ return implementation->value;
+ }
+
+ IntDecorator& IntDecorator::setValue(const int& value)
+ {
+ if (value != implementation->value) {
+ // ... Validation required ...
+ implementation->value = value;
+ emit valueChanged();
+ }
+ return *this;
+ }
+
+ QJsonValue IntDecorator::jsonValue() const
+ {
+ return QJsonValue::fromVariant(QVariant(implementation->value));
+ }
+
+ void IntDecorator::update(const QJsonObject& _jsonObject)
+ {
+ if (_jsonObject.contains(key())) {
+ setValue(_jsonObject.value(key()).toInt());
+ } else {
+ setValue(0);
+ }
+ }
+
+}
--- /dev/null
+#ifndef INTDECORATOR_H
+#define INTDECORATOR_H
+
+#include <QObject>
+#include <QString>
+#include <QJsonObject>
+#include <QJsonValue>
+#include <QScopedPointer>
+
+#include "cm-lib_global.h"
+#include "data/datadecorator.h"
+#include "data/entity.h"
+
+namespace cm::data {
+
+ class CMLIBSHARED_EXPORT IntDecorator : public DataDecorator
+ {
+ Q_OBJECT
+ Q_PROPERTY(int ui_value READ value WRITE setValue NOTIFY valueChanged)
+ public:
+ IntDecorator(Entity* parentEntity = nullptr,
+ const QString& key = "SomeItemKey", const QString& label = "", const int value = 0);
+
+ ~IntDecorator() override;
+
+ IntDecorator& setValue(const int& value);
+ int value() const;
+ QJsonValue jsonValue() const override;
+ void update(const QJsonObject& jsonObject) override;
+
+ signals:
+ void valueChanged();
+
+ private:
+ class Implementation;
+ QScopedPointer<Implementation> implementation;
+ };
+}
+#endif // INTDECORATOR_H
--- /dev/null
+#include "stringdecorator.h"
+
+#include <QVariant>
+
+namespace cm::data {
+
+ class StringDecorator::Implementation {
+ public:
+ Implementation(StringDecorator* _stringDecorator, const QString& _value)
+ : stringDecorator(_stringDecorator)
+ , value(_value)
+ {}
+
+ StringDecorator* stringDecorator{nullptr};
+ QString value;
+ };
+
+ StringDecorator::StringDecorator(Entity* parentEntity, const QString& key, const QString& label, const QString& value)
+ : DataDecorator(parentEntity, key, label)
+ {
+ implementation.reset(new Implementation(this, value));
+ }
+
+ StringDecorator::~StringDecorator()
+ {}
+
+ const QString& StringDecorator::value() const
+ {
+ return implementation->value;
+ }
+
+ StringDecorator& StringDecorator::setValue(const QString& value)
+ {
+ if (value != implementation->value) {
+ // ... Validation required ...
+ implementation->value = value;
+ emit valueChanged();
+ }
+ return *this;
+ }
+
+ QJsonValue StringDecorator::jsonValue() const
+ {
+ return QJsonValue::fromVariant(QVariant(implementation->value));
+ }
+
+ void StringDecorator::update(const QJsonObject& _jsonObject)
+ {
+ if (_jsonObject.contains(key())) {
+ setValue(_jsonObject.value(key()).toString());
+ } else {
+ setValue("");
+ }
+ }
+
+}
--- /dev/null
+#ifndef STRINGDECORATOR_H
+#define STRINGDECORATOR_H
+
+#include <QObject>
+#include <QString>
+#include <QJsonObject>
+#include <QJsonValue>
+#include <QScopedPointer>
+
+#include "cm-lib_global.h"
+#include "data/datadecorator.h"
+#include "data/entity.h"
+
+namespace cm::data {
+
+ class CMLIBSHARED_EXPORT StringDecorator : public DataDecorator
+ {
+ Q_OBJECT
+ Q_PROPERTY(QString ui_value READ value WRITE setValue NOTIFY valueChanged)
+ public:
+ StringDecorator(Entity* parentEntity = nullptr,
+ const QString& key = "SomeItemKey", const QString& label = "", const QString& value = "");
+
+ ~StringDecorator() override;
+
+ StringDecorator& setValue(const QString& value);
+ const QString& value() const;
+ QJsonValue jsonValue() const override;
+ void update(const QJsonObject& jsonObject) override;
+
+ signals:
+ void valueChanged();
+
+ private:
+ class Implementation;
+ QScopedPointer<Implementation> implementation;
+ };
+}
+
+#endif // STRINGDECORATOR_H