260 строки
10 KiB
C++
260 строки
10 KiB
C++
//===--- ClangTidyOptions.h - clang-tidy ------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYOPTIONS_H
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYOPTIONS_H
|
|
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/ADT/StringMap.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Support/ErrorOr.h"
|
|
#include <functional>
|
|
#include <map>
|
|
#include <string>
|
|
#include <system_error>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace clang {
|
|
namespace tidy {
|
|
|
|
/// \brief Contains a list of line ranges in a single file.
|
|
struct FileFilter {
|
|
/// \brief File name.
|
|
std::string Name;
|
|
|
|
/// \brief LineRange is a pair<start, end> (inclusive).
|
|
typedef std::pair<unsigned, unsigned> LineRange;
|
|
|
|
/// \brief A list of line ranges in this file, for which we show warnings.
|
|
std::vector<LineRange> LineRanges;
|
|
};
|
|
|
|
/// \brief Global options. These options are neither stored nor read from
|
|
/// configuration files.
|
|
struct ClangTidyGlobalOptions {
|
|
/// \brief Output warnings from certain line ranges of certain files only.
|
|
/// If empty, no warnings will be filtered.
|
|
std::vector<FileFilter> LineFilter;
|
|
};
|
|
|
|
/// \brief Contains options for clang-tidy. These options may be read from
|
|
/// configuration files, and may be different for different translation units.
|
|
struct ClangTidyOptions {
|
|
/// \brief These options are used for all settings that haven't been
|
|
/// overridden by the \c OptionsProvider.
|
|
///
|
|
/// Allow no checks and no headers by default. This method initializes
|
|
/// check-specific options by calling \c ClangTidyModule::getModuleOptions()
|
|
/// of each registered \c ClangTidyModule.
|
|
static ClangTidyOptions getDefaults();
|
|
|
|
/// \brief Creates a new \c ClangTidyOptions instance combined from all fields
|
|
/// of this instance overridden by the fields of \p Other that have a value.
|
|
ClangTidyOptions mergeWith(const ClangTidyOptions &Other) const;
|
|
|
|
/// \brief Checks filter.
|
|
llvm::Optional<std::string> Checks;
|
|
|
|
/// \brief WarningsAsErrors filter.
|
|
llvm::Optional<std::string> WarningsAsErrors;
|
|
|
|
/// \brief Output warnings from headers matching this filter. Warnings from
|
|
/// main files will always be displayed.
|
|
llvm::Optional<std::string> HeaderFilterRegex;
|
|
|
|
/// \brief Output warnings from system headers matching \c HeaderFilterRegex.
|
|
llvm::Optional<bool> SystemHeaders;
|
|
|
|
/// \brief Turns on temporary destructor-based analysis.
|
|
llvm::Optional<bool> AnalyzeTemporaryDtors;
|
|
|
|
/// \brief Specifies the name or e-mail of the user running clang-tidy.
|
|
///
|
|
/// This option is used, for example, to place the correct user name in TODO()
|
|
/// comments in the relevant check.
|
|
llvm::Optional<std::string> User;
|
|
|
|
typedef std::pair<std::string, std::string> StringPair;
|
|
typedef std::map<std::string, std::string> OptionMap;
|
|
|
|
/// \brief Key-value mapping used to store check-specific options.
|
|
OptionMap CheckOptions;
|
|
|
|
typedef std::vector<std::string> ArgList;
|
|
|
|
/// \brief Add extra compilation arguments to the end of the list.
|
|
llvm::Optional<ArgList> ExtraArgs;
|
|
|
|
/// \brief Add extra compilation arguments to the start of the list.
|
|
llvm::Optional<ArgList> ExtraArgsBefore;
|
|
};
|
|
|
|
/// \brief Abstract interface for retrieving various ClangTidy options.
|
|
class ClangTidyOptionsProvider {
|
|
public:
|
|
static const char OptionsSourceTypeDefaultBinary[];
|
|
static const char OptionsSourceTypeCheckCommandLineOption[];
|
|
static const char OptionsSourceTypeConfigCommandLineOption[];
|
|
|
|
virtual ~ClangTidyOptionsProvider() {}
|
|
|
|
/// \brief Returns global options, which are independent of the file.
|
|
virtual const ClangTidyGlobalOptions &getGlobalOptions() = 0;
|
|
|
|
/// \brief ClangTidyOptions and its source.
|
|
//
|
|
/// clang-tidy has 3 types of the sources in order of increasing priority:
|
|
/// * clang-tidy binary.
|
|
/// * '-config' commandline option or a specific configuration file. If the
|
|
/// commandline option is specified, clang-tidy will ignore the
|
|
/// configuration file.
|
|
/// * '-checks' commandline option.
|
|
typedef std::pair<ClangTidyOptions, std::string> OptionsSource;
|
|
|
|
/// \brief Returns an ordered vector of OptionsSources, in order of increasing
|
|
/// priority.
|
|
virtual std::vector<OptionsSource>
|
|
getRawOptions(llvm::StringRef FileName) = 0;
|
|
|
|
/// \brief Returns options applying to a specific translation unit with the
|
|
/// specified \p FileName.
|
|
ClangTidyOptions getOptions(llvm::StringRef FileName);
|
|
};
|
|
|
|
/// \brief Implementation of the \c ClangTidyOptionsProvider interface, which
|
|
/// returns the same options for all files.
|
|
class DefaultOptionsProvider : public ClangTidyOptionsProvider {
|
|
public:
|
|
DefaultOptionsProvider(const ClangTidyGlobalOptions &GlobalOptions,
|
|
const ClangTidyOptions &Options)
|
|
: GlobalOptions(GlobalOptions), DefaultOptions(Options) {}
|
|
const ClangTidyGlobalOptions &getGlobalOptions() override {
|
|
return GlobalOptions;
|
|
}
|
|
std::vector<OptionsSource> getRawOptions(llvm::StringRef FileName) override;
|
|
|
|
private:
|
|
ClangTidyGlobalOptions GlobalOptions;
|
|
ClangTidyOptions DefaultOptions;
|
|
};
|
|
|
|
/// \brief Implementation of ClangTidyOptions interface, which is used for
|
|
/// '-config' command-line option.
|
|
class ConfigOptionsProvider : public DefaultOptionsProvider {
|
|
public:
|
|
ConfigOptionsProvider(const ClangTidyGlobalOptions &GlobalOptions,
|
|
const ClangTidyOptions &DefaultOptions,
|
|
const ClangTidyOptions &ConfigOptions,
|
|
const ClangTidyOptions &OverrideOptions);
|
|
std::vector<OptionsSource> getRawOptions(llvm::StringRef FileName) override;
|
|
|
|
private:
|
|
ClangTidyOptions ConfigOptions;
|
|
ClangTidyOptions OverrideOptions;
|
|
};
|
|
|
|
/// \brief Implementation of the \c 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
|
|
/// \c 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.
|
|
class FileOptionsProvider : public DefaultOptionsProvider {
|
|
public:
|
|
// \brief A pair of configuration file base name and a function parsing
|
|
// configuration from text in the corresponding format.
|
|
typedef std::pair<std::string, std::function<llvm::ErrorOr<ClangTidyOptions>(
|
|
llvm::StringRef)>> ConfigFileHandler;
|
|
|
|
/// \brief 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 \c FileOptionsProvider
|
|
/// constructor. E.g. initialization of a \c FileOptionsProvider with support
|
|
/// of a custom configuration file format for files named ".my-tidy-config"
|
|
/// could look similar to this:
|
|
/// \code
|
|
/// FileOptionsProvider::ConfigFileHandlers ConfigHandlers;
|
|
/// ConfigHandlers.emplace_back(".my-tidy-config", parseMyConfigFormat);
|
|
/// ConfigHandlers.emplace_back(".clang-tidy", parseConfiguration);
|
|
/// return llvm::make_unique<FileOptionsProvider>(
|
|
/// GlobalOptions, DefaultOptions, OverrideOptions, ConfigHandlers);
|
|
/// \endcode
|
|
///
|
|
/// 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.
|
|
typedef std::vector<ConfigFileHandler> ConfigFileHandlers;
|
|
|
|
/// \brief Initializes the \c FileOptionsProvider instance.
|
|
///
|
|
/// \param GlobalOptions are just stored and returned to the caller of
|
|
/// \c getGlobalOptions.
|
|
///
|
|
/// \param DefaultOptions are used for all settings not specified in a
|
|
/// configuration file.
|
|
///
|
|
/// If any of the \param OverrideOptions fields are set, they will override
|
|
/// whatever options are read from the configuration file.
|
|
FileOptionsProvider(const ClangTidyGlobalOptions &GlobalOptions,
|
|
const ClangTidyOptions &DefaultOptions,
|
|
const ClangTidyOptions &OverrideOptions);
|
|
|
|
/// \brief Initializes the \c FileOptionsProvider instance with a custom set
|
|
/// of configuration file handlers.
|
|
///
|
|
/// \param GlobalOptions are just stored and returned to the caller of
|
|
/// \c getGlobalOptions.
|
|
///
|
|
/// \param DefaultOptions are used for all settings not specified in a
|
|
/// configuration file.
|
|
///
|
|
/// If any of the \param OverrideOptions fields are set, they will override
|
|
/// whatever options are read from the configuration file.
|
|
///
|
|
/// \param ConfigHandlers specifies 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
|
|
/// \p ConfigHandlers.
|
|
FileOptionsProvider(const ClangTidyGlobalOptions &GlobalOptions,
|
|
const ClangTidyOptions &DefaultOptions,
|
|
const ClangTidyOptions &OverrideOptions,
|
|
const ConfigFileHandlers &ConfigHandlers);
|
|
|
|
std::vector<OptionsSource> getRawOptions(llvm::StringRef FileName) override;
|
|
|
|
protected:
|
|
/// \brief Try to read configuration files from \p Directory using registered
|
|
/// \c ConfigHandlers.
|
|
llvm::Optional<OptionsSource> tryReadConfigFile(llvm::StringRef Directory);
|
|
|
|
llvm::StringMap<OptionsSource> CachedOptions;
|
|
ClangTidyOptions OverrideOptions;
|
|
ConfigFileHandlers ConfigHandlers;
|
|
};
|
|
|
|
/// \brief Parses LineFilter from JSON and stores it to the \p Options.
|
|
std::error_code parseLineFilter(llvm::StringRef LineFilter,
|
|
ClangTidyGlobalOptions &Options);
|
|
|
|
/// \brief Parses configuration from JSON and returns \c ClangTidyOptions or an
|
|
/// error.
|
|
llvm::ErrorOr<ClangTidyOptions> parseConfiguration(llvm::StringRef Config);
|
|
|
|
/// \brief Serializes configuration to a YAML-encoded string.
|
|
std::string configurationAsText(const ClangTidyOptions &Options);
|
|
|
|
} // end namespace tidy
|
|
} // end namespace clang
|
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYOPTIONS_H
|