clang-tools 19.0.0git
ImplementationInNamespaceCheck.cpp
Go to the documentation of this file.
1//===--- ImplementationInNamespaceCheck.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//===----------------------------------------------------------------------===//
8
10#include "NamespaceConstants.h"
11#include "clang/AST/ASTContext.h"
12#include "clang/ASTMatchers/ASTMatchFinder.h"
13
14using namespace clang::ast_matchers;
15
16namespace clang::tidy::llvm_libc {
17
19 Finder->addMatcher(
20 translationUnitDecl(
21 forEach(decl(isExpansionInMainFile(), unless(linkageSpecDecl()),
22 // anonymous namespaces generate usingDirective
23 unless(usingDirectiveDecl(isImplicit())))
24 .bind("child_of_translation_unit"))),
25 this);
26}
27
29 const MatchFinder::MatchResult &Result) {
30 const auto *MatchedDecl =
31 Result.Nodes.getNodeAs<Decl>("child_of_translation_unit");
32 const auto *NS = dyn_cast<NamespaceDecl>(MatchedDecl);
33 if (NS == nullptr || NS->isAnonymousNamespace()) {
34 diag(MatchedDecl->getLocation(),
35 "declaration must be enclosed within the '%0' namespace")
37 return;
38 }
39 if (Result.SourceManager->isMacroBodyExpansion(NS->getLocation()) == false) {
40 diag(NS->getLocation(), "the outermost namespace should be the '%0' macro")
42 return;
43 }
44 if (NS->getName().starts_with(RequiredNamespaceStart) == false) {
45 diag(NS->getLocation(), "the '%0' macro should start with '%1'")
47 return;
48 }
49}
50
51} // namespace clang::tidy::llvm_libc
const FunctionDecl * Decl
DiagnosticBuilder diag(SourceLocation Loc, StringRef Description, DiagnosticIDs::Level Level=DiagnosticIDs::Warning)
Add a diagnostic with the check's name.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
static const llvm::StringRef RequiredNamespaceStart
static const llvm::StringRef RequiredNamespaceMacroName