199 lines
4.9 KiB
C++
199 lines
4.9 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2018 Michael Zanetti <michael.zanetti@guh.io> *
|
|
* *
|
|
* This file is part of mea. *
|
|
* *
|
|
* mea is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, version 3 of the License. *
|
|
* *
|
|
* mea 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with mea. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "discoverydevice.h"
|
|
|
|
#include <QUrl>
|
|
|
|
DiscoveryDevice::DiscoveryDevice(QObject *parent): QObject(parent)
|
|
{
|
|
m_portConfigs = new PortConfigs(this);
|
|
}
|
|
|
|
QUuid DiscoveryDevice::uuid() const
|
|
{
|
|
return m_uuid;
|
|
}
|
|
|
|
void DiscoveryDevice::setUuid(const QUuid &uuid)
|
|
{
|
|
m_uuid = uuid;
|
|
}
|
|
|
|
QHostAddress DiscoveryDevice::hostAddress() const
|
|
{
|
|
return m_hostAddress;
|
|
}
|
|
|
|
QString DiscoveryDevice::hostAddressString() const
|
|
{
|
|
return m_hostAddress.toString();
|
|
}
|
|
|
|
void DiscoveryDevice::setHostAddress(const QHostAddress &hostAddress)
|
|
{
|
|
if (m_hostAddress != hostAddress) {
|
|
m_hostAddress = hostAddress;
|
|
emit hostAddressChanged();
|
|
}
|
|
}
|
|
|
|
QString DiscoveryDevice::name() const
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
void DiscoveryDevice::setName(const QString &name)
|
|
{
|
|
if (m_name != name) {
|
|
m_name = name;
|
|
emit nameChanged();
|
|
}
|
|
}
|
|
|
|
QString DiscoveryDevice::version() const
|
|
{
|
|
return m_version;
|
|
}
|
|
|
|
void DiscoveryDevice::setVersion(const QString &version)
|
|
{
|
|
if (m_version != version) {
|
|
m_version = version;
|
|
emit versionChanged();
|
|
}
|
|
}
|
|
|
|
PortConfigs* DiscoveryDevice::portConfigs() const
|
|
{
|
|
return m_portConfigs;
|
|
}
|
|
|
|
QString DiscoveryDevice::toUrl(int portConfigIndex)
|
|
{
|
|
PortConfig *pc = m_portConfigs->get(portConfigIndex);
|
|
if (!pc) {
|
|
qWarning() << "No portconfig for index" << portConfigIndex;
|
|
return QString();
|
|
}
|
|
QString ret = pc->protocol() == PortConfig::ProtocolNymeaRpc ? "nymea" : "ws";
|
|
ret += pc->sslEnabled() ? "s" : "";
|
|
ret += "://";
|
|
ret += m_hostAddress.toString();
|
|
ret += ":";
|
|
ret += QString::number(pc->port());
|
|
return ret;
|
|
}
|
|
|
|
PortConfigs::PortConfigs(QObject *parent): QAbstractListModel(parent)
|
|
{
|
|
|
|
}
|
|
|
|
int PortConfigs::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent)
|
|
return m_portConfigs.count();
|
|
}
|
|
|
|
QVariant PortConfigs::data(const QModelIndex &index, int role) const
|
|
{
|
|
switch (role) {
|
|
case RolePort:
|
|
return m_portConfigs.at(index.row())->port();
|
|
case RoleProtocol:
|
|
return m_portConfigs.at(index.row())->protocol();
|
|
case RoleSSLEnabled:
|
|
return m_portConfigs.at(index.row())->sslEnabled();
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
PortConfig *PortConfigs::find(int port)
|
|
{
|
|
foreach (PortConfig* pc, m_portConfigs) {
|
|
if (pc->port() == port) {
|
|
return pc;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void PortConfigs::insert(PortConfig *portConfig)
|
|
{
|
|
portConfig->setParent(this);
|
|
beginInsertRows(QModelIndex(), m_portConfigs.count(), m_portConfigs.count());
|
|
m_portConfigs.append(portConfig);
|
|
endInsertRows();
|
|
emit countChanged();
|
|
}
|
|
|
|
PortConfig* PortConfigs::get(int index) const
|
|
{
|
|
return m_portConfigs.at(index);
|
|
}
|
|
|
|
QHash<int, QByteArray> PortConfigs::roleNames() const
|
|
{
|
|
QHash<int, QByteArray> roles;
|
|
roles.insert(RolePort, "port");
|
|
roles.insert(RoleProtocol, "protocol");
|
|
roles.insert(RoleSSLEnabled, "sslEnabled");
|
|
return roles;
|
|
}
|
|
|
|
PortConfig::PortConfig(int port, QObject *parent):
|
|
QObject(parent),
|
|
m_port(port)
|
|
{
|
|
|
|
}
|
|
|
|
int PortConfig::port() const
|
|
{
|
|
return m_port;
|
|
}
|
|
|
|
PortConfig::Protocol PortConfig::protocol() const
|
|
{
|
|
return m_protocol;
|
|
}
|
|
|
|
void PortConfig::setProtocol(PortConfig::Protocol protocol)
|
|
{
|
|
if (m_protocol != protocol) {
|
|
m_protocol = protocol;
|
|
emit protocolChanged();
|
|
}
|
|
}
|
|
|
|
bool PortConfig::sslEnabled() const
|
|
{
|
|
return m_sslEnabled;
|
|
}
|
|
|
|
void PortConfig::setSslEnabled(bool sslEnabled)
|
|
{
|
|
if (m_sslEnabled != sslEnabled) {
|
|
m_sslEnabled = sslEnabled;
|
|
emit sslEnabledChanged();
|
|
}
|
|
}
|