54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea.
|
|
*
|
|
* nymea is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation, either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* nymea 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 nymea. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef THINGUTILS_H
|
|
#define THINGUTILS_H
|
|
|
|
#include "thing.h"
|
|
|
|
#include "types/paramtype.h"
|
|
#include "types/interface.h"
|
|
|
|
class ThingUtils
|
|
{
|
|
public:
|
|
ThingUtils();
|
|
|
|
static Thing::ThingError verifyParams(const QList<ParamType> paramTypes, const ParamList ¶ms);
|
|
static Thing::ThingError verifyParam(const QList<ParamType> paramTypes, const Param ¶m);
|
|
static Thing::ThingError verifyParam(const ParamType ¶mType, const Param ¶m);
|
|
|
|
static Interfaces allInterfaces();
|
|
static Interface loadInterface(const QString &name);
|
|
static Interface mergeInterfaces(const Interface &iface1, const Interface &iface2);
|
|
static QStringList generateInterfaceParentList(const QString &interface);
|
|
|
|
static QVariant ensureValueClamping(const QVariant value, QMetaType::Type type, const QVariant &minValue, const QVariant &maxValue, double stepSize);
|
|
|
|
static bool variantLessThan(const QVariant &leftHandSide, const QVariant &rightHandSide);
|
|
static bool variantGreaterThan(const QVariant &leftHandSide, const QVariant &rightHandSide);
|
|
};
|
|
|
|
#endif // THINGUTILS_H
|