2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-03-04 12:15:18 +01:00
|
|
|
** Author: Milian Wolff, KDAB (milian.wolff@kdab.com)
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-03-04 12:15:18 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
#ifndef VALGRIND_RUNNER_P_H
|
|
|
|
|
#define VALGRIND_RUNNER_P_H
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcprocess.h>
|
2012-05-18 10:49:35 +02:00
|
|
|
#include <ssh/sshremoteprocess.h>
|
|
|
|
|
#include <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-07-05 10:40:37 +02:00
|
|
|
class 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-07-05 10:40:37 +02:00
|
|
|
virtual qint64 pid() const = 0;
|
2011-04-04 14:39:27 +02:00
|
|
|
|
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-07-05 10:40:37 +02:00
|
|
|
class 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-07-05 10:40:37 +02:00
|
|
|
virtual qint64 pid() const;
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void readyReadStandardError();
|
|
|
|
|
void readyReadStandardOutput();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Utils::QtcProcess m_process;
|
2011-07-05 10:40:37 +02:00
|
|
|
qint64 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
|
|
|
|
|
*/
|
2011-07-05 10:40:37 +02:00
|
|
|
class RemoteValgrindProcess : public ValgrindProcess
|
2011-04-04 14:39:27 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2012-05-18 10:49:35 +02:00
|
|
|
explicit RemoteValgrindProcess(const QSsh::SshConnectionParameters &sshParams,
|
2011-04-04 14:39:27 +02:00
|
|
|
QObject *parent = 0);
|
2012-05-29 13:22:33 +02:00
|
|
|
explicit RemoteValgrindProcess(QSsh::SshConnection *connection,
|
2011-04-04 14:39:27 +02:00
|
|
|
QObject *parent = 0);
|
2012-05-29 13:22:33 +02:00
|
|
|
~RemoteValgrindProcess();
|
2011-04-04 14:39:27 +02:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
2011-07-05 10:40:37 +02:00
|
|
|
virtual qint64 pid() const;
|
2011-04-04 14:39:27 +02:00
|
|
|
|
2012-05-29 13:22:33 +02:00
|
|
|
QSsh::SshConnection *connection() const;
|
2011-04-04 14:39:27 +02:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void closed(int);
|
|
|
|
|
void connected();
|
2012-05-18 10:49:35 +02:00
|
|
|
void error(QSsh::SshError error);
|
2011-04-04 14:39:27 +02:00
|
|
|
void processStarted();
|
2011-11-14 17:23:51 +01:00
|
|
|
void findPIDOutputReceived();
|
|
|
|
|
void standardOutput();
|
|
|
|
|
void standardError();
|
2011-04-04 14:39:27 +02:00
|
|
|
|
|
|
|
|
private:
|
2012-05-18 10:49:35 +02:00
|
|
|
QSsh::SshConnectionParameters m_params;
|
2012-05-29 13:22:33 +02:00
|
|
|
QSsh::SshConnection *m_connection;
|
2012-05-18 10:49:35 +02:00
|
|
|
QSsh::SshRemoteProcess::Ptr m_process;
|
2011-04-04 14:39:27 +02:00
|
|
|
QString m_workingDir;
|
|
|
|
|
QString m_valgrindExe;
|
|
|
|
|
QStringList m_valgrindArgs;
|
|
|
|
|
QString m_debuggee;
|
|
|
|
|
QString m_debuggeeArgs;
|
|
|
|
|
QString m_errorString;
|
|
|
|
|
QProcess::ProcessError m_error;
|
2011-07-05 10:40:37 +02:00
|
|
|
qint64 m_pid;
|
2012-05-18 10:49:35 +02:00
|
|
|
QSsh::SshRemoteProcess::Ptr m_findPID;
|
2011-04-04 14:39:27 +02:00
|
|
|
};
|
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
|