clang-tools 22.0.0git
clang::tidy::readability::IdentifierNamingCheck Class Referencefinal

Checks for identifiers naming style mismatch. More...

#include <IdentifierNamingCheck.h>

Inheritance diagram for clang::tidy::readability::IdentifierNamingCheck:
[legend]

Classes

struct  FileStyle
struct  HungarianNotation
struct  HungarianNotationOption
struct  NamingStyle

Public Types

enum  CaseType {
  CT_AnyCase = 0 , CT_LowerCase , CT_CamelBack , CT_UpperCase ,
  CT_CamelCase , CT_CamelSnakeCase , CT_CamelSnakeBack , CT_LeadingUpperSnakeCase
}
enum  HungarianPrefixType { HPT_Off = 0 , HPT_On , HPT_LowerCase , HPT_CamelCase }
Public Types inherited from clang::tidy::RenamerClangTidyCheck
enum class  ShouldFixStatus {
  ShouldFix , ConflictsWithKeyword , ConflictsWithMacroDefinition , FixInvalidIdentifier ,
  IgnoreFailureThreshold , InsideMacro
}
 This enum will be used in select of the diagnostic message. More...
using NamingCheckId = std::pair<SourceLocation, StringRef>
using NamingCheckFailureMap

Public Member Functions

 IdentifierNamingCheck (StringRef Name, ClangTidyContext *Context)
 ~IdentifierNamingCheck ()
void storeOptions (ClangTidyOptions::OptionMap &Opts) override
IdentifierNamingCheck::FileStyle getFileStyleFromOptions (const ClangTidyCheck::OptionsView &Options) const
bool matchesStyle (StringRef Type, StringRef Name, const IdentifierNamingCheck::NamingStyle &Style, const IdentifierNamingCheck::HungarianNotationOption &HNOption, const NamedDecl *Decl) const
std::string fixupWithCase (StringRef Type, StringRef Name, const Decl *D, const IdentifierNamingCheck::NamingStyle &Style, const IdentifierNamingCheck::HungarianNotationOption &HNOption, IdentifierNamingCheck::CaseType Case) const
std::string fixupWithStyle (StringRef Type, StringRef Name, const IdentifierNamingCheck::NamingStyle &Style, const IdentifierNamingCheck::HungarianNotationOption &HNOption, const Decl *D) const
StyleKind findStyleKind (const NamedDecl *D, ArrayRef< std::optional< IdentifierNamingCheck::NamingStyle > > NamingStyles, bool IgnoreMainLikeFunctions, bool CheckAnonFieldInParentScope) const
std::optional< RenamerClangTidyCheck::FailureInfogetFailureInfo (StringRef Type, StringRef Name, const NamedDecl *ND, SourceLocation Location, ArrayRef< std::optional< IdentifierNamingCheck::NamingStyle > > NamingStyles, const IdentifierNamingCheck::HungarianNotationOption &HNOption, StyleKind SK, const SourceManager &SM, bool IgnoreFailedSplit) const
bool isParamInMainLikeFunction (const ParmVarDecl &ParmDecl, bool IncludeMainLike) const
Public Member Functions inherited from clang::tidy::RenamerClangTidyCheck
 RenamerClangTidyCheck (StringRef CheckName, ClangTidyContext *Context)
 ~RenamerClangTidyCheck ()
void registerMatchers (ast_matchers::MatchFinder *Finder) final
 Derived classes should not implement any matching logic themselves; this class will do the matching and call the derived class' getDeclFailureInfo() and getMacroFailureInfo() for determining whether a given identifier passes or fails the check.
void check (const ast_matchers::MatchFinder::MatchResult &Result) final
void registerPPCallbacks (const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) final
void onEndOfTranslationUnit () final
void storeOptions (ClangTidyOptions::OptionMap &Opts) override
 Derived classes that override this function should call this method from the overridden method.
void checkMacro (const Token &MacroNameTok, const MacroInfo *MI, const SourceManager &SourceMgr)
 Check Macros for style violations.
void expandMacro (const Token &MacroNameTok, const MacroInfo *MI, const SourceManager &SourceMgr)
 Add a usage of a macro if it already has a violation.
void addUsage (const NamedDecl *Decl, SourceRange Range, const SourceManager &SourceMgr)

Detailed Description

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.

Definition at line 33 of file IdentifierNamingCheck.h.

Member Enumeration Documentation

◆ CaseType

Enumerator
CT_AnyCase 
CT_LowerCase 
CT_CamelBack 
CT_UpperCase 
CT_CamelCase 
CT_CamelSnakeCase 
CT_CamelSnakeBack 
CT_LeadingUpperSnakeCase 

Definition at line 40 of file IdentifierNamingCheck.h.

◆ HungarianPrefixType

Enumerator
HPT_Off 
HPT_On 
HPT_LowerCase 
HPT_CamelCase 

Definition at line 51 of file IdentifierNamingCheck.h.

Constructor & Destructor Documentation

◆ IdentifierNamingCheck()

clang::tidy::readability::IdentifierNamingCheck::IdentifierNamingCheck ( StringRef Name,
ClangTidyContext * Context )

◆ ~IdentifierNamingCheck()

clang::tidy::readability::IdentifierNamingCheck::~IdentifierNamingCheck ( )
default

Member Function Documentation

◆ findStyleKind()

StyleKind clang::tidy::readability::IdentifierNamingCheck::findStyleKind ( const NamedDecl * D,
ArrayRef< std::optional< IdentifierNamingCheck::NamingStyle > > NamingStyles,
bool IgnoreMainLikeFunctions,
bool CheckAnonFieldInParentScope ) const

◆ fixupWithCase()

std::string clang::tidy::readability::IdentifierNamingCheck::fixupWithCase ( StringRef Type,
StringRef Name,
const Decl * D,
const IdentifierNamingCheck::NamingStyle & Style,
const IdentifierNamingCheck::HungarianNotationOption & HNOption,
IdentifierNamingCheck::CaseType Case ) const

◆ fixupWithStyle()

std::string clang::tidy::readability::IdentifierNamingCheck::fixupWithStyle ( StringRef Type,
StringRef Name,
const IdentifierNamingCheck::NamingStyle & Style,
const IdentifierNamingCheck::HungarianNotationOption & HNOption,
const Decl * D ) const

◆ getFailureInfo()

std::optional< RenamerClangTidyCheck::FailureInfo > clang::tidy::readability::IdentifierNamingCheck::getFailureInfo ( StringRef Type,
StringRef Name,
const NamedDecl * ND,
SourceLocation Location,
ArrayRef< std::optional< IdentifierNamingCheck::NamingStyle > > NamingStyles,
const IdentifierNamingCheck::HungarianNotationOption & HNOption,
StyleKind SK,
const SourceManager & SM,
bool IgnoreFailedSplit ) const

◆ getFileStyleFromOptions()

◆ isParamInMainLikeFunction()

bool clang::tidy::readability::IdentifierNamingCheck::isParamInMainLikeFunction ( const ParmVarDecl & ParmDecl,
bool IncludeMainLike ) const

Definition at line 1024 of file IdentifierNamingCheck.cpp.

Referenced by findStyleKind().

◆ matchesStyle()

bool clang::tidy::readability::IdentifierNamingCheck::matchesStyle ( StringRef Type,
StringRef Name,
const IdentifierNamingCheck::NamingStyle & Style,
const IdentifierNamingCheck::HungarianNotationOption & HNOption,
const NamedDecl * Decl ) const

◆ storeOptions()

void clang::tidy::readability::IdentifierNamingCheck::storeOptions ( ClangTidyOptions::OptionMap & Opts)
override

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