2009-07-20 10:17:30 +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
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2009-07-20 10:17:30 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
#include "s60emulatorrunconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include "qt4project.h"
|
2010-02-08 15:50:06 +01:00
|
|
|
#include "qt4target.h"
|
2009-06-16 15:11:47 +02:00
|
|
|
#include "qtversionmanager.h"
|
|
|
|
|
#include "profilereader.h"
|
|
|
|
|
#include "s60manager.h"
|
|
|
|
|
#include "s60devices.h"
|
2009-11-25 18:50:20 +01:00
|
|
|
#include "qt4buildconfiguration.h"
|
2009-06-16 15:11:47 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/messagemanager.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
2009-10-21 16:48:46 +02:00
|
|
|
#include <utils/detailswidget.h>
|
2009-06-16 15:11:47 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
2009-09-29 11:39:55 +02:00
|
|
|
#include <projectexplorer/persistentsettings.h>
|
2009-06-16 15:11:47 +02:00
|
|
|
|
2009-10-21 16:48:46 +02:00
|
|
|
#include <QtGui/QLabel>
|
|
|
|
|
#include <QtGui/QLineEdit>
|
|
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
using namespace ProjectExplorer;
|
2009-11-26 14:43:27 +01:00
|
|
|
using namespace Qt4ProjectManager;
|
2009-06-16 15:11:47 +02:00
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
|
2010-01-19 13:41:02 +01:00
|
|
|
namespace {
|
|
|
|
|
const char * const S60_EMULATOR_RC_ID("Qt4ProjectManager.S60EmulatorRunConfiguration");
|
|
|
|
|
const char * const S60_EMULATOR_RC_PREFIX("Qt4ProjectManager.S60EmulatorRunConfiguration.");
|
|
|
|
|
|
|
|
|
|
const char * const PRO_FILE_KEY("Qt4ProjectManager.S60EmulatorRunConfiguration.ProFile");
|
|
|
|
|
|
|
|
|
|
QString pathFromId(const QString &id)
|
|
|
|
|
{
|
|
|
|
|
if (!id.startsWith(QLatin1String(S60_EMULATOR_RC_PREFIX)))
|
|
|
|
|
return QString();
|
|
|
|
|
return id.mid(QString::fromLatin1(S60_EMULATOR_RC_PREFIX).size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString pathToId(const QString &path)
|
|
|
|
|
{
|
|
|
|
|
return QString::fromLatin1(S60_EMULATOR_RC_PREFIX) + path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
// ======== S60EmulatorRunConfiguration
|
2010-01-19 13:41:02 +01:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
S60EmulatorRunConfiguration::S60EmulatorRunConfiguration(Target *parent, const QString &proFilePath) :
|
|
|
|
|
RunConfiguration(parent, QLatin1String(S60_EMULATOR_RC_ID)),
|
2009-06-16 15:11:47 +02:00
|
|
|
m_proFilePath(proFilePath),
|
|
|
|
|
m_cachedTargetInformationValid(false)
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
S60EmulatorRunConfiguration::S60EmulatorRunConfiguration(Target *parent, S60EmulatorRunConfiguration *source) :
|
|
|
|
|
RunConfiguration(parent, source),
|
2010-01-19 13:41:02 +01:00
|
|
|
m_proFilePath(source->m_proFilePath),
|
|
|
|
|
m_cachedTargetInformationValid(false)
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::ctor()
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
|
|
|
|
if (!m_proFilePath.isEmpty())
|
2010-01-07 18:17:24 +01:00
|
|
|
setDisplayName(tr("%1 in Symbian Emulator").arg(QFileInfo(m_proFilePath).completeBaseName()));
|
2009-06-16 15:11:47 +02:00
|
|
|
else
|
2010-01-19 13:41:02 +01:00
|
|
|
setDisplayName(tr("Qt Symbian Emulator RunConfiguration"));
|
2009-06-16 15:11:47 +02:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
connect(qt4Target(), SIGNAL(targetInformationChanged()),
|
2009-06-22 15:51:21 +02:00
|
|
|
this, SLOT(invalidateCachedTargetInformation()));
|
2009-12-03 18:37:27 +01:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
connect(qt4Target()->qt4Project(), SIGNAL(proFileUpdated(Qt4ProjectManager::Internal::Qt4ProFileNode*)),
|
2009-12-03 18:37:27 +01:00
|
|
|
this, SLOT(proFileUpdate(Qt4ProjectManager::Internal::Qt4ProFileNode*)));
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-19 13:41:02 +01:00
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
S60EmulatorRunConfiguration::~S60EmulatorRunConfiguration()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
void S60EmulatorRunConfiguration::proFileUpdate(Qt4ProjectManager::Internal::Qt4ProFileNode *pro)
|
|
|
|
|
{
|
|
|
|
|
if (m_proFilePath == pro->path())
|
|
|
|
|
invalidateCachedTargetInformation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target *S60EmulatorRunConfiguration::qt4Target() const
|
2009-11-26 14:43:27 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
return static_cast<Qt4Target *>(target());
|
2009-11-26 14:43:27 +01:00
|
|
|
}
|
|
|
|
|
|
2009-10-28 17:21:27 +01:00
|
|
|
bool S60EmulatorRunConfiguration::isEnabled(ProjectExplorer::BuildConfiguration *configuration) const
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2009-11-25 18:50:20 +01:00
|
|
|
Qt4BuildConfiguration *qt4bc = qobject_cast<Qt4BuildConfiguration *>(configuration);
|
|
|
|
|
QTC_ASSERT(qt4bc, return false);
|
|
|
|
|
ToolChain::ToolChainType type = qt4bc->toolChainType();
|
2009-06-16 15:11:47 +02:00
|
|
|
return type == ToolChain::WINSCW;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *S60EmulatorRunConfiguration::configurationWidget()
|
|
|
|
|
{
|
|
|
|
|
return new S60EmulatorRunConfigurationWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-19 13:41:02 +01:00
|
|
|
QVariantMap S60EmulatorRunConfiguration::toMap() const
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-01-19 13:41:02 +01:00
|
|
|
QVariantMap map(ProjectExplorer::RunConfiguration::toMap());
|
2010-02-08 15:50:06 +01:00
|
|
|
const QDir projectDir = QFileInfo(target()->project()->file()->fileName()).absoluteDir();
|
2010-01-19 13:41:02 +01:00
|
|
|
map.insert(QLatin1String(PRO_FILE_KEY), projectDir.relativeFilePath(m_proFilePath));
|
|
|
|
|
return map;
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-19 13:41:02 +01:00
|
|
|
bool S60EmulatorRunConfiguration::fromMap(const QVariantMap &map)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
const QDir projectDir = QFileInfo(target()->project()->file()->fileName()).absoluteDir();
|
2010-01-19 13:41:02 +01:00
|
|
|
m_proFilePath = projectDir.filePath(map.value(QLatin1String(PRO_FILE_KEY)).toString());
|
|
|
|
|
|
|
|
|
|
return RunConfiguration::fromMap(map);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString S60EmulatorRunConfiguration::executable() const
|
|
|
|
|
{
|
|
|
|
|
const_cast<S60EmulatorRunConfiguration *>(this)->updateTarget();
|
|
|
|
|
return m_executable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::updateTarget()
|
|
|
|
|
{
|
|
|
|
|
if (m_cachedTargetInformationValid)
|
|
|
|
|
return;
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4TargetInformation info = qt4Target()->targetInformation(qt4Target()->activeBuildConfiguration(),
|
2009-12-22 14:52:36 +01:00
|
|
|
m_proFilePath);
|
|
|
|
|
if (info.error != Qt4TargetInformation::NoError) {
|
|
|
|
|
if (info.error == Qt4TargetInformation::ProParserError) {
|
|
|
|
|
Core::ICore::instance()->messageManager()->printToOutputPane(
|
|
|
|
|
tr("Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started.")
|
2010-01-07 18:17:24 +01:00
|
|
|
.arg(m_proFilePath).arg(displayName()));
|
2009-12-22 14:52:36 +01:00
|
|
|
}
|
2010-02-02 17:09:41 +01:00
|
|
|
m_executable.clear();
|
2009-06-16 15:11:47 +02:00
|
|
|
m_cachedTargetInformationValid = true;
|
|
|
|
|
emit targetInformationChanged();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4BuildConfiguration *qt4bc = qt4Target()->activeBuildConfiguration();
|
2009-12-07 20:49:39 +01:00
|
|
|
QtVersion *qtVersion = qt4bc->qtVersion();
|
2009-08-04 10:11:11 +02:00
|
|
|
QString baseDir = S60Manager::instance()->deviceForQtVersion(qtVersion).epocRoot;
|
2009-06-16 15:11:47 +02:00
|
|
|
QString qmakeBuildConfig = "urel";
|
2009-12-02 17:43:43 +01:00
|
|
|
if (qt4bc->qmakeBuildConfiguration() & QtVersion::DebugBuild)
|
2009-06-16 15:11:47 +02:00
|
|
|
qmakeBuildConfig = "udeb";
|
|
|
|
|
baseDir += "/epoc32/release/winscw/" + qmakeBuildConfig;
|
|
|
|
|
|
|
|
|
|
m_executable = QDir::toNativeSeparators(
|
2009-12-22 14:52:36 +01:00
|
|
|
QDir::cleanPath(baseDir + QLatin1Char('/') + info.target));
|
2009-06-16 15:11:47 +02:00
|
|
|
m_executable += QLatin1String(".exe");
|
|
|
|
|
|
|
|
|
|
m_cachedTargetInformationValid = true;
|
|
|
|
|
emit targetInformationChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::invalidateCachedTargetInformation()
|
|
|
|
|
{
|
|
|
|
|
m_cachedTargetInformationValid = false;
|
|
|
|
|
emit targetInformationChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ======== S60EmulatorRunConfigurationWidget
|
|
|
|
|
|
|
|
|
|
S60EmulatorRunConfigurationWidget::S60EmulatorRunConfigurationWidget(S60EmulatorRunConfiguration *runConfiguration,
|
|
|
|
|
QWidget *parent)
|
|
|
|
|
: QWidget(parent),
|
2009-10-21 16:48:46 +02:00
|
|
|
m_runConfiguration(runConfiguration),
|
|
|
|
|
m_detailsWidget(new Utils::DetailsWidget),
|
2010-01-07 18:17:24 +01:00
|
|
|
m_nameLineEdit(new QLineEdit(m_runConfiguration->displayName())),
|
2009-10-21 16:48:46 +02:00
|
|
|
m_executableLabel(new QLabel(m_runConfiguration->executable()))
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-02-01 17:22:05 +01:00
|
|
|
m_detailsWidget->setState(Utils::DetailsWidget::NoSummary);
|
2009-10-21 16:48:46 +02:00
|
|
|
QVBoxLayout *mainBoxLayout = new QVBoxLayout();
|
|
|
|
|
mainBoxLayout->setMargin(0);
|
|
|
|
|
setLayout(mainBoxLayout);
|
|
|
|
|
mainBoxLayout->addWidget(m_detailsWidget);
|
|
|
|
|
QWidget *detailsContainer = new QWidget;
|
|
|
|
|
m_detailsWidget->setWidget(detailsContainer);
|
|
|
|
|
|
|
|
|
|
QFormLayout *detailsFormLayout = new QFormLayout();
|
|
|
|
|
detailsFormLayout->setMargin(0);
|
|
|
|
|
detailsContainer->setLayout(detailsFormLayout);
|
2009-06-16 15:11:47 +02:00
|
|
|
|
|
|
|
|
QLabel *nameLabel = new QLabel(tr("Name:"));
|
2009-10-21 16:48:46 +02:00
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
nameLabel->setBuddy(m_nameLineEdit);
|
2009-10-21 16:48:46 +02:00
|
|
|
detailsFormLayout->addRow(nameLabel, m_nameLineEdit);
|
2009-06-16 15:11:47 +02:00
|
|
|
|
2009-10-21 16:48:46 +02:00
|
|
|
detailsFormLayout->addRow(tr("Executable:"), m_executableLabel);
|
2009-06-16 15:11:47 +02:00
|
|
|
|
|
|
|
|
connect(m_nameLineEdit, SIGNAL(textEdited(QString)),
|
2010-01-07 18:17:24 +01:00
|
|
|
this, SLOT(displayNameEdited(QString)));
|
2009-06-16 15:11:47 +02:00
|
|
|
connect(m_runConfiguration, SIGNAL(targetInformationChanged()),
|
|
|
|
|
this, SLOT(updateTargetInformation()));
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
void S60EmulatorRunConfigurationWidget::displayNameEdited(const QString &text)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-01-07 18:17:24 +01:00
|
|
|
m_runConfiguration->setDisplayName(text);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfigurationWidget::updateTargetInformation()
|
|
|
|
|
{
|
|
|
|
|
m_executableLabel->setText(m_runConfiguration->executable());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ======== S60EmulatorRunConfigurationFactory
|
|
|
|
|
|
|
|
|
|
S60EmulatorRunConfigurationFactory::S60EmulatorRunConfigurationFactory(QObject *parent)
|
|
|
|
|
: IRunConfigurationFactory(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
S60EmulatorRunConfigurationFactory::~S60EmulatorRunConfigurationFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool S60EmulatorRunConfigurationFactory::canCreate(Target *parent, const QString &id) const
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target * t(qobject_cast<Qt4Target *>(parent));
|
|
|
|
|
if (!t ||
|
|
|
|
|
t->id() != QLatin1String(S60_EMULATOR_TARGET_ID))
|
2010-01-19 13:41:02 +01:00
|
|
|
return false;
|
2010-02-08 15:50:06 +01:00
|
|
|
return t->qt4Project()->hasApplicationProFile(pathFromId(id));
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
RunConfiguration *S60EmulatorRunConfigurationFactory::create(Target *parent, const QString &id)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-01-19 13:41:02 +01:00
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target *t(static_cast<Qt4Target *>(parent));
|
|
|
|
|
return new S60EmulatorRunConfiguration(t, pathFromId(id));
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool S60EmulatorRunConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target * t(qobject_cast<Qt4Target *>(parent));
|
|
|
|
|
if (!t ||
|
|
|
|
|
t->id() != QLatin1String(S60_EMULATOR_TARGET_ID))
|
2010-01-19 13:41:02 +01:00
|
|
|
return false;
|
|
|
|
|
QString id(ProjectExplorer::idFromMap(map));
|
2010-02-08 15:50:06 +01:00
|
|
|
return id == QLatin1String(S60_EMULATOR_RC_ID);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
RunConfiguration *S60EmulatorRunConfigurationFactory::restore(Target *parent, const QVariantMap &map)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2010-01-19 13:41:02 +01:00
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target *t(static_cast<Qt4Target *>(parent));
|
|
|
|
|
S60EmulatorRunConfiguration *rc(new S60EmulatorRunConfiguration(t, QString()));
|
2010-01-19 13:41:02 +01:00
|
|
|
if (rc->fromMap(map))
|
|
|
|
|
return rc;
|
|
|
|
|
delete rc;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool S60EmulatorRunConfigurationFactory::canClone(Target *parent, RunConfiguration *source) const
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
return canCreate(parent, source->id());
|
2010-01-19 13:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
RunConfiguration *S60EmulatorRunConfigurationFactory::clone(Target *parent, RunConfiguration *source)
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
|
|
|
|
if (!canClone(parent, source))
|
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target *t(static_cast<Qt4Target *>(parent));
|
|
|
|
|
return new S60EmulatorRunConfiguration(t, QString());
|
2010-01-19 13:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
QStringList S60EmulatorRunConfigurationFactory::availableCreationIds(Target *parent) const
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
Qt4Target * t(qobject_cast<Qt4Target *>(parent));
|
|
|
|
|
if (!t ||
|
|
|
|
|
t->id() != QLatin1String(S60_EMULATOR_TARGET_ID))
|
2010-01-19 13:41:02 +01:00
|
|
|
return QStringList();
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
return t->qt4Project()->applicationProFilePathes(QLatin1String(S60_EMULATOR_RC_PREFIX));
|
2010-01-19 13:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString S60EmulatorRunConfigurationFactory::displayNameForId(const QString &id) const
|
|
|
|
|
{
|
|
|
|
|
if (!pathFromId(id).isEmpty())
|
|
|
|
|
return tr("%1 in Symbian Emulator").arg(QFileInfo(pathFromId(id)).completeBaseName());
|
|
|
|
|
return QString();
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ======== S60EmulatorRunControl
|
|
|
|
|
|
2009-10-08 18:37:18 +02:00
|
|
|
S60EmulatorRunControl::S60EmulatorRunControl(S60EmulatorRunConfiguration *runConfiguration)
|
2009-06-16 15:11:47 +02:00
|
|
|
: RunControl(runConfiguration)
|
|
|
|
|
{
|
2009-10-08 18:37:18 +02:00
|
|
|
// stuff like the EPOCROOT and EPOCDEVICE env variable
|
|
|
|
|
Environment env = Environment::systemEnvironment();
|
2010-02-08 15:50:06 +01:00
|
|
|
runConfiguration->qt4Target()->activeBuildConfiguration()->toolChain()->addToEnvironment(env);
|
2009-10-08 18:37:18 +02:00
|
|
|
m_applicationLauncher.setEnvironment(env.toStringList());
|
|
|
|
|
|
|
|
|
|
m_executable = runConfiguration->executable();
|
2009-06-16 15:11:47 +02:00
|
|
|
connect(&m_applicationLauncher, SIGNAL(applicationError(QString)),
|
|
|
|
|
this, SLOT(slotError(QString)));
|
|
|
|
|
connect(&m_applicationLauncher, SIGNAL(appendOutput(QString)),
|
|
|
|
|
this, SLOT(slotAddToOutputWindow(QString)));
|
|
|
|
|
connect(&m_applicationLauncher, SIGNAL(processExited(int)),
|
|
|
|
|
this, SLOT(processExited(int)));
|
|
|
|
|
connect(&m_applicationLauncher, SIGNAL(bringToForegroundRequested(qint64)),
|
|
|
|
|
this, SLOT(bringApplicationToForeground(qint64)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::start()
|
|
|
|
|
{
|
2009-10-08 18:37:18 +02:00
|
|
|
m_applicationLauncher.start(ApplicationLauncher::Gui, m_executable, QStringList());
|
2009-06-16 15:11:47 +02:00
|
|
|
emit started();
|
|
|
|
|
|
|
|
|
|
emit addToOutputWindow(this, tr("Starting %1...").arg(QDir::toNativeSeparators(m_executable)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::stop()
|
|
|
|
|
{
|
|
|
|
|
m_applicationLauncher.stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool S60EmulatorRunControl::isRunning() const
|
|
|
|
|
{
|
|
|
|
|
return m_applicationLauncher.isRunning();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::slotError(const QString & err)
|
|
|
|
|
{
|
|
|
|
|
emit error(this, err);
|
|
|
|
|
emit finished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::slotAddToOutputWindow(const QString &line)
|
|
|
|
|
{
|
|
|
|
|
static QString prefix = tr("[Qt Message]");
|
|
|
|
|
static int prefixLength = prefix.length();
|
|
|
|
|
int index = line.indexOf(prefix);
|
|
|
|
|
if (index != -1) {
|
|
|
|
|
emit addToOutputWindowInline(this, line.mid(index + prefixLength + 1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::processExited(int exitCode)
|
|
|
|
|
{
|
|
|
|
|
emit addToOutputWindow(this, tr("%1 exited with code %2").arg(QDir::toNativeSeparators(m_executable)).arg(exitCode));
|
|
|
|
|
emit finished();
|
|
|
|
|
}
|