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 144 145 146 147 148 149 150 151 152 153 154
|
/***************************************************************************
* Copyright (C) 2010 by Dario Freddi <drf@kde.org> *
* *
* This program 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 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 General Public License for more details. *
* *
* You should have received a copy of the GNU 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 "powerdevilapp.h"
#include "powerdevilfdoconnector.h"
#include "powermanagementadaptor.h"
#include "powermanagementpolicyagentadaptor.h"
#include "powerdevilcore.h"
#include "powerdevil_debug.h"
#include <QTimer>
#include <QDBusConnection>
#include <QDBusConnectionInterface>
#include <QDebug>
#include <QFileInfo>
#include <KCrash>
#include <KDBusService>
#include <KAboutData>
#include <KSharedConfig>
#include <KLocalizedString>
PowerDevilApp::PowerDevilApp(int &argc, char **argv)
: QGuiApplication(argc, argv)
, m_core(Q_NULLPTR)
{
}
PowerDevilApp::~PowerDevilApp()
{
delete m_core;
}
void PowerDevilApp::init()
{
// KGlobal::insertCatalog("powerdevil");
// KAboutData aboutData("powerdevil", "powerdevil", ki18n("KDE Power Management System"),
// PROJECT_VERSION, ki18n("KDE Power Management System is PowerDevil, an "
// "advanced, modular and lightweight Power Management "
// "daemon"),
// KAboutData::License_GPL, ki18n("(c) 2010 MetalWorkers Co."),
// KLocalizedString(), "http://www.kde.org");
//
// aboutData.addAuthor(ki18n( "Dario Freddi" ), ki18n("Maintainer"), "drf@kde.org",
// "http://drfav.wordpress.com");
if (QDBusConnection::systemBus().interface()->isServiceRegistered(QLatin1String("org.freedesktop.PowerManagement")) ||
QDBusConnection::systemBus().interface()->isServiceRegistered(QLatin1String("com.novell.powersave")) ||
QDBusConnection::systemBus().interface()->isServiceRegistered(QLatin1String("org.freedesktop.Policy.Power"))) {
qCCritical(POWERDEVIL) << "KDE Power Management system not initialized, another power manager has been detected";
return;
}
// not parenting Core to PowerDevilApp as it is the deleted too late on teardown
// where the X connection is already lost leading to a a crash (Bug 371127)
m_core = new PowerDevil::Core(nullptr/*, KComponentData(aboutData)*/);
connect(m_core, SIGNAL(coreReady()), this, SLOT(onCoreReady()));
// Before doing anything, let's set up our backend
const QStringList paths = QCoreApplication::libraryPaths();
QFileInfoList fileInfos;
for (const QString &path : paths) {
QDir dir(path + QLatin1String("/kf5/powerdevil/"),
QStringLiteral("*"),
QDir::SortFlags(QDir::QDir::Name),
QDir::NoDotAndDotDot | QDir::Files);
fileInfos.append(dir.entryInfoList());
}
QFileInfo backendFileInfo;
Q_FOREACH (const QFileInfo &f, fileInfos) {
if (f.baseName().toLower() == QLatin1String("powerdevilupowerbackend")) {
backendFileInfo = f;
break;
}
}
QPluginLoader *loader = new QPluginLoader(backendFileInfo.filePath(), m_core);
QObject *instance = loader->instance();
if (!instance) {
qCDebug(POWERDEVIL) << loader->errorString();
qCCritical(POWERDEVIL) << "KDE Power Management System init failed!";
m_core->loadCore(0);
return;
}
auto interface = qobject_cast<PowerDevil::BackendInterface*>(instance);
if (!interface) {
qCDebug(POWERDEVIL) << "Failed to cast plugin instance to BackendInterface, check your plugin";
qCCritical(POWERDEVIL) << "KDE Power Management System init failed!";
m_core->loadCore(0);
return;
}
qCDebug(POWERDEVIL) << "Backend loaded, loading core";
m_core->loadCore(interface);
}
void PowerDevilApp::onCoreReady()
{
qCDebug(POWERDEVIL) << "Core is ready, registering various services on the bus...";
//DBus logic for the core
new PowerManagementAdaptor(m_core);
new PowerDevil::FdoConnector(m_core);
QDBusConnection::sessionBus().registerService(QLatin1String("org.kde.Solid.PowerManagement"));
QDBusConnection::sessionBus().registerObject(QLatin1String("/org/kde/Solid/PowerManagement"), m_core);
QDBusConnection::systemBus().interface()->registerService("org.freedesktop.Policy.Power");
// Start the Policy Agent service
qDBusRegisterMetaType<QList<InhibitionInfo>>();
qDBusRegisterMetaType<InhibitionInfo>();
new PowerManagementPolicyAgentAdaptor(PowerDevil::PolicyAgent::instance());
QDBusConnection::sessionBus().registerService(QLatin1String("org.kde.Solid.PowerManagement.PolicyAgent"));
QDBusConnection::sessionBus().registerObject(QLatin1String("/org/kde/Solid/PowerManagement/PolicyAgent"), PowerDevil::PolicyAgent::instance());
}
int main(int argc, char **argv)
{
QGuiApplication::setDesktopSettingsAware(false);
PowerDevilApp app(argc, argv);
KDBusService service(KDBusService::Unique);
KCrash::setFlags(KCrash::AutoRestart);
app.setQuitOnLastWindowClosed(false);
app.init();
return app.exec();
}
#include "powerdevilapp.moc"
|