mirror of https://github.com/nymea/nymea.git
111 lines
3.4 KiB
C++
111 lines
3.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
* 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
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef UPNPDEVICEDESCRIPTOR_H
|
|
#define UPNPDEVICEDESCRIPTOR_H
|
|
|
|
#include <QDebug>
|
|
#include <QHostAddress>
|
|
#include <QUrl>
|
|
|
|
#include "libnymea.h"
|
|
|
|
// reference: http://upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.1.pdf
|
|
|
|
class LIBNYMEA_EXPORT UpnpDeviceDescriptor
|
|
{
|
|
public:
|
|
explicit UpnpDeviceDescriptor();
|
|
|
|
void setLocation(const QUrl &location);
|
|
QUrl location() const;
|
|
|
|
void setHostAddress(const QHostAddress &hostAddress);
|
|
QHostAddress hostAddress() const;
|
|
|
|
void setPort(const int &port);
|
|
int port() const;
|
|
|
|
void setDeviceType(const QString &deviceType);
|
|
QString deviceType() const;
|
|
|
|
void setFriendlyName(const QString &friendlyName);
|
|
QString friendlyName() const;
|
|
|
|
void setManufacturer(const QString &manufacturer);
|
|
QString manufacturer() const;
|
|
|
|
void setManufacturerURL(const QUrl &manufacturerURL);
|
|
QUrl manufacturerURL() const;
|
|
|
|
void setModelDescription(const QString &modelDescription);
|
|
QString modelDescription() const;
|
|
|
|
void setModelName(const QString &modelName);
|
|
QString modelName() const;
|
|
|
|
void setModelNumber(const QString &modelNumber);
|
|
QString modelNumber() const;
|
|
|
|
void setModelURL(const QUrl &modelURL);
|
|
QUrl modelURL() const;
|
|
|
|
void setSerialNumber(const QString &serialNumber);
|
|
QString serialNumber() const;
|
|
|
|
void setUuid(const QString &uuid);
|
|
QString uuid() const;
|
|
|
|
void setUpc(const QString &upc);
|
|
QString upc() const;
|
|
|
|
|
|
private:
|
|
QUrl m_location;
|
|
QHostAddress m_hostAddress;
|
|
int m_port;
|
|
QString m_deviceType;
|
|
QString m_friendlyName;
|
|
QString m_manufacturer;
|
|
QUrl m_manufacturerURL;
|
|
QString m_modelDescription;
|
|
QString m_modelName;
|
|
QString m_modelNumber;
|
|
QUrl m_modelURL;
|
|
QString m_serialNumber;
|
|
QString m_uuid;
|
|
QString m_upc;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(UpnpDeviceDescriptor)
|
|
QDebug operator<< (QDebug debug, const UpnpDeviceDescriptor &upnpDeviceDescriptor);
|
|
|
|
#endif // UPNPDEVICEDESCRIPTOR_H
|