Files
qt-creator/src/libs/utils/synchronousprocess.cpp

672 lines
20 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2011-01-11 16:28:15 +01:00
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
2010-12-17 16:01:08 +01:00
** No Commercial Usage
**
2010-12-17 16:01:08 +01:00
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 12:01:29 +01:00
#include "synchronousprocess.h"
#include <qtcassert.h>
2008-12-02 12:01:29 +01:00
#include <QtCore/QDebug>
#include <QtCore/QTimer>
#include <QtCore/QEventLoop>
#include <QtCore/QTextCodec>
#include <QtCore/QFileInfo>
#include <QtCore/QDir>
#include <QtGui/QMessageBox>
2008-12-02 12:01:29 +01:00
#include <QtGui/QApplication>
#include <limits.h>
#ifdef Q_OS_UNIX
# include <unistd.h>
#endif
2008-12-02 12:01:29 +01:00
enum { debug = 0 };
enum { syncDebug = 0 };
2008-12-02 12:01:29 +01:00
enum { defaultMaxHangTimerCount = 10 };
namespace Utils {
// A special QProcess derivative allowing for terminal control.
class TerminalControllingProcess : public QProcess {
public:
TerminalControllingProcess() : m_flags(0) {}
unsigned flags() const { return m_flags; }
void setFlags(unsigned tc) { m_flags = tc; }
protected:
virtual void setupChildProcess();
private:
unsigned m_flags;
};
void TerminalControllingProcess::setupChildProcess()
{
#ifdef Q_OS_UNIX
// Disable terminal by becoming a session leader.
if (m_flags & SynchronousProcess::UnixTerminalDisabled)
setsid();
#endif
}
2008-12-02 12:01:29 +01:00
// ----------- SynchronousProcessResponse
SynchronousProcessResponse::SynchronousProcessResponse() :
result(StartFailed),
exitCode(-1)
{
}
void SynchronousProcessResponse::clear()
{
result = StartFailed;
exitCode = -1;
stdOut.clear();
stdErr.clear();
}
QString SynchronousProcessResponse::exitMessage(const QString &binary, int timeoutMS) const
{
switch (result) {
case Finished:
return SynchronousProcess::tr("The command '%1' finished successfully.").arg(binary);
case FinishedError:
return SynchronousProcess::tr("The command '%1' terminated with exit code %2.").arg(binary).arg(exitCode);
break;
case TerminatedAbnormally:
return SynchronousProcess::tr("The command '%1' terminated abnormally.").arg(binary);
case StartFailed:
return SynchronousProcess::tr("The command '%1' could not be started.").arg(binary);
case Hang:
return SynchronousProcess::tr("The command '%1' did not respond within the timeout limit (%2 ms).").
arg(binary).arg(timeoutMS);
}
return QString();
}
QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug str, const SynchronousProcessResponse& r)
2008-12-02 12:01:29 +01:00
{
QDebug nsp = str.nospace();
nsp << "SynchronousProcessResponse: result=" << r.result << " ex=" << r.exitCode << '\n'
<< r.stdOut.size() << " bytes stdout, stderr=" << r.stdErr << '\n';
return str;
}
// Data for one channel buffer (stderr/stdout)
struct ChannelBuffer {
ChannelBuffer();
void clearForRun();
QByteArray linesRead();
QByteArray data;
bool firstData;
bool bufferedSignalsEnabled;
bool firstBuffer;
int bufferPos;
};
ChannelBuffer::ChannelBuffer() :
firstData(true),
bufferedSignalsEnabled(false),
firstBuffer(true),
bufferPos(0)
{
}
void ChannelBuffer::clearForRun()
{
firstData = true;
firstBuffer = true;
bufferPos = 0;
}
/* Check for complete lines read from the device and return them, moving the
* buffer position. This is based on the assumption that '\n' is the new line
* marker in any sane codec. */
QByteArray ChannelBuffer::linesRead()
{
// Any new lines?
const int lastLineIndex = data.lastIndexOf('\n');
if (lastLineIndex == -1 || lastLineIndex <= bufferPos)
return QByteArray();
const int nextBufferPos = lastLineIndex + 1;
const QByteArray lines = data.mid(bufferPos, nextBufferPos - bufferPos);
bufferPos = nextBufferPos;
return lines;
}
// ----------- SynchronousProcessPrivate
struct SynchronousProcessPrivate {
SynchronousProcessPrivate();
void clearForRun();
QTextCodec *m_stdOutCodec;
TerminalControllingProcess m_process;
2008-12-02 12:01:29 +01:00
QTimer m_timer;
QEventLoop m_eventLoop;
SynchronousProcessResponse m_result;
int m_hangTimerCount;
int m_maxHangTimerCount;
bool m_startFailure;
bool m_timeOutMessageBoxEnabled;
QString m_binary;
2008-12-02 12:01:29 +01:00
ChannelBuffer m_stdOut;
ChannelBuffer m_stdErr;
};
SynchronousProcessPrivate::SynchronousProcessPrivate() :
m_stdOutCodec(0),
m_hangTimerCount(0),
m_maxHangTimerCount(defaultMaxHangTimerCount),
m_startFailure(false),
m_timeOutMessageBoxEnabled(false)
2008-12-02 12:01:29 +01:00
{
}
void SynchronousProcessPrivate::clearForRun()
{
m_hangTimerCount = 0;
m_stdOut.clearForRun();
m_stdErr.clearForRun();
m_result.clear();
m_startFailure = false;
m_binary.clear();
2008-12-02 12:01:29 +01:00
}
// ----------- SynchronousProcess
SynchronousProcess::SynchronousProcess() :
m_d(new SynchronousProcessPrivate)
{
m_d->m_timer.setInterval(1000);
connect(&m_d->m_timer, SIGNAL(timeout()), this, SLOT(slotTimeout()));
connect(&m_d->m_process, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(finished(int,QProcess::ExitStatus)));
connect(&m_d->m_process, SIGNAL(error(QProcess::ProcessError)), this, SLOT(error(QProcess::ProcessError)));
connect(&m_d->m_process, SIGNAL(readyReadStandardOutput()),
this, SLOT(stdOutReady()));
connect(&m_d->m_process, SIGNAL(readyReadStandardError()),
this, SLOT(stdErrReady()));
}
SynchronousProcess::~SynchronousProcess()
{
delete m_d;
}
void SynchronousProcess::setTimeout(int timeoutMS)
{
if (timeoutMS >= 0) {
m_d->m_maxHangTimerCount = qMax(2, timeoutMS / 1000);
} else {
m_d->m_maxHangTimerCount = INT_MAX;
}
2008-12-02 12:01:29 +01:00
}
int SynchronousProcess::timeout() const
{
return m_d->m_maxHangTimerCount == INT_MAX ? -1 : 1000 * m_d->m_maxHangTimerCount;
2008-12-02 12:01:29 +01:00
}
void SynchronousProcess::setStdOutCodec(QTextCodec *c)
{
m_d->m_stdOutCodec = c;
}
QTextCodec *SynchronousProcess::stdOutCodec() const
{
return m_d->m_stdOutCodec;
}
bool SynchronousProcess::stdOutBufferedSignalsEnabled() const
{
return m_d->m_stdOut.bufferedSignalsEnabled;
}
void SynchronousProcess::setStdOutBufferedSignalsEnabled(bool v)
{
m_d->m_stdOut.bufferedSignalsEnabled = v;
}
bool SynchronousProcess::stdErrBufferedSignalsEnabled() const
{
return m_d->m_stdErr.bufferedSignalsEnabled;
}
void SynchronousProcess::setStdErrBufferedSignalsEnabled(bool v)
{
m_d->m_stdErr.bufferedSignalsEnabled = v;
}
QStringList SynchronousProcess::environment() const
{
return m_d->m_process.environment();
}
bool SynchronousProcess::timeOutMessageBoxEnabled() const
{
return m_d->m_timeOutMessageBoxEnabled;
}
void SynchronousProcess::setTimeOutMessageBoxEnabled(bool v)
{
m_d->m_timeOutMessageBoxEnabled = v;
}
2008-12-02 12:01:29 +01:00
void SynchronousProcess::setEnvironment(const QStringList &e)
{
m_d->m_process.setEnvironment(e);
}
void SynchronousProcess::setProcessEnvironment(const QProcessEnvironment &environment)
{
m_d->m_process.setProcessEnvironment(environment);
}
QProcessEnvironment SynchronousProcess::processEnvironment() const
{
return m_d->m_process.processEnvironment();
}
unsigned SynchronousProcess::flags() const
{
return m_d->m_process.flags();
}
void SynchronousProcess::setFlags(unsigned tc)
{
m_d->m_process.setFlags(tc);
}
void SynchronousProcess::setWorkingDirectory(const QString &workingDirectory)
{
m_d->m_process.setWorkingDirectory(workingDirectory);
}
QString SynchronousProcess::workingDirectory() const
{
return m_d->m_process.workingDirectory();
}
QProcess::ProcessChannelMode SynchronousProcess::processChannelMode () const
{
return m_d->m_process.processChannelMode();
}
void SynchronousProcess::setProcessChannelMode(QProcess::ProcessChannelMode m)
{
m_d->m_process.setProcessChannelMode(m);
}
2008-12-02 12:01:29 +01:00
SynchronousProcessResponse SynchronousProcess::run(const QString &binary,
const QStringList &args)
{
if (debug)
qDebug() << '>' << Q_FUNC_INFO << binary << args;
m_d->clearForRun();
// On Windows, start failure is triggered immediately if the
// executable cannot be found in the path. Do not start the
// event loop in that case.
m_d->m_binary = binary;
2008-12-02 12:01:29 +01:00
m_d->m_process.start(binary, args, QIODevice::ReadOnly);
if (!m_d->m_startFailure) {
m_d->m_timer.start();
QApplication::setOverrideCursor(Qt::WaitCursor);
m_d->m_eventLoop.exec(QEventLoop::ExcludeUserInputEvents);
if (m_d->m_result.result == SynchronousProcessResponse::Finished || m_d->m_result.result == SynchronousProcessResponse::FinishedError) {
processStdOut(false);
processStdErr(false);
}
m_d->m_result.stdOut = convertStdOut(m_d->m_stdOut.data);
m_d->m_result.stdErr = convertStdErr(m_d->m_stdErr.data);
m_d->m_timer.stop();
QApplication::restoreOverrideCursor();
2008-12-02 12:01:29 +01:00
}
if (debug)
qDebug() << '<' << Q_FUNC_INFO << binary << m_d->m_result;
return m_d->m_result;
}
static inline bool askToKill(const QString &binary = QString())
{
const QString title = SynchronousProcess::tr("Process not Responding");
QString msg = binary.isEmpty() ?
SynchronousProcess::tr("The process is not responding.") :
SynchronousProcess::tr("The process '%1' is not responding.").arg(binary);
msg += QLatin1Char(' ');
2010-09-29 12:48:00 +02:00
msg += SynchronousProcess::tr("Would you like to terminate it?");
// Restore the cursor that is set to wait while running.
const bool hasOverrideCursor = QApplication::overrideCursor() != 0;
if (hasOverrideCursor)
QApplication::restoreOverrideCursor();
QMessageBox::StandardButton answer = QMessageBox::question(0, title, msg, QMessageBox::Yes|QMessageBox::No);
if (hasOverrideCursor)
QApplication::setOverrideCursor(Qt::WaitCursor);
return answer == QMessageBox::Yes;
}
2008-12-02 12:01:29 +01:00
void SynchronousProcess::slotTimeout()
{
if (++m_d->m_hangTimerCount > m_d->m_maxHangTimerCount) {
if (debug)
qDebug() << Q_FUNC_INFO << "HANG detected, killing";
const bool terminate = !m_d->m_timeOutMessageBoxEnabled || askToKill(m_d->m_binary);
if (terminate) {
SynchronousProcess::stopProcess(m_d->m_process);
m_d->m_result.result = SynchronousProcessResponse::Hang;
} else {
m_d->m_hangTimerCount = 0;
}
} else {
if (debug)
qDebug() << Q_FUNC_INFO << m_d->m_hangTimerCount;
2008-12-02 12:01:29 +01:00
}
}
void SynchronousProcess::finished(int exitCode, QProcess::ExitStatus e)
{
if (debug)
qDebug() << Q_FUNC_INFO << exitCode << e;
m_d->m_hangTimerCount = 0;
switch (e) {
case QProcess::NormalExit:
m_d->m_result.result = exitCode ? SynchronousProcessResponse::FinishedError : SynchronousProcessResponse::Finished;
m_d->m_result.exitCode = exitCode;
break;
case QProcess::CrashExit:
// Was hang detected before and killed?
if (m_d->m_result.result != SynchronousProcessResponse::Hang)
m_d->m_result.result = SynchronousProcessResponse::TerminatedAbnormally;
2008-12-02 12:01:29 +01:00
m_d->m_result.exitCode = -1;
break;
}
m_d->m_eventLoop.quit();
}
void SynchronousProcess::error(QProcess::ProcessError e)
{
m_d->m_hangTimerCount = 0;
if (debug)
qDebug() << Q_FUNC_INFO << e;
// Was hang detected before and killed?
if (m_d->m_result.result != SynchronousProcessResponse::Hang)
m_d->m_result.result = SynchronousProcessResponse::StartFailed;
m_d->m_startFailure = true;
2008-12-02 12:01:29 +01:00
m_d->m_eventLoop.quit();
}
void SynchronousProcess::stdOutReady()
{
m_d->m_hangTimerCount = 0;
processStdOut(true);
}
void SynchronousProcess::stdErrReady()
{
m_d->m_hangTimerCount = 0;
processStdErr(true);
}
QString SynchronousProcess::convertStdErr(const QByteArray &ba)
{
return QString::fromLocal8Bit(ba.constData(), ba.size()).remove(QLatin1Char('\r'));
2008-12-02 12:01:29 +01:00
}
QString SynchronousProcess::convertStdOut(const QByteArray &ba) const
{
QString stdOut = m_d->m_stdOutCodec ? m_d->m_stdOutCodec->toUnicode(ba) : QString::fromLocal8Bit(ba.constData(), ba.size());
2008-12-02 12:01:29 +01:00
return stdOut.remove(QLatin1Char('\r'));
}
void SynchronousProcess::processStdOut(bool emitSignals)
{
// Handle binary data
const QByteArray ba = m_d->m_process.readAllStandardOutput();
if (debug > 1)
qDebug() << Q_FUNC_INFO << emitSignals << ba;
if (!ba.isEmpty()) {
m_d->m_stdOut.data += ba;
if (emitSignals) {
// Emit binary signals
emit stdOut(ba, m_d->m_stdOut.firstData);
m_d->m_stdOut.firstData = false;
// Buffered. Emit complete lines?
if (m_d->m_stdOut.bufferedSignalsEnabled) {
const QByteArray lines = m_d->m_stdOut.linesRead();
if (!lines.isEmpty()) {
emit stdOutBuffered(convertStdOut(lines), m_d->m_stdOut.firstBuffer);
m_d->m_stdOut.firstBuffer = false;
}
}
}
}
}
void SynchronousProcess::processStdErr(bool emitSignals)
{
// Handle binary data
const QByteArray ba = m_d->m_process.readAllStandardError();
if (debug > 1)
qDebug() << Q_FUNC_INFO << emitSignals << ba;
if (!ba.isEmpty()) {
m_d->m_stdErr.data += ba;
if (emitSignals) {
// Emit binary signals
emit stdErr(ba, m_d->m_stdErr.firstData);
m_d->m_stdErr.firstData = false;
if (m_d->m_stdErr.bufferedSignalsEnabled) {
// Buffered. Emit complete lines?
const QByteArray lines = m_d->m_stdErr.linesRead();
if (!lines.isEmpty()) {
emit stdErrBuffered(convertStdErr(lines), m_d->m_stdErr.firstBuffer);
m_d->m_stdErr.firstBuffer = false;
}
}
}
}
}
QSharedPointer<QProcess> SynchronousProcess::createProcess(unsigned flags)
{
TerminalControllingProcess *process = new TerminalControllingProcess;
process->setFlags(flags);
return QSharedPointer<QProcess>(process);
}
// Static utilities: Keep running as long as it gets data.
bool SynchronousProcess::readDataFromProcess(QProcess &p, int timeOutMS,
QByteArray *stdOut, QByteArray *stdErr,
bool showTimeOutMessageBox)
{
if (syncDebug)
qDebug() << ">readDataFromProcess" << timeOutMS;
if (p.state() != QProcess::Running) {
qWarning("readDataFromProcess: Process in non-running state passed in.");
return false;
}
QTC_ASSERT(p.readChannel() == QProcess::StandardOutput, return false)
// Keep the process running until it has no longer has data
bool finished = false;
bool hasData = false;
do {
finished = p.waitForFinished(timeOutMS);
hasData = false;
// First check 'stdout'
if (p.bytesAvailable()) { // applies to readChannel() only
hasData = true;
const QByteArray newStdOut = p.readAllStandardOutput();
if (stdOut)
stdOut->append(newStdOut);
}
// Check 'stderr' separately. This is a special handling
// for 'git pull' and the like which prints its progress on stderr.
const QByteArray newStdErr = p.readAllStandardError();
if (!newStdErr.isEmpty()) {
hasData = true;
if (stdErr)
stdErr->append(newStdErr);
}
// Prompt user, pretend we have data if says 'No'.
const bool hang = !hasData && !finished;
if (hang && showTimeOutMessageBox) {
if (!askToKill())
hasData = true;
}
} while (hasData && !finished);
if (syncDebug)
qDebug() << "<readDataFromProcess" << finished;
return finished;
}
bool SynchronousProcess::stopProcess(QProcess &p)
{
if (p.state() != QProcess::Running)
return true;
p.terminate();
if (p.waitForFinished(300))
return true;
p.kill();
return p.waitForFinished(300);
}
// Path utilities
enum OS_Type { OS_Mac, OS_Windows, OS_Unix };
#ifdef Q_OS_WIN
static const OS_Type pathOS = OS_Windows;
#else
# ifdef Q_OS_MAC
static const OS_Type pathOS = OS_Mac;
# else
static const OS_Type pathOS = OS_Unix;
# endif
#endif
// Locate a binary in a directory, applying all kinds of
// extensions the operating system supports.
static QString checkBinary(const QDir &dir, const QString &binary)
{
// naive UNIX approach
const QFileInfo info(dir.filePath(binary));
if (info.isFile() && info.isExecutable())
return info.absoluteFilePath();
// Does the OS have some weird extension concept or does the
// binary have a 3 letter extension?
if (pathOS == OS_Unix)
return QString();
const int dotIndex = binary.lastIndexOf(QLatin1Char('.'));
if (dotIndex != -1 && dotIndex == binary.size() - 4)
return QString();
switch (pathOS) {
case OS_Unix:
break;
case OS_Windows: {
static const char *windowsExtensions[] = {".cmd", ".bat", ".exe", ".com" };
// Check the Windows extensions using the order
const int windowsExtensionCount = sizeof(windowsExtensions)/sizeof(const char*);
for (int e = 0; e < windowsExtensionCount; e ++) {
const QFileInfo windowsBinary(dir.filePath(binary + QLatin1String(windowsExtensions[e])));
if (windowsBinary.isFile() && windowsBinary.isExecutable())
return windowsBinary.absoluteFilePath();
}
}
break;
case OS_Mac: {
// Check for Mac app folders
const QFileInfo appFolder(dir.filePath(binary + QLatin1String(".app")));
if (appFolder.isDir()) {
QString macBinaryPath = appFolder.absoluteFilePath();
macBinaryPath += QLatin1String("/Contents/MacOS/");
macBinaryPath += binary;
const QFileInfo macBinary(macBinaryPath);
if (macBinary.isFile() && macBinary.isExecutable())
return macBinary.absoluteFilePath();
}
}
break;
}
return QString();
}
QString SynchronousProcess::locateBinary(const QString &path, const QString &binary)
{
// Absolute file?
const QFileInfo absInfo(binary);
if (absInfo.isAbsolute())
return checkBinary(absInfo.dir(), absInfo.fileName());
// Windows finds binaries in the current directory
if (pathOS == OS_Windows) {
const QString currentDirBinary = checkBinary(QDir::current(), binary);
if (!currentDirBinary.isEmpty())
return currentDirBinary;
}
const QStringList paths = path.split(pathSeparator());
if (paths.empty())
return QString();
const QStringList::const_iterator cend = paths.constEnd();
for (QStringList::const_iterator it = paths.constBegin(); it != cend; ++it) {
const QDir dir(*it);
const QString rc = checkBinary(dir, binary);
if (!rc.isEmpty())
return rc;
}
return QString();
}
QString SynchronousProcess::locateBinary(const QString &binary)
{
const QByteArray path = qgetenv("PATH");
return locateBinary(QString::fromLocal8Bit(path), binary);
}
QChar SynchronousProcess::pathSeparator()
{
if (pathOS == OS_Windows)
return QLatin1Char(';');
return QLatin1Char(':');
}
2008-12-02 14:09:21 +01:00
} // namespace Utils