123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /*
- * Copyright (C) 2015 Malte Veerman <maldela@halloarsch.de>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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 program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- */
- #include "systemdcommunicator.h"
- #include <KF5/KAuth/kauthexecutejob.h>
- using namespace KAuth;
- #include <QDebug>
- #include <QVariant>
- SystemdCommunicator::SystemdCommunicator(QObject *parent) : QObject(parent)
- {
- m_serviceInterface = nullptr;
- m_error = "Success";
- m_managerInterface = new QDBusInterface("org.freedesktop.systemd1",
- "/org/freedesktop/systemd1",
- "org.freedesktop.systemd1.Manager",
- QDBusConnection::systemBus(),
- this);
- setServiceName("fancontrol");
- }
- void SystemdCommunicator::setServiceName(const QString &name)
- {
- if (name != m_serviceName)
- {
- m_serviceName = name;
- if (serviceExists())
- {
- QVariantList arguments;
- arguments << QVariant(m_serviceName + ".service");
- QDBusMessage dbusreply = m_managerInterface->callWithArgumentList(QDBus::AutoDetect, "LoadUnit", arguments);
- if (dbusreply.type() == QDBusMessage::ErrorMessage)
- {
- m_error = dbusreply.errorMessage();
- emit errorChanged();
- m_serviceObjectPath.clear();
- }
- else
- {
- m_serviceObjectPath = qdbus_cast<QDBusObjectPath>(dbusreply.arguments().at(0)).path();
- if (m_serviceInterface)
- m_serviceInterface->deleteLater();
- m_serviceInterface = new QDBusInterface("org.freedesktop.systemd1",
- m_serviceObjectPath,
- "org.freedesktop.systemd1.Unit",
- QDBusConnection::systemBus(),
- this);
- }
- }
- }
- emit serviceNameChanged();
- emit serviceEnabledChanged();
- }
- bool SystemdCommunicator::serviceExists()
- {
- QDBusMessage dbusreply;
- if (m_managerInterface && m_managerInterface->isValid())
- dbusreply = m_managerInterface->call(QDBus::AutoDetect, "ListUnitFiles");
- if (dbusreply.type() == QDBusMessage::ErrorMessage)
- {
- m_error = dbusreply.errorMessage();
- emit errorChanged();
- return false;
- }
- SystemdUnitFileList list = qdbus_cast<SystemdUnitFileList>(dbusreply.arguments().at(0));
- foreach (const SystemdUnitFile &unitFile, list)
- {
- if (unitFile.path.contains(m_serviceName + ".service"))
- {
- m_error = "Success";
- emit errorChanged();
- return true;
- }
- }
- m_error = "Service " + m_serviceName + " doesn't exist";
- emit errorChanged();
- return false;
- }
- bool SystemdCommunicator::serviceActive()
- {
- if (m_serviceInterface && m_serviceInterface->isValid())
- {
- if (m_serviceInterface->property("ActiveState").toString() == "active")
- {
- return true;
- }
- }
- return false;
- }
- bool SystemdCommunicator::serviceEnabled()
- {
- if (m_serviceInterface && m_serviceInterface->isValid())
- {
- if (m_serviceInterface->property("UnitFileState").toString() == "enabled")
- {
- return true;
- }
- }
- return false;
- }
- void SystemdCommunicator::setServiceEnabled(bool enabled)
- {
- if (enabled != serviceEnabled() && serviceExists())
- {
- QVariantList arguments;
- QStringList files = QStringList() << m_serviceName + ".service";
- if (enabled)
- {
- arguments << files << false << true;
- dbusAction("EnableUnitFiles", arguments);
- dbusAction("Reload");
- }
- else
- {
- arguments << files << false;
- dbusAction("DisableUnitFiles", arguments);
- dbusAction("Reload");
- }
- emit serviceEnabledChanged();
- }
- }
- void SystemdCommunicator::dbusAction(const QString &method, const QVariantList &arguments)
- {
- QDBusMessage dbusreply;
- if (m_managerInterface && m_managerInterface->isValid())
- {
- if (arguments.isEmpty())
- dbusreply = m_managerInterface->call(QDBus::AutoDetect, method);
- else
- dbusreply = m_managerInterface->callWithArgumentList(QDBus::AutoDetect, method, arguments);
- }
- if (dbusreply.type() == QDBusMessage::ErrorMessage)
- {
- #ifndef NO_KF5_AUTH
- if (dbusreply.errorMessage() == "Interactive authentication required.")
- {
- Action action("fancontrol.gui.helper.dbusaction");
- action.setHelperId("fancontrol.gui.helper");
- QVariantMap map;
- map["method"] = method;
- map["arguments"] = arguments;
- action.setArguments(map);
- ExecuteJob *reply = action.execute();
- if (!reply->exec())
- {
- m_error = reply->errorString();
- emit errorChanged();
- }
- else
- {
- m_error = method + " succeeded";
- emit errorChanged();
- }
- return;
- }
- #endif
- m_error = dbusreply.errorMessage();
- emit errorChanged();
- }
- else
- {
- m_error = method + " succeeded";
- emit errorChanged();
- }
- }
- QDBusArgument& operator <<(QDBusArgument &argument, const SystemdUnitFile &unitFile)
- {
- argument.beginStructure();
- argument << unitFile.path << unitFile.state;
- argument.endStructure();
- return argument;
- }
- const QDBusArgument& operator >>(const QDBusArgument &argument, SystemdUnitFile &unitFile)
- {
- argument.beginStructure();
- argument >> unitFile.path >> unitFile.state;
- argument.endStructure();
- return argument;
- }
|