//===--- IdentifierNamingCheck.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_READABILITY_IDENTIFIERNAMINGCHECK_H #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_IDENTIFIERNAMINGCHECK_H #include "../ClangTidy.h" namespace clang { namespace tidy { namespace readability { /// Checks for identifiers naming style mismatch. /// /// This check will try to enforce coding guidelines on the identifiers naming. /// It supports `lower_case`, `UPPER_CASE`, `camelBack` and `CamelCase` casing /// and tries to convert from one to another if a mismatch is detected. /// /// It also supports a fixed prefix and suffix that will be prepended or /// appended to the identifiers, regardless of the casing. /// /// Many configuration options are available, in order to be able to create /// different rules for different kind of identifier. In general, the /// rules are falling back to a more generic rule if the specific case is not /// configured. class IdentifierNamingCheck : public ClangTidyCheck { public: IdentifierNamingCheck(StringRef Name, ClangTidyContext *Context); void storeOptions(ClangTidyOptions::OptionMap &Opts) override; void registerMatchers(ast_matchers::MatchFinder *Finder) override; void check(const ast_matchers::MatchFinder::MatchResult &Result) override; void onEndOfTranslationUnit() override; enum CaseType { CT_AnyCase = 0, CT_LowerCase, CT_CamelBack, CT_UpperCase, CT_CamelCase, }; struct NamingStyle { NamingStyle() : Case(CT_AnyCase) {} NamingStyle(CaseType Case, const std::string &Prefix, const std::string &Suffix) : Case(Case), Prefix(Prefix), Suffix(Suffix) {} CaseType Case; std::string Prefix; std::string Suffix; bool isSet() const { return !(Case == CT_AnyCase && Prefix.empty() && Suffix.empty()); } }; /// \brief Holds an identifier name check failure, tracking the kind of the /// identifer, its possible fixup and the starting locations of all the /// idenfiier usages. struct NamingCheckFailure { std::string KindName; std::string Fixup; /// \brief Whether the failure should be fixed or not. /// /// ie: if the identifier was used or declared within a macro we won't offer /// a fixup for safety reasons. bool ShouldFix; /// \brief A set of all the identifier usages starting SourceLocation, in /// their encoded form. llvm::DenseSet RawUsageLocs; NamingCheckFailure() : ShouldFix(true) {} }; typedef llvm::DenseMap NamingCheckFailureMap; private: std::vector NamingStyles; bool IgnoreFailedSplit; NamingCheckFailureMap NamingCheckFailures; }; } // namespace readability } // namespace tidy } // namespace clang #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_IDENTIFIERNAMINGCHECK_H