clang-tools  10.0.0git
DynamicStaticInitializersCheck.h
Go to the documentation of this file.
1 //===--- DynamicStaticInitializersCheck.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_BUGPRONE_DYNAMIC_STATIC_INITIALIZERS_CHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_DYNAMIC_STATIC_INITIALIZERS_CHECK_H
11 
12 #include "../ClangTidyCheck.h"
13 #include "../utils/HeaderFileExtensionsUtils.h"
14 
15 namespace clang {
16 namespace tidy {
17 namespace bugprone {
18 
19 /// Finds dynamically initialized static variables in header files.
20 ///
21 /// The check supports these options:
22 /// - `HeaderFileExtensions`: a comma-separated list of filename extensions of
23 /// header files (The filename extensions should not contain "." prefix).
24 /// "h,hh,hpp,hxx" by default.
25 /// For extension-less header files, using an empty string or leaving an
26 /// empty string between "," if there are other filename extensions.
28 public:
30  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
31  void registerMatchers(ast_matchers::MatchFinder *Finder) override;
32  void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
33 
34 private:
35  const std::string RawStringHeaderFileExtensions;
36  utils::HeaderFileExtensionsSet HeaderFileExtensions;
37 };
38 
39 } // namespace bugprone
40 } // namespace tidy
41 } // namespace clang
42 
43 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_DYNAMIC_STATIC_INITIALIZERS_CHECK_H
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
DynamicStaticInitializersCheck(StringRef Name, ClangTidyContext *Context)
Base class for all clang-tidy checks.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
llvm::SmallSet< llvm::StringRef, 5 > HeaderFileExtensionsSet
static constexpr llvm::StringLiteral Name
std::map< std::string, std::string > OptionMap
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Finds dynamically initialized static variables in header files.