Fixed setting properties of ScriptObjectV8Proxy

This commit is contained in:
ksuprynowicz 2022-11-26 14:33:34 +01:00
parent 0b8958204f
commit 2f9f78fb87
3 changed files with 22 additions and 7 deletions

View file

@ -142,7 +142,7 @@ ScriptObjectV8Proxy* ScriptObjectV8Proxy::unwrapProxy(const V8ScriptValue& val)
return nullptr;
}
v8::Local<v8::Object> v8Object = v8::Local<v8::Object>::Cast(v8Value);
if (v8Object->InternalFieldCount() != 2) {
if (v8Object->InternalFieldCount() != 3) {
qDebug(scriptengine) << "Cannot unwrap proxy - wrong number of internal fields";
return nullptr;
}
@ -175,7 +175,7 @@ void ScriptObjectV8Proxy::investigate() {
v8::Context::Scope contextScope(_engine->getContext());
auto objectTemplate = _v8ObjectTemplate.Get(_engine->getIsolate());
objectTemplate->SetInternalFieldCount(2);
objectTemplate->SetInternalFieldCount(3);
objectTemplate->SetHandler(v8::NamedPropertyHandlerConfiguration(v8Get, v8Set));
const QMetaObject* metaObject = qobject->metaObject();
@ -295,6 +295,7 @@ void ScriptObjectV8Proxy::investigate() {
v8::Local<v8::Object> v8Object = objectTemplate->NewInstance(_engine->getContext()).ToLocalChecked();
v8Object->SetAlignedPointerInInternalField(0, const_cast<void*>(internalPointsToQObjectProxy));
v8Object->SetAlignedPointerInInternalField(1, reinterpret_cast<void*>(this));
v8Object->SetInternalField(2, v8::Object::New(_engine->getIsolate()));
_v8Object.Reset(_engine->getIsolate(), v8Object);
}
@ -385,7 +386,12 @@ void ScriptObjectV8Proxy::v8Get(v8::Local<v8::Name> name, const v8::PropertyCall
V8ScriptValue value = proxy->property(object, nameString, id);
info.GetReturnValue().Set(value.get());
} else {
qDebug(scriptengine) << "Value not found: " << *utf8Value;
v8::Local<v8::Value> property;
if(info.This()->GetInternalField(2).As<v8::Object>()->Get(proxy->_engine->getContext(), name).ToLocal(&property)) {
info.GetReturnValue().Set(property);
} else {
qDebug(scriptengine) << "Value not found: " << *utf8Value;
}
}
}
@ -407,7 +413,12 @@ void ScriptObjectV8Proxy::v8Set(v8::Local<v8::Name> name, v8::Local<v8::Value> v
proxy->setProperty(object, nameString, id, V8ScriptValue(info.GetIsolate(), value));
info.GetReturnValue().Set(value);
} else {
qDebug(scriptengine) << "Value not found: " << *utf8Value;
// V8TODO: Should it be v8::Object or v8::Local<v8::Object>?
if (info.This()->GetInternalField(2).As<v8::Object>()->Set(proxy->_engine->getContext(), name, value).FromMaybe(false)) {
info.GetReturnValue().Set(value);
} else {
qDebug(scriptengine) << "Set failed: " << *utf8Value;
}
}
}

View file

@ -233,7 +233,7 @@ void ScriptValueV8Wrapper::setProperty(const QString& name, const ScriptValue& v
v8::Local<v8::String> key = v8::String::NewFromUtf8(isolate, name.toStdString().c_str(),v8::NewStringType::kNormal).ToLocalChecked();
Q_ASSERT(_value.get()->IsObject());
auto object = v8::Local<v8::Object>::Cast(_value.get());
// V8TODO: What if velue context and current context is different?
// V8TODO: What if value context and current context is different?
//v8::Maybe<bool> retVal = object->Set(_value.getContext(), key, unwrapped.constGet());
//v8::Maybe<bool> retVal = object->Set(_engine->getContext(), key, unwrapped.constGet());
v8::Maybe<bool> retVal = object->Set(isolate->GetCurrentContext(), key, unwrapped.constGet());

View file

@ -1,4 +1,8 @@
print(JSON.stringify(this));
var v1 = { x: 1, y: 0, z: 0 };
var v2 = { x: 1, y: 0, z: 0 };
var v1 = { x: 1, y: 0, z: 3 };
var v2 = { x: 1, y: 0, z: 1 };
print(JSON.stringify(Vec3.sum(v1,v2)));
console.log("Test message");
print(JSON.stringify(TREE_SCALE));
print(JSON.stringify(Vec3.sum(v1,v2)));
print(JSON.stringify(TREE_SCALE));