summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2017-08-16 16:59:26 +0000
committerChih-Hung Hsieh <chh@google.com>2017-08-16 16:59:26 +0000
commitfec506daaa4f2c4d0d3b449fbf3901bfd6270b70 (patch)
tree7ed03aa8a0b641dd5618c23f822fba163bada38d /clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp
parentbf9751760a3d60f96ce9c0ad2cb75929008b079b (diff)
downloadbcm5719-llvm-fec506daaa4f2c4d0d3b449fbf3901bfd6270b70.tar.gz
bcm5719-llvm-fec506daaa4f2c4d0d3b449fbf3901bfd6270b70.zip
[clang-tidy] Use CloexecCheck as base class.
Summary: Simplify registerMatchers and check functions in CloexecCreatCheck, CloexecSocketCheck, CloexecFopenCheck, and CloexecOpenCheck. Differential Revision: https://reviews.llvm.org/D36761 llvm-svn: 311020
Diffstat (limited to 'clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp36
1 files changed, 10 insertions, 26 deletions
diff --git a/clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp b/clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp
index 9b6ccf29a2a..83ca49a3113 100644
--- a/clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp
+++ b/clang-tools-extra/clang-tidy/android/CloexecCreatCheck.cpp
@@ -10,7 +10,6 @@
#include "CloexecCreatCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
-#include "clang/Lex/Lexer.h"
using namespace clang::ast_matchers;
@@ -21,37 +20,22 @@ namespace android {
void CloexecCreatCheck::registerMatchers(MatchFinder *Finder) {
auto CharPointerType = hasType(pointerType(pointee(isAnyCharacter())));
auto MODETType = hasType(namedDecl(hasName("mode_t")));
-
- Finder->addMatcher(
- callExpr(callee(functionDecl(isExternC(), returns(isInteger()),
- hasName("creat"),
- hasParameter(0, CharPointerType),
- hasParameter(1, MODETType))
- .bind("funcDecl")))
- .bind("creatFn"),
- this);
+ registerMatchersImpl(Finder,
+ functionDecl(isExternC(), returns(isInteger()),
+ hasName("creat"),
+ hasParameter(0, CharPointerType),
+ hasParameter(1, MODETType)));
}
void CloexecCreatCheck::check(const MatchFinder::MatchResult &Result) {
- const auto *MatchedCall = Result.Nodes.getNodeAs<CallExpr>("creatFn");
- const SourceManager &SM = *Result.SourceManager;
-
const std::string &ReplacementText =
- (Twine("open (") +
- Lexer::getSourceText(CharSourceRange::getTokenRange(
- MatchedCall->getArg(0)->getSourceRange()),
- SM, Result.Context->getLangOpts()) +
+ (Twine("open (") + getSpellingArg(Result, 0) +
", O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, " +
- Lexer::getSourceText(CharSourceRange::getTokenRange(
- MatchedCall->getArg(1)->getSourceRange()),
- SM, Result.Context->getLangOpts()) +
- ")")
+ getSpellingArg(Result, 1) + ")")
.str();
-
- diag(MatchedCall->getLocStart(),
- "prefer open() to creat() because open() allows O_CLOEXEC")
- << FixItHint::CreateReplacement(MatchedCall->getSourceRange(),
- ReplacementText);
+ replaceFunc(Result,
+ "prefer open() to creat() because open() allows O_CLOEXEC",
+ ReplacementText);
}
} // namespace android
OpenPOWER on IntegriCloud