95 lines
4.4 KiB
C++
95 lines
4.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2016 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of mea. *
|
|
* *
|
|
* 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/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/*! \fn void QtAvahiServiceBrowser::serviceEntryAdded(const AvahiServiceEntry &entry);
|
|
This signal will be emitted when a new \a entry was added to the current entry list.
|
|
*/
|
|
|
|
/*! \fn void QtAvahiServiceBrowser::serviceEntryRemoved(const AvahiServiceEntry &entry);
|
|
This signal will be emitted when a new \a entry was removed from the current entry list.
|
|
*/
|
|
|
|
#include "qtavahiservicebrowser.h"
|
|
#include "qtavahiservicebrowser_p.h"
|
|
|
|
#include <avahi-common/error.h>
|
|
|
|
/*! Constructs a new \l{QtAvahiServiceBrowser} with the given \a parent. */
|
|
QtAvahiServiceBrowser::QtAvahiServiceBrowser(QObject *parent) :
|
|
QObject(parent),
|
|
d_ptr(new QtAvahiServiceBrowserPrivate(new QtAvahiClient))
|
|
{
|
|
connect(d_ptr->client, &QtAvahiClient::clientStateChanged, this, &QtAvahiServiceBrowser::onClientStateChanged);
|
|
}
|
|
|
|
/*! Destructs this \l{QtAvahiServiceBrowser}. */
|
|
QtAvahiServiceBrowser::~QtAvahiServiceBrowser()
|
|
{
|
|
// Delete each service browser
|
|
foreach (const QString &serviceType, d_ptr->serviceBrowserTable.keys()) {
|
|
AvahiServiceBrowser *browser = d_ptr->serviceBrowserTable.take(serviceType);
|
|
if (browser) {
|
|
avahi_service_browser_free(browser);
|
|
}
|
|
}
|
|
|
|
// Delete the service type browser
|
|
if (d_ptr->serviceTypeBrowser)
|
|
avahi_service_type_browser_free(d_ptr->serviceTypeBrowser);
|
|
|
|
delete d_ptr;
|
|
}
|
|
|
|
/*! Enables this \l{QtAvahiServiceBrowser} and starts the service browsing. */
|
|
void QtAvahiServiceBrowser::enable()
|
|
{
|
|
d_ptr->client->start();
|
|
}
|
|
|
|
/*! Returns the current \l{AvahiServiceEntry} list of this \l{QtAvahiServiceBrowser}. */
|
|
QList<AvahiServiceEntry> QtAvahiServiceBrowser::serviceEntries() const
|
|
{
|
|
return m_serviceEntries;
|
|
}
|
|
|
|
void QtAvahiServiceBrowser::onClientStateChanged(const QtAvahiClient::QtAvahiClientState &state)
|
|
{
|
|
if (state == QtAvahiClient::QtAvahiClientStateRunning) {
|
|
qDebug() << "Service browser client connected.";
|
|
// Return if we already have a service type browser
|
|
if (d_ptr->serviceTypeBrowser)
|
|
return;
|
|
|
|
d_ptr->serviceTypeBrowser = avahi_service_type_browser_new(d_ptr->client->client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, (AvahiLookupFlags) 0, QtAvahiServiceBrowserPrivate::callbackServiceTypeBrowser, this);
|
|
} else if (state == QtAvahiClient::QtAvahiClientStateFailure) {
|
|
qWarning() << "Service browser client failure:" << d_ptr->client->errorString();
|
|
}
|
|
}
|
|
|
|
void QtAvahiServiceBrowser::createServiceBrowser(const char *serviceType)
|
|
{
|
|
// create a new service browser for the given serviceType
|
|
AvahiServiceBrowser *browser = avahi_service_browser_new(d_ptr->client->client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, serviceType, NULL, (AvahiLookupFlags) 0, QtAvahiServiceBrowserPrivate::callbackServiceBrowser, this);
|
|
d_ptr->serviceBrowserTable.insert(serviceType, browser);
|
|
}
|
|
|