2010-01-06 18:20:43 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2010-01-06 18:20:43 +01:00
|
|
|
** All rights reserved.
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** This file is part of the Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
|
** No Commercial Usage
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef MAEMORUNCONTROL_H
|
|
|
|
|
#define MAEMORUNCONTROL_H
|
|
|
|
|
|
|
|
|
|
#include "maemodeviceconfigurations.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/runconfiguration.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QFutureInterface>
|
|
|
|
|
#include <QtCore/QScopedPointer>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
2010-03-09 14:01:59 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QProcess;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
namespace Debugger {
|
|
|
|
|
class DebuggerManager;
|
|
|
|
|
class DebuggerStartParameters;
|
|
|
|
|
} // namespace Debugger
|
|
|
|
|
|
|
|
|
|
namespace Qt4ProjectManager {
|
|
|
|
|
namespace Internal {
|
2010-03-18 10:59:06 +01:00
|
|
|
class MaemoSshDeployer;
|
|
|
|
|
class MaemoSshRunner;
|
2010-01-06 18:20:43 +01:00
|
|
|
class MaemoRunConfiguration;
|
|
|
|
|
|
|
|
|
|
class AbstractMaemoRunControl : public ProjectExplorer::RunControl
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2010-03-18 10:59:06 +01:00
|
|
|
explicit AbstractMaemoRunControl(ProjectExplorer::RunConfiguration *runConfig);
|
|
|
|
|
virtual ~AbstractMaemoRunControl();
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
protected:
|
2010-04-12 17:52:22 +02:00
|
|
|
virtual bool isRunning() const;
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void start();
|
|
|
|
|
virtual void stop();
|
2010-04-12 17:52:22 +02:00
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
void startDeployment(bool forDebugging);
|
|
|
|
|
void deploy();
|
|
|
|
|
void stopDeployment();
|
2010-04-12 17:52:22 +02:00
|
|
|
void stopRunning(bool forDebugging);
|
|
|
|
|
void run(const QString &remoteCall);
|
2010-04-12 10:55:17 +02:00
|
|
|
void handleError(const QString &errString);
|
2010-01-06 18:20:43 +01:00
|
|
|
bool isDeploying() const;
|
|
|
|
|
const QString executableOnHost() const;
|
|
|
|
|
const QString executableOnTarget() const;
|
|
|
|
|
const QString executableFileName() const;
|
2010-01-11 18:09:49 +01:00
|
|
|
const QString sshPort() const;
|
2010-01-06 18:20:43 +01:00
|
|
|
const QString targetCmdLinePrefix() const;
|
|
|
|
|
const QString remoteDir() const;
|
|
|
|
|
const QStringList options() const;
|
|
|
|
|
private slots:
|
|
|
|
|
void deployProcessFinished();
|
|
|
|
|
void handleFileCopied();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
MaemoRunConfiguration *runConfig; // TODO this pointer can be invalid
|
|
|
|
|
const MaemoDeviceConfig devConfig;
|
2010-04-13 12:03:32 +02:00
|
|
|
bool m_stoppedByUser;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
private:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void startInternal()=0;
|
|
|
|
|
virtual void stopInternal()=0;
|
2010-01-06 18:20:43 +01:00
|
|
|
virtual void handleDeploymentFinished(bool success)=0;
|
2010-04-12 17:52:22 +02:00
|
|
|
virtual void handleExecutionAboutToStart(const MaemoSshRunner *runner)=0;
|
|
|
|
|
void kill(const QStringList &apps);
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
QFutureInterface<void> m_progress;
|
2010-04-13 10:46:54 +02:00
|
|
|
QScopedPointer<MaemoSshDeployer> m_sshDeployer;
|
|
|
|
|
QScopedPointer<MaemoSshRunner> m_sshRunner;
|
|
|
|
|
QScopedPointer<MaemoSshRunner> m_sshStopper;
|
2010-02-08 17:02:27 +01:00
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
struct Deployable
|
|
|
|
|
{
|
2010-03-05 16:06:47 +01:00
|
|
|
typedef void (MaemoRunConfiguration::*updateFunc)(const QString&);
|
2010-01-06 18:20:43 +01:00
|
|
|
Deployable(const QString &f, const QString &d, updateFunc u)
|
|
|
|
|
: fileName(f), dir(d), updateTimestamp(u) {}
|
|
|
|
|
QString fileName;
|
|
|
|
|
QString dir;
|
|
|
|
|
updateFunc updateTimestamp;
|
|
|
|
|
};
|
2010-04-13 10:46:54 +02:00
|
|
|
QList<Deployable> m_deployables;
|
2010-01-06 18:20:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class MaemoRunControl : public AbstractMaemoRunControl
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2010-03-18 10:59:06 +01:00
|
|
|
explicit MaemoRunControl(ProjectExplorer::RunConfiguration *runConfiguration);
|
2010-01-06 18:20:43 +01:00
|
|
|
~MaemoRunControl();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void executionFinished();
|
|
|
|
|
void handleRemoteOutput(const QString &output);
|
|
|
|
|
|
|
|
|
|
private:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void startInternal();
|
|
|
|
|
virtual void stopInternal();
|
2010-01-06 18:20:43 +01:00
|
|
|
virtual void handleDeploymentFinished(bool success);
|
2010-04-12 17:52:22 +02:00
|
|
|
virtual void handleExecutionAboutToStart(const MaemoSshRunner *runner);
|
2010-01-06 18:20:43 +01:00
|
|
|
void startExecution();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class MaemoDebugRunControl : public AbstractMaemoRunControl
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2010-03-18 10:59:06 +01:00
|
|
|
explicit MaemoDebugRunControl(ProjectExplorer::RunConfiguration *runConfiguration);
|
2010-01-06 18:20:43 +01:00
|
|
|
~MaemoDebugRunControl();
|
|
|
|
|
bool isRunning() const;
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void gdbServerStarted(const QString &output);
|
|
|
|
|
void debuggerOutput(const QString &output);
|
2010-04-13 12:03:32 +02:00
|
|
|
void debuggingFinished();
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
private:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void startInternal();
|
|
|
|
|
virtual void stopInternal();
|
2010-01-06 18:20:43 +01:00
|
|
|
virtual void handleDeploymentFinished(bool success);
|
2010-04-12 17:52:22 +02:00
|
|
|
virtual void handleExecutionAboutToStart(const MaemoSshRunner *runner);
|
2010-01-06 18:20:43 +01:00
|
|
|
|
2010-02-03 15:20:12 +01:00
|
|
|
QString gdbServerPort() const;
|
2010-01-06 18:20:43 +01:00
|
|
|
void startGdbServer();
|
|
|
|
|
void gdbServerStartFailed(const QString &reason);
|
|
|
|
|
void startDebugging();
|
|
|
|
|
|
2010-04-13 10:46:54 +02:00
|
|
|
Debugger::DebuggerManager *m_debuggerManager;
|
|
|
|
|
QSharedPointer<Debugger::DebuggerStartParameters> m_startParams;
|
|
|
|
|
int m_inferiorPid;
|
2010-01-06 18:20:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
#endif // MAEMORUNCONTROL_H
|