2012-06-29 07:23:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2011 - 2013 Research In Motion
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
|
|
|
|
** Contact: Research In Motion (blackberry-qt@qnx.com)
|
|
|
|
|
** 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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/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
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt 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>
|
|
|
|
|
#include <qt4projectmanager/qt4project.h>
|
|
|
|
|
|
|
|
|
|
using namespace Qnx;
|
|
|
|
|
using namespace Qnx::Internal;
|
|
|
|
|
|
2013-03-21 16:25:09 +01:00
|
|
|
static QString pathFromId(const 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)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Core::Id> QnxRunConfigurationFactory::availableCreationIds(ProjectExplorer::Target *parent) const
|
|
|
|
|
{
|
|
|
|
|
QList<Core::Id> ids;
|
|
|
|
|
if (!canHandle(parent))
|
|
|
|
|
return ids;
|
|
|
|
|
|
|
|
|
|
Qt4ProjectManager::Qt4Project *qt4Project = qobject_cast<Qt4ProjectManager::Qt4Project *>(parent->project());
|
|
|
|
|
if (!qt4Project)
|
|
|
|
|
return ids;
|
|
|
|
|
|
|
|
|
|
QStringList proFiles = qt4Project->applicationProFilePathes(QLatin1String(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX));
|
|
|
|
|
foreach (const QString &pf, proFiles)
|
2013-03-19 12:35:08 +01:00
|
|
|
ids << Core::Id::fromString(pf);
|
2012-06-29 07:23:13 +02:00
|
|
|
return ids;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QnxRunConfigurationFactory::displayNameForId(const Core::Id id) const
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QnxRunConfigurationFactory::canCreate(ProjectExplorer::Target *parent, const Core::Id id) const
|
|
|
|
|
{
|
2013-03-26 16:39:41 +01:00
|
|
|
if (!canHandle(parent) || id.name().startsWith(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX))
|
2012-06-29 07:23:13 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Qt4ProjectManager::Qt4Project *qt4Project = qobject_cast<Qt4ProjectManager::Qt4Project *>(parent->project());
|
|
|
|
|
if (!qt4Project)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return qt4Project->hasApplicationProFile(pathFromId(id));
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-26 16:39:41 +01:00
|
|
|
ProjectExplorer::RunConfiguration *QnxRunConfigurationFactory::doCreate(ProjectExplorer::Target *parent, const Core::Id id)
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
2013-03-26 16:39:41 +01:00
|
|
|
return new QnxRunConfiguration(parent, id, pathFromId(id));
|
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;
|
|
|
|
|
}
|