1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
// 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.
#include "gin/object_template_builder.h"
#include <stdint.h>
#include <string_view>
#include "base/strings/strcat.h"
#include "gin/interceptor.h"
#include "gin/per_isolate_data.h"
#include "gin/public/wrappable_pointer_tags.h"
#include "gin/public/wrapper_info.h"
#include "gin/wrappable.h"
#include "v8/include/v8-exception.h"
#include "v8/include/v8-object.h"
#include "v8/include/v8-template.h"
namespace gin {
NamedPropertyInterceptor* NamedInterceptorFromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
WrappablePointerTag tag) {
if (!val->IsObject()) {
return nullptr;
}
v8::Local<v8::Object> obj = val.As<v8::Object>();
if (!obj->IsApiWrapper()) {
return nullptr;
}
v8::CppHeapPointerTag cpp_heap_pointer_tag =
static_cast<v8::CppHeapPointerTag>(tag);
auto* base = v8::Object::Unwrap<WrappableBase>(
isolate, obj, {cpp_heap_pointer_tag, cpp_heap_pointer_tag});
if (!base) {
return nullptr;
}
return base->GetNamedPropertyInterceptor();
}
v8::Intercepted ObjectTemplateBuilder::NamedPropertyGetterImpl(
WrappablePointerTag tag,
v8::Local<v8::Name> property,
const v8::PropertyCallbackInfo<v8::Value>& info) {
v8::Isolate* isolate = info.GetIsolate();
NamedPropertyInterceptor* interceptor =
NamedInterceptorFromV8(isolate, info.HolderV2(), tag);
if (!interceptor) {
return v8::Intercepted::kNo;
}
std::string name;
ConvertFromV8(isolate, property, &name);
v8::Local<v8::Value> result = interceptor->GetNamedProperty(isolate, name);
if (!result.IsEmpty()) {
info.GetReturnValue().SetNonEmpty(result);
return v8::Intercepted::kYes;
}
return v8::Intercepted::kNo;
}
v8::Intercepted ObjectTemplateBuilder::NamedPropertySetterImpl(
WrappablePointerTag tag,
v8::Local<v8::Name> property,
v8::Local<v8::Value> value,
const v8::PropertyCallbackInfo<void>& info) {
v8::Isolate* isolate = info.GetIsolate();
NamedPropertyInterceptor* interceptor =
NamedInterceptorFromV8(isolate, info.HolderV2(), tag);
if (!interceptor) {
return v8::Intercepted::kNo;
}
std::string name;
ConvertFromV8(isolate, property, &name);
if (interceptor->SetNamedProperty(isolate, name, value)) {
return v8::Intercepted::kYes;
}
return v8::Intercepted::kNo;
}
v8::Intercepted ObjectTemplateBuilder::NamedPropertyQueryImpl(
WrappablePointerTag tag,
v8::Local<v8::Name> property,
const v8::PropertyCallbackInfo<v8::Integer>& info) {
v8::Isolate* isolate = info.GetIsolate();
NamedPropertyInterceptor* interceptor =
NamedInterceptorFromV8(isolate, info.HolderV2(), tag);
if (!interceptor) {
return v8::Intercepted::kNo;
}
std::string name;
ConvertFromV8(isolate, property, &name);
if (!interceptor->GetNamedProperty(isolate, name).IsEmpty()) {
info.GetReturnValue().Set(v8::None);
return v8::Intercepted::kYes;
}
return v8::Intercepted::kNo;
}
void ObjectTemplateBuilder::NamedPropertyEnumeratorImpl(
WrappablePointerTag tag,
const v8::PropertyCallbackInfo<v8::Array>& info) {
v8::Isolate* isolate = info.GetIsolate();
NamedPropertyInterceptor* interceptor =
NamedInterceptorFromV8(isolate, info.HolderV2(), tag);
if (!interceptor) {
return;
}
v8::Local<v8::Value> properties;
if (!TryConvertToV8(isolate, interceptor->EnumerateNamedProperties(isolate),
&properties)) {
return;
}
info.GetReturnValue().Set(v8::Local<v8::Array>::Cast(properties));
}
namespace {
void Constructor(const v8::FunctionCallbackInfo<v8::Value>& info) {
v8::Isolate* isolate = info.GetIsolate();
isolate->ThrowException(v8::Exception::Error(info.Data().As<v8::String>()));
}
} // namespace
ObjectTemplateBuilder::ObjectTemplateBuilder(v8::Isolate* isolate)
: ObjectTemplateBuilder(isolate, nullptr) {}
ObjectTemplateBuilder::ObjectTemplateBuilder(v8::Isolate* isolate,
const char* type_name)
: isolate_(isolate),
type_name_(type_name),
constructor_template_(v8::FunctionTemplate::New(
isolate,
&Constructor,
StringToV8(
isolate,
type_name
? base::StrCat({"Objects of type ", type_name,
" cannot be created using the constructor."})
: "Objects of this type cannot be created using the "
"constructor"))),
template_(constructor_template_->InstanceTemplate()) {
template_->SetInternalFieldCount(kNumberOfInternalFields);
}
ObjectTemplateBuilder::ObjectTemplateBuilder(
const ObjectTemplateBuilder& other) = default;
ObjectTemplateBuilder::~ObjectTemplateBuilder() = default;
ObjectTemplateBuilder& ObjectTemplateBuilder::SetImpl(
const std::string_view& name,
v8::Local<v8::Data> val) {
template_->Set(StringToSymbol(isolate_, name), val);
return *this;
}
ObjectTemplateBuilder& ObjectTemplateBuilder::SetImpl(v8::Local<v8::Name> name,
v8::Local<v8::Data> val) {
template_->Set(name, val);
return *this;
}
ObjectTemplateBuilder& ObjectTemplateBuilder::SetPropertyImpl(
const std::string_view& name,
v8::Local<v8::FunctionTemplate> getter,
v8::Local<v8::FunctionTemplate> setter) {
template_->SetAccessorProperty(StringToSymbol(isolate_, name), getter,
setter);
return *this;
}
ObjectTemplateBuilder& ObjectTemplateBuilder::SetLazyDataPropertyImpl(
const std::string_view& name,
v8::AccessorNameGetterCallback callback,
v8::Local<v8::Value> data) {
template_->SetLazyDataProperty(StringToSymbol(isolate_, name), callback,
data);
return *this;
}
v8::Local<v8::ObjectTemplate> ObjectTemplateBuilder::Build() {
v8::Local<v8::ObjectTemplate> result = template_;
template_.Clear();
constructor_template_.Clear();
return result;
}
} // namespace gin
|