kde-workspace/plasma/dataengines/mpris2/playeractionjob.cpp
Ivailo Monev efbde9e504 plasma: organize sub-directories
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-12-24 22:48:47 +02:00

180 lines
6.7 KiB
C++

/*
* Copyright 2008 Alex Merry <alex.merry@kdemail.net>
*
* This library 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.1 of the License, or (at your option) any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
#include "playeractionjob.h"
#include "playercontrol.h"
#include <dbusproperties.h>
#include <mprisplayer.h>
#include <mprisroot.h>
#include <QtDBus/qdbuspendingcall.h>
#include <QDBusPendingReply>
#include <QtDBus/qdbusextratypes.h>
#include <kdebug.h>
PlayerActionJob::PlayerActionJob(const QString& operation,
QMap<QString,QVariant>& parameters,
PlayerControl* parent)
: ServiceJob(parent->name() + ": " + operation, operation, parameters, parent)
, m_controller(parent)
{
}
void PlayerActionJob::start()
{
const QString operation(operationName());
kDebug() << "Trying to perform the action" << operationName();
if (!m_controller->isOperationEnabled(operation)) {
setError(Denied);
emitResult();
return;
}
if (operation == QLatin1String("Quit") || operation == QLatin1String("Raise")
|| operation == QLatin1String("SetFullscreen")) {
listenToCall(m_controller->rootInterface()->asyncCall(operation));
} else if (operation == QLatin1String("Play")
|| operation == QLatin1String("Pause")
|| operation == QLatin1String("PlayPause")
|| operation == QLatin1String("Stop")
|| operation == QLatin1String("Next")
|| operation == QLatin1String("Previous")) {
listenToCall(m_controller->playerInterface()->asyncCall(operation));
} else if (operation == "Seek") {
if (parameters().value("microseconds").type() == QVariant::LongLong) {
listenToCall(m_controller->playerInterface()->Seek(parameters()["microseconds"].toLongLong()));
} else {
setErrorText("microseconds");
setError(MissingArgument);
emitResult();
}
} else if (operation == "SetPosition") {
if (parameters().value("microseconds").type() == QVariant::LongLong) {
listenToCall(m_controller->playerInterface()->SetPosition(
m_controller->trackId(),
parameters()["microseconds"].toLongLong()));
} else {
setErrorText("microseconds");
setError(MissingArgument);
emitResult();
}
} else if (operation == "OpenUri") {
if (parameters().value("uri").canConvert<KUrl>()) {
listenToCall(m_controller->playerInterface()->OpenUri(
QString::fromLatin1(parameters()["uri"].toUrl().toEncoded())));
} else {
kDebug() << "uri was of type" << parameters().value("uri").userType();
setErrorText("uri");
setError(MissingArgument);
emitResult();
}
} else if (operation == "SetLoopStatus") {
if (parameters().value("status").type() == QVariant::String) {
setDBusProperty(m_controller->playerInterface()->interface(),
"LoopStatus", QDBusVariant(parameters()["status"]));
} else {
setErrorText("status");
setError(MissingArgument);
emitResult();
}
} else if (operation == "SetShuffle") {
if (parameters().value("on").type() == QVariant::Bool) {
setDBusProperty(m_controller->playerInterface()->interface(),
"Shuffle", QDBusVariant(parameters()["on"]));
} else {
setErrorText("on");
setError(MissingArgument);
emitResult();
}
} else if (operation == "SetRate") {
if (parameters().value("rate").type() == QVariant::Double) {
setDBusProperty(m_controller->playerInterface()->interface(),
"Rate", QDBusVariant(parameters()["rate"]));
} else {
setErrorText("rate");
setError(MissingArgument);
emitResult();
}
} else if (operation == "SetVolume") {
if (parameters().value("level").type() == QVariant::Double) {
setDBusProperty(m_controller->playerInterface()->interface(),
"Volume", QDBusVariant(parameters()["level"]));
} else {
setErrorText("level");
setError(MissingArgument);
emitResult();
}
} else {
setError(UnknownOperation);
emitResult();
}
}
void PlayerActionJob::listenToCall(const QDBusPendingCall& call)
{
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);
connect(watcher, SIGNAL(finished(QDBusPendingCallWatcher*)),
this, SLOT(callFinished(QDBusPendingCallWatcher*)));
}
void PlayerActionJob::callFinished(QDBusPendingCallWatcher* watcher)
{
QDBusPendingReply<void> result = *watcher;
watcher->deleteLater();
if (result.isError()) {
// FIXME: try to be a bit cleverer with the error message?
setError(Failed);
setErrorText(result.error().message());
} else {
setError(NoError);
}
emitResult();
}
void PlayerActionJob::setDBusProperty(const QString& iface, const QString& propName, const QDBusVariant& value)
{
listenToCall(
m_controller->propertiesInterface()->Set(iface, propName, value)
);
}
QString PlayerActionJob::errorString() const
{
if (error() == Denied) {
return i18n("The media player '%1' cannot perform the action '%2'.", m_controller->name(), operationName());
} else if (error() == Failed) {
return i18n("Attempting to perform the action '%1' failed with the message '%2'.",
operationName(), errorText());
} else if (error() == MissingArgument) {
return i18n("The argument '%1' for the action '%2' is missing or of the wrong type.", operationName(), errorText());
} else if (error() == UnknownOperation) {
return i18n("The operation '%1' is unknown.", operationName());
}
return i18n("Unknown error.");
}
#include "moc_playeractionjob.cpp"
// vim: sw=4 sts=4 et tw=100