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"
|
2010-07-06 12:04:53 +02:00
|
|
|
#include "maemodeployable.h"
|
2010-06-24 15:20:22 +02:00
|
|
|
#include "maemosshthread.h"
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
#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 {
|
2010-06-16 11:08:54 +02:00
|
|
|
class DebuggerRunControl;
|
2010-01-06 18:20:43 +01:00
|
|
|
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-04-30 13:19:31 +02:00
|
|
|
explicit AbstractMaemoRunControl(ProjectExplorer::RunConfiguration *runConfig, QString mode);
|
2010-03-18 10:59:06 +01:00
|
|
|
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();
|
2010-04-12 17:52:22 +02:00
|
|
|
void stopRunning(bool forDebugging);
|
2010-05-05 12:49:08 +02:00
|
|
|
virtual void startExecution();
|
2010-04-12 10:55:17 +02:00
|
|
|
void handleError(const QString &errString);
|
2010-01-06 18:20:43 +01:00
|
|
|
const QString executableOnHost() const;
|
|
|
|
|
const QString executableFileName() const;
|
|
|
|
|
const QString targetCmdLinePrefix() const;
|
2010-04-15 12:47:02 +02:00
|
|
|
QString targetCmdLineSuffix() const;
|
2010-06-24 15:20:22 +02:00
|
|
|
const QString uploadDir() const;
|
2010-04-15 12:47:02 +02:00
|
|
|
QString packageFileName() const;
|
|
|
|
|
QString packageFilePath() const;
|
|
|
|
|
QString executableFilePathOnTarget() const;
|
|
|
|
|
|
2010-05-05 12:49:08 +02:00
|
|
|
protected slots:
|
|
|
|
|
void handleRunThreadFinished();
|
|
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
private slots:
|
2010-04-20 08:57:44 +02:00
|
|
|
virtual void handleRemoteOutput(const QString &output)=0;
|
2010-04-13 16:30:52 +02:00
|
|
|
void handleInitialCleanupFinished();
|
2010-04-13 14:34:22 +02:00
|
|
|
void handleDeployThreadFinished();
|
2010-01-06 18:20:43 +01:00
|
|
|
void handleFileCopied();
|
|
|
|
|
|
|
|
|
|
protected:
|
2010-04-13 12:16:47 +02:00
|
|
|
MaemoRunConfiguration *m_runConfig; // TODO this pointer can be invalid
|
|
|
|
|
const MaemoDeviceConfig m_devConfig;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
private:
|
2010-06-22 14:40:08 +02:00
|
|
|
bool addDeployableIfNeeded(const MaemoDeployable &deployable);
|
|
|
|
|
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void startInternal()=0;
|
|
|
|
|
virtual void stopInternal()=0;
|
2010-04-13 14:34:22 +02:00
|
|
|
virtual QString remoteCall() const=0;
|
2010-04-15 12:47:02 +02:00
|
|
|
|
2010-04-13 16:30:52 +02:00
|
|
|
void startInitialCleanup();
|
|
|
|
|
void killRemoteProcesses(const QStringList &apps, bool initialCleanup);
|
|
|
|
|
bool isCleaning() const;
|
2010-04-13 14:34:22 +02:00
|
|
|
bool isDeploying() const;
|
2010-04-15 12:47:02 +02:00
|
|
|
QString remoteSudo() const;
|
|
|
|
|
QString remoteInstallCommand() const;
|
2010-06-24 15:20:22 +02:00
|
|
|
QString uploadFilePath(const MaemoDeployable &deployable) const;
|
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-04-13 16:30:52 +02:00
|
|
|
QScopedPointer<MaemoSshRunner> m_initialCleaner;
|
2010-04-13 14:34:22 +02:00
|
|
|
bool m_stoppedByUser;
|
2010-02-08 17:02:27 +01:00
|
|
|
|
2010-06-24 15:20:22 +02:00
|
|
|
QList<Core::SftpTransferInfo> m_deployables;
|
2010-06-22 14:40:08 +02:00
|
|
|
QMap<QString, QString> m_remoteLinks;
|
2010-04-16 12:52:00 +02:00
|
|
|
bool m_needsInstall;
|
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();
|
|
|
|
|
|
2010-04-20 08:57:44 +02:00
|
|
|
private slots:
|
|
|
|
|
virtual void handleRemoteOutput(const QString &output);
|
|
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
private:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void startInternal();
|
|
|
|
|
virtual void stopInternal();
|
2010-04-13 14:34:22 +02:00
|
|
|
virtual QString remoteCall() const;
|
2010-01-06 18:20:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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:
|
2010-04-20 08:57:44 +02:00
|
|
|
virtual void handleRemoteOutput(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-05-05 12:49:08 +02:00
|
|
|
virtual void startExecution();
|
2010-04-13 14:34:22 +02:00
|
|
|
virtual QString remoteCall() const;
|
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 startDebugging();
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
Debugger::DebuggerRunControl *m_debuggerRunControl;
|
2010-04-13 10:46:54 +02:00
|
|
|
QSharedPointer<Debugger::DebuggerStartParameters> m_startParams;
|
2010-04-16 14:36:55 +02:00
|
|
|
|
|
|
|
|
bool m_debuggingStarted;
|
2010-01-06 18:20:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
#endif // MAEMORUNCONTROL_H
|