// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GIN_WRAPPABLE_H_ #define GIN_WRAPPABLE_H_ #include <type_traits> #include "gin/converter.h" #include "gin/gin_export.h" #include "gin/public/wrapper_info.h" namespace gin { // Wrappable is a base class for C++ objects that have corresponding v8 wrapper // objects. To retain a Wrappable object on the stack, use a gin::Handle. // // USAGE: // // my_class.h // class MyClass : Wrappable<MyClass> { // public: // static WrapperInfo kWrapperInfo; // // // Optional, only required if non-empty template should be used. // virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder( // v8::Isolate* isolate); // ... // }; // // // my_class.cc // WrapperInfo MyClass::kWrapperInfo = {kEmbedderNativeGin}; // // gin::ObjectTemplateBuilder MyClass::GetObjectTemplateBuilder( // v8::Isolate* isolate) { // return Wrappable<MyClass>::GetObjectTemplateBuilder(isolate) // .SetValue("foobar", 42); // } // // Subclasses should also typically have private constructors and expose a // static Create function that returns a gin::Handle. Forcing creators through // this static Create function will enforce that clients actually create a // wrapper for the object. If clients fail to create a wrapper for a wrappable // object, the object will leak because we use the weak callback from the // wrapper as the signal to delete the wrapped object. // // Wrappable<T> explicitly does not support further subclassing of T. // Subclasses of Wrappable<T> should be declared final. Because Wrappable<T> // caches the object template using &T::kWrapperInfo as the key, all subclasses // would share a single object template. This will lead to hard to debug crashes // that look like use-after-free errors. namespace internal { GIN_EXPORT void* FromV8Impl(v8::Isolate* isolate, v8::Local<v8::Value> val, WrapperInfo* info); } // namespace internal class ObjectTemplateBuilder; // Non-template base class to share code between templates instances. class GIN_EXPORT WrappableBase { … }; template<typename T> class Wrappable : public WrappableBase { … }; // This converter handles any subclass of Wrappable. Converter<T *, typename std::enable_if<std::is_convertible<T *, WrappableBase *>::value>::type>; } // namespace gin #endif // GIN_WRAPPABLE_H_