1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXQt - a lightweight, Qt based, desktop toolset
* https://lxqt.org
*
* Copyright: 2015 LXQt team
* Authors:
* Balázs Béla <balazsbela[at]gmail.com>
* Paulo Lieuthier <paulolieuthier@gmail.com>
*
* This program or 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, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#include "statusnotifierwatcher.h"
#include <QDebug>
#include <QDBusConnectionInterface>
#include "dbusproperties.h"
static const QString s_watcherServiceName(QStringLiteral("org.kde.StatusNotifierWatcher"));
StatusNotifierWatcher::StatusNotifierWatcher(QObject *parent) : QObject(parent)
{
qRegisterMetaType<IconPixmap>("IconPixmap");
qDBusRegisterMetaType<IconPixmap>();
qRegisterMetaType<IconPixmapList>("IconPixmapList");
qDBusRegisterMetaType<IconPixmapList>();
qRegisterMetaType<ToolTip>("ToolTip");
qDBusRegisterMetaType<ToolTip>();
m_statusNotifierWatcher=NULL;
init();
}
StatusNotifierWatcher::~StatusNotifierWatcher()
{
QDBusConnection::sessionBus().unregisterService("org.kde.StatusNotifierWatcher");
}
void StatusNotifierWatcher::init(){
if (QDBusConnection::sessionBus().isConnected()) {
m_serviceName = "org.kde.StatusNotifierHost-" + QString::number(QCoreApplication::applicationPid());
QDBusConnection::sessionBus().registerService(m_serviceName);
QDBusServiceWatcher *watcher = new QDBusServiceWatcher(s_watcherServiceName, QDBusConnection::sessionBus(),
QDBusServiceWatcher::WatchForOwnerChange, this);
connect(watcher, &QDBusServiceWatcher::serviceOwnerChanged,
this, &StatusNotifierWatcher::serviceChange);
registerWatcher(s_watcherServiceName);
}
}
void StatusNotifierWatcher::registerWatcher(const QString& service)
{
//qCDebug(DATAENGINE_SNI)<<"service appeared"<<service;
if (service == s_watcherServiceName) {
m_statusNotifierWatcher = new org::kde::StatusNotifierWatcher(s_watcherServiceName, QStringLiteral("/StatusNotifierWatcher"),
QDBusConnection::sessionBus());
if (m_statusNotifierWatcher->isValid()) {
m_statusNotifierWatcher->call(QDBus::NoBlock, QStringLiteral("RegisterStatusNotifierHost"), m_serviceName);
OrgFreedesktopDBusPropertiesInterface propetriesIface(m_statusNotifierWatcher->service(), m_statusNotifierWatcher->path(), m_statusNotifierWatcher->connection());
QDBusPendingReply<QDBusVariant> pendingItems = propetriesIface.Get(m_statusNotifierWatcher->interface(), "RegisteredStatusNotifierItems");
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(pendingItems, this);
connect(watcher, &QDBusPendingCallWatcher::finished, this, [=]() {
watcher->deleteLater();
QDBusReply<QDBusVariant> reply = *watcher;
QStringList registeredItems = reply.value().variant().toStringList();
foreach (const QString &service, registeredItems) {
newItem(service);
}
});
connect(m_statusNotifierWatcher, &OrgKdeStatusNotifierWatcherInterface::StatusNotifierItemRegistered, this, &StatusNotifierWatcher::serviceRegistered);
connect(m_statusNotifierWatcher, &OrgKdeStatusNotifierWatcherInterface::StatusNotifierItemUnregistered, this, &StatusNotifierWatcher::serviceUnregistered);
} else {
delete m_statusNotifierWatcher;
m_statusNotifierWatcher = nullptr;
}
}
}
void StatusNotifierWatcher::serviceChange(const QString& name, const QString& oldOwner, const QString& newOwner)
{
qDebug()<< "Service" << name << "status change, old owner:" << oldOwner << "new:" << newOwner;
if (newOwner.isEmpty()) {
//unregistered
unregisterWatcher(name);
} else if (oldOwner.isEmpty()) {
//registered
registerWatcher(name);
}
}
void StatusNotifierWatcher::unregisterWatcher(const QString& service)
{
if (service == s_watcherServiceName) {
qDebug()<< s_watcherServiceName << "disappeared";
disconnect(m_statusNotifierWatcher, &OrgKdeStatusNotifierWatcherInterface::StatusNotifierItemRegistered, this, &StatusNotifierWatcher::serviceRegistered);
disconnect(m_statusNotifierWatcher, &OrgKdeStatusNotifierWatcherInterface::StatusNotifierItemUnregistered, this, &StatusNotifierWatcher::serviceUnregistered);
delete m_statusNotifierWatcher;
m_statusNotifierWatcher = nullptr;
}
}
void StatusNotifierWatcher::serviceRegistered(const QString &service)
{
qDebug() << "Registering"<<service;
newItem(service);
}
void StatusNotifierWatcher::serviceUnregistered(const QString &service)
{
qDebug()<<"serviceUnregistered"<<service;
emit StatusNotifierItemUnregistered(service);
}
void StatusNotifierWatcher::newItem(const QString &service)
{
qDebug()<<"newItem ";
emit StatusNotifierItemRegistered(service);
}
|