2013-01-09 09:23:37 -05:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-01-31 17:02:30 +01:00
|
|
|
** Copyright (C) 2011 - 2013 Research In Motion
|
2013-01-09 09:23:37 -05:00
|
|
|
**
|
|
|
|
|
** Contact: Research In Motion (blackberry-qt@qnx.com)
|
|
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "blackberryconfiguration.h"
|
|
|
|
|
#include "blackberryqtversion.h"
|
2013-01-17 16:06:13 -02:00
|
|
|
#include "blackberrycertificate.h"
|
2013-01-09 09:23:37 -05:00
|
|
|
#include "qnxutils.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <qtsupport/baseqtversion.h>
|
|
|
|
|
#include <qtsupport/qtversionmanager.h>
|
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/kitmanager.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <projectexplorer/gcctoolchain.h>
|
|
|
|
|
#include <projectexplorer/toolchainmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <qt4projectmanager/qmakekitinformation.h>
|
|
|
|
|
|
|
|
|
|
#include <debugger/debuggerkitinformation.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/persistentsettings.h>
|
|
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
|
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
namespace Qnx {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
const QLatin1String SettingsGroup("BlackBerryConfiguration");
|
|
|
|
|
const QLatin1String NDKLocationKey("NDKLocation");
|
2013-01-17 16:06:13 -02:00
|
|
|
const QLatin1String CertificateGroup("Certificates");
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryConfiguration::BlackBerryConfiguration(QObject *parent)
|
|
|
|
|
:QObject(parent)
|
|
|
|
|
{
|
2013-01-17 16:06:13 -02:00
|
|
|
loadSettings();
|
|
|
|
|
connect(Core::ICore::instance(), SIGNAL(saveSettingsRequested()), this, SLOT(saveSettings()));
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
bool BlackBerryConfiguration::setNdkPath(const QString &ndkPath)
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
if (ndkPath.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
m_config.ndkPath = ndkPath;
|
2013-01-17 16:06:13 -02:00
|
|
|
|
|
|
|
|
return refresh();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BlackBerryConfiguration::refresh()
|
|
|
|
|
{
|
|
|
|
|
m_config.qnxEnv = QnxUtils::parseEnvironmentFile(QnxUtils::envFilePath(m_config.ndkPath));
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
QString ndkTarget = m_config.qnxEnv.value(QLatin1String("QNX_TARGET"));
|
|
|
|
|
QString sep = QString::fromLatin1("%1qnx6").arg(QDir::separator());
|
|
|
|
|
m_config.targetName = ndkTarget.split(sep).first().split(QDir::separator()).last();
|
|
|
|
|
|
2013-01-18 09:50:47 -05:00
|
|
|
if (QDir(ndkTarget).exists())
|
|
|
|
|
m_config.sysRoot = Utils::FileName::fromString(ndkTarget);
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
QString qnxHost = m_config.qnxEnv.value(QLatin1String("QNX_HOST"));
|
|
|
|
|
Utils::FileName qmakePath = QnxUtils::executableWithExtension(Utils::FileName::fromString(qnxHost + QLatin1String("/usr/bin/qmake")));
|
|
|
|
|
Utils::FileName gccPath = QnxUtils::executableWithExtension(Utils::FileName::fromString(qnxHost + QLatin1String("/usr/bin/qcc")));
|
|
|
|
|
Utils::FileName deviceGdbPath = QnxUtils::executableWithExtension(Utils::FileName::fromString(qnxHost + QLatin1String("/usr/bin/ntoarm-gdb")));
|
|
|
|
|
Utils::FileName simulatorGdbPath = QnxUtils::executableWithExtension(Utils::FileName::fromString(qnxHost + QLatin1String("/usr/bin/ntox86-gdb")));
|
|
|
|
|
|
|
|
|
|
if (!qmakePath.toFileInfo().exists() || !gccPath.toFileInfo().exists()
|
|
|
|
|
|| !deviceGdbPath.toFileInfo().exists() || !simulatorGdbPath.toFileInfo().exists() ) {
|
2013-02-12 09:35:55 +01:00
|
|
|
QString errorMessage = tr("The following errors occurred while setting up BB10 Configuration:");
|
2013-01-09 09:23:37 -05:00
|
|
|
if (!qmakePath.toFileInfo().exists())
|
2013-02-12 09:35:55 +01:00
|
|
|
errorMessage += QLatin1Char('\n') + tr("- No Qt version found.");
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
if (!gccPath.toFileInfo().exists())
|
2013-02-12 09:35:55 +01:00
|
|
|
errorMessage += QLatin1Char('\n') + tr("- No GCC compiler found.");
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
if (!deviceGdbPath.toFileInfo().exists())
|
2013-02-12 09:35:55 +01:00
|
|
|
errorMessage += QLatin1Char('\n') + tr("- No GDB debugger found for BB10 Device.");
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
if (!simulatorGdbPath.toFileInfo().exists())
|
2013-02-12 09:35:55 +01:00
|
|
|
errorMessage += QLatin1Char('\n') + tr("- No GDB debugger found for BB10 Simulator.");
|
2013-01-09 09:23:37 -05:00
|
|
|
|
2013-01-29 14:59:37 +01:00
|
|
|
QMessageBox::warning(0, tr("Cannot Setup BB10 Configuration"),
|
2013-01-09 09:23:37 -05:00
|
|
|
errorMessage, QMessageBox::Ok);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_config.qmakeBinaryFile = qmakePath;
|
|
|
|
|
m_config.gccCompiler = gccPath;
|
|
|
|
|
m_config.deviceDebuger = deviceGdbPath;
|
|
|
|
|
m_config.simulatorDebuger = simulatorGdbPath;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
void BlackBerryConfiguration::loadCertificates()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
|
|
|
|
|
settings->beginGroup(SettingsGroup);
|
|
|
|
|
settings->beginGroup(CertificateGroup);
|
|
|
|
|
|
|
|
|
|
foreach (QString certificateId, settings->childGroups()) {
|
|
|
|
|
settings->beginGroup(certificateId);
|
|
|
|
|
|
|
|
|
|
BlackBerryCertificate *cert =
|
|
|
|
|
new BlackBerryCertificate(settings->value(QLatin1String(Qnx::Constants::QNX_KEY_PATH)).toString(),
|
|
|
|
|
settings->value(QLatin1String(Qnx::Constants::QNX_KEY_AUTHOR)).toString());
|
|
|
|
|
cert->setParent(this);
|
|
|
|
|
|
|
|
|
|
if (settings->value(QLatin1String(Qnx::Constants::QNX_KEY_ACTIVE)).toBool())
|
|
|
|
|
m_config.activeCertificate = cert;
|
|
|
|
|
|
|
|
|
|
m_config.certificates << cert;
|
|
|
|
|
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryConfiguration::loadNdkSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
|
|
|
|
|
settings->beginGroup(SettingsGroup);
|
|
|
|
|
setNdkPath(settings->value(NDKLocationKey).toString());
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryConfiguration::saveCertificates()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
|
|
|
|
|
settings->beginGroup(SettingsGroup);
|
|
|
|
|
settings->beginGroup(CertificateGroup);
|
|
|
|
|
|
|
|
|
|
settings->remove(QString());
|
|
|
|
|
|
|
|
|
|
foreach (const BlackBerryCertificate *cert, m_config.certificates) {
|
|
|
|
|
settings->beginGroup(cert->id());
|
|
|
|
|
settings->setValue(QLatin1String(Qnx::Constants::QNX_KEY_PATH), cert->fileName());
|
|
|
|
|
settings->setValue(QLatin1String(Qnx::Constants::QNX_KEY_AUTHOR), cert->author());
|
|
|
|
|
|
|
|
|
|
if (cert == m_config.activeCertificate)
|
|
|
|
|
settings->setValue(QLatin1String(Qnx::Constants::QNX_KEY_ACTIVE), true);
|
|
|
|
|
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryConfiguration::saveNdkSettings()
|
|
|
|
|
{
|
|
|
|
|
if (m_config.ndkPath.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
settings->beginGroup(SettingsGroup);
|
|
|
|
|
settings->setValue(NDKLocationKey, m_config.ndkPath);
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryConfiguration::setupNdkConfiguration(const QString &ndkPath)
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
if (ndkPath.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
if (setNdkPath(ndkPath)) {
|
2013-01-09 09:23:37 -05:00
|
|
|
QtSupport::BaseQtVersion *qtVersion = createQtVersion();
|
|
|
|
|
ProjectExplorer::GccToolChain *tc = createGccToolChain();
|
|
|
|
|
ProjectExplorer::Kit *deviceKit = createKit(ArmLeV7, qtVersion, tc);
|
|
|
|
|
ProjectExplorer::Kit *simulatorKit = createKit(X86, qtVersion, tc);
|
|
|
|
|
if (qtVersion && tc && deviceKit && simulatorKit) {
|
|
|
|
|
tc->setTargetAbi(qtVersion->qtAbis().first());
|
|
|
|
|
// register
|
|
|
|
|
QtSupport::QtVersionManager::instance()->addVersion(qtVersion);
|
|
|
|
|
ProjectExplorer::ToolChainManager::instance()->registerToolChain(tc);
|
|
|
|
|
ProjectExplorer::KitManager::instance()->registerKit(deviceKit);
|
|
|
|
|
ProjectExplorer::KitManager::instance()->registerKit(simulatorKit);
|
|
|
|
|
|
|
|
|
|
emit updated();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
void BlackBerryConfiguration::cleanNdkConfiguration()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtVersionManager::instance()->qtVersionForQMakeBinary(m_config.qmakeBinaryFile);
|
|
|
|
|
if (version) {
|
|
|
|
|
foreach (ProjectExplorer::Kit *kit, ProjectExplorer::KitManager::instance()->kits()) {
|
|
|
|
|
if (version == QtSupport::QtKitInformation::qtVersion(kit))
|
|
|
|
|
ProjectExplorer::KitManager::instance()->deregisterKit(kit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QtSupport::QtVersionManager::instance()->removeVersion(version);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (ProjectExplorer::ToolChain* tc, ProjectExplorer::ToolChainManager::instance()->toolChains()) {
|
|
|
|
|
if (tc->compilerCommand() == m_config.gccCompiler)
|
|
|
|
|
ProjectExplorer::ToolChainManager::instance()->deregisterToolChain(tc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryConfig conf;
|
2013-01-17 16:06:13 -02:00
|
|
|
conf.activeCertificate = m_config.activeCertificate;
|
|
|
|
|
conf.certificates = m_config.certificates;
|
2013-01-09 09:23:37 -05:00
|
|
|
m_config = conf;
|
|
|
|
|
emit updated();
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
clearNdkSettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryConfiguration::syncCertificates(QList<BlackBerryCertificate*> certificates,
|
|
|
|
|
BlackBerryCertificate *activeCertificate)
|
|
|
|
|
{
|
|
|
|
|
m_config.activeCertificate = activeCertificate;
|
|
|
|
|
|
|
|
|
|
foreach (BlackBerryCertificate *cert, m_config.certificates) {
|
|
|
|
|
if (!certificates.contains(cert)) {
|
|
|
|
|
m_config.certificates.removeAll(cert);
|
|
|
|
|
delete cert;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (BlackBerryCertificate *cert, certificates) {
|
|
|
|
|
if (!m_config.certificates.contains(cert)) {
|
|
|
|
|
cert->setParent(this);
|
|
|
|
|
m_config.certificates << cert;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<BlackBerryCertificate*> BlackBerryConfiguration::certificates() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.certificates;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryCertificate * BlackBerryConfiguration::activeCertificate()
|
|
|
|
|
{
|
|
|
|
|
return m_config.activeCertificate;
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QtSupport::BaseQtVersion *BlackBerryConfiguration::createQtVersion()
|
|
|
|
|
{
|
|
|
|
|
if (m_config.qmakeBinaryFile.isEmpty())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
QString cpuDir = m_config.qnxEnv.value(QLatin1String("CPUVARDIR"));
|
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtVersionManager::instance()->qtVersionForQMakeBinary(m_config.qmakeBinaryFile);
|
|
|
|
|
if (version) {
|
2013-01-29 14:59:37 +01:00
|
|
|
QMessageBox::warning(0, tr("Qt Version Already Known"),
|
2013-01-09 09:23:37 -05:00
|
|
|
tr("This Qt version was already registered"), QMessageBox::Ok);
|
|
|
|
|
return version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
version = new BlackBerryQtVersion(QnxUtils::cpudirToArch(cpuDir), m_config.qmakeBinaryFile, false, QString(), m_config.ndkPath);
|
|
|
|
|
if (!version) {
|
2013-01-29 14:59:37 +01:00
|
|
|
QMessageBox::warning(0, tr("Invalid Qt version"),
|
2013-01-09 09:23:37 -05:00
|
|
|
tr("Unable to add BlackBerry Qt version"), QMessageBox::Ok);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
version->setDisplayName(QString::fromLatin1("Qt BlackBerry 10 (%1)").arg(m_config.targetName));
|
|
|
|
|
|
|
|
|
|
return version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::GccToolChain *BlackBerryConfiguration::createGccToolChain()
|
|
|
|
|
{
|
|
|
|
|
if (m_config.qmakeBinaryFile.isEmpty() || m_config.gccCompiler.isEmpty())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
foreach (ProjectExplorer::ToolChain* tc, ProjectExplorer::ToolChainManager::instance()->toolChains()) {
|
|
|
|
|
if (tc->compilerCommand() == m_config.gccCompiler) {
|
2013-01-29 14:59:37 +01:00
|
|
|
QMessageBox::warning(0, tr("Compiler Already Known"),
|
2013-01-09 09:23:37 -05:00
|
|
|
tr("This Compiler was already registered"), QMessageBox::Ok);
|
|
|
|
|
return dynamic_cast<ProjectExplorer::GccToolChain*>(tc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::GccToolChain* tc = new ProjectExplorer::GccToolChain(QLatin1String(ProjectExplorer::Constants::GCC_TOOLCHAIN_ID), false);
|
|
|
|
|
tc->setDisplayName(QString::fromLatin1("GCC BlackBerry 10 (%1)").arg(m_config.targetName));
|
|
|
|
|
tc->setCompilerCommand(m_config.gccCompiler);
|
|
|
|
|
|
|
|
|
|
return tc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::Kit *BlackBerryConfiguration::createKit(QnxArchitecture arch, QtSupport::BaseQtVersion *qtVersion, ProjectExplorer::GccToolChain *tc)
|
|
|
|
|
{
|
|
|
|
|
if (!qtVersion || !tc || m_config.targetName.isEmpty())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
// Check if an identical kit already exists
|
|
|
|
|
foreach (ProjectExplorer::Kit *kit, ProjectExplorer::KitManager::instance()->kits())
|
|
|
|
|
{
|
|
|
|
|
if (QtSupport::QtKitInformation::qtVersion(kit) == qtVersion && ProjectExplorer::ToolChainKitInformation::toolChain(kit) == tc
|
|
|
|
|
&& ProjectExplorer::DeviceTypeKitInformation::deviceTypeId(kit) == Constants::QNX_BB_OS_TYPE
|
|
|
|
|
&& ProjectExplorer::SysRootKitInformation::sysRoot(kit) == m_config.sysRoot) {
|
|
|
|
|
if ((arch == X86 && Qt4ProjectManager::QmakeKitInformation::mkspec(kit).toString() == QString::fromLatin1("blackberry-x86-qcc")
|
|
|
|
|
&& Debugger::DebuggerKitInformation::debuggerCommand(kit) == m_config.simulatorDebuger)
|
|
|
|
|
|| (arch == ArmLeV7 && Debugger::DebuggerKitInformation::debuggerCommand(kit) == m_config.deviceDebuger)) {
|
2013-01-29 14:59:37 +01:00
|
|
|
QMessageBox::warning(0, tr("Kit Already Known"),
|
2013-01-09 09:23:37 -05:00
|
|
|
tr("This Kit was already registered"), QMessageBox::Ok);
|
|
|
|
|
return kit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::Kit *kit = new ProjectExplorer::Kit;
|
|
|
|
|
QtSupport::QtKitInformation::setQtVersion(kit, qtVersion);
|
|
|
|
|
ProjectExplorer::ToolChainKitInformation::setToolChain(kit, tc);
|
|
|
|
|
if (arch == X86) {
|
|
|
|
|
Debugger::DebuggerKitInformation::setDebuggerCommand(kit, m_config.simulatorDebuger);
|
|
|
|
|
Qt4ProjectManager::QmakeKitInformation::setMkspec(kit, Utils::FileName::fromString(QString::fromLatin1("blackberry-x86-qcc")));
|
|
|
|
|
// TODO: Check if the name already exists(?)
|
|
|
|
|
kit->setDisplayName(tr("BlackBerry 10 (%1) - Simulator").arg(m_config.targetName));
|
|
|
|
|
} else {
|
|
|
|
|
Debugger::DebuggerKitInformation::setDebuggerCommand(kit, m_config.deviceDebuger);
|
|
|
|
|
kit->setDisplayName(tr("BlackBerry 10 (%1)").arg(m_config.targetName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::DeviceTypeKitInformation::setDeviceTypeId(kit, Constants::QNX_BB_OS_TYPE);
|
|
|
|
|
ProjectExplorer::SysRootKitInformation::setSysRoot(kit, m_config.sysRoot);
|
|
|
|
|
|
|
|
|
|
return kit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
void BlackBerryConfiguration::loadSettings()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
2013-01-17 16:06:13 -02:00
|
|
|
loadNdkSettings();
|
|
|
|
|
loadCertificates();
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
void BlackBerryConfiguration::saveSettings()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
2013-01-17 16:06:13 -02:00
|
|
|
saveNdkSettings();
|
|
|
|
|
saveCertificates();
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
void BlackBerryConfiguration::clearNdkSettings()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
settings->beginGroup(SettingsGroup);
|
|
|
|
|
settings->remove(NDKLocationKey);
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryConfiguration &BlackBerryConfiguration::instance()
|
|
|
|
|
{
|
|
|
|
|
if (m_instance == 0)
|
|
|
|
|
m_instance = new BlackBerryConfiguration();
|
|
|
|
|
return *m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryConfiguration::ndkPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.ndkPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryConfiguration::targetName() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.targetName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryConfig BlackBerryConfiguration::config() const
|
|
|
|
|
{
|
|
|
|
|
return m_config;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::FileName BlackBerryConfiguration::qmakePath() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.qmakeBinaryFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::FileName BlackBerryConfiguration::gccPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.gccCompiler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::FileName BlackBerryConfiguration::deviceGdbPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.deviceDebuger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::FileName BlackBerryConfiguration::simulatorGdbPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.simulatorDebuger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::FileName BlackBerryConfiguration::sysRoot() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.sysRoot;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 16:06:13 -02:00
|
|
|
QString BlackBerryConfiguration::dataDirPath() const
|
|
|
|
|
{
|
|
|
|
|
const QString homeDir = QDir::homePath();
|
|
|
|
|
|
|
|
|
|
if (Utils::HostOsInfo::isMacHost())
|
|
|
|
|
return homeDir + QLatin1String("/Library/Research in Motion");
|
|
|
|
|
|
|
|
|
|
if (Utils::HostOsInfo::isAnyUnixHost())
|
|
|
|
|
return homeDir + QLatin1String("/.rim");
|
|
|
|
|
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
|
if (Utils::HostOsInfo::isWindowsHost()) {
|
|
|
|
|
// needed because QSysInfo::windowsVersion() is not available on other
|
|
|
|
|
// platforms.
|
|
|
|
|
if (QSysInfo::windowsVersion() == QSysInfo::WV_XP)
|
|
|
|
|
return homeDir
|
|
|
|
|
+ QLatin1String("/Local Settings/Application Data/Research In Motion");
|
|
|
|
|
return homeDir + QLatin1String("/AppData/Local/Research in Motion");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryConfiguration::barsignerCskPath() const
|
|
|
|
|
{
|
|
|
|
|
return dataDirPath() + QLatin1String("/barsigner.csk");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryConfiguration::barsignerDbPath() const
|
|
|
|
|
{
|
|
|
|
|
return dataDirPath() + QLatin1String("/barsigner.db");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryConfiguration::defaultKeystorePath() const
|
|
|
|
|
{
|
|
|
|
|
return dataDirPath() + QLatin1String("/author.p12");
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-09 09:23:37 -05:00
|
|
|
// TODO: QnxUtils::parseEnvFile() and qnxEnv() to return Util::Enviroment instead(?)
|
|
|
|
|
QMultiMap<QString, QString> BlackBerryConfiguration::qnxEnv() const
|
|
|
|
|
{
|
|
|
|
|
return m_config.qnxEnv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerryConfiguration* BlackBerryConfiguration::m_instance = 0;
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qnx
|