2009-07-20 10:17:30 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2009-07-20 10:17:30 +02:00
|
|
|
**
|
|
|
|
|
** 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"
|
2010-02-25 16:51:27 +01:00
|
|
|
#include "qt4projectmanagerconstants.h"
|
2010-07-13 15:02:37 +02:00
|
|
|
#include "qtoutputformatter.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>
|
2010-03-17 17:45:33 +01:00
|
|
|
#include <QtGui/QVBoxLayout>
|
2009-10-21 16:48:46 +02:00
|
|
|
#include <QtGui/QLineEdit>
|
2010-03-17 17:45:33 +01:00
|
|
|
#include <QtGui/QFormLayout>
|
2009-10-21 16:48:46 +02:00
|
|
|
|
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-10-27 16:27:22 +02:00
|
|
|
S60EmulatorRunConfiguration::S60EmulatorRunConfiguration(Qt4Target *parent, const QString &proFilePath) :
|
2010-02-08 15:50:06 +01:00
|
|
|
RunConfiguration(parent, QLatin1String(S60_EMULATOR_RC_ID)),
|
2010-10-27 16:27:22 +02:00
|
|
|
m_proFilePath(proFilePath),
|
|
|
|
|
m_validParse(parent->qt4Project()->validParse(proFilePath))
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-27 16:27:22 +02:00
|
|
|
S60EmulatorRunConfiguration::S60EmulatorRunConfiguration(Qt4Target *parent, S60EmulatorRunConfiguration *source) :
|
2010-02-08 15:50:06 +01:00
|
|
|
RunConfiguration(parent, source),
|
2010-10-27 16:27:22 +02:00
|
|
|
m_proFilePath(source->m_proFilePath),
|
|
|
|
|
m_validParse(source->m_validParse)
|
2010-01-19 13:41:02 +01:00
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::ctor()
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
|
|
|
|
if (!m_proFilePath.isEmpty())
|
2010-08-19 12:26:21 +02:00
|
|
|
//: S60 emulator run configuration default display name, %1 is base pro-File name
|
|
|
|
|
setDefaultDisplayName(tr("%1 in Symbian Emulator").arg(QFileInfo(m_proFilePath).completeBaseName()));
|
2009-06-16 15:11:47 +02:00
|
|
|
else
|
2010-08-19 12:26:21 +02:00
|
|
|
//: S60 emulator run configuration default display name (no pro-file name)
|
|
|
|
|
setDefaultDisplayName(tr("Run on Symbian Emulator"));
|
2010-10-27 16:27:22 +02:00
|
|
|
Qt4Project *pro = qt4Target()->qt4Project();
|
|
|
|
|
connect(pro, SIGNAL(proFileUpdated(Qt4ProjectManager::Internal::Qt4ProFileNode*,bool)),
|
|
|
|
|
this, SLOT(proFileUpdate(Qt4ProjectManager::Internal::Qt4ProFileNode*,bool)));
|
|
|
|
|
connect(pro, SIGNAL(proFileInvalidated(Qt4ProjectManager::Internal::Qt4ProFileNode *)),
|
|
|
|
|
this, SLOT(proFileInvalidated(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()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-27 16:27:22 +02:00
|
|
|
void S60EmulatorRunConfiguration::handleParserState(bool success)
|
2009-12-03 18:37:27 +01:00
|
|
|
{
|
2010-10-27 16:27:22 +02:00
|
|
|
bool enabled = isEnabled();
|
|
|
|
|
m_validParse = success;
|
|
|
|
|
if (enabled != isEnabled()) {
|
|
|
|
|
qDebug()<<"Emitting isEnabledChanged()"<<!enabled;
|
|
|
|
|
emit isEnabledChanged(!enabled);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::proFileInvalidated(Qt4ProjectManager::Internal::Qt4ProFileNode *pro)
|
|
|
|
|
{
|
|
|
|
|
if (m_proFilePath != pro->path())
|
|
|
|
|
return;
|
|
|
|
|
handleParserState(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfiguration::proFileUpdate(Qt4ProjectManager::Internal::Qt4ProFileNode *pro, bool success)
|
|
|
|
|
{
|
|
|
|
|
if (m_proFilePath != pro->path())
|
|
|
|
|
return;
|
|
|
|
|
handleParserState(success);
|
|
|
|
|
emit targetInformationChanged();
|
2009-12-03 18:37:27 +01:00
|
|
|
}
|
|
|
|
|
|
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
|
|
|
{
|
2010-10-27 16:27:22 +02:00
|
|
|
if (!m_validParse)
|
|
|
|
|
return false;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-16 11:46:47 +02:00
|
|
|
QWidget *S60EmulatorRunConfiguration::createConfigurationWidget()
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
|
|
|
|
return new S60EmulatorRunConfigurationWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 15:02:37 +02:00
|
|
|
ProjectExplorer::OutputFormatter *S60EmulatorRunConfiguration::createOutputFormatter() const
|
|
|
|
|
{
|
|
|
|
|
return new QtOutputFormatter(qt4Target()->qt4Project());
|
|
|
|
|
}
|
|
|
|
|
|
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-03-25 13:19:27 +01:00
|
|
|
const QDir projectDir = QDir(target()->project()->projectDirectory());
|
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-03-25 13:19:27 +01:00
|
|
|
const QDir projectDir = QDir(target()->project()->projectDirectory());
|
2010-01-19 13:41:02 +01:00
|
|
|
m_proFilePath = projectDir.filePath(map.value(QLatin1String(PRO_FILE_KEY)).toString());
|
|
|
|
|
|
2010-08-19 12:26:21 +02:00
|
|
|
if (m_proFilePath.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
//: S60 emulator run configuration default display name, %1 is base pro-File name
|
|
|
|
|
setDefaultDisplayName(tr("%1 in Symbian Emulator").arg(QFileInfo(m_proFilePath).completeBaseName()));
|
|
|
|
|
|
2010-01-19 13:41:02 +01:00
|
|
|
return RunConfiguration::fromMap(map);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString S60EmulatorRunConfiguration::executable() const
|
|
|
|
|
{
|
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;
|
|
|
|
|
|
2010-03-10 16:55:37 +01:00
|
|
|
TargetInformation ti = qt4Target()->qt4Project()->rootProjectNode()->targetInformation(m_proFilePath);
|
|
|
|
|
if (!ti.valid)
|
|
|
|
|
return QString();
|
|
|
|
|
QString executable = QDir::toNativeSeparators(QDir::cleanPath(baseDir + QLatin1Char('/') + ti.target));
|
|
|
|
|
executable += QLatin1String(".exe");
|
2009-06-16 15:11:47 +02:00
|
|
|
|
2010-03-10 16:55:37 +01:00
|
|
|
return executable;
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ======== 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),
|
|
|
|
|
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
|
|
|
|
2009-10-21 16:48:46 +02:00
|
|
|
detailsFormLayout->addRow(tr("Executable:"), m_executableLabel);
|
2009-06-16 15:11:47 +02:00
|
|
|
|
|
|
|
|
connect(m_runConfiguration, SIGNAL(targetInformationChanged()),
|
|
|
|
|
this, SLOT(updateTargetInformation()));
|
2010-10-27 16:27:22 +02:00
|
|
|
|
|
|
|
|
connect(m_runConfiguration, SIGNAL(isEnabledChanged(bool)),
|
|
|
|
|
this, SLOT(runConfigurationEnabledChange(bool)));
|
2010-10-29 13:40:30 +02:00
|
|
|
|
|
|
|
|
setEnabled(m_runConfiguration->isEnabled());
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunConfigurationWidget::updateTargetInformation()
|
|
|
|
|
{
|
|
|
|
|
m_executableLabel->setText(m_runConfiguration->executable());
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-27 16:27:22 +02:00
|
|
|
void S60EmulatorRunConfigurationWidget::runConfigurationEnabledChange(bool enabled)
|
|
|
|
|
{
|
|
|
|
|
setEnabled(enabled);
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-16 15:11:47 +02:00
|
|
|
// ======== 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 ||
|
2010-02-25 16:51:27 +01:00
|
|
|
t->id() != QLatin1String(Constants::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 ||
|
2010-02-25 16:51:27 +01:00
|
|
|
t->id() != QLatin1String(Constants::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 ||
|
2010-02-25 16:51:27 +01:00
|
|
|
t->id() != QLatin1String(Constants::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
|
|
|
|
|
|
2010-04-30 13:19:31 +02:00
|
|
|
S60EmulatorRunControl::S60EmulatorRunControl(S60EmulatorRunConfiguration *runConfiguration, QString mode)
|
|
|
|
|
: RunControl(runConfiguration, mode)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
2009-10-08 18:37:18 +02:00
|
|
|
// stuff like the EPOCROOT and EPOCDEVICE env variable
|
2010-09-23 10:35:23 +02:00
|
|
|
Utils::Environment env = Utils::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)));
|
2010-04-19 14:21:33 +02:00
|
|
|
connect(&m_applicationLauncher, SIGNAL(appendOutput(QString, bool)),
|
|
|
|
|
this, SLOT(slotAddToOutputWindow(QString, bool)));
|
2009-06-16 15:11:47 +02:00
|
|
|
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();
|
|
|
|
|
|
2010-04-19 14:21:33 +02:00
|
|
|
emit appendMessage(this, tr("Starting %1...").arg(QDir::toNativeSeparators(m_executable)), false);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-08-20 14:19:25 +02:00
|
|
|
RunControl::StopResult S60EmulatorRunControl::stop()
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
|
|
|
|
m_applicationLauncher.stop();
|
2010-08-20 14:19:25 +02:00
|
|
|
return StoppedSynchronously;
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool S60EmulatorRunControl::isRunning() const
|
|
|
|
|
{
|
|
|
|
|
return m_applicationLauncher.isRunning();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::slotError(const QString & err)
|
|
|
|
|
{
|
2010-04-19 14:21:33 +02:00
|
|
|
emit appendMessage(this, err, false);
|
2009-06-16 15:11:47 +02:00
|
|
|
emit finished();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-19 14:21:33 +02:00
|
|
|
void S60EmulatorRunControl::slotAddToOutputWindow(const QString &line, bool onStdErr)
|
2009-06-16 15:11:47 +02:00
|
|
|
{
|
|
|
|
|
static QString prefix = tr("[Qt Message]");
|
|
|
|
|
static int prefixLength = prefix.length();
|
|
|
|
|
int index = line.indexOf(prefix);
|
|
|
|
|
if (index != -1) {
|
2010-04-19 14:21:33 +02:00
|
|
|
emit addToOutputWindowInline(this, line.mid(index + prefixLength + 1), onStdErr);
|
2009-06-16 15:11:47 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60EmulatorRunControl::processExited(int exitCode)
|
|
|
|
|
{
|
2010-04-19 14:21:33 +02:00
|
|
|
emit appendMessage(this, tr("%1 exited with code %2").arg(QDir::toNativeSeparators(m_executable)).arg(exitCode), exitCode != 0);
|
2009-06-16 15:11:47 +02:00
|
|
|
emit finished();
|
|
|
|
|
}
|