clang-tools
20.0.0git
llvm-project
clang-tools-extra
clang-tidy
readability
FunctionCognitiveComplexityCheck.h
Go to the documentation of this file.
1
//===--- FunctionCognitiveComplexityCheck.h - clang-tidy --------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_FUNCTIONCOGNITIVECOMPLEXITYCHECK_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_FUNCTIONCOGNITIVECOMPLEXITYCHECK_H
11
12
#include "../ClangTidyCheck.h"
13
14
namespace
clang::tidy::readability
{
15
16
/// Checks function Cognitive Complexity metric.
17
///
18
/// There are the following configuration option:
19
///
20
/// * `Threshold` - flag functions with Cognitive Complexity exceeding
21
/// this number. The default is `25`.
22
/// * `DescribeBasicIncrements`- if set to `true`, then for each function
23
/// exceeding the complexity threshold the check will issue additional
24
/// diagnostics on every piece of code (loop, `if` statement, etc.) which
25
/// contributes to that complexity.
26
// Default is `true`
27
/// * `IgnoreMacros` - if set to `true`, the check will ignore code inside
28
/// macros. Default is `false`.
29
///
30
/// For the user-facing documentation see:
31
/// http://clang.llvm.org/extra/clang-tidy/checks/readability/function-cognitive-complexity.html
32
class
FunctionCognitiveComplexityCheck
:
public
ClangTidyCheck
{
33
public
:
34
FunctionCognitiveComplexityCheck
(StringRef
Name
,
ClangTidyContext
*Context);
35
36
void
storeOptions
(
ClangTidyOptions::OptionMap
&Opts)
override
;
37
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
38
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
39
std::optional<TraversalKind>
getCheckTraversalKind
()
const override
{
40
return
TK_IgnoreUnlessSpelledInSource;
41
}
42
43
private
:
44
const
unsigned
Threshold;
45
const
bool
DescribeBasicIncrements;
46
const
bool
IgnoreMacros;
47
};
48
49
}
// namespace clang::tidy::readability
50
51
#endif
// LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_FUNCTIONCOGNITIVECOMPLEXITYCHECK_H
Name
llvm::SmallString< 256U > Name
Definition:
ChainedComparisonCheck.cpp:42
clang::tidy::ClangTidyCheck
Base class for all clang-tidy checks.
Definition:
ClangTidyCheck.h:53
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition:
ClangTidyDiagnosticConsumer.h:69
clang::tidy::readability::FunctionCognitiveComplexityCheck
Checks function Cognitive Complexity metric.
Definition:
FunctionCognitiveComplexityCheck.h:32
clang::tidy::readability::FunctionCognitiveComplexityCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
FunctionCognitiveComplexityCheck.cpp:515
clang::tidy::readability::FunctionCognitiveComplexityCheck::getCheckTraversalKind
std::optional< TraversalKind > getCheckTraversalKind() const override
Definition:
FunctionCognitiveComplexityCheck.h:39
clang::tidy::readability::FunctionCognitiveComplexityCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
FunctionCognitiveComplexityCheck.cpp:506
clang::tidy::readability::FunctionCognitiveComplexityCheck::storeOptions
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
Definition:
FunctionCognitiveComplexityCheck.cpp:499
clang::tidy::readability
Definition:
AvoidConstParamsInDecls.cpp:17
clang::tidy::ClangTidyOptions::OptionMap
llvm::StringMap< ClangTidyValue > OptionMap
Definition:
ClangTidyOptions.h:126
Generated on Thu Nov 21 2024 14:01:09 for clang-tools by
1.9.6