2011-03-04 12:15:18 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Author: Milian Wolff, KDAB (milian.wolff@kdab.com)
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-03-04 12:15:18 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2011-03-04 12:15:18 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef VALGRIND_RUNNER_P_H
|
|
|
|
|
#define VALGRIND_RUNNER_P_H
|
|
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
#include "valgrind_global.h"
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
#include <utils/qtcprocess.h>
|
2011-04-04 14:39:27 +02:00
|
|
|
#include <utils/ssh/sshremoteprocess.h>
|
|
|
|
|
#include <utils/ssh/sshconnection.h>
|
2011-06-10 16:34:06 +02:00
|
|
|
#include <utils/outputformat.h>
|
2011-04-04 14:39:27 +02:00
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
namespace Valgrind {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Abstract process that can be subclassed to supply local and remote valgrind runs
|
|
|
|
|
*/
|
2011-04-04 14:39:27 +02:00
|
|
|
class VALGRINDSHARED_EXPORT ValgrindProcess : public QObject
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2011-05-18 17:05:49 +02:00
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
public:
|
|
|
|
|
explicit ValgrindProcess(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
virtual bool isRunning() const = 0;
|
|
|
|
|
|
|
|
|
|
virtual void run(const QString &valgrindExecutable, const QStringList &valgrindArguments,
|
|
|
|
|
const QString &debuggeeExecutable, const QString &debuggeeArguments) = 0;
|
|
|
|
|
virtual void close() = 0;
|
|
|
|
|
|
|
|
|
|
virtual QString errorString() const = 0;
|
|
|
|
|
virtual QProcess::ProcessError error() const = 0;
|
|
|
|
|
|
|
|
|
|
virtual void setProcessChannelMode(QProcess::ProcessChannelMode mode) = 0;
|
|
|
|
|
virtual void setWorkingDirectory(const QString &path) = 0;
|
2011-04-04 14:39:27 +02:00
|
|
|
virtual QString workingDirectory() const = 0;
|
2011-03-04 12:15:18 +01:00
|
|
|
virtual void setEnvironment(const Utils::Environment &environment) = 0;
|
|
|
|
|
|
2011-04-04 14:39:27 +02:00
|
|
|
virtual Q_PID pid() const = 0;
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
signals:
|
|
|
|
|
void started();
|
|
|
|
|
void finished(int, QProcess::ExitStatus);
|
|
|
|
|
void error(QProcess::ProcessError);
|
2011-06-10 16:34:06 +02:00
|
|
|
void processOutput(const QByteArray &, Utils::OutputFormat format);
|
2011-03-04 12:15:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Run valgrind on the local machine
|
|
|
|
|
*/
|
2011-04-04 14:39:27 +02:00
|
|
|
class VALGRINDSHARED_EXPORT LocalValgrindProcess : public ValgrindProcess
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit LocalValgrindProcess(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
virtual bool isRunning() const;
|
|
|
|
|
|
|
|
|
|
virtual void run(const QString &valgrindExecutable, const QStringList &valgrindArguments,
|
|
|
|
|
const QString &debuggeeExecutable, const QString &debuggeeArguments);
|
|
|
|
|
virtual void close();
|
|
|
|
|
|
|
|
|
|
virtual QString errorString() const;
|
|
|
|
|
QProcess::ProcessError error() const;
|
|
|
|
|
|
|
|
|
|
virtual void setProcessChannelMode(QProcess::ProcessChannelMode mode);
|
|
|
|
|
virtual void setWorkingDirectory(const QString &path);
|
2011-04-04 14:39:27 +02:00
|
|
|
virtual QString workingDirectory() const;
|
2011-03-04 12:15:18 +01:00
|
|
|
virtual void setEnvironment(const Utils::Environment &environment);
|
|
|
|
|
|
2011-04-04 14:39:27 +02:00
|
|
|
virtual Q_PID pid() const;
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void readyReadStandardError();
|
|
|
|
|
void readyReadStandardOutput();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Utils::QtcProcess m_process;
|
2011-04-04 14:39:27 +02:00
|
|
|
Q_PID m_pid;
|
2011-03-04 12:15:18 +01:00
|
|
|
};
|
|
|
|
|
|
2011-04-04 14:39:27 +02:00
|
|
|
/**
|
|
|
|
|
* Run valgrind on a remote machine via SSH
|
|
|
|
|
*/
|
|
|
|
|
class VALGRINDSHARED_EXPORT RemoteValgrindProcess : public ValgrindProcess
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit RemoteValgrindProcess(const Utils::SshConnectionParameters &sshParams,
|
|
|
|
|
QObject *parent = 0);
|
|
|
|
|
explicit RemoteValgrindProcess(const Utils::SshConnection::Ptr &connection,
|
|
|
|
|
QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
virtual bool isRunning() const;
|
|
|
|
|
|
|
|
|
|
virtual void run(const QString &valgrindExecutable, const QStringList &valgrindArguments,
|
|
|
|
|
const QString &debuggeeExecutable, const QString &debuggeeArguments);
|
|
|
|
|
virtual void close();
|
|
|
|
|
|
|
|
|
|
virtual QString errorString() const;
|
|
|
|
|
QProcess::ProcessError error() const;
|
|
|
|
|
|
|
|
|
|
virtual void setProcessChannelMode(QProcess::ProcessChannelMode mode);
|
|
|
|
|
virtual void setWorkingDirectory(const QString &path);
|
|
|
|
|
virtual QString workingDirectory() const;
|
|
|
|
|
virtual void setEnvironment(const Utils::Environment &environment);
|
|
|
|
|
|
|
|
|
|
virtual Q_PID pid() const;
|
|
|
|
|
|
|
|
|
|
Utils::SshConnection::Ptr connection() const;
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void closed(int);
|
|
|
|
|
void connected();
|
|
|
|
|
void error(Utils::SshError error);
|
|
|
|
|
void processStarted();
|
|
|
|
|
void findPIDOutputReceived(const QByteArray &output);
|
2011-06-10 16:34:06 +02:00
|
|
|
void standardOutput(const QByteArray &output);
|
|
|
|
|
void standardError(const QByteArray &output);
|
2011-04-04 14:39:27 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Utils::SshConnectionParameters m_params;
|
|
|
|
|
Utils::SshConnection::Ptr m_connection;
|
|
|
|
|
Utils::SshRemoteProcess::Ptr m_process;
|
|
|
|
|
QString m_workingDir;
|
|
|
|
|
QString m_valgrindExe;
|
|
|
|
|
QStringList m_valgrindArgs;
|
|
|
|
|
QString m_debuggee;
|
|
|
|
|
QString m_debuggeeArgs;
|
|
|
|
|
QString m_errorString;
|
|
|
|
|
QProcess::ProcessError m_error;
|
|
|
|
|
Q_PID m_pid;
|
|
|
|
|
Utils::SshRemoteProcess::Ptr m_findPID;
|
|
|
|
|
};
|
2011-03-04 12:15:18 +01:00
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
} // namespace Valgrind
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
#endif // VALGRIND_RUNNER_P_H
|