mirror of https://github.com/nymea/nymea.git
118 lines
4.2 KiB
C++
118 lines
4.2 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU version 3. This project 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
|
|
* this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef RULEACTION_H
|
|
#define RULEACTION_H
|
|
|
|
#include "libnymea.h"
|
|
#include "types/action.h"
|
|
#include "types/browseritemaction.h"
|
|
#include "ruleactionparam.h"
|
|
|
|
class LIBNYMEA_EXPORT RuleAction
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(QUuid thingId READ thingId WRITE setThingId USER true)
|
|
Q_PROPERTY(QUuid actionTypeId READ actionTypeId WRITE setActionTypeId USER true)
|
|
Q_PROPERTY(QString interface READ interface WRITE setInterface USER true)
|
|
Q_PROPERTY(QString interfaceAction READ interfaceAction WRITE setInterfaceAction USER true)
|
|
Q_PROPERTY(QString browserItemId READ browserItemId WRITE setBrowserItemId USER true)
|
|
Q_PROPERTY(RuleActionParams ruleActionParams READ ruleActionParams WRITE setRuleActionParams USER true)
|
|
|
|
public:
|
|
enum Type {
|
|
TypeThing,
|
|
TypeInterface,
|
|
TypeBrowser
|
|
};
|
|
explicit RuleAction(const ActionTypeId &actionTypeId = ActionTypeId(), const ThingId &thingId = ThingId(), const RuleActionParams ¶ms = RuleActionParams());
|
|
explicit RuleAction(const QString &interface, const QString &interfaceAction, const RuleActionParams ¶ms = RuleActionParams());
|
|
explicit RuleAction(const ThingId &thingId, const QString &browserItemId);
|
|
RuleAction(const RuleAction &other);
|
|
|
|
bool isValid() const;
|
|
|
|
Type type() const;
|
|
|
|
bool isEventBased() const;
|
|
bool isStateBased() const;
|
|
|
|
Action toAction() const;
|
|
BrowserItemAction toBrowserItemAction() const;
|
|
|
|
ThingId thingId() const;
|
|
void setThingId(const ThingId &thingId);
|
|
|
|
ActionTypeId actionTypeId() const;
|
|
void setActionTypeId(const ActionTypeId &actionTypeId);
|
|
|
|
QString browserItemId() const;
|
|
void setBrowserItemId(const QString &browserItemId);
|
|
|
|
QString interface() const;
|
|
void setInterface(const QString &interface);
|
|
|
|
QString interfaceAction() const;
|
|
void setInterfaceAction(const QString &interfaceAction);
|
|
|
|
RuleActionParams ruleActionParams() const;
|
|
void setRuleActionParams(const RuleActionParams &ruleActionParams);
|
|
RuleActionParam ruleActionParam(const ParamTypeId &ruleActionParamTypeId) const;
|
|
RuleActionParam ruleActionParam(const QString &ruleActionParamName) const;
|
|
|
|
void operator=(const RuleAction &other);
|
|
|
|
private:
|
|
ThingId m_thingId;
|
|
ActionTypeId m_actionTypeId;
|
|
QString m_browserItemId;
|
|
QString m_interface;
|
|
QString m_interfaceAction;
|
|
RuleActionParams m_ruleActionParams;
|
|
};
|
|
Q_DECLARE_METATYPE(RuleAction)
|
|
|
|
class RuleActions: public QList<RuleAction>
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(int count READ count)
|
|
public:
|
|
RuleActions();
|
|
RuleActions(const QList<RuleAction> &other);
|
|
Q_INVOKABLE QVariant get(int index) const;
|
|
Q_INVOKABLE void put(const QVariant &variant);
|
|
};
|
|
Q_DECLARE_METATYPE(RuleActions)
|
|
|
|
QDebug operator<<(QDebug dbg, const RuleAction &ruleAction);
|
|
QDebug operator<<(QDebug dbg, const QList<RuleAction> &ruleActionList);
|
|
|
|
#endif // RULEACTION_H
|