You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

132 lines
6.0 KiB

/*
* 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.h>
#include <krunner_interface.h>
#include "powermanagementjob.h"
#include <Solid/PowerManagement>
PowerManagementJob::PowerManagementJob(const QString &operation, QMap<QString, QVariant> &parameters, QObject *parent) :
ServiceJob(parent->objectName(), operation, parameters, parent)
{
}
PowerManagementJob::~PowerManagementJob()
{
}
void PowerManagementJob::start()
{
const QString operation = operationName();
//qDebug() << "starting operation ... " << operation;
if (operation == QLatin1String("lockScreen")) {
if (KAuthorized::authorizeAction(QStringLiteral("lock_screen"))) {
const QString interface(QStringLiteral("org.freedesktop.ScreenSaver"));
QDBusInterface screensaver(interface, QStringLiteral("/ScreenSaver"));
screensaver.asyncCall(QStringLiteral("Lock"));
setResult(true);
return;
}
qDebug() << "operation denied " << operation;
setResult(false);
return;
} else if (operation == QLatin1String("suspend") || operation == QLatin1String("suspendToRam")) {
Solid::PowerManagement::requestSleep(Solid::PowerManagement::SuspendState, nullptr, nullptr);
setResult(Solid::PowerManagement::supportedSleepStates().contains(Solid::PowerManagement::SuspendState));
return;
} else if (operation == QLatin1String("suspendToDisk")) {
Solid::PowerManagement::requestSleep(Solid::PowerManagement::HibernateState, nullptr, nullptr);
setResult(Solid::PowerManagement::supportedSleepStates().contains(Solid::PowerManagement::HibernateState));
return;
} else if (operation == QLatin1String("suspendHybrid")) {
Solid::PowerManagement::requestSleep(Solid::PowerManagement::HybridSuspendState, nullptr, nullptr);
setResult(Solid::PowerManagement::supportedSleepStates().contains(Solid::PowerManagement::HybridSuspendState));
return;
} else if (operation == QLatin1String("requestShutDown")) {
requestShutDown();
setResult(true);
return;
} else if (operation == QLatin1String("switchUser")) {
// Taken from kickoff/core/itemhandlers.cpp
org::kde::krunner::App krunner(QStringLiteral("org.kde.krunner"), QStringLiteral("/App"), QDBusConnection::sessionBus());
krunner.switchUser();
setResult(true);
return;
} else if (operation == QLatin1String("beginSuppressingSleep")) {
setResult(Solid::PowerManagement::beginSuppressingSleep(parameters().value(QStringLiteral("reason")).toString()));
return;
} else if (operation == QLatin1String("stopSuppressingSleep")) {
setResult(Solid::PowerManagement::stopSuppressingSleep(parameters().value(QStringLiteral("cookie")).toInt()));
return;
} else if (operation == QLatin1String("beginSuppressingScreenPowerManagement")) {
setResult(Solid::PowerManagement::beginSuppressingScreenPowerManagement(parameters().value(QStringLiteral("reason")).toString()));
return;
} else if (operation == QLatin1String("stopSuppressingScreenPowerManagement")) {
setResult(Solid::PowerManagement::stopSuppressingScreenPowerManagement(parameters().value(QStringLiteral("cookie")).toInt()));
return;
} else if (operation == QLatin1String("setBrightness")) {
setScreenBrightness(parameters().value(QStringLiteral("brightness")).toInt(), parameters().value(QStringLiteral("silent")).toBool());
setResult(true);
return;
} else if (operation == QLatin1String("setKeyboardBrightness")) {
setKeyboardBrightness(parameters().value(QStringLiteral("brightness")).toInt(), parameters().value(QStringLiteral("silent")).toBool());
setResult(true);
return;
}
qDebug() << "don't know what to do with " << operation;
setResult(false);
}
void PowerManagementJob::setScreenBrightness(int value, bool silent)
{
QDBusMessage msg = QDBusMessage::createMethodCall(QStringLiteral("org.kde.Solid.PowerManagement"),
QStringLiteral("/org/kde/Solid/PowerManagement/Actions/BrightnessControl"),
QStringLiteral("org.kde.Solid.PowerManagement.Actions.BrightnessControl"),
silent ? "setBrightnessSilent" : "setBrightness");
msg << value;
QDBusConnection::sessionBus().asyncCall(msg);
}
void PowerManagementJob::setKeyboardBrightness(int value, bool silent)
{
QDBusMessage msg = QDBusMessage::createMethodCall(QStringLiteral("org.kde.Solid.PowerManagement"),
QStringLiteral("/org/kde/Solid/PowerManagement/Actions/KeyboardBrightnessControl"),
QStringLiteral("org.kde.Solid.PowerManagement.Actions.KeyboardBrightnessControl"),
silent ? "setKeyboardBrightnessSilent" : "setKeyboardBrightness");
msg << value;
QDBusConnection::sessionBus().asyncCall(msg);
}
void PowerManagementJob::requestShutDown()
{
KWorkSpace::requestShutDown();
}