// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "qlowenergycharacteristicdata.h" #include "qlowenergydescriptordata.h" #include #include #include #include QT_BEGIN_NAMESPACE Q_DECLARE_LOGGING_CATEGORY(QT_BT) struct QLowEnergyCharacteristicDataPrivate : public QSharedData { QLowEnergyCharacteristicDataPrivate() : properties(QLowEnergyCharacteristic::Unknown) , minimumValueLength(0) , maximumValueLength(INT_MAX) {} QBluetoothUuid uuid; QLowEnergyCharacteristic::PropertyTypes properties; QList descriptors; QByteArray value; QBluetooth::AttAccessConstraints readConstraints; QBluetooth::AttAccessConstraints writeConstraints; int minimumValueLength; int maximumValueLength; }; /*! \since 5.7 \class QLowEnergyCharacteristicData \brief The QLowEnergyCharacteristicData class is used to set up GATT service data. \inmodule QtBluetooth \ingroup shared An Object of this class provides a characteristic to be added to a \l QLowEnergyServiceData object via \l QLowEnergyServiceData::addCharacteristic(). \sa QLowEnergyServiceData \sa QLowEnergyController::addService */ /*! Creates a new invalid object of this class. */ QLowEnergyCharacteristicData::QLowEnergyCharacteristicData() : d(new QLowEnergyCharacteristicDataPrivate) { } /*! Constructs a new object of this class that is a copy of \a other. */ QLowEnergyCharacteristicData::QLowEnergyCharacteristicData(const QLowEnergyCharacteristicData &other) : d(other.d) { } /*! Destroys this object. */ QLowEnergyCharacteristicData::~QLowEnergyCharacteristicData() { } /*! Makes this object a copy of \a other and returns the new value of this object. */ QLowEnergyCharacteristicData &QLowEnergyCharacteristicData::operator=(const QLowEnergyCharacteristicData &other) { d = other.d; return *this; } /*! Returns the UUID of this characteristic. */ QBluetoothUuid QLowEnergyCharacteristicData::uuid() const { return d->uuid; } /*! Sets the UUID of this characteristic to \a uuid. */ void QLowEnergyCharacteristicData::setUuid(const QBluetoothUuid &uuid) { d->uuid = uuid; } /*! Returns the value of this characteristic. */ QByteArray QLowEnergyCharacteristicData::value() const { return d->value; } /*! Sets the value of this characteristic to \a value. */ void QLowEnergyCharacteristicData::setValue(const QByteArray &value) { d->value = value; } /*! Returns the properties of this characteristic. */ QLowEnergyCharacteristic::PropertyTypes QLowEnergyCharacteristicData::properties() const { return d->properties; } /*! Sets the properties of this characteristic to \a properties. */ void QLowEnergyCharacteristicData::setProperties(QLowEnergyCharacteristic::PropertyTypes properties) { if ((properties & QLowEnergyCharacteristic::PropertyType::Notify) && (properties & QLowEnergyCharacteristic::PropertyType::Indicate)) qCWarning(QT_BT) << "Both NTF and IND properties set for characteristic" << d->uuid; d->properties = properties; } /*! Returns the descriptors of this characteristic. */ QList QLowEnergyCharacteristicData::descriptors() const { return d->descriptors; } /*! Sets the descriptors of this characteristic to \a descriptors. Only valid descriptors are considered. \sa addDescriptor() */ void QLowEnergyCharacteristicData::setDescriptors(const QList &descriptors) { d->descriptors.clear(); for (const QLowEnergyDescriptorData &desc : descriptors) addDescriptor(desc); } /*! Adds \a descriptor to the list of descriptors of this characteristic, if it is valid. \sa setDescriptors() */ void QLowEnergyCharacteristicData::addDescriptor(const QLowEnergyDescriptorData &descriptor) { if (descriptor.isValid()) d->descriptors << descriptor; else qCWarning(QT_BT) << "not adding invalid descriptor to characteristic"; } /*! Specifies that clients need to fulfill \a constraints to read the value of this characteristic. */ void QLowEnergyCharacteristicData::setReadConstraints(QBluetooth::AttAccessConstraints constraints) { d->readConstraints = constraints; } /*! Returns the constraints needed for a client to read the value of this characteristic. If \l properties() does not include \l QLowEnergyCharacteristic::Read, this value is irrelevant. By default, there are no read constraints. */ QBluetooth::AttAccessConstraints QLowEnergyCharacteristicData::readConstraints() const { return d->readConstraints; } /*! Specifies that clients need to fulfill \a constraints to write the value of this characteristic. */ void QLowEnergyCharacteristicData::setWriteConstraints(QBluetooth::AttAccessConstraints constraints) { d->writeConstraints = constraints; } /*! Returns the constraints needed for a client to write the value of this characteristic. If \l properties() does not include either of \l QLowEnergyCharacteristic::Write, \l QLowEnergyCharacteristic::WriteNoResponse and \l QLowEnergyCharacteristic::WriteSigned, this value is irrelevant. By default, there are no write constraints. */ QBluetooth::AttAccessConstraints QLowEnergyCharacteristicData::writeConstraints() const { return d->writeConstraints; } /*! Specifies \a minimum and \a maximum to be the smallest and largest length, respectively, that the value of this characteristic can have. The unit is bytes. If \a minimum and \a maximum are equal, the characteristic has a fixed-length value. */ void QLowEnergyCharacteristicData::setValueLength(int minimum, int maximum) { d->minimumValueLength = minimum; d->maximumValueLength = qMax(minimum, maximum); } /*! Returns the minimum length in bytes that the value of this characteristic can have. The default is zero. */ int QLowEnergyCharacteristicData::minimumValueLength() const { return d->minimumValueLength; } /*! Returns the maximum length in bytes that the value of this characteristic can have. By default, there is no limit beyond the constraints of the data type. */ int QLowEnergyCharacteristicData::maximumValueLength() const { return d->maximumValueLength; } /*! Returns true if and only if this characteristic is valid, that is, it has a non-null UUID. */ bool QLowEnergyCharacteristicData::isValid() const { return !uuid().isNull(); } /*! \fn void QLowEnergyCharacteristicData::swap(QLowEnergyCharacteristicData &other) Swaps this object with \a other. */ /*! \brief Returns \c true if \a a and \a b are equal with respect to their public state, otherwise returns \c false. \internal */ bool QLowEnergyCharacteristicData::equals(const QLowEnergyCharacteristicData &a, const QLowEnergyCharacteristicData &b) { return a.d == b.d || (a.uuid() == b.uuid() && a.properties() == b.properties() && a.descriptors() == b.descriptors() && a.value() == b.value() && a.readConstraints() == b.readConstraints() && a.writeConstraints() == b.writeConstraints() && a.minimumValueLength() == b.maximumValueLength() && a.maximumValueLength() == b.maximumValueLength()); } /*! \fn bool QLowEnergyCharacteristicData::operator==(const QLowEnergyCharacteristicData &a, const QLowEnergyCharacteristicData &b) \brief Returns \c true if \a a and \a b are equal with respect to their public state, otherwise returns \c false. */ /*! \fn bool QLowEnergyCharacteristicData::operator!=(const QLowEnergyCharacteristicData &a, const QLowEnergyCharacteristicData &b) \brief Returns \c true if \a a and \a b are not equal with respect to their public state, otherwise returns \c false. */ QT_END_NAMESPACE