2015-09-04 12:15:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-09-04 12:15:17 +02:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +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.
|
2015-09-04 12:15:17 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +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.
|
2015-09-04 12:15:17 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef CLANGCODEMODEL_INTERNAL_CLANGDIAGNOSTICMANAGER_H
|
|
|
|
|
#define CLANGCODEMODEL_INTERNAL_CLANGDIAGNOSTICMANAGER_H
|
|
|
|
|
|
|
|
|
|
#include "clangtextmark.h"
|
|
|
|
|
|
|
|
|
|
#include <clangbackendipc/diagnosticcontainer.h>
|
|
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
|
#include <QTextEdit>
|
|
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace TextEditor { class TextDocument; }
|
|
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class ClangDiagnosticManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ClangDiagnosticManager(TextEditor::TextDocument *textDocument);
|
|
|
|
|
|
|
|
|
|
void processNewDiagnostics(const QVector<ClangBackEnd::DiagnosticContainer> &allDiagnostics);
|
|
|
|
|
|
2015-08-24 18:26:09 +02:00
|
|
|
const QVector<ClangBackEnd::DiagnosticContainer> &diagnosticsWithFixIts() const;
|
2015-09-04 12:15:17 +02:00
|
|
|
QList<QTextEdit::ExtraSelection> takeExtraSelections();
|
|
|
|
|
|
2015-11-25 15:11:23 +01:00
|
|
|
void clearDiagnosticsWithFixIts();
|
|
|
|
|
|
2015-09-04 12:15:17 +02:00
|
|
|
private:
|
|
|
|
|
QString filePath() const;
|
|
|
|
|
void filterDiagnostics(const QVector<ClangBackEnd::DiagnosticContainer> &diagnostics);
|
|
|
|
|
void generateEditorSelections();
|
|
|
|
|
void generateTextMarks();
|
|
|
|
|
void addClangTextMarks(const QVector<ClangBackEnd::DiagnosticContainer> &diagnostics);
|
|
|
|
|
void clearWarningsAndErrors();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TextEditor::TextDocument *m_textDocument;
|
|
|
|
|
|
|
|
|
|
QVector<ClangBackEnd::DiagnosticContainer> m_warningDiagnostics;
|
|
|
|
|
QVector<ClangBackEnd::DiagnosticContainer> m_errorDiagnostics;
|
2015-08-24 18:26:09 +02:00
|
|
|
QVector<ClangBackEnd::DiagnosticContainer> m_fixItdiagnostics;
|
2015-09-04 12:15:17 +02:00
|
|
|
QList<QTextEdit::ExtraSelection> m_extraSelections;
|
|
|
|
|
std::vector<ClangTextMark> m_clangTextMarks;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangCodeModel
|
|
|
|
|
|
|
|
|
|
#endif // CLANGCODEMODEL_INTERNAL_CLANGDIAGNOSTICMANAGER_H
|