/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 DeviceDescriptor \brief Holds the description of a \l{Device}. \ingroup devices \inmodule libnymea An DeviceDescriptor describes an \l{Device} in order to match it with a \l{nymeaserver::Rule}. \sa Device */ #include "thingdescriptor.h" /*! Construct a DeviceDescriptor. */ ThingDescriptor::ThingDescriptor(): m_id(ThingDescriptorId::createThingDescriptorId()) { } /*! Construct a DeviceDescriptor with the given \a thingClassId, \a title, \a description and \a parentDeviceId.*/ ThingDescriptor::ThingDescriptor(const ThingClassId &thingClassId, const QString &title, const QString &description, const ThingId &parentId): m_id(ThingDescriptorId::createThingDescriptorId()), m_thingClassId(thingClassId), m_title(title), m_description(description), m_parentId(parentId) { } /*! Construct a DeviceDescriptor with the given \a id, \a thingClassId, \a title, \a description and \a parentDeviceId.*/ ThingDescriptor::ThingDescriptor(const ThingDescriptorId &id, const ThingClassId &thingClassId, const QString &title, const QString &description, const ThingId &parentId) : m_id(id), m_thingClassId(thingClassId), m_title(title), m_description(description), m_parentId(parentId) { } /*! Returns true, if this DeviceDescriptor is valid. A DeviceDescriptor is valid, if the id and the thingClassId are set. * \sa id(), ThingClassId(), */ bool ThingDescriptor::isValid() const { return !m_id.isNull() && !m_thingClassId.isNull(); } /*! Returns the id of this DeviceDescriptor. */ ThingDescriptorId ThingDescriptor::id() const { return m_id; } /*! Returns the ThingClassId of this DeviceDescriptor. */ ThingClassId ThingDescriptor::thingClassId() const { return m_thingClassId; } /*! Returns the \l {ThingId} of the thing matching this descriptor. */ ThingId ThingDescriptor::thingId() const { return m_thingId; } /*! Set the \l {ThingId} of the thing matching this descriptor to \a{thingId}. */ void ThingDescriptor::setThingId(const ThingId &thingId) { m_thingId = thingId; } /*! Returns the name of this DeviceDescriptor. */ QString ThingDescriptor::title() const { return m_title; } /*! Sets the \a title of this DeviceDescriptor. */ void ThingDescriptor::setTitle(const QString &title) { m_title = title; } /*! Returns the description of this DeviceDescriptor. */ QString ThingDescriptor::description() const { return m_description; } /*! Sets the \a description of this DeviceDescriptor. */ void ThingDescriptor::setDescription(const QString &description) { m_description = description; } /*! Returns the parent id for things created from this DeviceDescriptor. */ ThingId ThingDescriptor::parentId() const { return m_parentId; } /*! Sets the parent id for things created from this DeviceDescriptor. */ void ThingDescriptor::setParentId(const ThingId &parentId) { m_parentId = parentId; } /*! Returns the list of \l{Param}{Params} of this DeviceDescriptor. */ ParamList ThingDescriptor::params() const { return m_params; } /*! Sets the list of \l{Param}{Params} of this DeviceDescriptor with the given \a params. */ void ThingDescriptor::setParams(const ParamList ¶ms) { m_params = params; } QVariant ThingDescriptors::get(int index) const { return QVariant::fromValue(at(index)); } void ThingDescriptors::put(const QVariant &variant) { append(variant.value()); }