Files
qt-creator/src/tools/clangbackend/ipcsource/clangtranslationunit.h

171 lines
5.3 KiB
C
Raw Normal View History

/****************************************************************************
**
** 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 "clangtranslationunitupdater.h"
#include <utf8stringvector.h>
#include <clang-c/Index.h>
#include <QtGlobal>
#include <chrono>
#include <memory>
#include <QSet>
class Utf8String;
namespace ClangBackEnd {
class TranslationUnitData;
class TranslationUnitUpdateResult;
class CodeCompleter;
class UnsavedFile;
class UnsavedFiles;
class ProjectPart;
class DiagnosticContainer;
class DiagnosticSet;
class FileContainer;
class HighlightingMarks;
class TranslationUnits;
class CommandLineArguments;
class Cursor;
class SourceLocation;
class SourceRange;
class SkippedSourceRanges;
using time_point = std::chrono::steady_clock::time_point;
class TranslationUnit
{
public:
enum FileExistsCheck {
CheckIfFileExists,
DoNotCheckIfFileExists
};
TranslationUnit() = default;
TranslationUnit(const Utf8String &filePath,
const ProjectPart &projectPart,
const Utf8StringVector &fileArguments,
TranslationUnits &translationUnits,
FileExistsCheck fileExistsCheck = CheckIfFileExists);
~TranslationUnit();
TranslationUnit(const TranslationUnit &cxTranslationUnit);
TranslationUnit &operator=(const TranslationUnit &cxTranslationUnit);
TranslationUnit(TranslationUnit &&cxTranslationUnit);
TranslationUnit &operator=(TranslationUnit &&cxTranslationUnit);
bool isNull() const;
void setIsUsedByCurrentEditor(bool isUsedByCurrentEditor);
bool isUsedByCurrentEditor() const;
void setIsVisibleInEditor(bool isVisibleInEditor);
bool isVisibleInEditor() const;
void reset();
void reparse() const;
bool isIntact() const;
CXIndex &index() const;
CXTranslationUnit cxTranslationUnit() const;
CXTranslationUnit cxTranslationUnitWithoutReparsing() const;
UnsavedFile unsavedFile() const;
UnsavedFiles unsavedFiles() const;
uint unsavedFilesCount() const;
Utf8String filePath() const;
Utf8StringVector fileArguments() const;
Utf8String projectPartId() const;
FileContainer fileContainer() const;
const ProjectPart &projectPart() const;
void setDocumentRevision(uint revision);
uint documentRevision() const;
const time_point &lastProjectPartChangeTimePoint() const;
bool isNeedingReparse() const;
bool hasNewDiagnostics() const;
bool hasNewHighlightingMarks() const;
DiagnosticSet diagnostics() const;
QVector<DiagnosticContainer> mainFileDiagnostics() const;
const QSet<Utf8String> &dependedFilePaths() const;
void setDirtyIfProjectPartIsOutdated();
void setDirtyIfDependencyIsMet(const Utf8String &filePath);
CommandLineArguments commandLineArguments() const;
SourceLocation sourceLocationAtWithoutReparsing(uint line, uint column) const;
SourceLocation sourceLocationAt(uint line, uint column) const;
SourceLocation sourceLocationAt(const Utf8String &filePath, uint line, uint column) const;
SourceRange sourceRange(uint fromLine, uint fromColumn, uint toLine, uint toColumn) const;
Cursor cursorAt(uint line, uint column) const;
Cursor cursorAt(const Utf8String &filePath, uint line, uint column) const;
Cursor cursor() const;
HighlightingMarks highlightingMarks() const;
HighlightingMarks highlightingMarksInRange(const SourceRange &range) const;
SkippedSourceRanges skippedSourceRanges() const;
bool projectPartIsOutdated() const;
static uint defaultParseOptions();
private:
void setDirty();
void checkIfNull() const;
void checkIfFileExists() const;
bool isMainFileAndExistsOrIsOtherFile(const Utf8String &filePath) const;
void checkParseErrorCode() const;
bool parseWasSuccessful() const;
bool reparseWasSuccessful() const;
bool fileExists() const;
void updateSynchronously(TranslationUnitUpdater::UpdateMode updateMode) const;
TranslationUnitUpdater createUpdater() const;
void incorporateUpdaterResult(const TranslationUnitUpdateResult &result) const;
private:
mutable std::shared_ptr<TranslationUnitData> d;
};
bool operator==(const TranslationUnit &first, const TranslationUnit &second);
void PrintTo(const TranslationUnit &translationUnit, ::std::ostream *os);
} // namespace ClangBackEnd