[Workflow] Try to fix code-formatter failing to find changes in some cases.
[llvm-project.git] / clang-tools-extra / clang-tidy / cppcoreguidelines / MacroUsageCheck.h
blob876a18256080e20133a9f6df45d3664b74e2ddbf
1 //===--- MacroUsageCheck.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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H
12 #include "../ClangTidyCheck.h"
13 #include "clang/Lex/MacroInfo.h"
14 #include <string>
16 namespace clang {
17 class MacroDirective;
18 namespace tidy::cppcoreguidelines {
20 /// Find macro usage that is considered problematic because better language
21 /// constructs exist for the task.
22 ///
23 /// For the user-facing documentation see:
24 /// http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines/macro-usage.html
25 class MacroUsageCheck : public ClangTidyCheck {
26 public:
27 MacroUsageCheck(StringRef Name, ClangTidyContext *Context)
28 : ClangTidyCheck(Name, Context),
29 AllowedRegexp(Options.get("AllowedRegexp", "^DEBUG_*")),
30 CheckCapsOnly(Options.get("CheckCapsOnly", false)),
31 IgnoreCommandLineMacros(Options.get("IgnoreCommandLineMacros", true)) {}
32 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
33 return LangOpts.CPlusPlus11;
35 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
36 void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP,
37 Preprocessor *ModuleExpanderPP) override;
38 void warnMacro(const MacroDirective *MD, StringRef MacroName);
39 void warnNaming(const MacroDirective *MD, StringRef MacroName);
41 private:
42 /// A regular expression that defines how allowed macros must look like.
43 std::string AllowedRegexp;
44 /// Control if only the check shall only test on CAPS_ONLY macros.
45 bool CheckCapsOnly;
46 /// Should the macros without a valid location be diagnosed?
47 bool IgnoreCommandLineMacros;
50 } // namespace tidy::cppcoreguidelines
51 } // namespace clang
53 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H