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"
|
|
|
|
|
#include "qt4project.h"
|
|
|
|
|
#include "qt4projectmanagerconstants.h"
|
|
|
|
|
#include "qt-maemo/maemodeploystep.h"
|
2011-01-19 10:16:47 +01:00
|
|
|
#include "maemoglobal.h"
|
2010-12-10 19:02:19 +01:00
|
|
|
#include "qt-maemo/maemopackagecreationstep.h"
|
|
|
|
|
#include "qt-maemo/maemorunconfiguration.h"
|
|
|
|
|
#include "qt-maemo/qt4maemotarget.h"
|
|
|
|
|
|
|
|
|
|
#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));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Qt4BaseTarget *Qt4MaemoTargetFactory::restore(ProjectExplorer::Project *parent, const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Qt4MaemoTargetFactory::defaultShadowBuildDirectory(const QString &projectLocation, const QString &id)
|
|
|
|
|
{
|
2011-01-18 15:20:57 +01:00
|
|
|
QString suffix;
|
|
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
|
|
|
|
|
suffix = QLatin1String("maemo");
|
|
|
|
|
else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID))
|
|
|
|
|
suffix = QLatin1String("harmattan");
|
2011-01-31 17:46:19 +01:00
|
|
|
else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID))
|
|
|
|
|
suffix = QLatin1String("meego");
|
2011-01-18 15:20:57 +01:00
|
|
|
else
|
2010-12-10 19:02:19 +01:00
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
// currently we can't have the build directory to be deeper than the source directory
|
|
|
|
|
// since that is broken in qmake
|
|
|
|
|
// Once qmake is fixed we can change that to have a top directory and
|
|
|
|
|
// subdirectories per build. (Replacing "QChar('-')" with "QChar('/') )
|
2011-01-18 15:20:57 +01:00
|
|
|
return projectLocation + QLatin1Char('-') + suffix;
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
2011-02-21 15:30:05 +01:00
|
|
|
QList<BuildConfigurationInfo> Qt4MaemoTargetFactory::availableBuildConfigurations(const QString &id, const QString &proFilePath, const QtVersionNumber &minimumQtVersion)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
|
|
|
|
QList<BuildConfigurationInfo> infos;
|
2011-02-21 15:30:05 +01:00
|
|
|
QList<QtVersion *> knownVersions = QtVersionManager::instance()->versionsForTargetId(id, minimumQtVersion);
|
2010-12-10 19:02:19 +01:00
|
|
|
|
|
|
|
|
foreach (QtVersion *version, knownVersions) {
|
2011-01-20 12:42:42 +01:00
|
|
|
if (!version->isValid())
|
|
|
|
|
continue;
|
2011-02-08 19:05:05 +01:00
|
|
|
QtVersion::QmakeBuildConfigs config = version->defaultBuildConfig();
|
2011-01-18 15:20:57 +01:00
|
|
|
QString dir = defaultShadowBuildDirectory(Qt4Project::defaultTopLevelBuildDirectory(proFilePath), id);
|
2010-12-10 19:02:19 +01:00
|
|
|
infos.append(BuildConfigurationInfo(version, config, QString(), dir));
|
2011-02-10 11:59:10 +01:00
|
|
|
infos.append(BuildConfigurationInfo(version, config ^ QtVersion::DebugBuild, QString(), dir));
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|
|
|
|
|
return infos;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 15:30:05 +01:00
|
|
|
bool Qt4MaemoTargetFactory::isMobileTarget(const QString &id)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(id)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-10 19:02:19 +01:00
|
|
|
Qt4BaseTarget *Qt4MaemoTargetFactory::create(ProjectExplorer::Project *parent, const QString &id)
|
|
|
|
|
{
|
|
|
|
|
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-01-18 15:20:57 +01:00
|
|
|
Qt4BaseTarget *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;
|
|
|
|
|
if (id == QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4Maemo5Target(static_cast<Qt4Project *>(parent), id);
|
|
|
|
|
else if (id == QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4HarmattanTarget(static_cast<Qt4Project *>(parent), id);
|
2011-01-31 17:46:19 +01:00
|
|
|
else if (id == QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID))
|
|
|
|
|
target = new Qt4MeegoTarget(static_cast<Qt4Project *>(parent), id);
|
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-01-18 15:20:57 +01:00
|
|
|
target->addDeployConfiguration(target->deployConfigurationFactory()->create(target, ProjectExplorer::Constants::DEFAULT_DEPLOYCONFIGURATION_ID));
|
|
|
|
|
target->createApplicationProFiles();
|
|
|
|
|
if (target->runConfigurations().isEmpty())
|
|
|
|
|
target->addRunConfiguration(new ProjectExplorer::CustomExecutableRunConfiguration(target));
|
|
|
|
|
return target;
|
2010-12-10 19:02:19 +01:00
|
|
|
}
|