kde-workspace/kioslave/network/kded/kioslavenotifier.cpp
2014-11-15 04:16:00 +02:00

208 lines
5.9 KiB
C++

/*
This file is part of the network kioslave, part of the KDE project.
Copyright 2009 Friedrich W. H. Kossebau <kossebau@kde.org>
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) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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/>.
*/
#include "kioslavenotifier.h"
// module
#include "kioslavenotifieradaptor.h"
// kioslave
#include <networkuri.h>
// network
#include <network.h>
#include <netdevice.h>
#include <netservice.h>
// KDE
#include <kdirnotify.h>
// Qt
#include <QtCore/QStringList>
#include <KDebug>
namespace Mollet
{
static inline QString idFrom( const NetworkUri& networkUri )
{
return networkUri.hostAddress().isEmpty() ? QString() :
networkUri.serviceName().isEmpty() ? networkUri.hostAddress() :
/*else*/ networkUri.hostAddress()+QLatin1Char('/')+networkUri.serviceName();
}
static inline QString dirIdFor( const NetDevice& device )
{
Q_UNUSED( device )
return QString();
}
static inline QString pathFor( const NetDevice& device )
{
return device.hostAddress();
}
static inline QString dirIdFor( const NetService& service )
{
return service.device().hostAddress();
}
static inline QString pathFor( const NetService& service )
{
return service.device().hostAddress() + QLatin1Char('/') + service.name()+QLatin1Char('.')+service.type();
}
KioSlaveNotifier::KioSlaveNotifier( Network* network, QObject* parent )
: QObject( parent )
{
QDBusConnection sessionBus = QDBusConnection::sessionBus();
const QString allServices;
const QString allPaths;
const QString interface = QLatin1String( "org.kde.KDirNotify" );
sessionBus.connect( allServices, allPaths, interface, QLatin1String("enteredDirectory"),
this, SLOT(onDirectoryEntered(QString)) );
sessionBus.connect( allServices, allPaths, interface, QLatin1String("leftDirectory"),
this, SLOT(onDirectoryLeft(QString)) );
new KioSlaveNotifierAdaptor( this );
connect( network, SIGNAL(devicesAdded(QList<NetDevice>)), SLOT(onDevicesAdded(QList<NetDevice>)) );
connect( network, SIGNAL(devicesRemoved(QList<NetDevice>)), SLOT(onDevicesRemoved(QList<NetDevice>)) );
connect( network, SIGNAL(servicesAdded(QList<NetService>)), SLOT(onServicesAdded(QList<NetService>)) );
connect( network, SIGNAL(servicesRemoved(QList<NetService>)), SLOT(onServicesRemoved(QList<NetService>)) );
}
QStringList KioSlaveNotifier::watchedDirectories() const
{
return mWatchedDirs.keys();
}
void KioSlaveNotifier::onDirectoryEntered( const QString& directory )
{
kDebug()<<directory;
if( !directory.startsWith(QLatin1String("network:/")) )
return;
const NetworkUri networkUri( directory );
const QString id = idFrom( networkUri );
QHash<QString, int>::Iterator it = mWatchedDirs.find( id );
if( it == mWatchedDirs.end() )
{
const QString id = idFrom( networkUri );
mWatchedDirs.insert( id, 1 );
}
else
*it++;
}
void KioSlaveNotifier::onDirectoryLeft( const QString& directory )
{
kDebug()<<directory;
if( !directory.startsWith(QLatin1String("network:/")) )
return;
const NetworkUri networkUri( directory );
const QString id = idFrom( networkUri );
QHash<QString, int>::Iterator it = mWatchedDirs.find( id );
if( it == mWatchedDirs.end() )
return;
if( *it == 1 )
mWatchedDirs.erase( it );
else
*it--;
}
void KioSlaveNotifier::notifyAboutAdded( const QString& dirId )
{
QHash<QString, int>::Iterator it = mWatchedDirs.find( dirId );
if( it != mWatchedDirs.end() )
{
const QString url = QLatin1String("network:/") + dirId;
kDebug()<<url;
org::kde::KDirNotify::emitFilesAdded( url );
}
}
void KioSlaveNotifier::notifyAboutRemoved( const QString& dirId, const QString& itemPath )
{
QHash<QString, int>::Iterator it = mWatchedDirs.find( dirId );
if( it != mWatchedDirs.end() )
{
QStringList itemUrls;
itemUrls.append( QLatin1String("network:/") + itemPath );
kDebug()<<itemUrls;
org::kde::KDirNotify::emitFilesRemoved( itemUrls );
}
}
void KioSlaveNotifier::onDevicesAdded( const QList<NetDevice>& deviceList )
{
foreach( const NetDevice& device, deviceList )
{
const QString id = dirIdFor( device );
notifyAboutAdded( id );
}
}
void KioSlaveNotifier::onDevicesRemoved( const QList<NetDevice>& deviceList )
{
foreach( const NetDevice& device, deviceList )
{
const QString dirId = dirIdFor( device );
const QString itemPath = pathFor( device );
notifyAboutRemoved( dirId, itemPath );
}
}
void KioSlaveNotifier::onServicesAdded( const QList<NetService>& serviceList )
{
foreach( const NetService& service, serviceList )
{
const QString id = dirIdFor( service );
notifyAboutAdded( id );
}
}
void KioSlaveNotifier::onServicesRemoved( const QList<NetService>& serviceList )
{
foreach( const NetService& service, serviceList )
{
const QString dirId = dirIdFor( service );
const QString itemPath = pathFor( service );
notifyAboutRemoved( dirId, itemPath );
}
}
KioSlaveNotifier::~KioSlaveNotifier()
{
}
}