1 //===- AbseilMatcher.h - clang-tidy ---------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "clang/AST/ASTContext.h"
10 #include "clang/ASTMatchers/ASTMatchFinder.h"
14 namespace ast_matchers
{
16 /// Matches AST nodes that were found within Abseil files.
18 /// Example matches Y but not X
19 /// (matcher = cxxRecordDecl(isInAbseilFile())
21 /// #include "absl/strings/internal-file.h"
24 /// absl/strings/internal-file.h:
29 /// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>,
30 /// Matcher<NestedNameSpecifierLoc>
31 AST_POLYMORPHIC_MATCHER(
32 isInAbseilFile
, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl
, Stmt
, TypeLoc
,
33 NestedNameSpecifierLoc
)) {
34 auto &SourceManager
= Finder
->getASTContext().getSourceManager();
35 SourceLocation Loc
= SourceManager
.getSpellingLoc(Node
.getBeginLoc());
38 const FileEntry
*FileEntry
=
39 SourceManager
.getFileEntryForID(SourceManager
.getFileID(Loc
));
42 // Determine whether filepath contains "absl/[absl-library]" substring, where
43 // [absl-library] is AbseilLibraries list entry.
44 StringRef Path
= FileEntry
->getName();
45 static constexpr llvm::StringLiteral
AbslPrefix("absl/");
46 size_t PrefixPosition
= Path
.find(AbslPrefix
);
47 if (PrefixPosition
== StringRef::npos
)
49 Path
= Path
.drop_front(PrefixPosition
+ AbslPrefix
.size());
50 static const char *AbseilLibraries
[] = {
51 "algorithm", "base", "container", "debugging", "flags",
52 "hash", "iterator", "memory", "meta", "numeric",
53 "profiling", "random", "status", "strings", "synchronization",
54 "time", "types", "utility"};
55 return llvm::any_of(AbseilLibraries
, [&](const char *Library
) {
56 return Path
.startswith(Library
);
60 } // namespace ast_matchers