clang-tools  8.0.0
MakeSmartPtrCheck.h
Go to the documentation of this file.
1 //===--- MakeSmartPtrCheck.h - clang-tidy------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_MAKE_SMART_PTR_H
11 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_MAKE_SMART_PTR_H
12 
13 #include "../ClangTidy.h"
14 #include "../utils/IncludeInserter.h"
15 #include "clang/ASTMatchers/ASTMatchFinder.h"
16 #include "clang/ASTMatchers/ASTMatchersInternal.h"
17 #include "llvm/ADT/StringRef.h"
18 #include <string>
19 
20 namespace clang {
21 namespace tidy {
22 namespace modernize {
23 
24 /// Base class for MakeSharedCheck and MakeUniqueCheck.
26 public:
27  MakeSmartPtrCheck(StringRef Name, ClangTidyContext *Context,
28  StringRef MakeSmartPtrFunctionName);
29  void registerMatchers(ast_matchers::MatchFinder *Finder) final;
30  void registerPPCallbacks(clang::CompilerInstance &Compiler) override;
31  void check(const ast_matchers::MatchFinder::MatchResult &Result) final;
32  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
33 
34 protected:
35  using SmartPtrTypeMatcher = ast_matchers::internal::BindableMatcher<QualType>;
36 
37  /// Returns matcher that match with different smart pointer types.
38  ///
39  /// Requires to bind pointer type (qualType) with PointerType string declared
40  /// in this class.
42 
43  /// Returns whether the C++ version is compatible with current check.
44  virtual bool isLanguageVersionSupported(const LangOptions &LangOpts) const;
45 
46  static const char PointerType[];
47 
48 private:
49  std::unique_ptr<utils::IncludeInserter> Inserter;
50  const utils::IncludeSorter::IncludeStyle IncludeStyle;
51  const std::string MakeSmartPtrFunctionHeader;
52  const std::string MakeSmartPtrFunctionName;
53  const bool IgnoreMacros;
54 
55  void checkConstruct(SourceManager &SM, ASTContext *Ctx,
56  const CXXConstructExpr *Construct, const QualType *Type,
57  const CXXNewExpr *New);
58  void checkReset(SourceManager &SM, ASTContext *Ctx,
59  const CXXMemberCallExpr *Member, const CXXNewExpr *New);
60 
61  /// Returns true when the fixes for replacing CXXNewExpr are generated.
62  bool replaceNew(DiagnosticBuilder &Diag, const CXXNewExpr *New,
63  SourceManager &SM, ASTContext *Ctx);
64  void insertHeader(DiagnosticBuilder &Diag, FileID FD);
65 };
66 
67 } // namespace modernize
68 } // namespace tidy
69 } // namespace clang
70 
71 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_MAKE_SMART_PTR_H
ast_matchers::internal::BindableMatcher< QualType > SmartPtrTypeMatcher
virtual bool isLanguageVersionSupported(const LangOptions &LangOpts) const
Returns whether the C++ version is compatible with current check.
IncludeStyle
Supported include styles.
Definition: IncludeSorter.h:27
void registerMatchers(ast_matchers::MatchFinder *Finder) final
Override this to register AST matchers with Finder.
Base class for all clang-tidy checks.
Definition: ClangTidy.h:127
void registerPPCallbacks(clang::CompilerInstance &Compiler) override
virtual SmartPtrTypeMatcher getSmartPointerTypeMatcher() const =0
Returns matcher that match with different smart pointer types.
Context Ctx
void check(const ast_matchers::MatchFinder::MatchResult &Result) final
ClangTidyChecks that register ASTMatchers should do the actual work in here.
static constexpr llvm::StringLiteral Name
std::map< std::string, std::string > OptionMap
llvm::Optional< llvm::Expected< tooling::AtomicChanges > > Result
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Base class for MakeSharedCheck and MakeUniqueCheck.
MakeSmartPtrCheck(StringRef Name, ClangTidyContext *Context, StringRef MakeSmartPtrFunctionName)