69 lines
3.1 KiB
C++
69 lines
3.1 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2017 Simon Stuerz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of guh-control. *
|
|
* *
|
|
* guh-control is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, version 3 of the License. *
|
|
* *
|
|
* guh-control is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with guh-control. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef JSONTYPES_H
|
|
#define JSONTYPES_H
|
|
|
|
#include <QObject>
|
|
#include <QJsonDocument>
|
|
#include <QVariant>
|
|
#include <QUuid>
|
|
|
|
#include "types/types.h"
|
|
#include "types/device.h"
|
|
#include "types/plugin.h"
|
|
#include "types/deviceclass.h"
|
|
#include "types/paramtype.h"
|
|
#include "types/statetype.h"
|
|
#include "types/state.h"
|
|
#include "types/eventtype.h"
|
|
#include "types/actiontype.h"
|
|
|
|
class Vendor;
|
|
class Rule;
|
|
|
|
class JsonTypes : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit JsonTypes(QObject *parent = 0);
|
|
|
|
static Vendor *unpackVendor(const QVariantMap &vendorMap, QObject *parent);
|
|
static Plugin *unpackPlugin(const QVariantMap &pluginMap, QObject *parent);
|
|
static DeviceClass *unpackDeviceClass(const QVariantMap &deviceClassMap, QObject *parent);
|
|
static Param *unpackParam(const QVariantMap ¶mMap, QObject *parent);
|
|
static ParamType *unpackParamType(const QVariantMap ¶mTypeMap, QObject *parent);
|
|
static StateType *unpackStateType(const QVariantMap &stateTypeMap, QObject *parent);
|
|
static EventType *unpackEventType(const QVariantMap &eventTypeMap, QObject *parent);
|
|
static ActionType *unpackActionType(const QVariantMap &actionTypeMap, QObject *parent);
|
|
static Device *unpackDevice(const QVariantMap &deviceMap, QObject *parent);
|
|
|
|
static QVariantMap packRule(Rule* rule);
|
|
static QVariantMap packParam(Param *param);
|
|
private:
|
|
static DeviceClass::SetupMethod stringToSetupMethod(const QString &setupMethodString);
|
|
static QList<DeviceClass::BasicTag> stringListToBasicTags(const QStringList &basicTagsStringList);
|
|
static QPair<Types::Unit, QString> stringToUnit(const QString &unitString);
|
|
static Types::InputType stringToInputType(const QString &inputTypeString);
|
|
|
|
};
|
|
|
|
#endif // JSONTYPES_H
|