clang-tools
20.0.0git
llvm-project
clang-tools-extra
clang-tidy
readability
ContainerSizeEmptyCheck.h
Go to the documentation of this file.
1
//===--- ContainerSizeEmptyCheck.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_CONTAINERSIZEEMPTYCHECK_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_CONTAINERSIZEEMPTYCHECK_H
11
12
#include "../ClangTidyCheck.h"
13
#include <vector>
14
15
namespace
clang::tidy::readability
{
16
17
/// Checks whether a call to the `size()`/`length()` method can be replaced with
18
/// a call to `empty()`.
19
///
20
/// The emptiness of a container should be checked using the `empty()` method
21
/// instead of the `size()` method. It is not guaranteed that `size()` is a
22
/// constant-time function, and it is generally more efficient and also shows
23
/// clearer intent to use `empty()`. Furthermore some containers may implement
24
/// the `empty()` method but not implement the `size()` method. Using `empty()`
25
/// whenever possible makes it easier to switch to another container in the
26
/// future.
27
class
ContainerSizeEmptyCheck
:
public
ClangTidyCheck
{
28
public
:
29
ContainerSizeEmptyCheck
(StringRef
Name
,
ClangTidyContext
*Context);
30
bool
isLanguageVersionSupported
(
const
LangOptions &LangOpts)
const override
{
31
return
LangOpts.CPlusPlus;
32
}
33
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
34
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
35
void
storeOptions
(
ClangTidyOptions::OptionMap
&Opts)
override
;
36
std::optional<TraversalKind>
getCheckTraversalKind
()
const override
{
37
return
TK_IgnoreUnlessSpelledInSource;
38
}
39
40
private
:
41
std::vector<llvm::StringRef> ExcludedComparisonTypes;
42
};
43
44
}
// namespace clang::tidy::readability
45
46
#endif
// LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_CONTAINERSIZEEMPTYCHECK_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::ContainerSizeEmptyCheck
Checks whether a call to the size()/length() method can be replaced with a call to empty().
Definition:
ContainerSizeEmptyCheck.h:27
clang::tidy::readability::ContainerSizeEmptyCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
ContainerSizeEmptyCheck.cpp:224
clang::tidy::readability::ContainerSizeEmptyCheck::isLanguageVersionSupported
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
Definition:
ContainerSizeEmptyCheck.h:30
clang::tidy::readability::ContainerSizeEmptyCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
ContainerSizeEmptyCheck.cpp:126
clang::tidy::readability::ContainerSizeEmptyCheck::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:
ContainerSizeEmptyCheck.cpp:121
clang::tidy::readability::ContainerSizeEmptyCheck::getCheckTraversalKind
std::optional< TraversalKind > getCheckTraversalKind() const override
Definition:
ContainerSizeEmptyCheck.h:36
clang::tidy::readability
Definition:
AvoidConstParamsInDecls.cpp:17
clang::tidy::ClangTidyOptions::OptionMap
llvm::StringMap< ClangTidyValue > OptionMap
Definition:
ClangTidyOptions.h:126
Generated on Wed Nov 20 2024 18:24:50 for clang-tools by
1.9.6