mirror of https://github.com/nymea/nymea.git
103 lines
3.5 KiB
C++
103 lines
3.5 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* This library 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 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#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
|