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.
65 lines
1.9 KiB
65 lines
1.9 KiB
/* |
|
SPDX-FileCopyrightText: 2007, 2008 Petri Damsten <damu@iki.fi> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-only |
|
*/ |
|
|
|
#include "executable.h" |
|
#include <QDebug> |
|
ExecutableContainer::ExecutableContainer(const QString &command, QObject *parent) |
|
: Plasma::DataContainer(parent) |
|
, m_process(nullptr) |
|
{ |
|
setObjectName(command); |
|
connect(this, &Plasma::DataContainer::updateRequested, this, &ExecutableContainer::exec); |
|
exec(); |
|
} |
|
|
|
ExecutableContainer::~ExecutableContainer() |
|
{ |
|
if (m_process) { |
|
disconnect(m_process, nullptr, this, nullptr); |
|
} |
|
delete m_process; |
|
} |
|
|
|
void ExecutableContainer::finished(int exitCode, QProcess::ExitStatus exitStatus) |
|
{ |
|
setData(QStringLiteral("exit code"), exitCode); |
|
setData(QStringLiteral("exit status"), exitStatus); |
|
setData(QStringLiteral("stdout"), QString::fromLocal8Bit(m_process->readAllStandardOutput())); |
|
setData(QStringLiteral("stderr"), QString::fromLocal8Bit(m_process->readAllStandardError())); |
|
checkForUpdate(); |
|
} |
|
|
|
void ExecutableContainer::exec() |
|
{ |
|
if (!m_process) { |
|
m_process = new KProcess(); |
|
connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finished(int, QProcess::ExitStatus))); |
|
m_process->setOutputChannelMode(KProcess::SeparateChannels); |
|
m_process->setShellCommand(objectName()); |
|
} |
|
|
|
if (m_process->state() == QProcess::NotRunning) { |
|
m_process->start(); |
|
} else { |
|
qDebug() << "Process" << objectName() << "already running. Pid:" << m_process->pid(); |
|
} |
|
} |
|
|
|
ExecutableEngine::ExecutableEngine(QObject *parent, const QVariantList &args) |
|
: Plasma::DataEngine(parent, args) |
|
{ |
|
setMinimumPollingInterval(1000); |
|
} |
|
|
|
bool ExecutableEngine::sourceRequestEvent(const QString &source) |
|
{ |
|
addSource(new ExecutableContainer(source, this)); |
|
return true; |
|
} |
|
|
|
K_PLUGIN_CLASS_WITH_JSON(ExecutableEngine, "plasma-dataengine-executable.json") |
|
|
|
#include "executable.moc"
|
|
|