This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcmd.cpp
44 lines (39 loc) · 1.4 KB
/
cmd.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "cmd.h"
#include <QDebug>
#include <QEventLoop>
Cmd::Cmd(QObject *parent)
: QProcess(parent)
{
connect(this, &Cmd::readyReadStandardOutput, [this] { emit outputAvailable(readAllStandardOutput()); });
connect(this, &Cmd::readyReadStandardError, [this] { emit errorAvailable(readAllStandardError()); });
connect(this, &Cmd::outputAvailable, [this](const QString &out) { out_buffer += out; });
connect(this, &Cmd::errorAvailable, [this](const QString &out) { out_buffer += out; });
}
bool Cmd::run(const QString &cmd, bool quiet)
{
QString output;
return run(cmd, &output, quiet);
}
QString Cmd::getCmdOut(const QString &cmd, bool quiet)
{
QString output;
run(cmd, &output, quiet);
return output;
}
bool Cmd::run(const QString &cmd, QString *output, bool quiet)
{
out_buffer.clear();
connect(this, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &Cmd::finished);
if (this->state() != QProcess::NotRunning) {
qDebug() << "Process already running:" << this->program() << this->arguments();
return false;
}
if (!quiet)
qDebug().noquote() << cmd;
QEventLoop loop;
connect(this, &Cmd::finished, &loop, &QEventLoop::quit);
start(QStringLiteral("/bin/bash"), {QStringLiteral("-c"), cmd});
loop.exec();
*output = out_buffer.trimmed();
return (exitStatus() == QProcess::NormalExit && exitCode() == 0);
}