blob: 665d1dbe349571ac10d1147fbce9f51a235d106c [file] [log] [blame]
Alexander Kornienko1b677db2015-03-09 12:18:39 +00001//===--- ContainerSizeEmptyCheck.cpp - clang-tidy -------------------------===//
Alexander Kornienko4babd682015-01-15 15:46:58 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Alexander Kornienko1b677db2015-03-09 12:18:39 +00009#include "ContainerSizeEmptyCheck.h"
Kirill Bobyrevacb6b352016-09-13 08:58:11 +000010#include "../utils/Matchers.h"
Alexander Kornienko4babd682015-01-15 15:46:58 +000011#include "clang/AST/ASTContext.h"
12#include "clang/ASTMatchers/ASTMatchers.h"
Alexander Kornienko4babd682015-01-15 15:46:58 +000013#include "clang/Lex/Lexer.h"
Chandler Carruthf7662782015-02-13 09:07:58 +000014#include "llvm/ADT/StringRef.h"
Alexander Kornienko4babd682015-01-15 15:46:58 +000015
16using namespace clang::ast_matchers;
17
Alexander Kornienko4babd682015-01-15 15:46:58 +000018namespace clang {
Alexander Kornienko4babd682015-01-15 15:46:58 +000019namespace tidy {
20namespace readability {
21
22ContainerSizeEmptyCheck::ContainerSizeEmptyCheck(StringRef Name,
23 ClangTidyContext *Context)
24 : ClangTidyCheck(Name, Context) {}
25
26void ContainerSizeEmptyCheck::registerMatchers(MatchFinder *Finder) {
Aaron Ballman1f1b0672015-09-02 16:05:21 +000027 // Only register the matchers for C++; the functionality currently does not
28 // provide any benefit to other languages, despite being benign.
29 if (!getLangOpts().CPlusPlus)
30 return;
31
Kirill Bobyrev0d0bbfd2016-09-13 10:19:13 +000032 const auto ValidContainer = cxxRecordDecl(isSameOrDerivedFrom(
Kirill Bobyrevacb6b352016-09-13 08:58:11 +000033 namedDecl(
34 has(cxxMethodDecl(
35 isConst(), parameterCountIs(0), isPublic(), hasName("size"),
36 returns(qualType(isInteger(), unless(booleanType()))))
37 .bind("size")),
38 has(cxxMethodDecl(isConst(), parameterCountIs(0), isPublic(),
39 hasName("empty"), returns(booleanType()))
40 .bind("empty")))
41 .bind("container")));
Etienne Bergeron9d265992016-04-21 16:57:56 +000042
Alexander Kornienko4babd682015-01-15 15:46:58 +000043 const auto WrongUse = anyOf(
Gabor Horvath533c01d2016-04-19 13:29:05 +000044 hasParent(binaryOperator(
Etienne Bergeron9d265992016-04-21 16:57:56 +000045 matchers::isComparisonOperator(),
Gabor Horvath533c01d2016-04-19 13:29:05 +000046 hasEitherOperand(ignoringImpCasts(anyOf(
47 integerLiteral(equals(1)), integerLiteral(equals(0))))))
48 .bind("SizeBinaryOp")),
Alexander Kornienko4babd682015-01-15 15:46:58 +000049 hasParent(implicitCastExpr(
Gabor Horvatha4fd3be2016-02-09 09:26:11 +000050 hasImplicitDestinationType(booleanType()),
Alexander Kornienko4babd682015-01-15 15:46:58 +000051 anyOf(
52 hasParent(unaryOperator(hasOperatorName("!")).bind("NegOnSize")),
53 anything()))),
Gabor Horvatha4fd3be2016-02-09 09:26:11 +000054 hasParent(explicitCastExpr(hasDestinationType(booleanType()))));
Alexander Kornienko4babd682015-01-15 15:46:58 +000055
56 Finder->addMatcher(
Kirill Bobyrev0d0bbfd2016-09-13 10:19:13 +000057 cxxMemberCallExpr(on(expr(anyOf(hasType(ValidContainer),
58 hasType(pointsTo(ValidContainer)),
59 hasType(references(ValidContainer))))
Kirill Bobyrevacb6b352016-09-13 08:58:11 +000060 .bind("STLObject")),
Alexander Kornienkob5ca17f2016-12-21 23:44:23 +000061 callee(cxxMethodDecl(hasName("size"))), WrongUse,
62 unless(hasAncestor(cxxMethodDecl(
63 ofClass(equalsBoundNode("container"))))))
Aaron Ballmanb9ea09c2015-09-17 13:31:25 +000064 .bind("SizeCallExpr"),
Alexander Kornienko4babd682015-01-15 15:46:58 +000065 this);
66}
67
68void ContainerSizeEmptyCheck::check(const MatchFinder::MatchResult &Result) {
69 const auto *MemberCall =
70 Result.Nodes.getNodeAs<CXXMemberCallExpr>("SizeCallExpr");
71 const auto *BinaryOp = Result.Nodes.getNodeAs<BinaryOperator>("SizeBinaryOp");
72 const auto *E = Result.Nodes.getNodeAs<Expr>("STLObject");
73 FixItHint Hint;
Gabor Horvathafad84c2016-09-24 02:13:45 +000074 std::string ReplacementText =
75 Lexer::getSourceText(CharSourceRange::getTokenRange(E->getSourceRange()),
76 *Result.SourceManager, getLangOpts());
Alexander Kornienko4babd682015-01-15 15:46:58 +000077 if (E->getType()->isPointerType())
78 ReplacementText += "->empty()";
79 else
80 ReplacementText += ".empty()";
81
82 if (BinaryOp) { // Determine the correct transformation.
83 bool Negation = false;
Gabor Horvatha4e35ec2015-12-12 11:31:25 +000084 const bool ContainerIsLHS =
85 !llvm::isa<IntegerLiteral>(BinaryOp->getLHS()->IgnoreImpCasts());
Alexander Kornienko4babd682015-01-15 15:46:58 +000086 const auto OpCode = BinaryOp->getOpcode();
87 uint64_t Value = 0;
88 if (ContainerIsLHS) {
Gabor Horvatha4e35ec2015-12-12 11:31:25 +000089 if (const auto *Literal = llvm::dyn_cast<IntegerLiteral>(
90 BinaryOp->getRHS()->IgnoreImpCasts()))
Alexander Kornienko4babd682015-01-15 15:46:58 +000091 Value = Literal->getValue().getLimitedValue();
92 else
93 return;
94 } else {
Gabor Horvatha4e35ec2015-12-12 11:31:25 +000095 Value =
96 llvm::dyn_cast<IntegerLiteral>(BinaryOp->getLHS()->IgnoreImpCasts())
97 ->getValue()
98 .getLimitedValue();
Alexander Kornienko4babd682015-01-15 15:46:58 +000099 }
100
101 // Constant that is not handled.
102 if (Value > 1)
103 return;
104
Gabor Horvath533c01d2016-04-19 13:29:05 +0000105 if (Value == 1 && (OpCode == BinaryOperatorKind::BO_EQ ||
106 OpCode == BinaryOperatorKind::BO_NE))
107 return;
108
Alexander Kornienko4babd682015-01-15 15:46:58 +0000109 // Always true, no warnings for that.
110 if ((OpCode == BinaryOperatorKind::BO_GE && Value == 0 && ContainerIsLHS) ||
111 (OpCode == BinaryOperatorKind::BO_LE && Value == 0 && !ContainerIsLHS))
112 return;
113
Gabor Horvath1f30cf62015-12-28 17:20:33 +0000114 // Do not warn for size > 1, 1 < size, size <= 1, 1 >= size.
115 if (Value == 1) {
116 if ((OpCode == BinaryOperatorKind::BO_GT && ContainerIsLHS) ||
117 (OpCode == BinaryOperatorKind::BO_LT && !ContainerIsLHS))
118 return;
119 if ((OpCode == BinaryOperatorKind::BO_LE && ContainerIsLHS) ||
120 (OpCode == BinaryOperatorKind::BO_GE && !ContainerIsLHS))
121 return;
122 }
Gabor Horvathc6ff9c32015-12-21 09:43:52 +0000123
Alexander Kornienko4babd682015-01-15 15:46:58 +0000124 if (OpCode == BinaryOperatorKind::BO_NE && Value == 0)
125 Negation = true;
126 if ((OpCode == BinaryOperatorKind::BO_GT ||
127 OpCode == BinaryOperatorKind::BO_GE) &&
128 ContainerIsLHS)
129 Negation = true;
130 if ((OpCode == BinaryOperatorKind::BO_LT ||
131 OpCode == BinaryOperatorKind::BO_LE) &&
132 !ContainerIsLHS)
133 Negation = true;
134
135 if (Negation)
136 ReplacementText = "!" + ReplacementText;
137 Hint = FixItHint::CreateReplacement(BinaryOp->getSourceRange(),
138 ReplacementText);
139
140 } else {
141 // If there is a conversion above the size call to bool, it is safe to just
142 // replace size with empty.
143 if (const auto *UnaryOp =
144 Result.Nodes.getNodeAs<UnaryOperator>("NegOnSize"))
145 Hint = FixItHint::CreateReplacement(UnaryOp->getSourceRange(),
146 ReplacementText);
147 else
148 Hint = FixItHint::CreateReplacement(MemberCall->getSourceRange(),
149 "!" + ReplacementText);
150 }
Kirill Bobyrevacb6b352016-09-13 08:58:11 +0000151
Alexander Kornienko301130e2015-11-09 15:53:28 +0000152 diag(MemberCall->getLocStart(), "the 'empty' method should be used to check "
153 "for emptiness instead of 'size'")
Alexander Kornienko4babd682015-01-15 15:46:58 +0000154 << Hint;
Kirill Bobyrevacb6b352016-09-13 08:58:11 +0000155
156 const auto *Container = Result.Nodes.getNodeAs<NamedDecl>("container");
157 const auto *Empty = Result.Nodes.getNodeAs<FunctionDecl>("empty");
158
159 diag(Empty->getLocation(), "method %0::empty() defined here",
160 DiagnosticIDs::Note)
161 << Container;
Alexander Kornienko4babd682015-01-15 15:46:58 +0000162}
163
164} // namespace readability
165} // namespace tidy
166} // namespace clang