1/* This file is part of the KDE project
2 *
3 * Copyright (C) 2004 Jakub Stachowski <qbast@go2.pl>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#ifndef AVAHI_SERVICEBROWSER_P_H
22#define AVAHI_SERVICEBROWSER_P_H
23
24#include <QtCore/QString>
25#include <QtCore/QList>
26#include <QtCore/QTimer>
27#include "servicebrowser.h"
28#include "avahi_servicebrowser_interface.h"
29
30namespace DNSSD
31{
32
33class ServiceBrowserPrivate : public QObject
34{
35Q_OBJECT
36public:
37 ServiceBrowserPrivate(ServiceBrowser* parent) : QObject(), m_running(false), m_browser(0), m_parent(parent)
38 {}
39 ~ServiceBrowserPrivate() { if (m_browser) m_browser->Free(); delete m_browser;}
40 QList<RemoteService::Ptr> m_services;
41 QList<RemoteService::Ptr> m_duringResolve;
42 QString m_type;
43 QString m_domain;
44 QString m_subtype;
45 bool m_autoResolve;
46 bool m_running;
47 bool m_finished;
48 bool m_browserFinished;
49 QTimer m_timer;
50 org::freedesktop::Avahi::ServiceBrowser* m_browser;
51 ServiceBrowser* m_parent;
52
53 // get already found service identical to s or null if not found
54 RemoteService::Ptr find(RemoteService::Ptr s, const QList<RemoteService::Ptr>& where) const;
55
56private Q_SLOTS:
57 void browserFinished();
58 void queryFinished();
59 void serviceResolved(bool success);
60 void gotNewService(int,int,const QString&,const QString&,const QString&, uint);
61 void gotRemoveService(int,int,const QString&,const QString&,const QString&, uint);
62};
63
64}
65
66#endif
67