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-12 09:33:22 +02:00
|
|
|
#include <coreplugin/ssh/sftpdefs.h>
|
2010-01-06 18:20:43 +01:00
|
|
|
#include <projectexplorer/runconfiguration.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
2010-07-12 09:33:22 +02:00
|
|
|
namespace Core {
|
|
|
|
|
class SftpChannel;
|
|
|
|
|
class SshConnection;
|
|
|
|
|
class SshRemoteProcess;
|
|
|
|
|
}
|
|
|
|
|
|
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 {
|
|
|
|
|
class MaemoRunConfiguration;
|
2010-07-14 17:26:51 +02:00
|
|
|
class MaemoSshRunner;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
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-13 12:03:32 +02:00
|
|
|
virtual void start();
|
|
|
|
|
virtual void stop();
|
2010-04-12 17:52:22 +02:00
|
|
|
|
2010-07-14 17:26:51 +02:00
|
|
|
void setFinished();
|
2010-04-12 10:55:17 +02:00
|
|
|
void handleError(const QString &errString);
|
2010-01-06 18:20:43 +01:00
|
|
|
const QString targetCmdLinePrefix() const;
|
2010-07-14 17:26:51 +02:00
|
|
|
QString arguments() const;
|
2010-05-05 12:49:08 +02:00
|
|
|
|
2010-01-06 18:20:43 +01:00
|
|
|
private slots:
|
2010-07-14 17:26:51 +02:00
|
|
|
virtual void startExecution();
|
|
|
|
|
void handleSshError(const QString &error);
|
2010-07-12 09:33:22 +02:00
|
|
|
virtual void handleRemoteProcessStarted() {}
|
2010-07-14 17:26:51 +02:00
|
|
|
void handleRemoteProcessFinished(int exitCode);
|
2010-07-12 09:33:22 +02:00
|
|
|
void handleRemoteOutput(const QByteArray &output);
|
|
|
|
|
void handleRemoteErrorOutput(const QByteArray &output);
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
protected:
|
2010-04-13 12:16:47 +02:00
|
|
|
MaemoRunConfiguration *m_runConfig; // TODO this pointer can be invalid
|
|
|
|
|
const MaemoDeviceConfig m_devConfig;
|
2010-07-14 17:26:51 +02:00
|
|
|
MaemoSshRunner * const m_runner;
|
2010-07-13 15:24:21 +02:00
|
|
|
bool m_stopped;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
private:
|
2010-07-14 17:26:51 +02:00
|
|
|
virtual bool isRunning() const;
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void stopInternal()=0;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
2010-07-14 17:26:51 +02:00
|
|
|
bool m_running;
|
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:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void stopInternal();
|
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();
|
|
|
|
|
|
|
|
|
|
private slots:
|
2010-07-12 09:33:22 +02:00
|
|
|
virtual void handleRemoteProcessStarted();
|
|
|
|
|
void debuggerOutput(const QString &output);
|
2010-04-13 12:03:32 +02:00
|
|
|
void debuggingFinished();
|
2010-07-13 15:24:21 +02:00
|
|
|
void handleSftpChannelInitialized();
|
|
|
|
|
void handleSftpChannelInitializationFailed(const QString &error);
|
|
|
|
|
void handleSftpJobFinished(Core::SftpJobId job, const QString &error);
|
2010-01-06 18:20:43 +01:00
|
|
|
|
|
|
|
|
private:
|
2010-04-13 12:03:32 +02:00
|
|
|
virtual void stopInternal();
|
2010-05-05 12:49:08 +02:00
|
|
|
virtual void startExecution();
|
2010-07-14 17:26:51 +02:00
|
|
|
QString uploadDir() 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-07-13 15:24:21 +02:00
|
|
|
bool isDeploying() const;
|
2010-01-06 18:20:43 +01:00
|
|
|
|
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-07-13 15:24:21 +02:00
|
|
|
QSharedPointer<Core::SftpChannel> m_uploader;
|
|
|
|
|
Core::SftpJobId m_uploadJob;
|
2010-01-06 18:20:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
#endif // MAEMORUNCONTROL_H
|