0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-12-26 09:13:46 -05:00
denoland-rusty-v8/src/script.rs
2022-09-21 08:15:33 +05:30

128 lines
3.1 KiB
Rust

use std::marker::PhantomData;
use std::mem::MaybeUninit;
use std::ptr::null;
use crate::Context;
use crate::HandleScope;
use crate::Isolate;
use crate::Local;
use crate::Script;
use crate::String;
use crate::UnboundScript;
use crate::Value;
/// The origin, within a file, of a script.
#[repr(C)]
#[derive(Debug)]
pub struct ScriptOrigin<'s>([usize; 8], PhantomData<&'s ()>);
extern "C" {
fn v8__Script__Compile(
context: *const Context,
source: *const String,
origin: *const ScriptOrigin,
) -> *const Script;
fn v8__Script__GetUnboundScript(
script: *const Script,
) -> *const UnboundScript;
fn v8__Script__Run(
script: *const Script,
context: *const Context,
) -> *const Value;
fn v8__ScriptOrigin__CONSTRUCT(
isolate: *mut Isolate,
buf: *mut MaybeUninit<ScriptOrigin>,
resource_name: *const Value,
resource_line_offset: i32,
resource_column_offset: i32,
resource_is_shared_cross_origin: bool,
script_id: i32,
source_map_url: *const Value,
resource_is_opaque: bool,
is_wasm: bool,
is_module: bool,
);
}
impl Script {
/// A shorthand for ScriptCompiler::Compile().
#[inline(always)]
pub fn compile<'s>(
scope: &mut HandleScope<'s>,
source: Local<String>,
origin: Option<&ScriptOrigin>,
) -> Option<Local<'s, Script>> {
unsafe {
scope.cast_local(|sd| {
v8__Script__Compile(
sd.get_current_context(),
&*source,
origin.map(|r| r as *const _).unwrap_or_else(null),
)
})
}
}
/// Returns the corresponding context-unbound script.
#[inline(always)]
pub fn get_unbound_script<'s>(
&self,
scope: &mut HandleScope<'s>,
) -> Local<'s, UnboundScript> {
unsafe {
scope
.cast_local(|_| v8__Script__GetUnboundScript(self))
.unwrap()
}
}
/// Runs the script returning the resulting value. It will be run in the
/// context in which it was created (ScriptCompiler::CompileBound or
/// UnboundScript::BindToCurrentContext()).
#[inline(always)]
pub fn run<'s>(
&self,
scope: &mut HandleScope<'s>,
) -> Option<Local<'s, Value>> {
unsafe {
scope.cast_local(|sd| v8__Script__Run(self, sd.get_current_context()))
}
}
}
/// The origin, within a file, of a script.
impl<'s> ScriptOrigin<'s> {
#[allow(clippy::too_many_arguments)]
#[inline(always)]
pub fn new(
scope: &mut HandleScope<'s, ()>,
resource_name: Local<'s, Value>,
resource_line_offset: i32,
resource_column_offset: i32,
resource_is_shared_cross_origin: bool,
script_id: i32,
source_map_url: Local<'s, Value>,
resource_is_opaque: bool,
is_wasm: bool,
is_module: bool,
) -> Self {
unsafe {
let mut buf = std::mem::MaybeUninit::<ScriptOrigin>::uninit();
v8__ScriptOrigin__CONSTRUCT(
scope.get_isolate_ptr(),
&mut buf,
&*resource_name,
resource_line_offset,
resource_column_offset,
resource_is_shared_cross_origin,
script_id,
&*source_map_url,
resource_is_opaque,
is_wasm,
is_module,
);
buf.assume_init()
}
}
}