clang-tools
11.0.0
|
Provides compilation arguments used for parsing C and C++ files. More...
#include <GlobalCompilationDatabase.h>
Public Types | |
using | CommandChanged = Event< std::vector< std::string > > |
Public Member Functions | |
virtual | ~GlobalCompilationDatabase ()=default |
virtual llvm::Optional< tooling::CompileCommand > | getCompileCommand (PathRef File) const =0 |
If there are any known-good commands for building this file, returns one. More... | |
virtual llvm::Optional< ProjectInfo > | getProjectInfo (PathRef File) const |
Finds the closest project to File . More... | |
virtual tooling::CompileCommand | getFallbackCommand (PathRef File) const |
Makes a guess at how to build a file. More... | |
CommandChanged::Subscription | watch (CommandChanged::Listener L) const |
The callback is notified when files may have new compile commands. More... | |
Protected Attributes | |
CommandChanged | OnCommandChanged |
Provides compilation arguments used for parsing C and C++ files.
Definition at line 35 of file GlobalCompilationDatabase.h.
using clang::clangd::GlobalCompilationDatabase::CommandChanged = Event<std::vector<std::string> > |
Definition at line 53 of file GlobalCompilationDatabase.h.
|
virtualdefault |
|
pure virtual |
If there are any known-good commands for building this file, returns one.
Implemented in clang::clangd::OverlayCDB, clang::clangd::DirectoryBasedGlobalCompilationDatabase, and clang::clangd::MockCompilationDatabase.
Referenced by clang::clangd::OverlayCDB::getCompileCommand().
|
virtual |
Makes a guess at how to build a file.
The default implementation just runs clang on the file. Clangd should treat the results as unreliable.
Reimplemented in clang::clangd::OverlayCDB.
Definition at line 45 of file GlobalCompilationDatabase.cpp.
References clang::clangd::File.
Referenced by clang::clangd::OverlayCDB::getFallbackCommand().
|
inlinevirtual |
Finds the closest project to File
.
Reimplemented in clang::clangd::OverlayCDB, clang::clangd::DirectoryBasedGlobalCompilationDatabase, and clang::clangd::MockCompilationDatabase.
Definition at line 44 of file GlobalCompilationDatabase.h.
References clang::clangd::None.
Referenced by clang::clangd::OverlayCDB::getProjectInfo().
|
inline |
The callback is notified when files may have new compile commands.
The argument is a list of full file paths.
Definition at line 56 of file GlobalCompilationDatabase.h.
References clang::clangd::Event< T >::observe(), and OnCommandChanged.
|
mutableprotected |
Definition at line 61 of file GlobalCompilationDatabase.h.
Referenced by clang::clangd::OverlayCDB::OverlayCDB(), clang::clangd::OverlayCDB::setCompileCommand(), and watch().