forked from qt-creator/qt-creator
Nim: Added support for the Nim compiler inside Kits
Change-Id: I6f9761aac0b0fc02a6974b284a7d600c1ece5b8b Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
166
src/plugins/nim/project/nimtoolchainfactory.cpp
Normal file
166
src/plugins/nim/project/nimtoolchainfactory.cpp
Normal file
@@ -0,0 +1,166 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
|
||||
** Contact: http://www.qt.io/licensing
|
||||
**
|
||||
** 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 The Qt Company. For licensing terms
|
||||
** and conditions see https://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at https://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3 as published by the Free Software
|
||||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
||||
** included in the packaging of this file. Please review the following
|
||||
** information to ensure the GNU General Public License requirements will
|
||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "nimtoolchainfactory.h"
|
||||
|
||||
#include "nimconstants.h"
|
||||
#include "nimtoolchain.h"
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
#include <utils/environment.h>
|
||||
#include <utils/pathchooser.h>
|
||||
|
||||
#include <QFormLayout>
|
||||
#include <QProcess>
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Utils;
|
||||
|
||||
namespace Nim {
|
||||
|
||||
NimToolChainFactory::NimToolChainFactory()
|
||||
{
|
||||
setDisplayName(tr("Nim"));
|
||||
}
|
||||
|
||||
bool NimToolChainFactory::canCreate()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
ToolChain *NimToolChainFactory::create(Core::Id l)
|
||||
{
|
||||
if (l != Constants::C_NIMLANGUAGE_ID)
|
||||
return nullptr;
|
||||
auto result = new NimToolChain(ToolChain::ManualDetection);
|
||||
result->setLanguage(l);
|
||||
return result;
|
||||
}
|
||||
|
||||
bool NimToolChainFactory::canRestore(const QVariantMap &data)
|
||||
{
|
||||
return typeIdFromMap(data) == Constants::C_NIMTOOLCHAIN_TYPEID;
|
||||
}
|
||||
|
||||
ToolChain *NimToolChainFactory::restore(const QVariantMap &data)
|
||||
{
|
||||
auto tc = new NimToolChain(ToolChain::AutoDetection);
|
||||
if (tc->fromMap(data))
|
||||
return tc;
|
||||
delete tc;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QSet<Core::Id> NimToolChainFactory::supportedLanguages() const
|
||||
{
|
||||
return { Constants::C_NIMLANGUAGE_ID };
|
||||
}
|
||||
|
||||
QList<ToolChain *> NimToolChainFactory::autoDetect(const QList<ToolChain *> &alreadyKnown)
|
||||
{
|
||||
QList<ToolChain *> result;
|
||||
|
||||
Environment systemEnvironment = Environment::systemEnvironment();
|
||||
const FileName compilerPath = systemEnvironment.searchInPath("nim");
|
||||
if (compilerPath.isEmpty())
|
||||
return result;
|
||||
|
||||
result = Utils::filtered(alreadyKnown, [compilerPath](ToolChain *tc) {
|
||||
return tc->typeId() == Constants::C_NIMTOOLCHAIN_TYPEID
|
||||
&& tc->compilerCommand() == compilerPath;
|
||||
});
|
||||
|
||||
if (!result.empty())
|
||||
return result;
|
||||
|
||||
auto tc = new NimToolChain(ToolChain::AutoDetection);
|
||||
tc->setCompilerCommand(compilerPath);
|
||||
result.append(tc);
|
||||
return result;
|
||||
}
|
||||
|
||||
NimToolChainConfigWidget::NimToolChainConfigWidget(NimToolChain *tc)
|
||||
: ToolChainConfigWidget(tc)
|
||||
, m_compilerCommand(new PathChooser)
|
||||
, m_compilerVersion(new QLineEdit)
|
||||
{
|
||||
// Create ui
|
||||
const auto gnuVersionArgs = QStringList("--version");
|
||||
m_compilerCommand->setExpectedKind(PathChooser::ExistingCommand);
|
||||
m_compilerCommand->setCommandVersionArguments(gnuVersionArgs);
|
||||
m_mainLayout->addRow(tr("&Compiler path:"), m_compilerCommand);
|
||||
m_compilerVersion->setReadOnly(true);
|
||||
m_mainLayout->addRow(tr("&Compiler version:"), m_compilerVersion);
|
||||
|
||||
// Fill
|
||||
fillUI();
|
||||
|
||||
// Connect
|
||||
connect(m_compilerCommand, &PathChooser::pathChanged, this, &NimToolChainConfigWidget::onCompilerCommandChanged);
|
||||
}
|
||||
|
||||
void NimToolChainConfigWidget::applyImpl()
|
||||
{
|
||||
auto tc = static_cast<NimToolChain *>(toolChain());
|
||||
Q_ASSERT(tc);
|
||||
if (tc->isAutoDetected())
|
||||
return;
|
||||
tc->setCompilerCommand(m_compilerCommand->fileName());
|
||||
}
|
||||
|
||||
void NimToolChainConfigWidget::discardImpl()
|
||||
{
|
||||
fillUI();
|
||||
}
|
||||
|
||||
bool NimToolChainConfigWidget::isDirtyImpl() const
|
||||
{
|
||||
auto tc = static_cast<NimToolChain *>(toolChain());
|
||||
Q_ASSERT(tc);
|
||||
return tc->compilerCommand().toString() != m_compilerCommand->path();
|
||||
}
|
||||
|
||||
void NimToolChainConfigWidget::makeReadOnlyImpl()
|
||||
{
|
||||
m_compilerCommand->setReadOnly(true);
|
||||
}
|
||||
|
||||
void NimToolChainConfigWidget::fillUI()
|
||||
{
|
||||
auto tc = static_cast<NimToolChain *>(toolChain());
|
||||
Q_ASSERT(tc);
|
||||
m_compilerCommand->setPath(tc->compilerCommand().toString());
|
||||
m_compilerVersion->setText(tc->compilerVersion());
|
||||
}
|
||||
|
||||
void NimToolChainConfigWidget::onCompilerCommandChanged(const QString &path)
|
||||
{
|
||||
auto tc = static_cast<NimToolChain *>(toolChain());
|
||||
Q_ASSERT(tc);
|
||||
tc->setCompilerCommand(FileName::fromString(path));
|
||||
fillUI();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user