OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_ |
| 6 #define TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_ |
| 7 |
| 8 #include <set> |
| 9 #include <utility> |
| 10 #include <vector> |
| 11 |
| 12 #include "clang/AST/AST.h" |
| 13 |
| 14 class RecordInfo; |
| 15 |
| 16 // This visitor checks that a persistent static singleton's type |
| 17 // is safe. Safety is currently defined as: |
| 18 // - the type doesn't derive from blink::ScriptWrappable. |
| 19 // - the type doesn't contain a ScriptWrappable-derived member, |
| 20 // transitively. |
| 21 // |
| 22 class CheckSingletonVisitor final { |
| 23 public: |
| 24 using Errors = std::vector<std::pair<std::string, const clang::Type*>>; |
| 25 |
| 26 CheckSingletonVisitor(); |
| 27 ~CheckSingletonVisitor(); |
| 28 |
| 29 const Errors& illegal_types() const { return illegal_types_; } |
| 30 |
| 31 bool CheckIfSafe(RecordInfo*, const clang::Type*); |
| 32 |
| 33 bool VisitType(clang::Type*); |
| 34 |
| 35 private: |
| 36 void CheckScriptWrappable(const std::string&, const clang::Type*); |
| 37 |
| 38 bool IsScriptWrappable(RecordInfo*); |
| 39 bool InheritsScriptWrappable(clang::CXXRecordDecl*); |
| 40 |
| 41 void PushType(const clang::Type*); |
| 42 void PushType(const std::string&, const clang::Type*); |
| 43 |
| 44 std::string GenerateErrorContext(const std::string&); |
| 45 |
| 46 Errors illegal_types_; |
| 47 RecordInfo* info_ = nullptr; |
| 48 std::vector<std::pair<std::string, const clang::Type*>> types_stack_; |
| 49 std::set<const clang::Type*> already_seen_; |
| 50 std::vector<std::string> error_context_; |
| 51 }; |
| 52 |
| 53 #endif // TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_ |
OLD | NEW |