2009-10-16 17:33:12 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef MAEMORUNCONFIGURATION_H
|
|
|
|
|
#define MAEMORUNCONFIGURATION_H
|
|
|
|
|
|
2009-12-01 14:04:25 +01:00
|
|
|
#include "maemodeviceconfigurations.h"
|
|
|
|
|
|
2009-10-16 17:33:12 +02:00
|
|
|
#include <QtCore/QDateTime>
|
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
|
|
|
|
|
|
#include <debugger/debuggermanager.h>
|
|
|
|
|
#include <projectexplorer/runconfiguration.h>
|
|
|
|
|
#include <projectexplorer/applicationlauncher.h>
|
|
|
|
|
|
|
|
|
|
namespace Qt4ProjectManager {
|
|
|
|
|
class Qt4Project;
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class MaemoManager;
|
|
|
|
|
class MaemoToolChain;
|
2009-12-03 18:37:27 +01:00
|
|
|
class Qt4ProFileNode;
|
2009-10-16 17:33:12 +02:00
|
|
|
|
|
|
|
|
#define USE_SSL_PASSWORD 0
|
|
|
|
|
|
|
|
|
|
class ErrorDumper : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
ErrorDumper(QObject *parent = 0)
|
|
|
|
|
: QObject(parent) {}
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void printToStream(QProcess::ProcessError error);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-01-07 11:21:11 +01:00
|
|
|
class MaemoRunConfiguration : public ProjectExplorer::RunConfiguration
|
2009-10-16 17:33:12 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2010-01-07 11:21:11 +01:00
|
|
|
MaemoRunConfiguration(ProjectExplorer::Project *project,
|
|
|
|
|
const QString &proFilePath);
|
2009-10-16 17:33:12 +02:00
|
|
|
~MaemoRunConfiguration();
|
|
|
|
|
|
|
|
|
|
QString type() const;
|
2009-12-15 17:48:11 +01:00
|
|
|
bool isEnabled(ProjectExplorer::BuildConfiguration *config) const;
|
|
|
|
|
using RunConfiguration::isEnabled;
|
2009-10-16 17:33:12 +02:00
|
|
|
QWidget *configurationWidget();
|
|
|
|
|
Qt4Project *project() const;
|
|
|
|
|
|
|
|
|
|
void save(ProjectExplorer::PersistentSettingsWriter &writer) const;
|
|
|
|
|
void restore(const ProjectExplorer::PersistentSettingsReader &reader);
|
|
|
|
|
|
|
|
|
|
bool currentlyNeedsDeployment() const;
|
|
|
|
|
void wasDeployed();
|
|
|
|
|
|
|
|
|
|
bool hasDebuggingHelpers() const;
|
|
|
|
|
bool debuggingHelpersNeedDeployment() const;
|
|
|
|
|
void debuggingHelpersDeployed();
|
|
|
|
|
|
|
|
|
|
QString maddeRoot() const;
|
|
|
|
|
QString executable() const;
|
|
|
|
|
const QString sysRoot() const;
|
2009-10-27 14:15:24 +01:00
|
|
|
const QStringList arguments() const;
|
2009-10-16 17:33:12 +02:00
|
|
|
void setArguments(const QStringList &args);
|
2009-12-23 10:53:57 +01:00
|
|
|
void setDeviceConfig(const MaemoDeviceConfig &deviceConfig);
|
|
|
|
|
MaemoDeviceConfig deviceConfig() const;
|
2009-10-16 17:33:12 +02:00
|
|
|
|
|
|
|
|
QString simulator() const;
|
|
|
|
|
QString simulatorArgs() const;
|
|
|
|
|
QString simulatorPath() const;
|
|
|
|
|
QString visibleSimulatorParameter() const;
|
|
|
|
|
|
|
|
|
|
const QString sshCmd() const;
|
|
|
|
|
const QString scpCmd() const;
|
|
|
|
|
const QString gdbCmd() const;
|
|
|
|
|
const QString dumperLib() const;
|
|
|
|
|
|
|
|
|
|
bool isQemuRunning() const;
|
|
|
|
|
|
|
|
|
|
#if USE_SSL_PASSWORD
|
|
|
|
|
// Only valid if remoteHostRequiresPassword() == true.
|
|
|
|
|
void setRemotePassword(const QString &password);
|
|
|
|
|
const QString remoteUserPassword() const { return m_remoteUserPassword; }
|
|
|
|
|
|
2010-01-07 11:21:11 +01:00
|
|
|
void setRemoteHostRequiresPassword(bool requiresPassword);
|
2009-10-16 17:33:12 +02:00
|
|
|
bool remoteHostRequiresPassword() const { return m_remoteHostRequiresPassword; }
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
signals:
|
2009-12-01 14:04:25 +01:00
|
|
|
void deviceConfigurationsUpdated();
|
2009-10-16 17:33:12 +02:00
|
|
|
void targetInformationChanged();
|
|
|
|
|
void cachedSimulatorInformationChanged();
|
|
|
|
|
void qemuProcessStatus(bool running);
|
|
|
|
|
|
|
|
|
|
private slots:
|
2009-12-03 18:37:27 +01:00
|
|
|
void proFileUpdate(Qt4ProjectManager::Internal::Qt4ProFileNode *pro);
|
2009-12-01 14:04:25 +01:00
|
|
|
void updateDeviceConfigurations();
|
2009-10-16 17:33:12 +02:00
|
|
|
void invalidateCachedTargetInformation();
|
|
|
|
|
|
2009-10-29 17:26:14 +01:00
|
|
|
void setUserSimulatorPath(const QString &path);
|
2009-10-16 17:33:12 +02:00
|
|
|
void invalidateCachedSimulatorInformation();
|
2009-10-29 17:26:14 +01:00
|
|
|
void resetCachedSimulatorInformation();
|
2009-10-16 17:33:12 +02:00
|
|
|
|
|
|
|
|
void startStopQemu();
|
|
|
|
|
void qemuProcessFinished();
|
|
|
|
|
|
|
|
|
|
void enabledStateChanged();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void updateTarget();
|
|
|
|
|
void updateSimulatorInformation();
|
|
|
|
|
const QString cmd(const QString &cmdName) const;
|
|
|
|
|
const MaemoToolChain *toolchain() const;
|
|
|
|
|
bool fileNeedsDeployment(const QString &path, const QDateTime &lastDeployed) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QString m_executable;
|
|
|
|
|
QString m_proFilePath;
|
|
|
|
|
bool m_cachedTargetInformationValid;
|
|
|
|
|
|
|
|
|
|
QString m_simulator;
|
|
|
|
|
QString m_simulatorArgs;
|
|
|
|
|
QString m_simulatorPath;
|
|
|
|
|
QString m_visibleSimulatorParameter;
|
|
|
|
|
bool m_cachedSimulatorInformationValid;
|
|
|
|
|
|
2009-10-29 17:26:14 +01:00
|
|
|
bool m_isUserSetSimulator;
|
|
|
|
|
QString m_userSimulatorPath;
|
|
|
|
|
|
2009-10-16 17:33:12 +02:00
|
|
|
QString m_gdbPath;
|
|
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
MaemoDeviceConfig m_devConfig;
|
2009-12-01 14:04:25 +01:00
|
|
|
QStringList m_arguments;
|
2009-10-16 17:33:12 +02:00
|
|
|
|
|
|
|
|
QDateTime m_lastDeployed;
|
|
|
|
|
QDateTime m_debuggingHelpersLastDeployed;
|
|
|
|
|
|
|
|
|
|
QProcess *qemu;
|
|
|
|
|
ErrorDumper dumper;
|
|
|
|
|
|
|
|
|
|
#if USE_SSL_PASSWORD
|
|
|
|
|
QString m_remoteUserPassword;
|
|
|
|
|
bool m_remoteHostRequiresPassword;
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-01-07 11:21:11 +01:00
|
|
|
class MaemoRunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory
|
2009-10-16 17:33:12 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
MaemoRunConfigurationFactory(QObject *parent);
|
|
|
|
|
~MaemoRunConfigurationFactory();
|
|
|
|
|
|
|
|
|
|
bool canRestore(const QString &type) const;
|
2010-01-07 11:21:11 +01:00
|
|
|
QStringList availableCreationTypes(ProjectExplorer::Project *project) const;
|
2009-10-16 17:33:12 +02:00
|
|
|
QString displayNameForType(const QString &type) const;
|
2010-01-07 11:21:11 +01:00
|
|
|
ProjectExplorer::RunConfiguration *create(ProjectExplorer::Project *project,
|
|
|
|
|
const QString &type);
|
2009-10-16 17:33:12 +02:00
|
|
|
|
2009-11-18 17:36:17 +01:00
|
|
|
|
2009-10-16 17:33:12 +02:00
|
|
|
private slots:
|
|
|
|
|
void addedRunConfiguration(ProjectExplorer::Project* project);
|
|
|
|
|
void removedRunConfiguration(ProjectExplorer::Project* project);
|
|
|
|
|
|
|
|
|
|
void projectAdded(ProjectExplorer::Project* project);
|
|
|
|
|
void projectRemoved(ProjectExplorer::Project* project);
|
|
|
|
|
void currentProjectChanged(ProjectExplorer::Project* project);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-01-07 11:21:11 +01:00
|
|
|
class MaemoRunControlFactory : public ProjectExplorer::IRunControlFactory
|
2009-10-16 17:33:12 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
MaemoRunControlFactory(QObject *parent = 0);
|
2010-01-07 11:21:11 +01:00
|
|
|
bool canRun(ProjectExplorer::RunConfiguration *runConfiguration,
|
|
|
|
|
const QString &mode) const;
|
|
|
|
|
ProjectExplorer::RunControl* create(ProjectExplorer::RunConfiguration *runConfiguration,
|
|
|
|
|
const QString &mode);
|
2009-10-16 17:33:12 +02:00
|
|
|
QString displayName() const;
|
2010-01-07 11:21:11 +01:00
|
|
|
QWidget *configurationWidget(ProjectExplorer::RunConfiguration *runConfiguration);
|
2009-10-16 17:33:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MAEMORUNCONFIGURATION_H
|