blob: a3b4515361f68939b770687580172437269b9c02 [file] [log] [blame]
Alexander Kornienko57a5c6b2015-03-16 00:32:25 +00001//===- RedundantStringCStrCheck.cpp - Check for redundant c_str calls -----===//
2//
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//===----------------------------------------------------------------------===//
9//
10// This file implements a check for redundant calls of c_str() on strings.
11//
12//===----------------------------------------------------------------------===//
13
14#include "RedundantStringCStrCheck.h"
15#include "clang/Lex/Lexer.h"
16
17namespace clang {
18
19using namespace ast_matchers;
20
21namespace {
22
23template <typename T>
24StringRef getText(const ast_matchers::MatchFinder::MatchResult &Result,
25 T const &Node) {
26 return Lexer::getSourceText(
27 CharSourceRange::getTokenRange(Node.getSourceRange()),
28 *Result.SourceManager, Result.Context->getLangOpts());
29}
30
31// Return true if expr needs to be put in parens when it is an argument of a
32// prefix unary operator, e.g. when it is a binary or ternary operator
33// syntactically.
34bool needParensAfterUnaryOperator(const Expr &ExprNode) {
35 if (isa<clang::BinaryOperator>(&ExprNode) ||
36 isa<clang::ConditionalOperator>(&ExprNode)) {
37 return true;
38 }
39 if (const auto *Op = dyn_cast<CXXOperatorCallExpr>(&ExprNode)) {
40 return Op->getNumArgs() == 2 && Op->getOperator() != OO_PlusPlus &&
41 Op->getOperator() != OO_MinusMinus && Op->getOperator() != OO_Call &&
42 Op->getOperator() != OO_Subscript;
43 }
44 return false;
45}
46
47// Format a pointer to an expression: prefix with '*' but simplify
48// when it already begins with '&'. Return empty string on failure.
49std::string
50formatDereference(const ast_matchers::MatchFinder::MatchResult &Result,
51 const Expr &ExprNode) {
52 if (const auto *Op = dyn_cast<clang::UnaryOperator>(&ExprNode)) {
53 if (Op->getOpcode() == UO_AddrOf) {
54 // Strip leading '&'.
55 return getText(Result, *Op->getSubExpr()->IgnoreParens());
56 }
57 }
58 StringRef Text = getText(Result, ExprNode);
59 if (Text.empty())
60 return std::string();
61 // Add leading '*'.
62 if (needParensAfterUnaryOperator(ExprNode)) {
63 return (llvm::Twine("*(") + Text + ")").str();
64 }
65 return (llvm::Twine("*") + Text).str();
66}
67
68const char StringConstructor[] =
69 "::std::basic_string<char, std::char_traits<char>, std::allocator<char> >"
70 "::basic_string";
71
72const char StringCStrMethod[] =
73 "::std::basic_string<char, std::char_traits<char>, std::allocator<char> >"
74 "::c_str";
75
76} // end namespace
77
78namespace tidy {
79namespace readability {
80
81void RedundantStringCStrCheck::registerMatchers(
82 ast_matchers::MatchFinder *Finder) {
Aaron Ballman1f1b0672015-09-02 16:05:21 +000083 // Only register the matchers for C++; the functionality currently does not
84 // provide any benefit to other languages, despite being benign.
85 if (!getLangOpts().CPlusPlus)
86 return;
87
Alexander Kornienko57a5c6b2015-03-16 00:32:25 +000088 Finder->addMatcher(
89 constructExpr(
90 hasDeclaration(methodDecl(hasName(StringConstructor))),
91 argumentCountIs(2),
92 // The first argument must have the form x.c_str() or p->c_str()
93 // where the method is string::c_str(). We can use the copy
94 // constructor of string instead (or the compiler might share
95 // the string object).
96 hasArgument(
97 0, memberCallExpr(callee(memberExpr().bind("member")),
98 callee(methodDecl(hasName(StringCStrMethod))),
99 on(expr().bind("arg"))).bind("call")),
100 // The second argument is the alloc object which must not be
101 // present explicitly.
102 hasArgument(1, defaultArgExpr())),
103 this);
104 Finder->addMatcher(
105 constructExpr(
106 // Implicit constructors of these classes are overloaded
107 // wrt. string types and they internally make a StringRef
108 // referring to the argument. Passing a string directly to
109 // them is preferred to passing a char pointer.
110 hasDeclaration(
111 methodDecl(anyOf(hasName("::llvm::StringRef::StringRef"),
112 hasName("::llvm::Twine::Twine")))),
113 argumentCountIs(1),
114 // The only argument must have the form x.c_str() or p->c_str()
115 // where the method is string::c_str(). StringRef also has
116 // a constructor from string which is more efficient (avoids
117 // strlen), so we can construct StringRef from the string
118 // directly.
119 hasArgument(
120 0, memberCallExpr(callee(memberExpr().bind("member")),
121 callee(methodDecl(hasName(StringCStrMethod))),
122 on(expr().bind("arg"))).bind("call"))),
123 this);
124}
125
126void RedundantStringCStrCheck::check(const MatchFinder::MatchResult &Result) {
127 const auto *Call = Result.Nodes.getStmtAs<CallExpr>("call");
128 const auto *Arg = Result.Nodes.getStmtAs<Expr>("arg");
129 bool Arrow = Result.Nodes.getStmtAs<MemberExpr>("member")->isArrow();
130 // Replace the "call" node with the "arg" node, prefixed with '*'
131 // if the call was using '->' rather than '.'.
132 std::string ArgText =
133 Arrow ? formatDereference(Result, *Arg) : getText(Result, *Arg).str();
134 if (ArgText.empty())
135 return;
136
137 diag(Call->getLocStart(), "redundant call to `c_str()`")
138 << FixItHint::CreateReplacement(Call->getSourceRange(), ArgText);
139}
140
141} // namespace readability
142} // namespace tidy
143} // namespace clang