Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: gin/wrappable.h

Issue 105743007: Gin: Make it easier to implement Wrappable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GIN_WRAPPABLE_H_ 5 #ifndef GIN_WRAPPABLE_H_
6 #define GIN_WRAPPABLE_H_ 6 #define GIN_WRAPPABLE_H_
7 7
8 #include "base/template_util.h" 8 #include "base/template_util.h"
9 #include "gin/converter.h" 9 #include "gin/converter.h"
10 #include "gin/public/wrapper_info.h" 10 #include "gin/public/wrapper_info.h"
11 11
12 namespace gin { 12 namespace gin {
13 13
14 // Wrappable is an abstract base class for C++ objects that have cooresponding 14 template<typename T>
15 // v8 wrapper objects. To retain a Wrappable object on the stack, use a 15 struct WrappableTraits {
16 // gin::Handle. 16 static WrapperInfo kWrapperInfo;
17 class Wrappable { 17 };
18
19 template<typename T>
20 WrapperInfo WrappableTraits<T>::kWrapperInfo = {
21 gin::kEmbedderNativeGin
22 };
23
24 // Wrappable is a base class for C++ objects that have cooresponding v8 wrapper
25 // objects. To retain a Wrappable object on the stack, use a gin::Handle.
26 //
27 // Usage:
28 // class MyClass : Wrappable<MyClass> {
29 // ...
30 // };
31 template<typename T>
32 class Wrappable;
33
34
35 class WrappableBase {
18 public: 36 public:
19 // Subclasses must return the WrapperInfo object associated with the
20 // v8::ObjectTemplate for their subclass. When creating a v8 wrapper for
21 // this object, we'll look up the appropriate v8::ObjectTemplate in the
22 // PerIsolateData using this WrapperInfo pointer.
23 virtual WrapperInfo* GetWrapperInfo() = 0;
24
25 // Subclasses much also contain a static member variable named |kWrapperInfo|
26 // of type WrapperInfo:
27 //
28 // static WrapperInfo kWrapperInfo;
29 //
30 // If |obj| is a concrete instance of the subclass, then obj->GetWrapperInfo()
31 // must return &kWrapperInfo.
32 //
33 // We use both the dynamic |GetWrapperInfo| function and the static
34 // |kWrapperInfo| member variable during wrapping and the unwrapping. During
35 // wrapping, we use GetWrapperInfo() to make sure we use the correct
36 // v8::ObjectTemplate for the object regardless of the declared C++ type.
37 // During unwrapping, we use the static member variable to prevent type errors
38 // during the downcast from Wrappable to the subclass.
39
40 // Retrieve (or create) the v8 wrapper object cooresponding to this object. 37 // Retrieve (or create) the v8 wrapper object cooresponding to this object.
41 // To customize the wrapper created for a subclass, override GetWrapperInfo() 38 // To customize the wrapper created for a subclass, override GetWrapperInfo()
Aaron Boodman 2013/12/06 06:36:24 I don't get this comment. What would overriding Ge
42 // instead of overriding this function. 39 // instead of overriding this function.
43 v8::Handle<v8::Object> GetWrapper(v8::Isolate* isolate); 40 v8::Handle<v8::Object> GetWrapper(v8::Isolate* isolate);
44 41
45 // Subclasses should have private constructors and expose a static Create 42 // Subclasses should have private constructors and expose a static Create
46 // function that returns a gin::Handle. Forcing creators through this static 43 // function that returns a gin::Handle. Forcing creators through this static
47 // Create function will enforce that clients actually create a wrapper for 44 // Create function will enforce that clients actually create a wrapper for
48 // the object. If clients fail to create a wrapper for a wrappable object, 45 // the object. If clients fail to create a wrapper for a wrappable object,
49 // the object will leak because we use the weak callback from the wrapper 46 // the object will leak because we use the weak callback from the wrapper
50 // as the signal to delete the wrapped object. 47 // as the signal to delete the wrapped object.
51 48
49 virtual WrapperInfo* GetWrapperInfo() = 0;
50
52 protected: 51 protected:
53 Wrappable(); 52 WrappableBase();
54 virtual ~Wrappable(); 53 virtual ~WrappableBase();
55 54
56 private: 55 private:
57 static void WeakCallback( 56 static void WeakCallback(
58 const v8::WeakCallbackData<v8::Object, Wrappable>& data); 57 const v8::WeakCallbackData<v8::Object, WrappableBase>& data);
59 v8::Handle<v8::Object> CreateWrapper(v8::Isolate* isolate); 58 v8::Handle<v8::Object> CreateWrapper(v8::Isolate* isolate);
60 59
61 v8::Persistent<v8::Object> wrapper_; // Weak 60 v8::Persistent<v8::Object> wrapper_; // Weak
62 61
63 DISALLOW_COPY_AND_ASSIGN(Wrappable); 62 DISALLOW_COPY_AND_ASSIGN(WrappableBase);
64 }; 63 };
65 64
65
66 template<typename T>
67 class Wrappable : public WrappableBase {
68 public:
69 virtual WrapperInfo* GetWrapperInfo() {
70 return &WrappableTraits<T>::kWrapperInfo;
71 }
72 };
73
74
66 // This converter handles any subclass of Wrappable. 75 // This converter handles any subclass of Wrappable.
67 template<typename T> 76 template<typename T>
68 struct Converter<T*, typename base::enable_if< 77 struct Converter<T*, typename base::enable_if<
69 base::is_convertible<T*, Wrappable*>::value>::type> { 78 base::is_convertible<T*, Wrappable<T>*>::value>::type> {
70 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate, T* val) { 79 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate, T* val) {
71 return val->GetWrapper(isolate); 80 return val->GetWrapper(isolate);
72 } 81 }
73 82
74 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, T** out) { 83 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, T** out) {
75 if (!val->IsObject()) 84 if (!val->IsObject())
76 return false; 85 return false;
77 v8::Handle<v8::Object> obj = v8::Handle<v8::Object>::Cast(val); 86 v8::Handle<v8::Object> obj = v8::Handle<v8::Object>::Cast(val);
78 WrapperInfo* info = WrapperInfo::From(obj); 87 WrapperInfo* info = WrapperInfo::From(obj);
79 88
80 // If this fails, the object is not managed by Gin. It is either a normal JS 89 // If this fails, the object is not managed by Gin. It is either a normal JS
81 // object that's not wrapping any external C++ object, or it is wrapping 90 // object that's not wrapping any external C++ object, or it is wrapping
82 // some C++ object, but that object isn't managed by Gin (maybe Blink). 91 // some C++ object, but that object isn't managed by Gin (maybe Blink).
83 if (!info) 92 if (!info)
84 return false; 93 return false;
85 94
86 // If this fails, the object is managed by Gin, but it's not wrapping an 95 // If this fails, the object is managed by Gin, but it's not wrapping an
87 // instance of T. 96 // instance of T.
88 if (info != &T::kWrapperInfo) 97 if (info != &WrappableTraits<T>::kWrapperInfo)
89 return false; 98 return false;
90 99
91 void* pointer = obj->GetAlignedPointerFromInternalField(kEncodedValueIndex); 100 void* pointer = obj->GetAlignedPointerFromInternalField(kEncodedValueIndex);
92 T* result = static_cast<T*>(pointer); 101 T* result = static_cast<T*>(pointer);
93 102
94 // If this fails, something fishy is going on. |info| should have come from 103 // If this fails, something fishy is going on. |info| should have come from
95 // T::GetWrapperInfo(), but somehow is now different than it. So panic. 104 // T::GetWrapperInfo(), but somehow is now different than it. So panic.
96 CHECK(result->GetWrapperInfo() == info); 105 CHECK(result->GetWrapperInfo() == info);
97 *out = result; 106 *out = result;
98 return true; 107 return true;
99 } 108 }
100 }; 109 };
101 110
102 } // namespace gin 111 } // namespace gin
103 112
104 #endif // GIN_WRAPPABLE_H_ 113 #endif // GIN_WRAPPABLE_H_
OLDNEW
« gin/function_template.cc ('K') | « gin/object_template_builder.h ('k') | gin/wrappable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698