| 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 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H |
| 10 | #define |
| 11 | |
| 12 | #include "../ClangTidyCheck.h" |
| 13 | #include "clang/Lex/MacroInfo.h" |
| 14 | #include <string> |
| 15 | |
| 16 | namespace clang { |
| 17 | class MacroDirective; |
| 18 | namespace tidy::cppcoreguidelines { |
| 19 | |
| 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(LocalName: "AllowedRegexp" , Default: "^DEBUG_*" )), |
| 30 | CheckCapsOnly(Options.get(LocalName: "CheckCapsOnly" , Default: false)), |
| 31 | IgnoreCommandLineMacros(Options.get(LocalName: "IgnoreCommandLineMacros" , Default: true)) {} |
| 32 | bool isLanguageVersionSupported(const LangOptions &LangOpts) const override { |
| 33 | return LangOpts.CPlusPlus11; |
| 34 | } |
| 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); |
| 40 | |
| 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; |
| 48 | }; |
| 49 | |
| 50 | } // namespace tidy::cppcoreguidelines |
| 51 | } // namespace clang |
| 52 | |
| 53 | #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H |
| 54 | |