clang-tools
22.0.0git
llvm-project
clang-tools-extra
clang-tidy
readability
FunctionCognitiveComplexityCheck.h
Go to the documentation of this file.
1
//===----------------------------------------------------------------------===//
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
/// https://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
ClangTidyCheck.h
ClangTidyCheck
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition
ClangTidyDiagnosticConsumer.h:70
clang::tidy::readability::FunctionCognitiveComplexityCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
Definition
FunctionCognitiveComplexityCheck.cpp:520
clang::tidy::readability::FunctionCognitiveComplexityCheck::getCheckTraversalKind
std::optional< TraversalKind > getCheckTraversalKind() const override
Definition
FunctionCognitiveComplexityCheck.h:39
clang::tidy::readability::FunctionCognitiveComplexityCheck::FunctionCognitiveComplexityCheck
FunctionCognitiveComplexityCheck(StringRef Name, ClangTidyContext *Context)
Definition
FunctionCognitiveComplexityCheck.cpp:497
clang::tidy::readability::FunctionCognitiveComplexityCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Definition
FunctionCognitiveComplexityCheck.cpp:511
clang::tidy::readability::FunctionCognitiveComplexityCheck::storeOptions
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Definition
FunctionCognitiveComplexityCheck.cpp:504
clang::tidy::readability
Definition
AmbiguousSmartptrResetCallCheck.cpp:18
clang::tidy::ClangTidyOptions::OptionMap
llvm::StringMap< ClangTidyValue > OptionMap
Definition
ClangTidyOptions.h:128
Generated on
for clang-tools by
1.14.0