blob: 22110215a5efe6d261831873ca6e830df651c2e6 [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001//===--- UnnamedNamespaceInHeaderCheck.h - clang-tidy -----------*- C++ -*-===//
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#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_UNNAMEDNAMESPACEINHEADERCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_UNNAMEDNAMESPACEINHEADERCHECK_H
11
12#include "../ClangTidyCheck.h"
13#include "../utils/FileExtensionsUtils.h"
14
15namespace clang {
16namespace tidy {
17namespace google {
18namespace build {
19
20/// Finds anonymous namespaces in headers.
21///
22/// The check supports these options:
23/// - `HeaderFileExtensions`: a semicolon-separated list of filename
24/// extensions of header files (The filename extensions should not contain
25/// "." prefix). ";h;hh;hpp;hxx" by default.
26///
27/// For extension-less header files, using an empty string or leaving an
28/// empty string between ";" if there are other filename extensions.
29///
30/// https://google.github.io/styleguide/cppguide.html#Namespaces
31///
32/// Corresponding cpplint.py check name: 'build/namespaces'.
33///
34/// For the user-facing documentation see:
35/// http://clang.llvm.org/extra/clang-tidy/checks/google-build-namespaces.html
36class UnnamedNamespaceInHeaderCheck : public ClangTidyCheck {
37public:
38 UnnamedNamespaceInHeaderCheck(StringRef Name, ClangTidyContext *Context);
39 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
40 return LangOpts.CPlusPlus;
41 }
42 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
43 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
44 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
45
46private:
47 const std::string RawStringHeaderFileExtensions;
48 utils::FileExtensionsSet HeaderFileExtensions;
49};
50
51} // namespace build
52} // namespace google
53} // namespace tidy
54} // namespace clang
55
56#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_UNNAMEDNAMESPACEINHEADERCHECK_H