/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://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. ** ****************************************************************************/ #pragma once #include "clangfilesystemwatcher.h" #include "clangtranslationunit.h" #include #include #include #include namespace ClangBackEnd { class ProjectParts; class UnsavedFiles; class DiagnosticsChangedMessage; class HighlightingChangedMessage; enum class DocumentAnnotationsSendState { NoDocumentAnnotationsSent, MaybeThereAreDocumentAnnotations, }; class TranslationUnits { public: using SendDocumentAnnotationsCallback = std::function; public: TranslationUnits(ProjectParts &projectParts, UnsavedFiles &unsavedFiles); std::vector create(const QVector &fileContainers); void update(const QVector &fileContainers); void remove(const QVector &fileContainers); void setUsedByCurrentEditor(const Utf8String &filePath); void setVisibleInEditors(const Utf8StringVector &filePaths); const TranslationUnit &translationUnit(const Utf8String &filePath, const Utf8String &projectPartId) const; const TranslationUnit &translationUnit(const FileContainer &fileContainer) const; bool hasTranslationUnit(const Utf8String &filePath) const; const std::vector &translationUnits() const; UnsavedFiles &unsavedFiles() const; void addWatchedFiles(QSet &filePaths); void updateTranslationUnitsWithChangedDependency(const Utf8String &filePath); void updateTranslationUnitsWithChangedDependencies(const QVector &fileContainers); void setTranslationUnitsDirtyIfProjectPartChanged(); DocumentAnnotationsSendState sendDocumentAnnotationsForCurrentEditor(); DocumentAnnotationsSendState sendDocumentAnnotationsForVisibleEditors(); DocumentAnnotationsSendState sendDocumentAnnotationsForAll(); DocumentAnnotationsSendState sendDocumentAnnotations(); void setSendDocumentAnnotationsCallback(SendDocumentAnnotationsCallback &&callback); QVector newerFileContainers(const QVector &fileContainers) const; const ClangFileSystemWatcher *clangFileSystemWatcher() const; private: TranslationUnit createTranslationUnit(const FileContainer &fileContainer); void updateTranslationUnit(const FileContainer &fileContainer); std::vector::iterator findTranslationUnit(const FileContainer &fileContainer); std::vector findAllTranslationUnitWithFilePath(const Utf8String &filePath); std::vector::const_iterator findTranslationUnit(const Utf8String &filePath, const Utf8String &projectPartId) const; bool hasTranslationUnit(const FileContainer &fileContainer) const; bool hasTranslationUnitWithFilePath(const Utf8String &filePath) const; void checkIfProjectPartExists(const Utf8String &projectFileName) const; void checkIfProjectPartsExists(const QVector &fileContainers) const; void checkIfTranslationUnitsDoesNotExists(const QVector &fileContainers) const; void checkIfTranslationUnitsForFilePathsDoesExists(const QVector &fileContainers) const; void removeTranslationUnits(const QVector &fileContainers); template DocumentAnnotationsSendState sendDocumentAnnotations(Predicate predicate); void sendDocumentAnnotations(const TranslationUnit &translationUnit); private: ClangFileSystemWatcher fileSystemWatcher; SendDocumentAnnotationsCallback sendDocumentAnnotationsCallback; std::vector translationUnits_; ProjectParts &projectParts; UnsavedFiles &unsavedFiles_; }; } // namespace ClangBackEnd