2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-09-18 15:58:07 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2012-09-18 15:58:07 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-09-18 15:58:07 +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-09-18 15:58:07 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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-09-18 15:58:07 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-09-18 15:58:07 +02:00
|
|
|
|
|
|
|
|
#include "addtoolchainoperation.h"
|
|
|
|
|
|
|
|
|
|
#include "addkeysoperation.h"
|
|
|
|
|
#include "findkeyoperation.h"
|
|
|
|
|
#include "findvalueoperation.h"
|
|
|
|
|
#include "getoperation.h"
|
|
|
|
|
#include "rmkeysoperation.h"
|
|
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
2016-01-19 14:21:28 +01:00
|
|
|
#include <QDir>
|
|
|
|
|
|
2012-09-18 15:58:07 +02:00
|
|
|
// ToolChain file stuff:
|
2013-10-29 16:44:24 +01:00
|
|
|
const char COUNT[] = "ToolChain.Count";
|
|
|
|
|
const char PREFIX[] = "ToolChain.";
|
|
|
|
|
const char VERSION[] = "Version";
|
2012-09-18 15:58:07 +02:00
|
|
|
|
|
|
|
|
// ToolChain:
|
2013-10-29 16:44:24 +01:00
|
|
|
const char ID[] = "ProjectExplorer.ToolChain.Id";
|
|
|
|
|
const char DISPLAYNAME[] = "ProjectExplorer.ToolChain.DisplayName";
|
|
|
|
|
const char AUTODETECTED[] = "ProjectExplorer.ToolChain.Autodetect";
|
2012-09-18 15:58:07 +02:00
|
|
|
|
|
|
|
|
// GCC ToolChain:
|
2013-10-29 16:44:24 +01:00
|
|
|
const char PATH[] = "ProjectExplorer.GccToolChain.Path";
|
|
|
|
|
const char TARGET_ABI[] = "ProjectExplorer.GccToolChain.TargetAbi";
|
|
|
|
|
const char SUPPORTED_ABIS[] = "ProjectExplorer.GccToolChain.SupportedAbis";
|
2012-09-18 15:58:07 +02:00
|
|
|
|
|
|
|
|
QString AddToolChainOperation::name() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String("addTC");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AddToolChainOperation::helpText() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String("add a tool chain to Qt Creator");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AddToolChainOperation::argumentsHelpText() const
|
|
|
|
|
{
|
2013-02-07 10:42:24 +01:00
|
|
|
return QLatin1String(" --id <ID> id of the new tool chain (required).\n"
|
|
|
|
|
" --name <NAME> display name of the new tool chain (required).\n"
|
|
|
|
|
" --path <PATH> path to the compiler (required).\n"
|
|
|
|
|
" --abi <ABI STRING> ABI of the compiler (required).\n"
|
2012-09-18 15:58:07 +02:00
|
|
|
" --supportedAbis <ABI STRING>,<ABI STRING> list of ABIs supported by the compiler.\n"
|
|
|
|
|
" <KEY> <TYPE:VALUE> extra key value pairs\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AddToolChainOperation::setArguments(const QStringList &args)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < args.count(); ++i) {
|
|
|
|
|
const QString current = args.at(i);
|
|
|
|
|
const QString next = ((i + 1) < args.count()) ? args.at(i + 1) : QString();
|
|
|
|
|
|
2013-02-07 10:42:24 +01:00
|
|
|
if (next.isNull() && current.startsWith(QLatin1String("--"))) {
|
|
|
|
|
std::cerr << "No parameter for option '" << qPrintable(current) << "' given." << std::endl << std::endl;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-18 15:58:07 +02:00
|
|
|
if (current == QLatin1String("--id")) {
|
|
|
|
|
++i; // skip next;
|
|
|
|
|
m_id = next;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (current == QLatin1String("--name")) {
|
|
|
|
|
++i; // skip next;
|
|
|
|
|
m_displayName = next;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (current == QLatin1String("--path")) {
|
|
|
|
|
++i; // skip next;
|
2016-01-19 14:21:28 +01:00
|
|
|
m_path = QDir::fromNativeSeparators(next);
|
2012-09-18 15:58:07 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (current == QLatin1String("--abi")) {
|
|
|
|
|
++i; // skip next;
|
|
|
|
|
m_targetAbi = next;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (current == QLatin1String("--supportedAbis")) {
|
|
|
|
|
++i; // skip next;
|
|
|
|
|
m_supportedAbis = next;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 10:42:24 +01:00
|
|
|
if (next.isNull()) {
|
|
|
|
|
std::cerr << "No value given for key '" << qPrintable(current) << "'.";
|
2012-09-18 15:58:07 +02:00
|
|
|
return false;
|
2013-02-07 10:42:24 +01:00
|
|
|
}
|
2012-09-18 15:58:07 +02:00
|
|
|
++i; // skip next;
|
|
|
|
|
KeyValuePair pair(current, next);
|
2013-02-07 10:42:24 +01:00
|
|
|
if (!pair.value.isValid()) {
|
|
|
|
|
std::cerr << "Value for key '" << qPrintable(current) << "' is not valid.";
|
2012-09-18 15:58:07 +02:00
|
|
|
return false;
|
2013-02-07 10:42:24 +01:00
|
|
|
}
|
2012-09-18 15:58:07 +02:00
|
|
|
m_extra << pair;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_supportedAbis.isEmpty())
|
|
|
|
|
m_supportedAbis = m_targetAbi;
|
|
|
|
|
|
2013-02-07 10:42:24 +01:00
|
|
|
if (m_id.isEmpty())
|
|
|
|
|
std::cerr << "No id given for tool chain." << std::endl;
|
|
|
|
|
if (m_displayName.isEmpty())
|
|
|
|
|
std::cerr << "No name given for tool chain." << std::endl;
|
|
|
|
|
if (m_path.isEmpty())
|
|
|
|
|
std::cerr << "No path given for tool chain." << std::endl;
|
|
|
|
|
if (m_targetAbi.isEmpty())
|
|
|
|
|
std::cerr << "No target abi given for tool chain." << std::endl;
|
|
|
|
|
|
2012-09-18 15:58:07 +02:00
|
|
|
return !m_id.isEmpty() && !m_displayName.isEmpty() && !m_path.isEmpty() && !m_targetAbi.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AddToolChainOperation::execute() const
|
|
|
|
|
{
|
2014-07-02 10:12:38 +03:00
|
|
|
QVariantMap map = load(QLatin1String("ToolChains"));
|
2012-09-18 15:58:07 +02:00
|
|
|
if (map.isEmpty())
|
|
|
|
|
map = initializeToolChains();
|
|
|
|
|
|
2013-02-22 13:57:00 +01:00
|
|
|
QVariantMap result = addToolChain(map, m_id, m_displayName, m_path, m_targetAbi, m_supportedAbis, m_extra);
|
2013-05-16 15:47:47 +02:00
|
|
|
if (result.isEmpty() || map == result)
|
2013-07-08 08:35:18 +02:00
|
|
|
return 2;
|
2012-09-18 15:58:07 +02:00
|
|
|
|
2014-07-02 10:12:38 +03:00
|
|
|
return save(result, QLatin1String("ToolChains")) ? 0 : 3;
|
2012-09-18 15:58:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
bool AddToolChainOperation::test() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map = initializeToolChains();
|
|
|
|
|
|
|
|
|
|
// Add toolchain:
|
|
|
|
|
map = addToolChain(map, QLatin1String("testId"), QLatin1String("name"), QLatin1String("/tmp/test"),
|
|
|
|
|
QLatin1String("test-abi"), QLatin1String("test-abi,test-abi2"),
|
|
|
|
|
KeyValuePairList() << KeyValuePair(QLatin1String("ExtraKey"), QVariant(QLatin1String("ExtraValue"))));
|
2013-06-18 21:15:37 +02:00
|
|
|
if (map.value(QLatin1String(COUNT)).toInt() != 1
|
2012-09-18 15:58:07 +02:00
|
|
|
|| !map.contains(QString::fromLatin1(PREFIX) + QLatin1Char('0')))
|
|
|
|
|
return false;
|
|
|
|
|
QVariantMap tcData = map.value(QString::fromLatin1(PREFIX) + QLatin1Char('0')).toMap();
|
|
|
|
|
if (tcData.count() != 7
|
|
|
|
|
|| tcData.value(QLatin1String(ID)).toString() != QLatin1String("testId")
|
|
|
|
|
|| tcData.value(QLatin1String(DISPLAYNAME)).toString() != QLatin1String("name")
|
|
|
|
|
|| tcData.value(QLatin1String(AUTODETECTED)).toBool() != true
|
|
|
|
|
|| tcData.value(QLatin1String(PATH)).toString() != QLatin1String("/tmp/test")
|
|
|
|
|
|| tcData.value(QLatin1String(TARGET_ABI)).toString() != QLatin1String("test-abi")
|
|
|
|
|
|| tcData.value(QLatin1String(SUPPORTED_ABIS)).toList().count() != 2
|
|
|
|
|
|| tcData.value(QLatin1String("ExtraKey")).toString() != QLatin1String("ExtraValue"))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Ignore same Id:
|
|
|
|
|
QVariantMap unchanged = addToolChain(map, QLatin1String("testId"), QLatin1String("name2"), QLatin1String("/tmp/test2"),
|
|
|
|
|
QLatin1String("test-abi2"), QLatin1String("test-abi2,test-abi3"),
|
|
|
|
|
KeyValuePairList() << KeyValuePair(QLatin1String("ExtraKey"), QVariant(QLatin1String("ExtraValue2"))));
|
|
|
|
|
if (!unchanged.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Make sure name stays unique:
|
2014-03-04 11:06:51 +01:00
|
|
|
map = addToolChain(map, QLatin1String("{some-tc-id}"), QLatin1String("name"), QLatin1String("/tmp/test"),
|
2012-09-18 15:58:07 +02:00
|
|
|
QLatin1String("test-abi"), QLatin1String("test-abi,test-abi2"),
|
|
|
|
|
KeyValuePairList() << KeyValuePair(QLatin1String("ExtraKey"), QVariant(QLatin1String("ExtraValue"))));
|
2012-09-28 09:50:06 +02:00
|
|
|
if (map.value(QLatin1String(COUNT)).toInt() != 2
|
2012-09-18 15:58:07 +02:00
|
|
|
|| !map.contains(QString::fromLatin1(PREFIX) + QLatin1Char('0'))
|
|
|
|
|
|| !map.contains(QString::fromLatin1(PREFIX) + QLatin1Char('1')))
|
|
|
|
|
return false;
|
|
|
|
|
tcData = map.value(QString::fromLatin1(PREFIX) + QLatin1Char('0')).toMap();
|
|
|
|
|
if (tcData.count() != 7
|
|
|
|
|
|| tcData.value(QLatin1String(ID)).toString() != QLatin1String("testId")
|
|
|
|
|
|| tcData.value(QLatin1String(DISPLAYNAME)).toString() != QLatin1String("name")
|
|
|
|
|
|| tcData.value(QLatin1String(AUTODETECTED)).toBool() != true
|
|
|
|
|
|| tcData.value(QLatin1String(PATH)).toString() != QLatin1String("/tmp/test")
|
|
|
|
|
|| tcData.value(QLatin1String(TARGET_ABI)).toString() != QLatin1String("test-abi")
|
|
|
|
|
|| tcData.value(QLatin1String(SUPPORTED_ABIS)).toList().count() != 2
|
|
|
|
|
|| tcData.value(QLatin1String("ExtraKey")).toString() != QLatin1String("ExtraValue"))
|
|
|
|
|
return false;
|
|
|
|
|
tcData = map.value(QString::fromLatin1(PREFIX) + QLatin1Char('1')).toMap();
|
|
|
|
|
if (tcData.count() != 7
|
2014-03-04 11:06:51 +01:00
|
|
|
|| tcData.value(QLatin1String(ID)).toString() != QLatin1String("{some-tc-id}")
|
2012-09-18 15:58:07 +02:00
|
|
|
|| tcData.value(QLatin1String(DISPLAYNAME)).toString() != QLatin1String("name2")
|
|
|
|
|
|| tcData.value(QLatin1String(AUTODETECTED)).toBool() != true
|
|
|
|
|
|| tcData.value(QLatin1String(PATH)).toString() != QLatin1String("/tmp/test")
|
|
|
|
|
|| tcData.value(QLatin1String(TARGET_ABI)).toString() != QLatin1String("test-abi")
|
|
|
|
|
|| tcData.value(QLatin1String(SUPPORTED_ABIS)).toList().count() != 2
|
|
|
|
|
|| tcData.value(QLatin1String("ExtraKey")).toString() != QLatin1String("ExtraValue"))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
QVariantMap AddToolChainOperation::addToolChain(const QVariantMap &map,
|
|
|
|
|
const QString &id, const QString &displayName,
|
|
|
|
|
const QString &path, const QString &abi,
|
|
|
|
|
const QString &supportedAbis, const KeyValuePairList &extra)
|
|
|
|
|
{
|
|
|
|
|
// Sanity check: Does the Id already exist?
|
2014-03-04 11:06:51 +01:00
|
|
|
if (exists(map, id)) {
|
2012-09-18 15:58:07 +02:00
|
|
|
std::cerr << "Error: Id " << qPrintable(id) << " already defined for tool chains." << std::endl;
|
|
|
|
|
return QVariantMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find position to insert Tool Chain at:
|
|
|
|
|
bool ok;
|
|
|
|
|
int count = GetOperation::get(map, QLatin1String(COUNT)).toInt(&ok);
|
|
|
|
|
if (!ok || count < 0) {
|
|
|
|
|
std::cerr << "Error: Count found in toolchains file seems wrong." << std::endl;
|
|
|
|
|
return QVariantMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Sanity check: Make sure displayName is unique.
|
|
|
|
|
QStringList nameKeys = FindKeyOperation::findKey(map, QLatin1String(DISPLAYNAME));
|
|
|
|
|
QStringList nameList;
|
2013-03-11 17:23:55 +01:00
|
|
|
foreach (const QString &nameKey, nameKeys)
|
2012-09-18 15:58:07 +02:00
|
|
|
nameList << GetOperation::get(map, nameKey).toString();
|
|
|
|
|
const QString uniqueName = makeUnique(displayName, nameList);
|
|
|
|
|
|
|
|
|
|
QVariantMap result = RmKeysOperation::rmKeys(map, QStringList() << QLatin1String(COUNT));
|
|
|
|
|
|
|
|
|
|
const QString tc = QString::fromLatin1(PREFIX) + QString::number(count);
|
|
|
|
|
|
|
|
|
|
KeyValuePairList data;
|
2015-04-30 12:54:48 +02:00
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(ID), QVariant(id));
|
2012-09-18 15:58:07 +02:00
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(DISPLAYNAME), QVariant(uniqueName));
|
|
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(AUTODETECTED), QVariant(true));
|
|
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(PATH), QVariant(path));
|
|
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(TARGET_ABI), QVariant(abi));
|
|
|
|
|
QVariantList abis;
|
|
|
|
|
QStringList abiStrings = supportedAbis.split(QLatin1Char(','));
|
|
|
|
|
foreach (const QString &s, abiStrings)
|
|
|
|
|
abis << QVariant(s);
|
|
|
|
|
data << KeyValuePair(QStringList() << tc << QLatin1String(SUPPORTED_ABIS), QVariant(abis));
|
|
|
|
|
KeyValuePairList tcExtraList;
|
|
|
|
|
foreach (const KeyValuePair &pair, extra)
|
|
|
|
|
tcExtraList << KeyValuePair(QStringList() << tc << pair.key, pair.value);
|
|
|
|
|
data.append(tcExtraList);
|
|
|
|
|
data << KeyValuePair(QLatin1String(COUNT), QVariant(count + 1));
|
|
|
|
|
|
|
|
|
|
return AddKeysOperation::addKeys(result, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap AddToolChainOperation::initializeToolChains()
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map;
|
|
|
|
|
map.insert(QLatin1String(COUNT), 0);
|
|
|
|
|
map.insert(QLatin1String(VERSION), 1);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2014-03-04 11:06:51 +01:00
|
|
|
|
|
|
|
|
bool AddToolChainOperation::exists(const QVariantMap &map, const QString &id)
|
|
|
|
|
{
|
2015-04-30 12:55:26 +02:00
|
|
|
QStringList valueKeys = FindValueOperation::findValue(map, id);
|
2015-06-03 10:59:38 +02:00
|
|
|
// support old settings using QByteArray for id's
|
|
|
|
|
valueKeys.append(FindValueOperation::findValue(map, id.toUtf8()));
|
2014-03-04 11:06:51 +01:00
|
|
|
|
|
|
|
|
foreach (const QString &k, valueKeys) {
|
|
|
|
|
if (k.endsWith(QString(QLatin1Char('/')) + QLatin1String(ID))) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AddToolChainOperation::exists(const QString &id)
|
|
|
|
|
{
|
2014-07-02 10:12:38 +03:00
|
|
|
QVariantMap map = Operation::load(QLatin1String("ToolChains"));
|
2014-03-04 11:06:51 +01:00
|
|
|
return exists(map, id);
|
|
|
|
|
}
|