* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_SCRIPT_WRAPPABLE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_SCRIPT_WRAPPABLE_H_
#include "build/build_config.h"
#include "third_party/blink/renderer/platform/bindings/trace_wrapper_v8_reference.h"
#include "third_party/blink/renderer/platform/bindings/wrapper_type_info.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/type_traits.h"
#include "v8/include/v8.h"
namespace blink {
class DOMDataStore;
class ScriptState;
class PLATFORM_EXPORT ScriptWrappable : public v8::Object::Wrappable {
public:
class TypeDispatcher final {
STACK_ALLOCATED();
public:
explicit TypeDispatcher(ScriptWrappable* script_wrappable)
: script_wrappable_(script_wrappable),
wrapper_type_info_(ToWrapperTypeInfo(script_wrappable)) {}
~TypeDispatcher() = default;
TypeDispatcher(const TypeDispatcher&) = delete;
TypeDispatcher& operator=(const TypeDispatcher&) = delete;
template <typename T>
T* DowncastTo() {
if (wrapper_type_info_->IsSubclass(T::GetStaticWrapperTypeInfo()))
return static_cast<T*>(script_wrappable_);
return nullptr;
}
template <typename T>
T* ToMostDerived() {
if (wrapper_type_info_ == T::GetStaticWrapperTypeInfo())
return static_cast<T*>(script_wrappable_);
return nullptr;
}
private:
ScriptWrappable* script_wrappable_ = nullptr;
const WrapperTypeInfo* wrapper_type_info_ = nullptr;
};
ScriptWrappable(const ScriptWrappable&) = delete;
ScriptWrappable& operator=(const ScriptWrappable&) = delete;
~ScriptWrappable() override = default;
const char* GetHumanReadableName() const override;
void Trace(Visitor*) const override;
v8::Local<v8::Value> ToV8(ScriptState*);
v8::Local<v8::Value> ToV8(v8::Isolate*,
v8::Local<v8::Object> creation_context_object);
virtual v8::Local<v8::Value> Wrap(ScriptState*);
[[nodiscard]] virtual v8::Local<v8::Object> AssociateWithWrapper(
v8::Isolate*,
const WrapperTypeInfo*,
v8::Local<v8::Object> wrapper);
protected:
ScriptWrappable() = default;
private:
static_assert(
std::is_trivially_destructible<
TraceWrapperV8Reference<v8::Object>>::value,
"TraceWrapperV8Reference<v8::Object> should be trivially destructible.");
TraceWrapperV8Reference<v8::Object> wrapper_;
friend class DOMDataStore;
};
template <typename T>
requires std::derived_from<T, ScriptWrappable>
T* ToScriptWrappable(v8::Isolate* isolate, v8::Local<v8::Object> wrapper) {
const WrapperTypeInfo* wrapper_type_info = T::GetStaticWrapperTypeInfo();
return static_cast<T*>(v8::Object::Unwrap<ScriptWrappable>(
isolate, wrapper,
v8::CppHeapPointerTagRange(wrapper_type_info->this_tag,
wrapper_type_info->max_subclass_tag)));
}
#define DEFINE_WRAPPERTYPEINFO() \
public: \
const WrapperTypeInfo* GetWrapperTypeInfo() const override { \
return &wrapper_type_info_; \
} \
static const WrapperTypeInfo* GetStaticWrapperTypeInfo() { \
return &wrapper_type_info_; \
} \
\
private: \
static const WrapperTypeInfo& wrapper_type_info_
}
#endif