mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
Also dbus adaptor has been renamed, because it does not allow to register one service for several applications (like plasmashell and plasmawindowed)
115 lines
3.7 KiB
C++
115 lines
3.7 KiB
C++
/***************************************************************************
|
|
* This file is part of awesome-widgets *
|
|
* *
|
|
* awesome-widgets is free software: you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* awesome-widgets 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with awesome-widgets. If not, see http://www.gnu.org/licenses/ *
|
|
***************************************************************************/
|
|
|
|
#include "awdbusadaptor.h"
|
|
|
|
#include <QDBusConnection>
|
|
#include <QDBusConnectionInterface>
|
|
|
|
#include "awdebug.h"
|
|
#include "awkeys.h"
|
|
|
|
|
|
AWDBusAdaptor::AWDBusAdaptor(AWKeys *_parent)
|
|
: QDBusAbstractAdaptor(_parent)
|
|
, m_plugin(_parent)
|
|
{
|
|
qCDebug(LOG_DBUS) << __PRETTY_FUNCTION__;
|
|
}
|
|
|
|
|
|
AWDBusAdaptor::~AWDBusAdaptor()
|
|
{
|
|
qCDebug(LOG_DBUS) << __PRETTY_FUNCTION__;
|
|
}
|
|
|
|
|
|
QStringList AWDBusAdaptor::ActiveServices() const
|
|
{
|
|
QDBusMessage listServices = QDBusConnection::sessionBus().interface()->call(
|
|
QDBus::BlockWithGui, "ListNames");
|
|
if (listServices.arguments().isEmpty()) {
|
|
qCWarning(LOG_DBUS) << "Could not find any DBus service";
|
|
return {};
|
|
}
|
|
QStringList arguments = listServices.arguments().first().toStringList();
|
|
|
|
return std::accumulate(arguments.cbegin(), arguments.cend(), QStringList(),
|
|
[](QStringList &source, QString service) {
|
|
if (service.startsWith(AWDBUS_SERVICE))
|
|
source.append(service);
|
|
return source;
|
|
});
|
|
}
|
|
|
|
|
|
QString AWDBusAdaptor::Info(const QString &key) const
|
|
{
|
|
return m_plugin->infoByKey(key);
|
|
}
|
|
|
|
|
|
QStringList AWDBusAdaptor::Keys(const QString ®exp) const
|
|
{
|
|
return m_plugin->dictKeys(true, regexp);
|
|
}
|
|
|
|
|
|
QString AWDBusAdaptor::Value(const QString &key) const
|
|
{
|
|
return m_plugin->valueByKey(key);
|
|
}
|
|
|
|
|
|
qlonglong AWDBusAdaptor::WhoAmI() const
|
|
{
|
|
return reinterpret_cast<qlonglong>(m_plugin);
|
|
}
|
|
|
|
|
|
void AWDBusAdaptor::SetLogLevel(const QString &what, const int level)
|
|
{
|
|
qCDebug(LOG_DBUS) << "Set log level" << level << "for" << what;
|
|
|
|
if (level >= m_logLevels.count()) {
|
|
qCDebug(LOG_DBUS) << "Invalid logging level" << level
|
|
<< "should be less than" << m_logLevels.count();
|
|
return;
|
|
}
|
|
|
|
for (auto &lev : m_logLevels)
|
|
SetLogLevel(what, lev, m_logLevels.indexOf(lev) >= level);
|
|
}
|
|
|
|
|
|
void AWDBusAdaptor::SetLogLevel(const QString &what, const QString &level,
|
|
const bool enabled)
|
|
{
|
|
qCDebug(LOG_DBUS) << "Set log level" << level << "enabled" << enabled
|
|
<< "for" << what;
|
|
|
|
if (!m_logLevels.contains(level)) {
|
|
qCDebug(LOG_DBUS) << "Invalid logging level" << level << "should be in"
|
|
<< m_logLevels;
|
|
return;
|
|
}
|
|
|
|
QString state = enabled ? "true" : "false";
|
|
QLoggingCategory::setFilterRules(
|
|
QString("%1.%2=%3").arg(what).arg(level).arg(state));
|
|
}
|