X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fexecwrapper.cpp;h=b5853fe730d7d10112af21b35bf76ec254ef08ee;hp=5adc4596cc403e957892352ae41102ccdd48b019;hb=4037c8e9557da772664a18a953d7c05e463de938;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e diff --git a/src/client/execwrapper.cpp b/src/client/execwrapper.cpp index 5adc4596..b5853fe7 100644 --- a/src/client/execwrapper.cpp +++ b/src/client/execwrapper.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,33 +18,38 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include "execwrapper.h" + #include #include -#include "execwrapper.h" - #include "client.h" #include "messagemodel.h" #include "quassel.h" +#include "util.h" -ExecWrapper::ExecWrapper(QObject *parent) : QObject(parent) +ExecWrapper::ExecWrapper(QObject* parent) + : QObject(parent) { - connect(&_process, SIGNAL(readyReadStandardOutput()), SLOT(processReadStdout())); - connect(&_process, SIGNAL(readyReadStandardError()), SLOT(processReadStderr())); - connect(&_process, SIGNAL(finished(int, QProcess::ExitStatus)), SLOT(processFinished(int, QProcess::ExitStatus))); - connect(&_process, SIGNAL(error(QProcess::ProcessError)), SLOT(processError(QProcess::ProcessError))); - - connect(this, SIGNAL(output(QString)), SLOT(postStdout(QString))); - connect(this, SIGNAL(error(QString)), SLOT(postStderr(QString))); + connect(&_process, &QProcess::readyReadStandardOutput, this, &ExecWrapper::processReadStdout); + connect(&_process, &QProcess::readyReadStandardError, this, &ExecWrapper::processReadStderr); + connect(&_process, selectOverload(&QProcess::finished), this, &ExecWrapper::processFinished); +#if QT_VERSION < QT_VERSION_CHECK(5, 6, 0) + connect(&_process, selectOverload(&QProcess::error), this, &ExecWrapper::processError); +#else + connect(&_process, &QProcess::errorOccurred, this, &ExecWrapper::processError); +#endif + + connect(this, &ExecWrapper::output, this, &ExecWrapper::postStdout); + connect(this, &ExecWrapper::error, this, &ExecWrapper::postStderr); } - -void ExecWrapper::start(const BufferInfo &info, const QString &command) +void ExecWrapper::start(const BufferInfo& info, const QString& command) { _bufferInfo = info; QString params; - QRegExp rx("^\\s*(\\S+)(\\s+(.*))?$"); + QRegExp rx(R"(^\s*(\S+)(\s+(.*))?$)"); if (!rx.exactMatch(command)) { emit error(tr("Invalid command string for /exec: %1").arg(command)); } @@ -55,10 +60,10 @@ void ExecWrapper::start(const BufferInfo &info, const QString &command) // Make sure we don't execute something outside a script dir if (_scriptName.contains("../") || _scriptName.contains("..\\")) - emit error(tr("Name \"%1\" is invalid: ../ or ..\\ are not allowed!").arg(_scriptName)); + emit error(tr(R"(Name "%1" is invalid: ../ or ..\ are not allowed!)").arg(_scriptName)); else { - foreach(QString scriptDir, Quassel::scriptDirPaths()) { + foreach (QString scriptDir, Quassel::scriptDirPaths()) { QString fileName = scriptDir + _scriptName; if (!QFile::exists(fileName)) continue; @@ -69,24 +74,21 @@ void ExecWrapper::start(const BufferInfo &info, const QString &command) emit error(tr("Could not find script \"%1\"").arg(_scriptName)); } - deleteLater(); // self-destruct + deleteLater(); // self-destruct } - -void ExecWrapper::postStdout(const QString &msg) +void ExecWrapper::postStdout(const QString& msg) { if (_bufferInfo.isValid()) Client::userInput(_bufferInfo, msg); } - -void ExecWrapper::postStderr(const QString &msg) +void ExecWrapper::postStderr(const QString& msg) { if (_bufferInfo.isValid()) Client::messageModel()->insertErrorMessage(_bufferInfo, msg); } - void ExecWrapper::processFinished(int exitCode, QProcess::ExitStatus status) { if (status == QProcess::CrashExit) { @@ -95,16 +97,15 @@ void ExecWrapper::processFinished(int exitCode, QProcess::ExitStatus status) // empty buffers if (!_stdoutBuffer.isEmpty()) - foreach(QString msg, _stdoutBuffer.split('\n')) - emit output(msg); + foreach (QString msg, _stdoutBuffer.split('\n')) + emit output(msg); if (!_stderrBuffer.isEmpty()) - foreach(QString msg, _stderrBuffer.split('\n')) - emit error(msg); + foreach (QString msg, _stderrBuffer.split('\n')) + emit error(msg); deleteLater(); } - void ExecWrapper::processError(QProcess::ProcessError err) { if (err == QProcess::FailedToStart) @@ -116,7 +117,6 @@ void ExecWrapper::processError(QProcess::ProcessError err) deleteLater(); } - void ExecWrapper::processReadStdout() { QString str = QTextCodec::codecForLocale()->toUnicode(_process.readAllStandardOutput()); @@ -129,7 +129,6 @@ void ExecWrapper::processReadStdout() } } - void ExecWrapper::processReadStderr() { QString str = QTextCodec::codecForLocale()->toUnicode(_process.readAllStandardError());