2015-08-26 09:37:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "nimcompilerbuildstep.h"
|
|
|
|
|
#include "nimbuildconfiguration.h"
|
2019-08-19 12:31:25 +02:00
|
|
|
#include "nimbuildsystem.h"
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "nimcompilerbuildstepconfigwidget.h"
|
2019-08-19 12:31:25 +02:00
|
|
|
#include "nimconstants.h"
|
2017-01-21 23:36:14 +01:00
|
|
|
#include "nimtoolchain.h"
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
2017-01-30 23:36:18 +01:00
|
|
|
#include <projectexplorer/ioutputparser.h>
|
2018-11-17 21:19:04 +02:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <projectexplorer/processparameters.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <QDir>
|
2017-01-30 23:36:18 +01:00
|
|
|
#include <QRegularExpression>
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
namespace Nim {
|
|
|
|
|
|
2017-01-30 23:36:18 +01:00
|
|
|
class NimParser : public ProjectExplorer::IOutputParser
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void stdOutput(const QString &line) final
|
|
|
|
|
{
|
|
|
|
|
parseLine(line.trimmed());
|
|
|
|
|
IOutputParser::stdOutput(line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void stdError(const QString &line) final
|
|
|
|
|
{
|
|
|
|
|
parseLine(line.trimmed());
|
|
|
|
|
IOutputParser::stdError(line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void parseLine(const QString &line)
|
|
|
|
|
{
|
|
|
|
|
static QRegularExpression regex("(.+.nim)\\((\\d+), (\\d+)\\) (.+)",
|
|
|
|
|
QRegularExpression::OptimizeOnFirstUsageOption);
|
|
|
|
|
static QRegularExpression warning("(Warning):(.*)",
|
|
|
|
|
QRegularExpression::OptimizeOnFirstUsageOption);
|
|
|
|
|
static QRegularExpression error("(Error):(.*)",
|
|
|
|
|
QRegularExpression::OptimizeOnFirstUsageOption);
|
|
|
|
|
|
|
|
|
|
QRegularExpressionMatch match = regex.match(line);
|
|
|
|
|
if (!match.hasMatch())
|
|
|
|
|
return;
|
|
|
|
|
const QString filename = match.captured(1);
|
|
|
|
|
bool lineOk = false;
|
|
|
|
|
const int lineNumber = match.captured(2).toInt(&lineOk);
|
|
|
|
|
const QString message = match.captured(4);
|
|
|
|
|
if (!lineOk)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Task::TaskType type = Task::Unknown;
|
|
|
|
|
|
|
|
|
|
if (warning.match(message).hasMatch())
|
|
|
|
|
type = Task::Warning;
|
|
|
|
|
else if (error.match(message).hasMatch())
|
|
|
|
|
type = Task::Error;
|
|
|
|
|
else
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-15 08:56:11 +01:00
|
|
|
emit addTask(CompileTask(type, message, FilePath::fromUserInput(filename), lineNumber));
|
2017-01-30 23:36:18 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-20 17:05:30 +01:00
|
|
|
NimCompilerBuildStep::NimCompilerBuildStep(BuildStepList *parentList, Core::Id id)
|
|
|
|
|
: AbstractProcessStep(parentList, id)
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
setDefaultDisplayName(tr(Constants::C_NIMCOMPILERBUILDSTEP_DISPLAY));
|
|
|
|
|
setDisplayName(tr(Constants::C_NIMCOMPILERBUILDSTEP_DISPLAY));
|
|
|
|
|
|
|
|
|
|
auto bc = qobject_cast<NimBuildConfiguration *>(buildConfiguration());
|
|
|
|
|
connect(bc, &NimBuildConfiguration::buildDirectoryChanged,
|
|
|
|
|
this, &NimCompilerBuildStep::updateProcessParameters);
|
2018-06-14 15:50:27 +04:30
|
|
|
connect(bc, &BuildConfiguration::environmentChanged,
|
|
|
|
|
this, &NimCompilerBuildStep::updateProcessParameters);
|
2015-08-26 09:37:55 +02:00
|
|
|
connect(this, &NimCompilerBuildStep::outFilePathChanged,
|
|
|
|
|
bc, &NimBuildConfiguration::outFilePathChanged);
|
2020-02-19 11:55:48 +01:00
|
|
|
connect(project(), &ProjectExplorer::Project::fileListChanged,
|
2016-10-20 16:17:22 +02:00
|
|
|
this, &NimCompilerBuildStep::updateTargetNimFile);
|
2015-08-26 09:37:55 +02:00
|
|
|
updateProcessParameters();
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-10 15:31:44 +01:00
|
|
|
bool NimCompilerBuildStep::init()
|
2017-01-30 23:36:18 +01:00
|
|
|
{
|
|
|
|
|
setOutputParser(new NimParser());
|
|
|
|
|
if (IOutputParser *parser = target()->kit()->createOutputParser())
|
|
|
|
|
appendOutputParser(parser);
|
|
|
|
|
outputParser()->setWorkingDirectory(processParameters()->effectiveWorkingDirectory());
|
2019-01-10 15:31:44 +01:00
|
|
|
return AbstractProcessStep::init();
|
2017-01-30 23:36:18 +01:00
|
|
|
}
|
|
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
BuildStepConfigWidget *NimCompilerBuildStep::createConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
return new NimCompilerBuildStepConfigWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NimCompilerBuildStep::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
AbstractProcessStep::fromMap(map);
|
2017-06-12 14:23:34 +02:00
|
|
|
m_userCompilerOptions = map[Constants::C_NIMCOMPILERBUILDSTEP_USERCOMPILEROPTIONS].toString().split('|');
|
2015-08-26 09:37:55 +02:00
|
|
|
m_defaultOptions = static_cast<DefaultBuildOptions>(map[Constants::C_NIMCOMPILERBUILDSTEP_DEFAULTBUILDOPTIONS].toInt());
|
2019-05-28 13:49:26 +02:00
|
|
|
m_targetNimFile = FilePath::fromString(map[Constants::C_NIMCOMPILERBUILDSTEP_TARGETNIMFILE].toString());
|
2015-08-26 09:37:55 +02:00
|
|
|
updateProcessParameters();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap NimCompilerBuildStep::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap result = AbstractProcessStep::toMap();
|
2017-06-12 14:23:34 +02:00
|
|
|
result[Constants::C_NIMCOMPILERBUILDSTEP_USERCOMPILEROPTIONS] = m_userCompilerOptions.join('|');
|
2015-08-26 09:37:55 +02:00
|
|
|
result[Constants::C_NIMCOMPILERBUILDSTEP_DEFAULTBUILDOPTIONS] = m_defaultOptions;
|
|
|
|
|
result[Constants::C_NIMCOMPILERBUILDSTEP_TARGETNIMFILE] = m_targetNimFile.toString();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList NimCompilerBuildStep::userCompilerOptions() const
|
|
|
|
|
{
|
|
|
|
|
return m_userCompilerOptions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::setUserCompilerOptions(const QStringList &options)
|
|
|
|
|
{
|
|
|
|
|
m_userCompilerOptions = options;
|
|
|
|
|
emit userCompilerOptionsChanged(options);
|
|
|
|
|
updateProcessParameters();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NimCompilerBuildStep::DefaultBuildOptions NimCompilerBuildStep::defaultCompilerOptions() const
|
|
|
|
|
{
|
|
|
|
|
return m_defaultOptions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::setDefaultCompilerOptions(NimCompilerBuildStep::DefaultBuildOptions options)
|
|
|
|
|
{
|
|
|
|
|
if (m_defaultOptions == options)
|
|
|
|
|
return;
|
|
|
|
|
m_defaultOptions = options;
|
|
|
|
|
emit defaultCompilerOptionsChanged(options);
|
|
|
|
|
updateProcessParameters();
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath NimCompilerBuildStep::targetNimFile() const
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
return m_targetNimFile;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
void NimCompilerBuildStep::setTargetNimFile(const FilePath &targetNimFile)
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
if (targetNimFile == m_targetNimFile)
|
|
|
|
|
return;
|
|
|
|
|
m_targetNimFile = targetNimFile;
|
|
|
|
|
emit targetNimFileChanged(targetNimFile);
|
|
|
|
|
updateProcessParameters();
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath NimCompilerBuildStep::outFilePath() const
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
return m_outFilePath;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
void NimCompilerBuildStep::setOutFilePath(const FilePath &outFilePath)
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
if (outFilePath == m_outFilePath)
|
|
|
|
|
return;
|
|
|
|
|
m_outFilePath = outFilePath;
|
|
|
|
|
emit outFilePathChanged(outFilePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::updateProcessParameters()
|
|
|
|
|
{
|
|
|
|
|
updateOutFilePath();
|
|
|
|
|
updateCommand();
|
|
|
|
|
updateWorkingDirectory();
|
|
|
|
|
updateEnvironment();
|
|
|
|
|
emit processParametersChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::updateOutFilePath()
|
|
|
|
|
{
|
|
|
|
|
const QString targetName = Utils::HostOsInfo::withExecutableSuffix(m_targetNimFile.toFileInfo().baseName());
|
2020-02-19 11:55:48 +01:00
|
|
|
setOutFilePath(buildDirectory().pathAppended(targetName));
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::updateWorkingDirectory()
|
|
|
|
|
{
|
2020-02-19 11:55:48 +01:00
|
|
|
processParameters()->setWorkingDirectory(buildDirectory());
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
void NimCompilerBuildStep::updateCommand()
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
auto bc = qobject_cast<NimBuildConfiguration *>(buildConfiguration());
|
|
|
|
|
QTC_ASSERT(bc, return);
|
|
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
QTC_ASSERT(target(), return);
|
|
|
|
|
QTC_ASSERT(target()->kit(), return);
|
|
|
|
|
Kit *kit = target()->kit();
|
|
|
|
|
auto tc = dynamic_cast<NimToolChain*>(ToolChainKitAspect::toolChain(kit, Constants::C_NIMLANGUAGE_ID));
|
|
|
|
|
QTC_ASSERT(tc, return);
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
CommandLine cmd{tc->compilerCommand()};
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
cmd.addArg("c");
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
if (m_defaultOptions == Release)
|
|
|
|
|
cmd.addArg("-d:release");
|
|
|
|
|
else if (m_defaultOptions == Debug)
|
|
|
|
|
cmd.addArgs({"--debugInfo", "--lineDir:on"});
|
|
|
|
|
|
|
|
|
|
cmd.addArg("--out:" + m_outFilePath.toString());
|
|
|
|
|
cmd.addArg("--nimCache:" + bc->cacheDirectory().toString());
|
|
|
|
|
|
|
|
|
|
for (const QString &arg : m_userCompilerOptions) {
|
|
|
|
|
if (!arg.isEmpty())
|
|
|
|
|
cmd.addArg(arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_targetNimFile.isEmpty())
|
|
|
|
|
cmd.addArg(m_targetNimFile.toString());
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2019-06-21 08:31:37 +02:00
|
|
|
processParameters()->setCommandLine(cmd);
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimCompilerBuildStep::updateEnvironment()
|
|
|
|
|
{
|
2020-02-19 11:55:48 +01:00
|
|
|
processParameters()->setEnvironment(buildEnvironment());
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-20 16:17:22 +02:00
|
|
|
void NimCompilerBuildStep::updateTargetNimFile()
|
|
|
|
|
{
|
|
|
|
|
if (!m_targetNimFile.isEmpty())
|
|
|
|
|
return;
|
2019-12-17 14:07:53 +01:00
|
|
|
const Utils::FilePaths nimFiles = project()->files([](const Node *n) {
|
2019-11-22 12:41:15 +01:00
|
|
|
return Project::AllFiles(n) && n->path().endsWith(".nim");
|
|
|
|
|
});
|
2016-10-20 16:17:22 +02:00
|
|
|
if (!nimFiles.isEmpty())
|
|
|
|
|
setTargetNimFile(nimFiles.at(0));
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2018-01-17 19:05:42 +01:00
|
|
|
// NimCompilerBuildStepFactory
|
|
|
|
|
|
|
|
|
|
NimCompilerBuildStepFactory::NimCompilerBuildStepFactory()
|
|
|
|
|
{
|
|
|
|
|
registerStep<NimCompilerBuildStep>(Constants::C_NIMCOMPILERBUILDSTEP_ID);
|
2018-05-14 17:50:56 +02:00
|
|
|
setDisplayName(NimCompilerBuildStep::tr("Nim Compiler Build Step"));
|
2018-01-17 19:05:42 +01:00
|
|
|
setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_BUILD);
|
|
|
|
|
setSupportedConfiguration(Constants::C_NIMBUILDCONFIGURATION_ID);
|
|
|
|
|
setRepeatable(false);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-20 16:17:22 +02:00
|
|
|
} // namespace Nim
|
2017-01-30 23:36:18 +01:00
|
|
|
|
|
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
|
|
|
|
|
#include "nimplugin.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/outputparser_test.h>
|
|
|
|
|
|
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
|
|
namespace Nim {
|
|
|
|
|
|
|
|
|
|
void NimPlugin::testNimParser_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<QString>("input");
|
|
|
|
|
QTest::addColumn<OutputParserTester::Channel>("inputChannel");
|
|
|
|
|
QTest::addColumn<QString>("childStdOutLines");
|
|
|
|
|
QTest::addColumn<QString>("childStdErrLines");
|
2019-05-27 16:09:44 +02:00
|
|
|
QTest::addColumn<Tasks >("tasks");
|
2017-01-30 23:36:18 +01:00
|
|
|
QTest::addColumn<QString>("outputLines");
|
|
|
|
|
|
|
|
|
|
// negative tests
|
|
|
|
|
QTest::newRow("pass-through stdout")
|
|
|
|
|
<< "Sometext" << OutputParserTester::STDOUT
|
|
|
|
|
<< "Sometext\n" << QString()
|
2019-05-27 16:09:44 +02:00
|
|
|
<< Tasks()
|
2017-01-30 23:36:18 +01:00
|
|
|
<< QString();
|
|
|
|
|
QTest::newRow("pass-through stderr")
|
|
|
|
|
<< "Sometext" << OutputParserTester::STDERR
|
|
|
|
|
<< QString() << "Sometext\n"
|
2019-05-27 16:09:44 +02:00
|
|
|
<< Tasks()
|
2017-01-30 23:36:18 +01:00
|
|
|
<< QString();
|
|
|
|
|
|
|
|
|
|
// positive tests
|
|
|
|
|
QTest::newRow("Parse error string")
|
|
|
|
|
<< QString::fromLatin1("main.nim(23, 1) Error: undeclared identifier: 'x'")
|
|
|
|
|
<< OutputParserTester::STDERR
|
|
|
|
|
<< QString("") << QString("main.nim(23, 1) Error: undeclared identifier: 'x'\n")
|
2020-01-15 08:56:11 +01:00
|
|
|
<< Tasks({CompileTask(Task::Error,
|
|
|
|
|
"Error: undeclared identifier: 'x'",
|
|
|
|
|
FilePath::fromUserInput("main.nim"), 23)})
|
2017-01-30 23:36:18 +01:00
|
|
|
<< QString();
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Parse warning string")
|
|
|
|
|
<< QString::fromLatin1("lib/pure/parseopt.nim(56, 34) Warning: quoteIfContainsWhite is deprecated [Deprecated]")
|
|
|
|
|
<< OutputParserTester::STDERR
|
|
|
|
|
<< QString("") << QString("lib/pure/parseopt.nim(56, 34) Warning: quoteIfContainsWhite is deprecated [Deprecated]\n")
|
2020-01-15 08:56:11 +01:00
|
|
|
<< Tasks({CompileTask(Task::Warning,
|
|
|
|
|
"Warning: quoteIfContainsWhite is deprecated [Deprecated]",
|
|
|
|
|
FilePath::fromUserInput("lib/pure/parseopt.nim"), 56)})
|
2017-01-30 23:36:18 +01:00
|
|
|
<< QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimPlugin::testNimParser()
|
|
|
|
|
{
|
|
|
|
|
OutputParserTester testbench;
|
|
|
|
|
testbench.appendOutputParser(new NimParser);
|
|
|
|
|
QFETCH(QString, input);
|
|
|
|
|
QFETCH(OutputParserTester::Channel, inputChannel);
|
2019-05-27 16:09:44 +02:00
|
|
|
QFETCH(Tasks, tasks);
|
2017-01-30 23:36:18 +01:00
|
|
|
QFETCH(QString, childStdOutLines);
|
|
|
|
|
QFETCH(QString, childStdErrLines);
|
|
|
|
|
QFETCH(QString, outputLines);
|
|
|
|
|
|
|
|
|
|
testbench.testParsing(input, inputChannel,
|
|
|
|
|
tasks, childStdOutLines, childStdErrLines,
|
|
|
|
|
outputLines);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#endif
|