clang-tools  3.9.0
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
clang::tidy::FileOptionsProvider Class Reference

Implementation of the ClangTidyOptionsProvider interface, which tries to find a configuration file in the closest parent directory of each source file. More...

#include <ClangTidyOptions.h>

Inheritance diagram for clang::tidy::FileOptionsProvider:
[legend]
Collaboration diagram for clang::tidy::FileOptionsProvider:
[legend]

Public Types

typedef std::pair< std::string,
std::function< llvm::ErrorOr
< ClangTidyOptions >
llvm::StringRef)> > 
ConfigFileHandler
 
typedef std::vector
< ConfigFileHandler
ConfigFileHandlers
 Configuration file handlers listed in the order of priority. More...
 
- Public Types inherited from clang::tidy::ClangTidyOptionsProvider
typedef std::pair
< ClangTidyOptions,
std::string > 
OptionsSource
 ClangTidyOptions and its source. More...
 

Public Member Functions

 FileOptionsProvider (const ClangTidyGlobalOptions &GlobalOptions, const ClangTidyOptions &DefaultOptions, const ClangTidyOptions &OverrideOptions)
 Initializes the FileOptionsProvider instance. More...
 
 FileOptionsProvider (const ClangTidyGlobalOptions &GlobalOptions, const ClangTidyOptions &DefaultOptions, const ClangTidyOptions &OverrideOptions, const ConfigFileHandlers &ConfigHandlers)
 Initializes the FileOptionsProvider instance with a custom set of configuration file handlers. More...
 
std::vector< OptionsSourcegetRawOptions (llvm::StringRef FileName) override
 Returns an ordered vector of OptionsSources, in order of increasing priority. More...
 
- Public Member Functions inherited from clang::tidy::DefaultOptionsProvider
 DefaultOptionsProvider (const ClangTidyGlobalOptions &GlobalOptions, const ClangTidyOptions &Options)
 
const ClangTidyGlobalOptionsgetGlobalOptions () override
 Returns global options, which are independent of the file. More...
 
- Public Member Functions inherited from clang::tidy::ClangTidyOptionsProvider
virtual ~ClangTidyOptionsProvider ()
 
ClangTidyOptions getOptions (llvm::StringRef FileName)
 Returns options applying to a specific translation unit with the specified FileName. More...
 

Protected Member Functions

llvm::Optional< OptionsSourcetryReadConfigFile (llvm::StringRef Directory)
 Try to read configuration files from Directory using registered ConfigHandlers. More...
 

Protected Attributes

llvm::StringMap< OptionsSourceCachedOptions
 
ClangTidyOptions OverrideOptions
 
ConfigFileHandlers ConfigHandlers
 

Additional Inherited Members

- Static Public Attributes inherited from clang::tidy::ClangTidyOptionsProvider
static const char OptionsSourceTypeDefaultBinary []
 
static const char OptionsSourceTypeCheckCommandLineOption []
 
static const char OptionsSourceTypeConfigCommandLineOption []
 

Detailed Description

Implementation of the ClangTidyOptionsProvider interface, which tries to find a configuration file in the closest parent directory of each source file.

By default, files named ".clang-tidy" will be considered, and the clang::tidy::parseConfiguration function will be used for parsing, but a custom set of configuration file names and parsing functions can be specified using the appropriate constructor.

Definition at line 171 of file ClangTidyOptions.h.

Member Typedef Documentation

typedef std::pair<std::string, std::function<llvm::ErrorOr<ClangTidyOptions> llvm::StringRef)> > clang::tidy::FileOptionsProvider::ConfigFileHandler

Definition at line 176 of file ClangTidyOptions.h.

Configuration file handlers listed in the order of priority.

Custom configuration file formats can be supported by constructing the list of handlers and passing it to the appropriate FileOptionsProvider constructor. E.g. initialization of a FileOptionsProvider with support of a custom configuration file format for files named ".my-tidy-config" could look similar to this:

ConfigHandlers.emplace_back(".my-tidy-config", parseMyConfigFormat);
ConfigHandlers.emplace_back(".clang-tidy", parseConfiguration);
return llvm::make_unique<FileOptionsProvider>(
GlobalOptions, DefaultOptions, OverrideOptions, ConfigHandlers);

With the order of handlers shown above, the ".my-tidy-config" file would take precedence over ".clang-tidy" if both reside in the same directory.

Definition at line 195 of file ClangTidyOptions.h.

Constructor & Destructor Documentation

clang::tidy::FileOptionsProvider::FileOptionsProvider ( const ClangTidyGlobalOptions GlobalOptions,
const ClangTidyOptions DefaultOptions,
const ClangTidyOptions OverrideOptions 
)

Initializes the FileOptionsProvider instance.

Parameters
GlobalOptionsare just stored and returned to the caller of getGlobalOptions.
DefaultOptionsare used for all settings not specified in a configuration file.

If any of the

Parameters
OverrideOptionsfields are set, they will override whatever options are read from the configuration file.

Definition at line 197 of file ClangTidyOptions.cpp.

References ConfigHandlers, and clang::tidy::parseConfiguration().

clang::tidy::FileOptionsProvider::FileOptionsProvider ( const ClangTidyGlobalOptions GlobalOptions,
const ClangTidyOptions DefaultOptions,
const ClangTidyOptions OverrideOptions,
const ConfigFileHandlers ConfigHandlers 
)

Initializes the FileOptionsProvider instance with a custom set of configuration file handlers.

Parameters
GlobalOptionsare just stored and returned to the caller of getGlobalOptions.
DefaultOptionsare used for all settings not specified in a configuration file.

If any of the

Parameters
OverrideOptionsfields are set, they will override whatever options are read from the configuration file.
ConfigHandlersspecifies a custom set of configuration file handlers. Each handler is a pair of configuration file name and a function that can parse configuration from this file type. The configuration files in each directory are searched for in the order of appearance in ConfigHandlers.

Definition at line 206 of file ClangTidyOptions.cpp.

Member Function Documentation

std::vector< OptionsSource > clang::tidy::FileOptionsProvider::getRawOptions ( llvm::StringRef  FileName)
overridevirtual
llvm::Optional< OptionsSource > clang::tidy::FileOptionsProvider::tryReadConfigFile ( llvm::StringRef  Directory)
protected

Try to read configuration files from Directory using registered ConfigHandlers.

Definition at line 259 of file ClangTidyOptions.cpp.

References ConfigHandlers.

Referenced by getRawOptions().

Member Data Documentation

llvm::StringMap<OptionsSource> clang::tidy::FileOptionsProvider::CachedOptions
protected

Definition at line 240 of file ClangTidyOptions.h.

Referenced by getRawOptions().

ConfigFileHandlers clang::tidy::FileOptionsProvider::ConfigHandlers
protected

Definition at line 242 of file ClangTidyOptions.h.

Referenced by FileOptionsProvider(), and tryReadConfigFile().

ClangTidyOptions clang::tidy::FileOptionsProvider::OverrideOptions
protected

Definition at line 241 of file ClangTidyOptions.h.

Referenced by getRawOptions().


The documentation for this class was generated from the following files: