mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
This is last step toward enabling the default rustc
`unsafe_op_in_unsafe_fn` warning for the script crate. It wraps the
remaining unsafe code in `unsafe {}` and removes the line disabling this
warning from `script`'s `Cargo.toml`. In addition, two variables are
renamed from `v` to something slightly more descriptive.
Testing: This should not change behavior so is covered by existing
tests.
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
51 lines
1.8 KiB
Rust
51 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
/// Defines a macro `native_fn!` to create a JavaScript function from a Rust function pointer.
|
|
/// # Example
|
|
/// ```
|
|
/// let js_function: Rc<Function> = native_fn!(my_rust_function, c"myFunction", 2, 0);
|
|
/// ```
|
|
#[macro_export]
|
|
macro_rules! native_fn {
|
|
($call:expr, $name:expr, $nargs:expr, $flags:expr) => {{
|
|
let cx = $crate::dom::types::GlobalScope::get_cx();
|
|
let fun_obj = $crate::native_raw_obj_fn!(cx, $call, $name, $nargs, $flags);
|
|
#[expect(unsafe_code)]
|
|
unsafe {
|
|
Function::new(cx, fun_obj)
|
|
}
|
|
}};
|
|
}
|
|
|
|
/// Defines a macro `native_raw_obj_fn!` to create a raw JavaScript function object.
|
|
/// # Example
|
|
/// ```
|
|
/// let raw_function_obj: *mut JSObject = native_raw_obj_fn!(cx, my_rust_function, c"myFunction", 2, 0);
|
|
/// ```
|
|
#[macro_export]
|
|
macro_rules! native_raw_obj_fn {
|
|
($cx:expr, $call:expr, $name:expr, $nargs:expr, $flags:expr) => {{
|
|
#[expect(unsafe_code)]
|
|
#[allow(clippy::macro_metavars_in_unsafe)]
|
|
unsafe extern "C" fn wrapper(cx: *mut JSContext, argc: u32, vp: *mut JSVal) -> bool {
|
|
unsafe { $call(cx, argc, vp) }
|
|
}
|
|
#[expect(unsafe_code)]
|
|
#[allow(clippy::macro_metavars_in_unsafe)]
|
|
unsafe {
|
|
let name: &std::ffi::CStr = $name;
|
|
let raw_fun = js::jsapi::JS_NewFunction(
|
|
*$cx,
|
|
Some(wrapper),
|
|
$nargs,
|
|
$flags,
|
|
name.as_ptr() as *const std::ffi::c_char,
|
|
);
|
|
assert!(!raw_fun.is_null());
|
|
js::jsapi::JS_GetFunctionObject(raw_fun)
|
|
}
|
|
}};
|
|
}
|