kdelibs/kdecore/kernel/kdbusconnectionpool.cpp
Ivailo Monev 450120097d kdeui: reimplement KNotification
cleaning up the mess, everything but KNotificationConfigWidget is
implemented.

not only does it not require additional D-Bus service (knotify) to
function but also does not transmit pixmaps over D-Bus, the features
to execute command or log to file are dropped and will not be
implemented.

also about markup support in notifications - if the server does not
support markup then it is supposed to strip it, see the spec:
https://specifications.freedesktop.org/notification-spec/notification-spec-latest.html#backwards-compat
meaning nothing should be done by KNotification itself because it is not
a server, it is just a proxy.

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-08-25 09:01:39 +03:00

92 lines
2.6 KiB
C++

/*
* This file is part of the Nepomuk KDE project.
* Copyright (C) 2010 Sebastian Trueg <trueg@kde.org>
* Copyright (C) 2010 David Faure <faure@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "kdbusconnectionpool.h"
#include "kdebug.h"
#include <QCoreApplication>
#include <QThread>
#include <QDBusConnectionInterface>
#include <QDBusReply>
namespace {
QAtomicInt s_connectionCounter(0);
class KDBusConnectionPoolPrivate
{
public:
KDBusConnectionPoolPrivate()
: m_connection( QDBusConnection::connectToBus(
QDBusConnection::SessionBus,
QString::fromLatin1("KDBusConnection%1").arg(newNumber()) ) )
{
}
~KDBusConnectionPoolPrivate()
{
QDBusConnection::disconnectFromBus( m_connection.name() );
}
QDBusConnection connection() const
{
return m_connection;
}
private:
static int newNumber()
{
return s_connectionCounter.fetchAndAddAcquire(1);
}
QDBusConnection m_connection;
};
} // namespace
thread_local KDBusConnectionPoolPrivate* s_perThreadConnection = 0;
QDBusConnection KDBusConnectionPool::threadConnection()
{
if (QCoreApplication::instance()->thread() == QThread::currentThread()) {
return QDBusConnection::sessionBus();
}
if (!s_perThreadConnection) {
s_perThreadConnection = new KDBusConnectionPoolPrivate;
}
return s_perThreadConnection->connection();
}
bool KDBusConnectionPool::isServiceRegistered(const QString &service, const QDBusConnection &connection)
{
QDBusConnectionInterface* dbusinterface = connection.interface();
if (!dbusinterface) {
kDebug() << "Null D-Bus interface" << service;
return false;
}
QDBusReply<bool> reply = dbusinterface->isServiceRegistered(service);
if (reply.value() == false) {
kDebug() << "Service not registered" << service;
return false;
}
return true;
}