2014-09-25 11:11:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** This file is part of Qt Creator.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
2014-09-25 11:11:58 +02:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-14 10:59:10 +01:00
|
|
|
** 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.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** 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.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangstaticanalyzerconfigwidget.h"
|
|
|
|
|
#include "ui_clangstaticanalyzerconfigwidget.h"
|
|
|
|
|
|
2015-03-03 11:08:26 +01:00
|
|
|
#include "clangstaticanalyzerutils.h"
|
|
|
|
|
|
2016-05-15 12:48:53 +03:00
|
|
|
#include <QDir>
|
2014-09-25 11:11:58 +02:00
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
|
|
namespace ClangStaticAnalyzer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
ClangStaticAnalyzerConfigWidget::ClangStaticAnalyzerConfigWidget(
|
|
|
|
|
ClangStaticAnalyzerSettings *settings,
|
|
|
|
|
QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
, m_ui(new Ui::ClangStaticAnalyzerConfigWidget)
|
|
|
|
|
, m_settings(settings)
|
|
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
2015-03-03 11:08:26 +01:00
|
|
|
Utils::PathChooser * const chooser = m_ui->clangExecutableChooser;
|
|
|
|
|
chooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
|
|
|
|
chooser->setHistoryCompleter(QLatin1String("ClangStaticAnalyzer.ClangCommand.History"));
|
|
|
|
|
chooser->setPromptDialogTitle(tr("Clang Command"));
|
2016-07-12 18:50:47 +02:00
|
|
|
const auto validator = [chooser, this](Utils::FancyLineEdit *edit, QString *errorMessage) {
|
2015-07-09 17:19:21 +02:00
|
|
|
const QString currentFilePath = chooser->fileName().toString();
|
|
|
|
|
Utils::PathChooser pc;
|
|
|
|
|
Utils::PathChooser *helperPathChooser;
|
|
|
|
|
if (currentFilePath.isEmpty()) {
|
|
|
|
|
pc.setExpectedKind(chooser->expectedKind());
|
|
|
|
|
pc.setPath(edit->placeholderText());
|
|
|
|
|
helperPathChooser = &pc;
|
|
|
|
|
} else {
|
|
|
|
|
helperPathChooser = chooser;
|
|
|
|
|
}
|
2016-07-12 18:50:47 +02:00
|
|
|
|
|
|
|
|
const bool isExecutableValid =
|
|
|
|
|
chooser->defaultValidationFunction()(helperPathChooser->lineEdit(), errorMessage)
|
2015-07-09 17:19:21 +02:00
|
|
|
&& isClangExecutableUsable(helperPathChooser->fileName().toString(), errorMessage);
|
2016-07-12 18:50:47 +02:00
|
|
|
|
|
|
|
|
const ClangExecutableVersion detectedVersion = isExecutableValid
|
|
|
|
|
? clangExecutableVersion(helperPathChooser->fileName().toString())
|
|
|
|
|
: ClangExecutableVersion();
|
|
|
|
|
updateDetectedVersionLabel(isExecutableValid, detectedVersion);
|
|
|
|
|
|
|
|
|
|
return isExecutableValid;
|
2015-03-03 11:08:26 +01:00
|
|
|
};
|
2015-04-28 14:50:47 +02:00
|
|
|
chooser->setValidationFunction(validator);
|
2015-07-09 17:19:21 +02:00
|
|
|
bool clangExeIsSet;
|
|
|
|
|
const QString clangExe = settings->clangExecutable(&clangExeIsSet);
|
2016-05-15 12:48:53 +03:00
|
|
|
chooser->lineEdit()->setPlaceholderText(QDir::toNativeSeparators(
|
|
|
|
|
settings->defaultClangExecutable()));
|
2015-07-09 17:19:21 +02:00
|
|
|
if (clangExeIsSet) {
|
|
|
|
|
chooser->setPath(clangExe);
|
|
|
|
|
} else {
|
|
|
|
|
// Setting an empty string does not trigger the validator, as that is the initial value
|
|
|
|
|
// in the line edit.
|
|
|
|
|
chooser->setPath(QLatin1String(" "));
|
|
|
|
|
chooser->lineEdit()->clear();
|
|
|
|
|
}
|
2015-08-20 14:34:10 +02:00
|
|
|
connect(m_ui->clangExecutableChooser, &Utils::PathChooser::rawPathChanged,
|
2015-04-10 10:17:44 +02:00
|
|
|
[settings](const QString &path) { settings->setClangExecutable(path); });
|
2014-09-25 11:11:58 +02:00
|
|
|
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setValue(settings->simultaneousProcesses());
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setMinimum(1);
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setMaximum(QThread::idealThreadCount());
|
|
|
|
|
connect(m_ui->simultaneousProccessesSpinBox,
|
|
|
|
|
static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
|
2015-04-10 10:17:44 +02:00
|
|
|
[settings](int count) { settings->setSimultaneousProcesses(count); });
|
2014-09-25 11:11:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ClangStaticAnalyzerConfigWidget::~ClangStaticAnalyzerConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 18:50:47 +02:00
|
|
|
void ClangStaticAnalyzerConfigWidget::updateDetectedVersionLabel(
|
|
|
|
|
bool isExecutableValid,
|
|
|
|
|
const ClangExecutableVersion &providedVersion)
|
|
|
|
|
{
|
|
|
|
|
QLabel &label = *m_ui->detectedVersionLabel;
|
|
|
|
|
|
|
|
|
|
if (isExecutableValid) {
|
|
|
|
|
if (providedVersion.isValid()) {
|
|
|
|
|
if (providedVersion.isSupportedVersion()) {
|
|
|
|
|
label.setText(tr("Version: %1, supported.")
|
|
|
|
|
.arg(providedVersion.toString()));
|
|
|
|
|
} else {
|
|
|
|
|
label.setText(tr("Version: %1, unsupported (supported version is %2).")
|
|
|
|
|
.arg(providedVersion.toString())
|
|
|
|
|
.arg(ClangExecutableVersion::supportedVersionAsString()));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
label.setText(tr("Version: Could not determine version."));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
label.setText(tr("Version: Set valid executable first."));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-25 11:11:58 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangStaticAnalyzer
|