/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* 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 Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*!
\class Param
\brief Holds the parameters of a Param.
\ingroup nymea-types
\inmodule libnymea
\sa Device, ParamType, ParamDescriptor
*/
#include "param.h"
#include
/*! Constructs a \l Param with the given \a paramTypeId and \a value of the parameter. */
Param::Param(const ParamTypeId ¶mTypeId, const QVariant &value):
m_paramTypeId(paramTypeId),
m_value(value)
{
}
/*! Returns the paramTypeId of this \l Param. */
ParamTypeId Param::paramTypeId() const
{
return m_paramTypeId;
}
void Param::setParamTypeId(const ParamTypeId ¶mTypeId)
{
m_paramTypeId = paramTypeId;
}
/*! Returns the value of this \l Param. */
QVariant Param::value() const
{
return m_value;
}
/*! Sets the \a value of this \l Param. */
void Param::setValue(const QVariant &value)
{
m_value = value;
}
/*! Returns true if paramTypeId() and and value() of this \l Param are set. */
bool Param::isValid() const
{
return !m_paramTypeId.isNull() && m_value.isValid();
}
/*! Writes the paramTypeId and value of the given \a param to \a dbg. */
QDebug operator<<(QDebug dbg, const Param ¶m)
{
dbg.nospace() << "Param(Id: " << param.paramTypeId().toString() << ", Value:" << param.value() << ")";
return dbg.space();
}
/*! Writes the param of the given \a params to \a dbg. */
QDebug operator<<(QDebug dbg, const ParamList ¶ms)
{
dbg.nospace() << "ParamList (count:" << params.count() << ")";
if (params.count() == 0) {
dbg.nospace() << endl;
}
for (int i = 0; i < params.count(); i++ ) {
dbg.nospace() << endl << " " << i << ": " << params.at(i);
}
return dbg.space();
}
/*!
\class ParamList
\brief Holds a list of \l{Param}{Params}
\ingroup types
\inmodule libnymea
\sa Param,
*/
/*! Constructs an empty ParamList. */
ParamList::ParamList()
{
}
/*! Constructs a ParamList from a QList. */
ParamList::ParamList(const QList &other): QList(other)
{
}
QVariant ParamList::get(int index)
{
return QVariant::fromValue(at(index));
}
void ParamList::put(const QVariant &variant)
{
append(variant.value());
}
/*! Returns true if this ParamList contains a Param with the given \a paramTypeId. */
bool ParamList::hasParam(const ParamTypeId ¶mTypeId) const
{
foreach (const Param ¶m, *this) {
if (param.paramTypeId() == paramTypeId)
return true;
}
return false;
}
/*! Returns the value of the Param with the given \a paramTypeId. */
QVariant ParamList::paramValue(const ParamTypeId ¶mTypeId) const
{
foreach (const Param ¶m, *this) {
if (param.paramTypeId() == paramTypeId)
return param.value();
}
return QVariant();
}
/*! Returns true if the value of a Param with the given \a paramTypeId could be set to the given \a value. */
bool ParamList::setParamValue(const ParamTypeId ¶mTypeId, const QVariant &value)
{
for (int i = 0; i < count(); i++) {
if (this->operator [](i).paramTypeId() == paramTypeId) {
this->operator [](i).setValue(value);
return true;
}
}
return false;
}
/*! Appends the given \a param to a ParamList. */
ParamList ParamList::operator<<(const Param ¶m)
{
this->append(param);
m_ids.append(param.paramTypeId());
return *this;
}