1 //===--- UncheckedOptionalAccessCheck.h - clang-tidy ------------*- C++ -*-===//
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 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_UNCHECKEDOPTIONALACCESSCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_UNCHECKEDOPTIONALACCESSCHECK_H
12 #include "../ClangTidyCheck.h"
13 #include "clang/ASTMatchers/ASTMatchFinder.h"
14 #include "clang/Analysis/FlowSensitive/Models/UncheckedOptionalAccessModel.h"
17 namespace clang::tidy::bugprone
{
19 /// Warns when the code is unwrapping a `std::optional<T>`, `absl::optional<T>`,
20 /// or `base::std::optional<T>` object without assuring that it contains a
23 /// For the user-facing documentation see:
24 /// http://clang.llvm.org/extra/clang-tidy/checks/bugprone/unchecked-optional-access.html
25 class UncheckedOptionalAccessCheck
: public ClangTidyCheck
{
27 UncheckedOptionalAccessCheck(StringRef Name
, ClangTidyContext
*Context
)
28 : ClangTidyCheck(Name
, Context
),
30 Options
.getLocalOrGlobal("IgnoreSmartPointerDereference", false)} {}
31 void registerMatchers(ast_matchers::MatchFinder
*Finder
) override
;
32 void check(const ast_matchers::MatchFinder::MatchResult
&Result
) override
;
33 bool isLanguageVersionSupported(const LangOptions
&LangOpts
) const override
{
34 return LangOpts
.CPlusPlus
;
36 void storeOptions(ClangTidyOptions::OptionMap
&Opts
) override
{
37 Options
.store(Opts
, "IgnoreSmartPointerDereference",
38 ModelOptions
.IgnoreSmartPointerDereference
);
42 dataflow::UncheckedOptionalAccessModelOptions ModelOptions
;
45 } // namespace clang::tidy::bugprone
47 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_UNCHECKEDOPTIONALACCESSCHECK_H