mirror of https://github.com/nymea/nymea.git
87 lines
2.3 KiB
C++
87 lines
2.3 KiB
C++
/*
|
|
* Copyright 2013 Christian Muehlhaeuser
|
|
*
|
|
* This program 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; version 2.
|
|
*
|
|
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors:
|
|
* Christian Muehlhaeuser <muesli@gmail.com>
|
|
*/
|
|
|
|
#include "discovery.h"
|
|
|
|
#include <QDebug>
|
|
#include <QTimer>
|
|
|
|
Discovery::Discovery(QObject *parent) :
|
|
QUdpSocket(parent),
|
|
m_timeout(new QTimer(this))
|
|
{
|
|
quint16 port = 1900;
|
|
unsigned int tries = 0;
|
|
const unsigned int maxtries = 10;
|
|
|
|
while (!bind(port++)) {
|
|
if (++tries == maxtries) {
|
|
QMetaObject::invokeMethod(this, "error", Qt::QueuedConnection);
|
|
return;
|
|
}
|
|
}
|
|
|
|
connect(this, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
|
|
|
m_timeout->setSingleShot(true);
|
|
connect(m_timeout, SIGNAL(timeout()), this, SLOT(onTimeout()));
|
|
}
|
|
|
|
bool Discovery::findBridges(int timeout)
|
|
{
|
|
m_timeout->stop();
|
|
m_reportedBridges.clear();
|
|
|
|
QString b("M-SEARCH * HTTP/1.1\r\n"
|
|
"HOST: 239.255.255.250:1900\r\n"
|
|
"MAN: \"ssdp:discover\"\r\n"
|
|
"MX: %1\r\n"
|
|
"ST: libhue:idl\r\n");
|
|
b.arg(timeout / 1000);
|
|
|
|
// qDebug() << "writing datagram" << b;
|
|
m_timeout->start(timeout);
|
|
if (writeDatagram(b.toUtf8(), QHostAddress("239.255.255.250"), 1900) < 0) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void Discovery::onTimeout()
|
|
{
|
|
emit discoveryDone(m_reportedBridges);
|
|
}
|
|
|
|
void Discovery::onReadyRead()
|
|
{
|
|
while (hasPendingDatagrams()) {
|
|
QByteArray datagram;
|
|
datagram.resize(pendingDatagramSize());
|
|
QHostAddress sender;
|
|
quint16 senderPort;
|
|
|
|
readDatagram(datagram.data(), datagram.size(), &sender, &senderPort);
|
|
|
|
// qDebug() << "got datagram" << datagram;
|
|
if (!m_reportedBridges.contains(sender)) {
|
|
m_reportedBridges << sender;
|
|
}
|
|
}
|
|
}
|