mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 05:55:08 +00:00

This Intrinsics object hangs off of a new HostDefined struct that takes the place of EnvironmentSettingsObject as the true [[HostDefined]] slot on JS::Realm objects created by LibWeb. This gets the intrinsics off of the GlobalObject, Window, similar to the previous refactor of LibJS to move the intrinsics into the Realm's [[Intrinics]] internal slot. A side effect of this change is that we cannot fully initialize a Window object until the [[HostDefined]] slot has been installed into the realm, which happens with the creation of the WindowEnvironmentSettingsObject. As such, any Window usage that has not been funned through a WindowESO will not have any cached Web prototyped or constructors, and will not have Window APIs available to javascript code. Currently this seems limited to usage of Window in the CSS parser, but a subsequent commit will clean those up to take Realm as well. However, this commit compiles so let's cut it off here :^).
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
#include <AK/HashMap.h>
|
|
#include <LibJS/Forward.h>
|
|
#include <LibJS/Heap/Cell.h>
|
|
#include <LibJS/Heap/Heap.h>
|
|
#include <LibJS/Runtime/VM.h>
|
|
#include <LibWeb/Bindings/HostDefined.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
class Intrinsics final : public JS::Cell {
|
|
JS_CELL(Intrinsics, JS::Cell);
|
|
|
|
public:
|
|
Intrinsics(JS::Realm& realm)
|
|
: m_realm(realm)
|
|
{
|
|
}
|
|
|
|
JS::Object& cached_web_prototype(String const& class_name);
|
|
|
|
template<typename T>
|
|
JS::Object& ensure_web_prototype(String const& class_name)
|
|
{
|
|
auto it = m_prototypes.find(class_name);
|
|
if (it != m_prototypes.end())
|
|
return *it->value;
|
|
auto& realm = *m_realm;
|
|
auto* prototype = heap().allocate<T>(realm, realm);
|
|
m_prototypes.set(class_name, prototype);
|
|
return *prototype;
|
|
}
|
|
|
|
template<typename T>
|
|
JS::NativeFunction& ensure_web_constructor(String const& class_name)
|
|
{
|
|
auto it = m_constructors.find(class_name);
|
|
if (it != m_constructors.end())
|
|
return *it->value;
|
|
auto& realm = *m_realm;
|
|
auto* constructor = heap().allocate<T>(realm, realm);
|
|
m_constructors.set(class_name, constructor);
|
|
return *constructor;
|
|
}
|
|
|
|
private:
|
|
virtual void visit_edges(JS::Cell::Visitor&) override;
|
|
|
|
HashMap<String, JS::Object*> m_prototypes;
|
|
HashMap<String, JS::NativeFunction*> m_constructors;
|
|
|
|
JS::NonnullGCPtr<JS::Realm> m_realm;
|
|
};
|
|
|
|
inline Intrinsics& host_defined_intrinsics(JS::Realm& realm)
|
|
{
|
|
return *verify_cast<HostDefined>(realm.host_defined())->intrinsics;
|
|
}
|
|
|
|
template<typename T>
|
|
JS::Object& ensure_web_prototype(JS::Realm& realm, String const& class_name)
|
|
{
|
|
return host_defined_intrinsics(realm).ensure_web_prototype<T>(class_name);
|
|
}
|
|
|
|
template<typename T>
|
|
JS::NativeFunction& ensure_web_constructor(JS::Realm& realm, String const& class_name)
|
|
{
|
|
return host_defined_intrinsics(realm).ensure_web_constructor<T>(class_name);
|
|
}
|
|
|
|
inline JS::Object& cached_web_prototype(JS::Realm& realm, String const& class_name)
|
|
{
|
|
return host_defined_intrinsics(realm).cached_web_prototype(class_name);
|
|
}
|
|
|
|
}
|