[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / android / CloexecCreatCheck.cpp
blob514f11ff15c3dbdc6da969c7d35787aee1279b2f
1 //===--- CloexecCreatCheck.cpp - clang-tidy--------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "CloexecCreatCheck.h"
10 #include "clang/AST/ASTContext.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 using namespace clang::ast_matchers;
15 namespace clang::tidy::android {
17 void CloexecCreatCheck::registerMatchers(MatchFinder *Finder) {
18 auto CharPointerType = hasType(pointerType(pointee(isAnyCharacter())));
19 auto MODETType = hasType(namedDecl(hasName("mode_t")));
20 registerMatchersImpl(Finder,
21 functionDecl(isExternC(), returns(isInteger()),
22 hasName("creat"),
23 hasParameter(0, CharPointerType),
24 hasParameter(1, MODETType)));
27 void CloexecCreatCheck::check(const MatchFinder::MatchResult &Result) {
28 const std::string &ReplacementText =
29 (Twine("open (") + getSpellingArg(Result, 0) +
30 ", O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, " +
31 getSpellingArg(Result, 1) + ")")
32 .str();
33 replaceFunc(Result,
34 "prefer open() to creat() because open() allows O_CLOEXEC",
35 ReplacementText);
38 } // namespace clang::tidy::android