2012-06-29 07:23:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2013-10-11 17:44:13 +02:00
|
|
|
** Contact: BlackBerry (qt@blackberry.com)
|
2012-06-29 07:23:13 +02:00
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2012-06-29 07:23:13 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
#include "qnxrunconfigurationfactory.h"
|
|
|
|
|
|
|
|
|
|
#include "qnxconstants.h"
|
|
|
|
|
#include "qnxrunconfiguration.h"
|
|
|
|
|
#include "qnxdeviceconfigurationfactory.h"
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
2012-06-29 07:23:13 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2013-10-29 16:19:24 +01:00
|
|
|
#include <qmakeprojectmanager/qmakeproject.h>
|
2014-06-12 16:24:52 +02:00
|
|
|
#include <qmakeprojectmanager/qmakenodes.h>
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
using namespace Qnx;
|
|
|
|
|
using namespace Qnx::Internal;
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
static QString pathFromId(Core::Id id)
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2013-03-21 16:25:09 +01:00
|
|
|
return id.suffixAfter(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX);
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QnxRunConfigurationFactory::QnxRunConfigurationFactory(QObject *parent) :
|
|
|
|
|
ProjectExplorer::IRunConfigurationFactory(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-12 16:24:52 +02:00
|
|
|
QList<Core::Id> QnxRunConfigurationFactory::availableCreationIds(ProjectExplorer::Target *parent, CreationMode mode) const
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2014-06-12 16:24:52 +02:00
|
|
|
using QmakeProjectManager::QmakeProject;
|
2012-06-29 07:23:13 +02:00
|
|
|
if (!canHandle(parent))
|
2014-06-12 16:24:52 +02:00
|
|
|
return QList<Core::Id>();
|
2012-06-29 07:23:13 +02:00
|
|
|
|
2014-06-12 16:24:52 +02:00
|
|
|
QmakeProject *qt4Project = qobject_cast<QmakeProject *>(parent->project());
|
2012-06-29 07:23:13 +02:00
|
|
|
if (!qt4Project)
|
2014-06-12 16:24:52 +02:00
|
|
|
return QList<Core::Id>();
|
2014-06-04 13:11:25 +02:00
|
|
|
QList<QmakeProjectManager::QmakeProFileNode *> nodes = qt4Project->applicationProFiles();
|
2014-06-12 16:24:52 +02:00
|
|
|
|
|
|
|
|
if (mode == AutoCreate)
|
|
|
|
|
nodes = QmakeProject::nodesWithQtcRunnable(nodes);
|
|
|
|
|
|
|
|
|
|
return QmakeProject::idsForNodes(Core::Id(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX),
|
|
|
|
|
nodes);
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
QString QnxRunConfigurationFactory::displayNameForId(Core::Id id) const
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
|
|
|
|
const QString path = pathFromId(id);
|
|
|
|
|
if (path.isEmpty())
|
|
|
|
|
return QString();
|
|
|
|
|
|
2013-03-21 16:25:09 +01:00
|
|
|
if (id.name().startsWith(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX))
|
2012-06-29 07:23:13 +02:00
|
|
|
return tr("%1 on QNX Device").arg(QFileInfo(path).completeBaseName());
|
|
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
bool QnxRunConfigurationFactory::canCreate(ProjectExplorer::Target *parent, Core::Id id) const
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2013-04-18 09:03:24 +02:00
|
|
|
if (!canHandle(parent) || !id.name().startsWith(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX))
|
2012-06-29 07:23:13 +02:00
|
|
|
return false;
|
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
QmakeProjectManager::QmakeProject *qt4Project = qobject_cast<QmakeProjectManager::QmakeProject *>(parent->project());
|
2012-06-29 07:23:13 +02:00
|
|
|
if (!qt4Project)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return qt4Project->hasApplicationProFile(pathFromId(id));
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
ProjectExplorer::RunConfiguration *QnxRunConfigurationFactory::doCreate(ProjectExplorer::Target *parent, Core::Id id)
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2014-08-07 15:53:54 +02:00
|
|
|
const QString projectFilePath = pathFromId(id);
|
|
|
|
|
const QmakeProjectManager::QmakeProject * const qt4Project
|
|
|
|
|
= qobject_cast<QmakeProjectManager::QmakeProject *>(parent->project());
|
|
|
|
|
QTC_ASSERT(qt4Project, return 0);
|
|
|
|
|
foreach (const QmakeProjectManager::QmakeProFileNode * const node,
|
|
|
|
|
qt4Project->applicationProFiles()) {
|
|
|
|
|
if (node->path() == projectFilePath)
|
|
|
|
|
return new QnxRunConfiguration(parent, id, node->targetInformation().target);
|
|
|
|
|
}
|
|
|
|
|
QTC_CHECK(false);
|
|
|
|
|
return 0;
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QnxRunConfigurationFactory::canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const
|
|
|
|
|
{
|
2013-03-21 16:25:09 +01:00
|
|
|
return canHandle(parent)
|
|
|
|
|
&& ProjectExplorer::idFromMap(map).name().startsWith(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX);
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
2013-03-28 14:53:12 +01:00
|
|
|
ProjectExplorer::RunConfiguration *QnxRunConfigurationFactory::doRestore(ProjectExplorer::Target *parent,
|
|
|
|
|
const QVariantMap &map)
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2013-03-28 14:53:12 +01:00
|
|
|
Q_UNUSED(map);
|
|
|
|
|
return new QnxRunConfiguration(parent, Core::Id(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX), QString());
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QnxRunConfigurationFactory::canClone(ProjectExplorer::Target *parent, ProjectExplorer::RunConfiguration *source) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, source->id());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::RunConfiguration *QnxRunConfigurationFactory::clone(ProjectExplorer::Target *parent, ProjectExplorer::RunConfiguration *source)
|
|
|
|
|
{
|
|
|
|
|
if (!canClone(parent, source))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
QnxRunConfiguration *old = static_cast<QnxRunConfiguration *>(source);
|
|
|
|
|
return new QnxRunConfiguration(parent, old);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QnxRunConfigurationFactory::canHandle(ProjectExplorer::Target *t) const
|
|
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
Core::Id deviceType = ProjectExplorer::DeviceTypeKitInformation::deviceTypeId(t->kit());
|
2012-06-29 07:23:13 +02:00
|
|
|
if (deviceType != QnxDeviceConfigurationFactory::deviceType())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|