2014-11-13 19:30:51 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Sebastian Kügler <sebas@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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 Library 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 <QDBusConnection>
|
|
|
|
#include <QDBusInterface>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QDBusPendingReply>
|
|
|
|
|
|
|
|
#include <KAuthorized>
|
|
|
|
|
|
|
|
// kde-workspace/libs
|
|
|
|
#include <kworkspace/kworkspace.h>
|
|
|
|
|
|
|
|
#include <krunner_interface.h>
|
|
|
|
|
|
|
|
#include "powermanagementjob.h"
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
#include <Solid/PowerManagement>
|
|
|
|
|
|
|
|
PowerManagementJob::PowerManagementJob(const QString &operation, QMap<QString, QVariant> ¶meters, QObject *parent) :
|
|
|
|
ServiceJob(parent->objectName(), operation, parameters, parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PowerManagementJob::~PowerManagementJob()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerManagementJob::start()
|
|
|
|
{
|
|
|
|
const QString operation = operationName();
|
|
|
|
//kDebug() << "starting operation ... " << operation;
|
|
|
|
|
|
|
|
if (operation == "lockScreen") {
|
|
|
|
if (KAuthorized::authorizeKAction("lock_screen")) {
|
|
|
|
const QString interface("org.freedesktop.ScreenSaver");
|
|
|
|
QDBusInterface screensaver(interface, "/ScreenSaver");
|
|
|
|
screensaver.asyncCall("Lock");
|
|
|
|
setResult(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
kDebug() << "operation denied " << operation;
|
|
|
|
setResult(false);
|
|
|
|
return;
|
|
|
|
} else if (operation == "suspend" || operation == "suspendToRam") {
|
|
|
|
setResult(suspend(Ram));
|
|
|
|
return;
|
|
|
|
} else if (operation == "suspendToDisk") {
|
|
|
|
setResult(suspend(Disk));
|
|
|
|
return;
|
|
|
|
} else if (operation == "suspendHybrid") {
|
|
|
|
setResult(suspend(Hybrid));
|
|
|
|
return;
|
|
|
|
} else if (operation == "requestShutDown") {
|
|
|
|
requestShutDown();
|
|
|
|
setResult(true);
|
|
|
|
return;
|
|
|
|
} else if (operation == "switchUser") {
|
|
|
|
// Taken from kickoff/core/itemhandlers.cpp
|
|
|
|
org::kde::krunner::App krunner("org.kde.krunner", "/App", QDBusConnection::sessionBus());
|
|
|
|
krunner.switchUser();
|
|
|
|
setResult(true);
|
|
|
|
return;
|
|
|
|
} else if (operation == "beginSuppressingSleep") {
|
|
|
|
setResult(Solid::PowerManagement::beginSuppressingSleep(parameters().value("reason").toString()));
|
|
|
|
return;
|
|
|
|
} else if (operation == "stopSuppressingSleep") {
|
|
|
|
setResult(Solid::PowerManagement::stopSuppressingSleep(parameters().value("cookie").toInt()));
|
|
|
|
return;
|
|
|
|
} else if (operation == "beginSuppressingScreenPowerManagement") {
|
|
|
|
setResult(Solid::PowerManagement::beginSuppressingScreenPowerManagement(parameters().value("reason").toString()));
|
|
|
|
return;
|
|
|
|
} else if (operation == "stopSuppressingScreenPowerManagement") {
|
|
|
|
setResult(Solid::PowerManagement::stopSuppressingScreenPowerManagement(parameters().value("cookie").toInt()));
|
|
|
|
return;
|
|
|
|
} else if (operation == "setBrightness") {
|
|
|
|
setScreenBrightness(parameters().value("brightness").toInt());
|
|
|
|
setResult(true);
|
|
|
|
return;
|
|
|
|
} else if (operation == "setKeyboardBrightness") {
|
|
|
|
setKeyboardBrightness(parameters().value("brightness").toInt());
|
|
|
|
setResult(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kDebug() << "don't know what to do with " << operation;
|
|
|
|
setResult(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PowerManagementJob::suspend(const SuspendType &type)
|
|
|
|
{
|
|
|
|
QDBusMessage msg = QDBusMessage::createMethodCall("org.kde.Solid.PowerManagement",
|
|
|
|
"/org/kde/Solid/PowerManagement/Actions/SuspendSession",
|
|
|
|
"org.kde.Solid.PowerManagement.Actions.SuspendSession",
|
|
|
|
callForType(type));
|
|
|
|
QDBusConnection::sessionBus().asyncCall(msg);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString PowerManagementJob::callForType(const SuspendType &type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case Disk:
|
|
|
|
return "suspendToDisk";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Hybrid:
|
|
|
|
return "suspendHybrid";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "suspendToRam";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerManagementJob::setScreenBrightness(int value)
|
|
|
|
{
|
|
|
|
QDBusMessage msg = QDBusMessage::createMethodCall("org.kde.Solid.PowerManagement",
|
|
|
|
"/org/kde/Solid/PowerManagement/Actions/BrightnessControl",
|
|
|
|
"org.kde.Solid.PowerManagement.Actions.BrightnessControl",
|
|
|
|
"setBrightness");
|
|
|
|
msg << value;
|
|
|
|
QDBusConnection::sessionBus().asyncCall(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerManagementJob::setKeyboardBrightness(int value)
|
|
|
|
{
|
|
|
|
QDBusMessage msg = QDBusMessage::createMethodCall("org.kde.Solid.PowerManagement",
|
|
|
|
"/org/kde/Solid/PowerManagement/Actions/KeyboardBrightnessControl",
|
|
|
|
"org.kde.Solid.PowerManagement.Actions.KeyboardBrightnessControl",
|
|
|
|
"setKeyboardBrightness");
|
|
|
|
msg << value;
|
|
|
|
QDBusConnection::sessionBus().asyncCall(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerManagementJob::requestShutDown()
|
|
|
|
{
|
|
|
|
KWorkSpace::requestShutDown();
|
|
|
|
}
|
|
|
|
|
2015-02-27 09:28:46 +00:00
|
|
|
#include "moc_powermanagementjob.cpp"
|