clang-tools
22.0.0git
llvm-project
clang-tools-extra
clang-tidy
android
CloexecCreatCheck.cpp
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
#include "
CloexecCreatCheck.h
"
10
#include "clang/ASTMatchers/ASTMatchFinder.h"
11
12
using namespace
clang::ast_matchers
;
13
14
namespace
clang::tidy::android
{
15
16
void
CloexecCreatCheck::registerMatchers
(MatchFinder *Finder) {
17
auto
CharPointerType = hasType(pointerType(pointee(isAnyCharacter())));
18
auto
MODETType = hasType(namedDecl(hasName(
"mode_t"
)));
19
registerMatchersImpl
(Finder, functionDecl(isExternC(), returns(isInteger()),
20
hasName(
"creat"
),
21
hasParameter(0, CharPointerType),
22
hasParameter(1, MODETType)));
23
}
24
25
void
CloexecCreatCheck::check
(
const
MatchFinder::MatchResult &Result) {
26
const
std::string &ReplacementText =
27
(Twine(
"open ("
) +
getSpellingArg
(Result, 0) +
28
", O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, "
+
29
getSpellingArg
(Result, 1) +
")"
)
30
.str();
31
replaceFunc
(Result,
32
"prefer open() to creat() because open() allows O_CLOEXEC"
,
33
ReplacementText);
34
}
35
36
}
// namespace clang::tidy::android
CloexecCreatCheck.h
clang::tidy::android::CloexecCheck::replaceFunc
void replaceFunc(const ast_matchers::MatchFinder::MatchResult &Result, StringRef WarningMsg, StringRef FixMsg)
Type2 is to replace the API to another function that has required the ability.
Definition
CloexecCheck.cpp:72
clang::tidy::android::CloexecCheck::registerMatchersImpl
void registerMatchersImpl(ast_matchers::MatchFinder *Finder, ast_matchers::internal::Matcher< FunctionDecl > Function)
Definition
CloexecCheck.cpp:41
clang::tidy::android::CloexecCheck::getSpellingArg
StringRef getSpellingArg(const ast_matchers::MatchFinder::MatchResult &Result, int N) const
Helper function to get the spelling of a particular argument.
Definition
CloexecCheck.cpp:100
clang::tidy::android::CloexecCreatCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Definition
CloexecCreatCheck.cpp:16
clang::tidy::android::CloexecCreatCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
Definition
CloexecCreatCheck.cpp:25
clang::ast_matchers
Definition
AbseilMatcher.h:13
clang::tidy::android
Definition
AndroidTidyModule.cpp:31
Generated on
for clang-tools by
1.14.0