2010-12-10 19:02:19 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
2011-02-17 17:53:52 +01:00
|
|
|
** No Commercial Usage
|
2010-12-10 19:02:19 +01:00
|
|
|
**
|
2011-02-17 17:53:52 +01:00
|
|
|
** 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.
|
2010-12-10 19:02:19 +01:00
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
2011-02-17 17:53:52 +01:00
|
|
|
** 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.
|
2010-12-10 19:02:19 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "qt4maemotargetfactory.h"
|
2011-03-02 15:01:17 +01:00
|
|
|
#include "buildconfigurationinfo.h"
|
2010-12-10 19:02:19 +01:00
|
|
|
#include "qt4project.h"
|
|
|
|
|
#include "qt4projectmanagerconstants.h"
|
2011-01-19 10:16:47 +01:00
|
|
|
#include "maemoglobal.h"
|
2011-03-09 12:07:35 +01:00
|
|
|
#include "maemopackagecreationstep.h"
|
|
|
|
|
#include "maemorunconfiguration.h"
|
|
|
|
|
#include "qt4maemodeployconfiguration.h"
|
|
|
|
|
#include "qt4maemotarget.h"
|
2010-12-10 19:02:19 +01:00
|
|
|
|
|
|
|
|
#include <projectexplorer/deployconfiguration.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/customexecutablerunconfiguration.h>
|
|
|
|
|
|
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
using ProjectExplorer::idFromMap;
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// Qt4MaemoTargetFactory
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
Qt4MaemoTargetFactory::Qt4MaemoTargetFactory(QObject *parent) :
|
|
|
|
|
Qt4BaseTargetFactory(parent)
|
|
|
|
|
{
|
|
|
|
|
connect(QtVersionManager::instance(), SIGNAL(qtVersionsChanged(QList<int>)),
|
|
|
|
|
this, SIGNAL(supportedTargetIdsChanged()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Qt4MaemoTargetFactory::~Qt4MaemoTargetFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Qt4MaemoTargetFactory::supportsTargetId(const QString &id) const
|
|
|
|
|
{
|
2011-01-19 10:16:47 +01:00
|
|
|
return MaemoGlobal::isMaemoTargetId(id);
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList Qt4MaemoTargetFactory::supportedTargetIds(ProjectExplorer::Project *parent) const
|
|
|
|
|
{
|
2011-01-18 15:20:57 +01:00
|
|
|
QStringList targetIds;
|
2011-02-21 15:30:05 +01:00
|
|
|
if (parent && !qobject_cast<Qt4Project *>(parent))
|
2011-01-18 15:20:57 +01:00
|
|
|
return targetIds;
|
|
|
|
|
if (QtVersionManager::instance()->supportsTargetId(QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID)))
|
|
|
|
|
targetIds << QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID);
|
|
|
|
|
if (QtVersionManager::instance()->supportsTargetId(QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID)))
|
|
|
|
|
targetIds << QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID);
|
2011-01-31 17:46:19 +01:00
|
|
|
if (QtVersionManager::instance()->supportsTargetId(QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID)))
|
|
|
|
|
targetIds << QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID);
|
2011-01-18 15:20:57 +01:00
|
|
|
return targetIds;
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Qt4MaemoTargetFactory::displayNameForId(const QString &id) const
|
|
|
|
|
{
|
2011-01-18 15:20:57 +01:00
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
|
|
|
|
|
return Qt4Maemo5Target::defaultDisplayName();
|
|
|
|
|
else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID))
|
|
|
|
|
return Qt4HarmattanTarget::defaultDisplayName();
|
2011-01-31 17:46:19 +01:00
|
|
|
else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID))
|
|
|
|
|
return Qt4MeegoTarget::defaultDisplayName();
|
2010-12-10 19:02:19 +01:00
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 14:32:45 +01:00
|
|
|
QIcon Qt4MaemoTargetFactory::iconForId(const QString &id) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(id)
|
|
|
|
|
return QIcon(":/projectexplorer/images/MaemoDevice.png");
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-10 19:02:19 +01:00
|
|
|
bool Qt4MaemoTargetFactory::canCreate(ProjectExplorer::Project *parent, const QString &id) const
|
|
|
|
|
{
|
|
|
|
|
if (!qobject_cast<Qt4Project *>(parent))
|
|
|
|
|
return false;
|
|
|
|
|
return supportsTargetId(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Qt4MaemoTargetFactory::canRestore(ProjectExplorer::Project *parent, const QVariantMap &map) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, idFromMap(map));
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-02 15:01:17 +01:00
|
|
|
ProjectExplorer::Target *Qt4MaemoTargetFactory::restore(ProjectExplorer::Project *parent, const QVariantMap &map)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
|
|
|
|
|
2011-01-18 15:20:57 +01:00
|
|
|
const QString id = idFromMap(map);
|
2011-01-20 11:00:48 +01:00
|
|
|
AbstractQt4MaemoTarget *target = 0;
|
2010-12-10 19:02:19 +01:00
|
|
|
Qt4Project *qt4project = static_cast<Qt4Project *>(parent);
|
2011-01-18 15:20:57 +01:00
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4Maemo5Target(qt4project, QLatin1String("transient ID"));
|
|
|
|
|
else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4HarmattanTarget(qt4project, QLatin1String("transient ID"));
|
2011-01-31 17:46:19 +01:00
|
|
|
else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4MeegoTarget(qt4project, QLatin1String("transient ID"));
|
2010-12-10 19:02:19 +01:00
|
|
|
if (target->fromMap(map))
|
|
|
|
|
return target;
|
|
|
|
|
delete target;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 13:32:42 +01:00
|
|
|
QString Qt4MaemoTargetFactory::buildNameForId(const QString &id) const
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
2011-01-18 15:20:57 +01:00
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
|
2011-03-23 13:32:42 +01:00
|
|
|
return QLatin1String("maemo");
|
2011-01-18 15:20:57 +01:00
|
|
|
else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID))
|
2011-03-23 13:32:42 +01:00
|
|
|
return QLatin1String("harmattan");
|
2011-01-31 17:46:19 +01:00
|
|
|
else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID))
|
2011-03-23 13:32:42 +01:00
|
|
|
return QLatin1String("meego");
|
2011-01-18 15:20:57 +01:00
|
|
|
else
|
2010-12-10 19:02:19 +01:00
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 13:32:42 +01:00
|
|
|
QString Qt4MaemoTargetFactory::shadowBuildDirectory(const QString &profilePath, const QString &id, const QString &suffix)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
2011-03-23 13:32:42 +01:00
|
|
|
//TODO why?
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
|
return projectDirectory;
|
|
|
|
|
#endif
|
|
|
|
|
return Qt4BaseTargetFactory::shadowBuildDirectory(profilePath, id, suffix);
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
2011-02-21 15:30:05 +01:00
|
|
|
bool Qt4MaemoTargetFactory::isMobileTarget(const QString &id)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(id)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-02 15:01:17 +01:00
|
|
|
ProjectExplorer::Target *Qt4MaemoTargetFactory::create(ProjectExplorer::Project *parent, const QString &id)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
QList<QtVersion *> knownVersions = QtVersionManager::instance()->versionsForTargetId(id);
|
|
|
|
|
if (knownVersions.isEmpty())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
QtVersion *qtVersion = knownVersions.first();
|
2011-02-10 11:59:10 +01:00
|
|
|
QtVersion::QmakeBuildConfigs config = qtVersion->defaultBuildConfig();
|
2011-02-09 09:50:22 +01:00
|
|
|
|
|
|
|
|
QList<BuildConfigurationInfo> infos;
|
|
|
|
|
infos.append(BuildConfigurationInfo(qtVersion, config, QString(), QString()));
|
2011-02-10 11:59:10 +01:00
|
|
|
infos.append(BuildConfigurationInfo(qtVersion, config ^ QtVersion::DebugBuild, QString(), QString()));
|
2010-12-10 19:02:19 +01:00
|
|
|
|
|
|
|
|
return create(parent, id, infos);
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-02 15:01:17 +01:00
|
|
|
ProjectExplorer::Target *Qt4MaemoTargetFactory::create(ProjectExplorer::Project *parent,
|
2011-02-21 15:30:05 +01:00
|
|
|
const QString &id, const QList<BuildConfigurationInfo> &infos)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
2011-01-18 15:20:57 +01:00
|
|
|
|
|
|
|
|
AbstractQt4MaemoTarget *target = 0;
|
2011-03-09 12:07:35 +01:00
|
|
|
QStringList deployConfigIds;
|
|
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID)) {
|
2011-01-18 15:20:57 +01:00
|
|
|
target = new Qt4Maemo5Target(static_cast<Qt4Project *>(parent), id);
|
2011-03-09 12:07:35 +01:00
|
|
|
deployConfigIds << Qt4MaemoDeployConfiguration::FremantleWithPackagingId
|
|
|
|
|
<< Qt4MaemoDeployConfiguration::FremantleWithoutPackagingId;
|
|
|
|
|
} else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID)) {
|
2011-01-18 15:20:57 +01:00
|
|
|
target = new Qt4HarmattanTarget(static_cast<Qt4Project *>(parent), id);
|
2011-03-09 12:07:35 +01:00
|
|
|
deployConfigIds << Qt4MaemoDeployConfiguration::HarmattanId;
|
|
|
|
|
} else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID)) {
|
2011-01-31 17:46:19 +01:00
|
|
|
target = new Qt4MeegoTarget(static_cast<Qt4Project *>(parent), id);
|
2011-03-09 12:07:35 +01:00
|
|
|
deployConfigIds << Qt4MaemoDeployConfiguration::MeegoId;
|
|
|
|
|
}
|
2011-01-18 15:20:57 +01:00
|
|
|
Q_ASSERT(target);
|
|
|
|
|
|
2011-02-18 09:59:49 +01:00
|
|
|
foreach (const BuildConfigurationInfo &info, infos)
|
|
|
|
|
target->addQt4BuildConfiguration(msgBuildConfigurationName(info),
|
|
|
|
|
info.version, info.buildConfig,
|
|
|
|
|
info.additionalArguments, info.directory);
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
foreach (const QString &deployConfigId, deployConfigIds) {
|
|
|
|
|
target->addDeployConfiguration(target->createDeployConfiguration(deployConfigId));
|
|
|
|
|
}
|
2011-01-18 15:20:57 +01:00
|
|
|
target->createApplicationProFiles();
|
|
|
|
|
if (target->runConfigurations().isEmpty())
|
|
|
|
|
target->addRunConfiguration(new ProjectExplorer::CustomExecutableRunConfiguration(target));
|
|
|
|
|
return target;
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|