mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
106 lines
3.8 KiB
C++
106 lines
3.8 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (C) 2021 Ivailo Monev <xakepa10@gmail.com>
|
|
|
|
This library 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 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <QDBusInterface>
|
|
#include <QDBusReply>
|
|
#include <KDebug>
|
|
#include <KIcon>
|
|
#include <KMessageBox>
|
|
|
|
#include "krunner_kemu.h"
|
|
|
|
KEmuControlRunner::KEmuControlRunner(QObject *parent, const QVariantList& args)
|
|
: Plasma::AbstractRunner(parent, args)
|
|
{
|
|
Q_UNUSED(args);
|
|
|
|
setObjectName("QEMU virtual machine manager runner");
|
|
setSpeed(AbstractRunner::SlowSpeed);
|
|
|
|
KGlobal::locale()->insertCatalog("kemu");
|
|
|
|
setIgnoredTypes(Plasma::RunnerContext::FileSystem | Plasma::RunnerContext::NetworkLocation);
|
|
|
|
addSyntax(Plasma::RunnerSyntax("vm start", i18n("Starts virtual machine")));
|
|
addSyntax(Plasma::RunnerSyntax("vm stop", i18n("Stops virtual machine")));
|
|
}
|
|
|
|
KEmuControlRunner::~KEmuControlRunner()
|
|
{
|
|
}
|
|
|
|
void KEmuControlRunner::match(Plasma::RunnerContext &context)
|
|
{
|
|
const QString term = context.query();
|
|
if (term.length() < 7) {
|
|
return;
|
|
}
|
|
|
|
QDBusInterface interface("org.kde.kded", "/modules/kemu", "org.kde.kemu");
|
|
const QStringList machines = interface.call("machines").arguments().at(0).toStringList();
|
|
if (term == "vm start") {
|
|
foreach (const QString &machine, machines) {
|
|
const bool isrunning = interface.call("isRunning", machine).arguments().at(0).toBool();
|
|
if (!isrunning) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setIcon(KIcon("system-run"));
|
|
match.setText(i18n("Start %1 virtual machine", machine));
|
|
match.setData(QStringList() << "start" << machine);
|
|
context.addMatch(match);
|
|
}
|
|
}
|
|
} else if (term == "vm stop") {
|
|
foreach (const QString &machine, machines) {
|
|
const bool isrunning = interface.call("isRunning", machine).arguments().at(0).toBool();
|
|
if (isrunning) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setIcon(KIcon("system-shutdown"));
|
|
match.setText(i18n("Stop %1 virtual machine", machine));
|
|
match.setData(QStringList() << "stop" << machine);
|
|
context.addMatch(match);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void KEmuControlRunner::run(const Plasma::QueryMatch &match)
|
|
{
|
|
const QStringList data = match.data().toStringList();
|
|
Q_ASSERT(data.size() == 2);
|
|
const QString command = data.at(0);
|
|
const QString machine = data.at(1);
|
|
|
|
QDBusInterface interface("org.kde.kded", "/modules/kemu", "org.kde.kemu");
|
|
if (command == "start") {
|
|
QDBusReply<bool> reply = interface.call("start", machine);
|
|
if (!reply.value()) {
|
|
KMessageBox::error(nullptr, i18n("Unable to start VM"),
|
|
i18n("Unable to start %1 virtual machine.", machine));
|
|
}
|
|
} else if (command == "stop") {
|
|
QDBusReply<bool> reply = interface.call("stop", machine);
|
|
if (!reply.value()) {
|
|
KMessageBox::error(nullptr, i18n("Unable to stop VM"),
|
|
i18n("Unable to stop %1 virtual machine.", machine));
|
|
}
|
|
} else {
|
|
kWarning() << "invalid command" << command;
|
|
}
|
|
}
|
|
|
|
#include "moc_krunner_kemu.cpp"
|