2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2018-02-09 13:51:39 +01:00
|
|
|
#include <cplusplus/Icons.h>
|
|
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
#include <cppeditor/projectinfo.h>
|
|
|
|
|
#include <cppeditor/compileroptionsbuilder.h>
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2022-05-02 12:29:57 +02:00
|
|
|
#include <utils/link.h>
|
|
|
|
|
|
2021-02-23 13:51:41 +01:00
|
|
|
#include <QPair>
|
2018-10-17 09:42:48 +02:00
|
|
|
#include <QTextCursor>
|
|
|
|
|
|
2018-02-01 13:27:50 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QTextBlock;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
namespace CppEditor {
|
2021-05-07 16:10:07 +02:00
|
|
|
class ClangDiagnosticConfig;
|
2016-11-22 15:17:42 +01:00
|
|
|
class CppEditorDocumentHandle;
|
2018-07-10 15:53:51 +02:00
|
|
|
}
|
|
|
|
|
|
2021-06-18 16:30:03 +02:00
|
|
|
namespace TextEditor { class TextDocumentManipulatorInterface; }
|
|
|
|
|
|
2021-05-07 16:10:07 +02:00
|
|
|
namespace ProjectExplorer { class Project; }
|
|
|
|
|
|
2013-12-10 14:37:32 +01:00
|
|
|
namespace ClangCodeModel {
|
2020-07-06 15:49:35 +02:00
|
|
|
namespace Internal {
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
CppEditor::ClangDiagnosticConfig warningsConfigForProject(ProjectExplorer::Project *project);
|
2022-05-19 14:48:09 +02:00
|
|
|
const QStringList globalClangOptions();
|
2021-05-07 16:10:07 +02:00
|
|
|
|
2022-05-04 16:48:48 +02:00
|
|
|
CppEditor::CompilerOptionsBuilder clangOptionsBuilder(
|
|
|
|
|
const CppEditor::ProjectPart &projectPart,
|
2022-05-09 16:16:51 +02:00
|
|
|
const CppEditor::ClangDiagnosticConfig &warningsConfig,
|
2022-09-08 15:27:55 +02:00
|
|
|
const Utils::FilePath &clangIncludeDir,
|
|
|
|
|
const ProjectExplorer::Macros &extraMacros);
|
2022-05-05 17:34:31 +02:00
|
|
|
QJsonArray projectPartOptions(const CppEditor::CompilerOptionsBuilder &optionsBuilder);
|
|
|
|
|
QJsonArray fullProjectPartOptions(const CppEditor::CompilerOptionsBuilder &optionsBuilder,
|
|
|
|
|
const QStringList &projectOptions);
|
|
|
|
|
QJsonArray fullProjectPartOptions(const QJsonArray &projectPartOptions,
|
|
|
|
|
const QJsonArray &projectOptions);
|
|
|
|
|
QJsonArray clangOptionsForFile(const CppEditor::ProjectFile &file,
|
|
|
|
|
const CppEditor::ProjectPart &projectPart,
|
|
|
|
|
const QJsonArray &generalOptions,
|
2022-07-06 12:21:04 +02:00
|
|
|
CppEditor::UsePrecompiledHeaders usePch, bool clStyle);
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2022-11-23 19:00:38 +01:00
|
|
|
CppEditor::ProjectPart::ConstPtr projectPartForFile(const Utils::FilePath &filePath);
|
2015-05-08 15:48:17 +02:00
|
|
|
|
2022-11-23 19:00:38 +01:00
|
|
|
Utils::FilePath currentCppEditorDocumentFilePath();
|
2019-01-29 16:03:38 +01:00
|
|
|
|
2018-05-09 15:12:01 +02:00
|
|
|
QString diagnosticCategoryPrefixRemoved(const QString &text);
|
|
|
|
|
|
2019-03-13 17:58:06 +01:00
|
|
|
class GenerateCompilationDbResult
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GenerateCompilationDbResult() = default;
|
|
|
|
|
GenerateCompilationDbResult(const QString &filePath, const QString &error)
|
|
|
|
|
: filePath(filePath), error(error)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
QString filePath;
|
|
|
|
|
QString error;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-25 17:27:32 +02:00
|
|
|
enum class CompilationDbPurpose { Project, CodeModel };
|
2022-08-24 11:16:20 +02:00
|
|
|
GenerateCompilationDbResult generateCompilationDB(QList<CppEditor::ProjectInfo::ConstPtr> projectInfo,
|
|
|
|
|
Utils::FilePath baseDir, CompilationDbPurpose purpose,
|
|
|
|
|
CppEditor::ClangDiagnosticConfig warningsConfig, QStringList projectOptions,
|
|
|
|
|
Utils::FilePath clangIncludeDir);
|
2018-07-10 15:53:51 +02:00
|
|
|
|
2019-01-28 12:40:03 +01:00
|
|
|
class DiagnosticTextInfo
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DiagnosticTextInfo(const QString &text);
|
|
|
|
|
|
|
|
|
|
QString textWithoutOption() const;
|
|
|
|
|
QString option() const;
|
|
|
|
|
QString category() const;
|
|
|
|
|
|
|
|
|
|
static bool isClazyOption(const QString &option);
|
|
|
|
|
static QString clazyCheckName(const QString &option);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const QString m_text;
|
|
|
|
|
const int m_squareBracketStartIndex;
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-17 09:42:48 +02:00
|
|
|
template <class CharacterProvider>
|
2021-06-18 16:30:03 +02:00
|
|
|
void moveToPreviousChar(const CharacterProvider &provider, QTextCursor &cursor)
|
2018-10-17 09:42:48 +02:00
|
|
|
{
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousCharacter);
|
|
|
|
|
while (provider.characterAt(cursor.position()).isSpace())
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousCharacter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class CharacterProvider>
|
|
|
|
|
void moveToPreviousWord(CharacterProvider &provider, QTextCursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousWord);
|
|
|
|
|
while (provider.characterAt(cursor.position()) == ':')
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousWord, QTextCursor::MoveAnchor, 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class CharacterProvider>
|
2021-06-18 16:30:03 +02:00
|
|
|
bool matchPreviousWord(const CharacterProvider &provider, QTextCursor cursor, QString pattern)
|
2018-10-17 09:42:48 +02:00
|
|
|
{
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousWord);
|
|
|
|
|
while (provider.characterAt(cursor.position()) == ':')
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousWord, QTextCursor::MoveAnchor, 2);
|
|
|
|
|
|
|
|
|
|
int previousWordStart = cursor.position();
|
|
|
|
|
cursor.movePosition(QTextCursor::NextWord);
|
|
|
|
|
moveToPreviousChar(provider, cursor);
|
|
|
|
|
QString toMatch = provider.textAt(previousWordStart, cursor.position() - previousWordStart + 1);
|
|
|
|
|
|
|
|
|
|
pattern = pattern.simplified();
|
|
|
|
|
while (!pattern.isEmpty() && pattern.endsWith(toMatch)) {
|
|
|
|
|
pattern.chop(toMatch.length());
|
|
|
|
|
if (pattern.endsWith(' '))
|
|
|
|
|
pattern.chop(1);
|
|
|
|
|
if (!pattern.isEmpty()) {
|
|
|
|
|
cursor.movePosition(QTextCursor::StartOfWord);
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousWord);
|
|
|
|
|
previousWordStart = cursor.position();
|
|
|
|
|
cursor.movePosition(QTextCursor::NextWord);
|
|
|
|
|
moveToPreviousChar(provider, cursor);
|
|
|
|
|
toMatch = provider.textAt(previousWordStart, cursor.position() - previousWordStart + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return pattern.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-18 16:30:03 +02:00
|
|
|
QString textUntilPreviousStatement(TextEditor::TextDocumentManipulatorInterface &manipulator,
|
|
|
|
|
int startPosition);
|
|
|
|
|
|
|
|
|
|
bool isAtUsingDeclaration(TextEditor::TextDocumentManipulatorInterface &manipulator,
|
|
|
|
|
int basePosition);
|
|
|
|
|
|
2022-05-02 12:29:57 +02:00
|
|
|
class ClangSourceRange
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ClangSourceRange(const Utils::Link &start, const Utils::Link &end) : start(start), end(end) {}
|
|
|
|
|
|
|
|
|
|
bool contains(int line, int column) const
|
|
|
|
|
{
|
|
|
|
|
if (line < start.targetLine || line > end.targetLine)
|
|
|
|
|
return false;
|
|
|
|
|
if (line == start.targetLine && column < start.targetLine)
|
|
|
|
|
return false;
|
|
|
|
|
if (line == end.targetLine && column > end.targetColumn)
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool contains(const Utils::Link &sourceLocation) const
|
|
|
|
|
{
|
|
|
|
|
return contains(sourceLocation.targetLine, sourceLocation.targetColumn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::Link start;
|
|
|
|
|
Utils::Link end;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline bool operator==(const ClangSourceRange &first, const ClangSourceRange &second)
|
|
|
|
|
{
|
|
|
|
|
return first.start == second.start && first.end == second.end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ClangFixIt
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ClangFixIt(const QString &text, const ClangSourceRange &range) : range(range), text(text) {}
|
|
|
|
|
|
|
|
|
|
ClangSourceRange range;
|
|
|
|
|
QString text;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline bool operator==(const ClangFixIt &first, const ClangFixIt &second)
|
|
|
|
|
{
|
|
|
|
|
return first.text == second.text && first.range == second.range;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ClangDiagnostic
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
enum class Severity { Ignored, Note, Warning, Error, Fatal };
|
|
|
|
|
|
|
|
|
|
Utils::Link location;
|
|
|
|
|
QString text;
|
|
|
|
|
QString category;
|
|
|
|
|
QString enableOption;
|
|
|
|
|
QString disableOption;
|
|
|
|
|
QList<ClangDiagnostic> children;
|
|
|
|
|
QList<ClangFixIt> fixIts;
|
|
|
|
|
Severity severity = Severity::Ignored;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline bool operator==(const ClangDiagnostic &first, const ClangDiagnostic &second)
|
|
|
|
|
{
|
|
|
|
|
return first.text == second.text && first.location == second.location;
|
|
|
|
|
}
|
|
|
|
|
inline bool operator!=(const ClangDiagnostic &first, const ClangDiagnostic &second)
|
|
|
|
|
{
|
|
|
|
|
return !(first == second);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-06 15:49:35 +02:00
|
|
|
} // namespace Internal
|
2013-12-10 14:37:32 +01:00
|
|
|
} // namespace Clang
|