mirror of
https://github.com/servo/servo.git
synced 2025-06-12 18:34:39 +00:00
* script: Move HasParent to script_bindings and update imports for InheritTypes. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make principal creation generic over DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move a bunch of proxy-related code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make some proxy-related code generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move DomSlice to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move some utility bindings code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make enumerating and resolving globals generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make realm helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move implementations on concrete DOM types to concrete bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make additional codegen helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make iterator creation generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make reporting an exception a generic operation. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move AsCCharPtrPtr to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Address clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
68 lines
1.8 KiB
Rust
68 lines
1.8 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use js::jsapi::{GetCurrentRealmOrNull, JSAutoRealm};
|
|
|
|
use crate::DomTypes;
|
|
use crate::dom::bindings::reflector::DomObject;
|
|
use crate::dom::globalscope::GlobalScopeHelpers;
|
|
use crate::script_runtime::JSContext;
|
|
|
|
pub(crate) struct AlreadyInRealm(());
|
|
|
|
impl AlreadyInRealm {
|
|
#![allow(unsafe_code)]
|
|
pub(crate) fn assert<D: DomTypes>() -> AlreadyInRealm {
|
|
unsafe {
|
|
assert!(!GetCurrentRealmOrNull(*D::GlobalScope::get_cx()).is_null());
|
|
}
|
|
AlreadyInRealm(())
|
|
}
|
|
|
|
pub(crate) fn assert_for_cx(cx: JSContext) -> AlreadyInRealm {
|
|
unsafe {
|
|
assert!(!GetCurrentRealmOrNull(*cx).is_null());
|
|
}
|
|
AlreadyInRealm(())
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy)]
|
|
pub(crate) enum InRealm<'a> {
|
|
Already(&'a AlreadyInRealm),
|
|
Entered(&'a JSAutoRealm),
|
|
}
|
|
|
|
impl<'a> From<&'a AlreadyInRealm> for InRealm<'a> {
|
|
fn from(token: &'a AlreadyInRealm) -> InRealm<'a> {
|
|
InRealm::already(token)
|
|
}
|
|
}
|
|
|
|
impl<'a> From<&'a JSAutoRealm> for InRealm<'a> {
|
|
fn from(token: &'a JSAutoRealm) -> InRealm<'a> {
|
|
InRealm::entered(token)
|
|
}
|
|
}
|
|
|
|
impl InRealm<'_> {
|
|
pub(crate) fn already(token: &AlreadyInRealm) -> InRealm {
|
|
InRealm::Already(token)
|
|
}
|
|
|
|
pub(crate) fn entered(token: &JSAutoRealm) -> InRealm {
|
|
InRealm::Entered(token)
|
|
}
|
|
}
|
|
|
|
pub(crate) fn enter_realm_generic<D: DomTypes>(object: &impl DomObject) -> JSAutoRealm {
|
|
JSAutoRealm::new(
|
|
*D::GlobalScope::get_cx(),
|
|
object.reflector().get_jsobject().get(),
|
|
)
|
|
}
|
|
|
|
pub(crate) fn enter_realm(object: &impl DomObject) -> JSAutoRealm {
|
|
enter_realm_generic::<crate::DomTypeHolder>(object)
|
|
}
|