/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 . * * 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 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "ruleactionparam.h" RuleActionParam::RuleActionParam(const Param ¶m) : m_paramTypeId(param.paramTypeId()), m_value(param.value()) { } RuleActionParam::RuleActionParam(const ParamTypeId ¶mTypeId, const QVariant &value): m_paramTypeId(paramTypeId), m_value(value) { } RuleActionParam::RuleActionParam(const ParamTypeId ¶mTypeId, const EventTypeId &eventTypeId, const ParamTypeId &eventParamTypeId): m_paramTypeId(paramTypeId), m_eventTypeId(eventTypeId), m_eventParamTypeId(eventParamTypeId) { } RuleActionParam::RuleActionParam(const ParamTypeId ¶mTypeId, const ThingId &stateThingId, const StateTypeId &stateTypeId): m_paramTypeId(paramTypeId), m_stateThingId(stateThingId), m_stateTypeId(stateTypeId) { } RuleActionParam::RuleActionParam(const QString ¶mName, const QVariant &value): m_paramName(paramName), m_value(value) { } RuleActionParam::RuleActionParam(const QString ¶mName, const EventTypeId &eventTypeId, const ParamTypeId &eventParamTypeId): m_paramName(paramName), m_eventTypeId(eventTypeId), m_eventParamTypeId(eventParamTypeId) { } RuleActionParam::RuleActionParam(const QString ¶mName, const ThingId &stateThingId, const StateTypeId &stateTypeId): m_paramName(paramName), m_stateThingId(stateThingId), m_stateTypeId(stateTypeId) { } ParamTypeId RuleActionParam::paramTypeId() const { return m_paramTypeId; } void RuleActionParam::setParamTypeId(const ParamTypeId ¶mTypeId) { m_paramTypeId = paramTypeId; } QString RuleActionParam::paramName() const { return m_paramName; } void RuleActionParam::setParamName(const QString ¶mName) { m_paramName = paramName; } QVariant RuleActionParam::value() const { return m_value; } void RuleActionParam::setValue(const QVariant &value) { m_value = value; } EventTypeId RuleActionParam::eventTypeId() const { return m_eventTypeId; } void RuleActionParam::setEventTypeId(const EventTypeId &eventTypeId) { m_eventTypeId = eventTypeId; } ParamTypeId RuleActionParam::eventParamTypeId() const { return m_eventParamTypeId; } void RuleActionParam::setEventParamTypeId(const ParamTypeId &eventParamTypeId) { m_eventParamTypeId = eventParamTypeId; } ThingId RuleActionParam::stateThingId() const { return m_stateThingId; } void RuleActionParam::setStateThingId(const ThingId &thingId) { m_stateThingId = thingId; } StateTypeId RuleActionParam::stateTypeId() const { return m_stateTypeId; } void RuleActionParam::setStateTypeId(const StateTypeId &stateTypeId) { m_stateTypeId = stateTypeId; } bool RuleActionParam::isValid() const { if (m_paramTypeId.isNull() && m_paramName.isNull()) { return false; } return isValueBased() ^ isEventBased() ^ isStateBased(); } bool RuleActionParam::isValueBased() const { return !m_value.isNull(); } bool RuleActionParam::isEventBased() const { return !m_eventTypeId.isNull() && !m_eventParamTypeId.isNull(); } bool RuleActionParam::isStateBased() const { return !m_stateThingId.isNull() && !m_stateTypeId.isNull(); } QDebug operator<<(QDebug dbg, const RuleActionParam &ruleActionParam) { dbg.nospace() << "RuleActionParam(ParamTypeId: " << ruleActionParam.paramTypeId().toString() << ", Name:" << ruleActionParam.paramName() << ", Value:" << ruleActionParam.value(); if (ruleActionParam.eventTypeId() != EventTypeId()) { dbg.nospace() << ", EventTypeId:" << ruleActionParam.eventTypeId().toString() << ", EventParamTypeId:" << ruleActionParam.eventParamTypeId().toString() << ")"; } else { dbg.nospace() << ")"; } return dbg; } bool RuleActionParams::hasParam(const ParamTypeId &ruleActionParamTypeId) const { return m_ids.contains(ruleActionParamTypeId); } bool RuleActionParams::hasParam(const QString &ruleActionParamName) const { foreach (const RuleActionParam ¶m, *this) { if (param.paramName() == ruleActionParamName) { return true; } } return false; } QVariant RuleActionParams::paramValue(const ParamTypeId &ruleActionParamTypeId) const { foreach (const RuleActionParam ¶m, *this) { if (param.paramTypeId() == ruleActionParamTypeId) { return param.value(); } } return QVariant(); } bool RuleActionParams::setParamValue(const ParamTypeId &ruleActionParamTypeId, const QVariant &value) { for (int i = 0; i < count(); i++) { if (this->operator [](i).paramTypeId() == ruleActionParamTypeId) { this->operator [](i).setValue(value); return true; } } return false; } RuleActionParams RuleActionParams::operator<<(const RuleActionParam &ruleActionParam) { this->append(ruleActionParam); m_ids.append(ruleActionParam.paramTypeId()); return *this; } QDebug operator<<(QDebug dbg, const RuleActionParams &ruleActionParams) { dbg.nospace() << "RuleActionParamList (count:" << ruleActionParams.count() << ")" << endl; for (int i = 0; i < ruleActionParams.count(); i++ ) { dbg.nospace() << " " << i << ": " << ruleActionParams.at(i) << endl; } return dbg.space(); } QVariant RuleActionParams::get(int index) const { return QVariant::fromValue(at(index)); } void RuleActionParams::put(const QVariant &variant) { append(variant.value()); }