2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
use crate::error::AnyError;
|
2020-09-14 23:49:12 -04:00
|
|
|
use crate::runtime::JsRuntimeState;
|
2020-09-06 15:44:29 -04:00
|
|
|
use crate::JsRuntime;
|
2020-09-05 20:34:02 -04:00
|
|
|
use crate::Op;
|
|
|
|
use crate::OpId;
|
2020-09-10 09:57:45 -04:00
|
|
|
use crate::OpTable;
|
2020-05-28 13:36:43 -04:00
|
|
|
use crate::ZeroCopyBuf;
|
2020-09-05 20:34:02 -04:00
|
|
|
use futures::future::FutureExt;
|
2020-01-06 10:24:44 -05:00
|
|
|
use rusty_v8 as v8;
|
2020-04-22 14:24:49 -04:00
|
|
|
use std::cell::Cell;
|
2020-01-06 10:24:44 -05:00
|
|
|
use std::convert::TryFrom;
|
2021-02-21 10:22:06 -05:00
|
|
|
use std::convert::TryInto;
|
2020-11-02 19:15:29 -05:00
|
|
|
use std::io::{stdout, Write};
|
2020-01-06 10:24:44 -05:00
|
|
|
use std::option::Option;
|
2020-03-19 10:42:07 -04:00
|
|
|
use url::Url;
|
2020-09-05 20:34:02 -04:00
|
|
|
use v8::MapFnTo;
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
lazy_static! {
|
|
|
|
pub static ref EXTERNAL_REFERENCES: v8::ExternalReferences =
|
|
|
|
v8::ExternalReferences::new(&[
|
|
|
|
v8::ExternalReference {
|
2020-01-16 17:25:57 -05:00
|
|
|
function: print.map_fn_to()
|
2020-01-06 14:07:35 -05:00
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
2020-01-16 17:25:57 -05:00
|
|
|
function: recv.map_fn_to()
|
2020-01-06 14:07:35 -05:00
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
2020-01-16 17:25:57 -05:00
|
|
|
function: send.map_fn_to()
|
|
|
|
},
|
2020-03-19 10:45:28 -04:00
|
|
|
v8::ExternalReference {
|
|
|
|
function: set_macrotask_callback.map_fn_to()
|
|
|
|
},
|
2020-01-16 17:25:57 -05:00
|
|
|
v8::ExternalReference {
|
|
|
|
function: eval_context.map_fn_to()
|
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
|
|
|
getter: shared_getter.map_fn_to()
|
2020-01-06 14:07:35 -05:00
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
2020-01-16 17:25:57 -05:00
|
|
|
function: queue_microtask.map_fn_to()
|
2020-01-06 14:07:35 -05:00
|
|
|
},
|
2020-03-15 10:31:55 -04:00
|
|
|
v8::ExternalReference {
|
|
|
|
function: encode.map_fn_to()
|
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
|
|
|
function: decode.map_fn_to()
|
|
|
|
},
|
2021-02-16 08:20:21 -05:00
|
|
|
v8::ExternalReference {
|
|
|
|
function: serialize.map_fn_to()
|
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
|
|
|
function: deserialize.map_fn_to()
|
|
|
|
},
|
2020-03-30 19:01:19 -04:00
|
|
|
v8::ExternalReference {
|
2020-09-05 20:34:02 -04:00
|
|
|
function: get_promise_details.map_fn_to()
|
2020-09-08 10:06:26 -04:00
|
|
|
},
|
|
|
|
v8::ExternalReference {
|
|
|
|
function: get_proxy_details.map_fn_to()
|
|
|
|
},
|
2021-03-23 10:33:06 -04:00
|
|
|
v8::ExternalReference {
|
|
|
|
function: heap_stats.map_fn_to(),
|
|
|
|
},
|
2020-01-06 14:07:35 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn script_origin<'a>(
|
2020-06-20 07:18:08 -04:00
|
|
|
s: &mut v8::HandleScope<'a>,
|
2020-01-06 14:07:35 -05:00
|
|
|
resource_name: v8::Local<'a, v8::String>,
|
|
|
|
) -> v8::ScriptOrigin<'a> {
|
2020-05-11 17:48:36 -04:00
|
|
|
let source_map_url = v8::String::new(s, "").unwrap();
|
2020-01-06 14:07:35 -05:00
|
|
|
v8::ScriptOrigin::new(
|
2021-01-18 20:18:42 -05:00
|
|
|
s,
|
2020-01-06 14:07:35 -05:00
|
|
|
resource_name.into(),
|
2021-01-18 20:18:42 -05:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
123,
|
2020-01-06 14:07:35 -05:00
|
|
|
source_map_url.into(),
|
2021-01-18 20:18:42 -05:00
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
2020-01-06 14:07:35 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn module_origin<'a>(
|
2020-06-20 07:18:08 -04:00
|
|
|
s: &mut v8::HandleScope<'a>,
|
2020-01-06 14:07:35 -05:00
|
|
|
resource_name: v8::Local<'a, v8::String>,
|
|
|
|
) -> v8::ScriptOrigin<'a> {
|
2020-05-11 17:48:36 -04:00
|
|
|
let source_map_url = v8::String::new(s, "").unwrap();
|
2020-01-06 14:07:35 -05:00
|
|
|
v8::ScriptOrigin::new(
|
2021-01-18 20:18:42 -05:00
|
|
|
s,
|
2020-01-06 14:07:35 -05:00
|
|
|
resource_name.into(),
|
2021-01-18 20:18:42 -05:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
123,
|
2020-01-06 14:07:35 -05:00
|
|
|
source_map_url.into(),
|
2021-01-18 20:18:42 -05:00
|
|
|
true,
|
|
|
|
false,
|
|
|
|
true,
|
2020-01-06 14:07:35 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
pub fn initialize_context<'s>(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope<'s, ()>,
|
2020-01-21 14:24:31 -05:00
|
|
|
) -> v8::Local<'s, v8::Context> {
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut v8::EscapableHandleScope::new(scope);
|
2020-01-06 14:07:35 -05:00
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
let context = v8::Context::new(scope);
|
2020-01-06 14:07:35 -05:00
|
|
|
let global = context.global(scope);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut v8::ContextScope::new(scope, context);
|
2020-01-06 14:07:35 -05:00
|
|
|
|
2021-02-15 06:53:33 -05:00
|
|
|
// global.Deno = { core: {} };
|
2020-06-20 07:18:08 -04:00
|
|
|
let deno_key = v8::String::new(scope, "Deno").unwrap();
|
2020-01-21 14:24:31 -05:00
|
|
|
let deno_val = v8::Object::new(scope);
|
2020-06-20 07:18:08 -04:00
|
|
|
global.set(scope, deno_key.into(), deno_val.into());
|
|
|
|
let core_key = v8::String::new(scope, "core").unwrap();
|
|
|
|
let core_val = v8::Object::new(scope);
|
|
|
|
deno_val.set(scope, core_key.into(), core_val.into());
|
|
|
|
|
2021-02-15 06:53:33 -05:00
|
|
|
// Bind functions to Deno.core.*
|
|
|
|
set_func(scope, core_val, "print", print);
|
|
|
|
set_func(scope, core_val, "recv", recv);
|
|
|
|
set_func(scope, core_val, "send", send);
|
|
|
|
set_func(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope,
|
2021-02-15 06:53:33 -05:00
|
|
|
core_val,
|
|
|
|
"setMacrotaskCallback",
|
|
|
|
set_macrotask_callback,
|
2020-09-08 10:06:26 -04:00
|
|
|
);
|
2021-02-15 06:53:33 -05:00
|
|
|
set_func(scope, core_val, "evalContext", eval_context);
|
|
|
|
set_func(scope, core_val, "encode", encode);
|
|
|
|
set_func(scope, core_val, "decode", decode);
|
2021-02-16 08:20:21 -05:00
|
|
|
set_func(scope, core_val, "serialize", serialize);
|
|
|
|
set_func(scope, core_val, "deserialize", deserialize);
|
2021-02-15 06:53:33 -05:00
|
|
|
set_func(scope, core_val, "getPromiseDetails", get_promise_details);
|
|
|
|
set_func(scope, core_val, "getProxyDetails", get_proxy_details);
|
2021-03-23 10:33:06 -04:00
|
|
|
set_func(scope, core_val, "heapStats", heap_stats);
|
2020-09-08 10:06:26 -04:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let shared_key = v8::String::new(scope, "shared").unwrap();
|
|
|
|
core_val.set_accessor(scope, shared_key.into(), shared_getter);
|
2020-01-06 14:07:35 -05:00
|
|
|
|
|
|
|
// Direct bindings on `window`.
|
2021-02-15 06:53:33 -05:00
|
|
|
set_func(scope, global, "queueMicrotask", queue_microtask);
|
2020-01-06 14:07:35 -05:00
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
scope.escape(context)
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
|
2021-02-15 06:53:33 -05:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_func(
|
|
|
|
scope: &mut v8::HandleScope<'_>,
|
|
|
|
obj: v8::Local<v8::Object>,
|
|
|
|
name: &'static str,
|
|
|
|
callback: impl v8::MapFnTo<v8::FunctionCallback>,
|
|
|
|
) {
|
|
|
|
let key = v8::String::new(scope, name).unwrap();
|
|
|
|
let tmpl = v8::FunctionTemplate::new(scope, callback);
|
|
|
|
let val = tmpl.get_function(scope).unwrap();
|
|
|
|
obj.set(scope, key.into(), val.into());
|
|
|
|
}
|
|
|
|
|
2020-01-23 10:49:46 -05:00
|
|
|
pub fn boxed_slice_to_uint8array<'sc>(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope<'sc>,
|
2020-01-23 10:49:46 -05:00
|
|
|
buf: Box<[u8]>,
|
2020-01-06 14:07:35 -05:00
|
|
|
) -> v8::Local<'sc, v8::Uint8Array> {
|
2020-01-23 10:49:46 -05:00
|
|
|
assert!(!buf.is_empty());
|
2020-01-11 04:49:16 -05:00
|
|
|
let buf_len = buf.len();
|
2020-01-23 20:22:05 -05:00
|
|
|
let backing_store = v8::ArrayBuffer::new_backing_store_from_boxed_slice(buf);
|
2020-04-22 14:24:49 -04:00
|
|
|
let backing_store_shared = backing_store.make_shared();
|
|
|
|
let ab = v8::ArrayBuffer::with_backing_store(scope, &backing_store_shared);
|
2020-06-03 12:19:21 -04:00
|
|
|
v8::Uint8Array::new(scope, ab, 0, buf_len)
|
|
|
|
.expect("Failed to create UintArray8")
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
pub extern "C" fn host_import_module_dynamically_callback(
|
|
|
|
context: v8::Local<v8::Context>,
|
|
|
|
referrer: v8::Local<v8::ScriptOrModule>,
|
|
|
|
specifier: v8::Local<v8::String>,
|
2021-02-05 16:25:02 -05:00
|
|
|
_import_assertions: v8::Local<v8::FixedArray>,
|
2020-01-06 10:24:44 -05:00
|
|
|
) -> *mut v8::Promise {
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
// NOTE(bartlomieju): will crash for non-UTF-8 specifier
|
|
|
|
let specifier_str = specifier
|
|
|
|
.to_string(scope)
|
|
|
|
.unwrap()
|
|
|
|
.to_rust_string_lossy(scope);
|
|
|
|
let referrer_name = referrer.get_resource_name();
|
|
|
|
let referrer_name_str = referrer_name
|
|
|
|
.to_string(scope)
|
|
|
|
.unwrap()
|
|
|
|
.to_rust_string_lossy(scope);
|
|
|
|
|
|
|
|
// TODO(ry) I'm not sure what HostDefinedOptions is for or if we're ever going
|
|
|
|
// to use it. For now we check that it is not used. This check may need to be
|
|
|
|
// changed in the future.
|
|
|
|
let host_defined_options = referrer.get_host_defined_options();
|
|
|
|
assert_eq!(host_defined_options.length(), 0);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let resolver = v8::PromiseResolver::new(scope).unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
let promise = resolver.get_promise(scope);
|
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
let resolver_handle = v8::Global::new(scope, resolver);
|
2020-05-29 17:41:39 -04:00
|
|
|
{
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
state.dyn_import_cb(resolver_handle, &specifier_str, &referrer_name_str);
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2021-02-21 10:22:06 -05:00
|
|
|
// Map errors from module resolution (not JS errors from module execution) to
|
|
|
|
// ones rethrown from this scope, so they include the call stack of the
|
|
|
|
// dynamic import site. Error objects without any stack frames are assumed to
|
|
|
|
// be module resolution errors, other exception values are left as they are.
|
|
|
|
let map_err = |scope: &mut v8::HandleScope,
|
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue| {
|
|
|
|
let arg = args.get(0);
|
|
|
|
if arg.is_native_error() {
|
|
|
|
let message = v8::Exception::create_message(scope, arg);
|
|
|
|
if message.get_stack_trace(scope).unwrap().get_frame_count() == 0 {
|
|
|
|
let arg: v8::Local<v8::Object> = arg.clone().try_into().unwrap();
|
|
|
|
let message_key = v8::String::new(scope, "message").unwrap();
|
|
|
|
let message = arg.get(scope, message_key.into()).unwrap();
|
|
|
|
let exception =
|
|
|
|
v8::Exception::type_error(scope, message.try_into().unwrap());
|
|
|
|
scope.throw_exception(exception);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scope.throw_exception(arg);
|
|
|
|
};
|
|
|
|
let map_err = v8::FunctionTemplate::new(scope, map_err);
|
|
|
|
let map_err = map_err.get_function(scope).unwrap();
|
|
|
|
let promise = promise.catch(scope, map_err).unwrap();
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
&*promise as *const _ as *mut _
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub extern "C" fn host_initialize_import_meta_object_callback(
|
|
|
|
context: v8::Local<v8::Context>,
|
|
|
|
module: v8::Local<v8::Module>,
|
|
|
|
meta: v8::Local<v8::Object>,
|
|
|
|
) {
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let state = state_rc.borrow();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-11-21 10:23:35 -05:00
|
|
|
let module_global = v8::Global::new(scope, module);
|
|
|
|
let info = state
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-11-21 10:23:35 -05:00
|
|
|
.get_info(&module_global)
|
|
|
|
.expect("Module not found");
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let url_key = v8::String::new(scope, "url").unwrap();
|
|
|
|
let url_val = v8::String::new(scope, &info.name).unwrap();
|
|
|
|
meta.create_data_property(scope, url_key.into(), url_val.into());
|
|
|
|
|
|
|
|
let main_key = v8::String::new(scope, "main").unwrap();
|
|
|
|
let main_val = v8::Boolean::new(scope, info.main);
|
|
|
|
meta.create_data_property(scope, main_key.into(), main_val.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
pub extern "C" fn promise_reject_callback(message: v8::PromiseRejectMessage) {
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut unsafe { v8::CallbackScope::new(&message) };
|
2020-01-16 17:25:57 -05:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-01-16 17:25:57 -05:00
|
|
|
|
|
|
|
let promise = message.get_promise();
|
2020-11-11 17:11:40 -05:00
|
|
|
let promise_global = v8::Global::new(scope, promise);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
match message.get_event() {
|
2020-01-06 10:24:44 -05:00
|
|
|
v8::PromiseRejectEvent::PromiseRejectWithNoHandler => {
|
2020-10-18 13:07:11 -04:00
|
|
|
let error = message.get_value().unwrap();
|
2020-07-18 16:32:11 -04:00
|
|
|
let error_global = v8::Global::new(scope, error);
|
2020-05-29 17:41:39 -04:00
|
|
|
state
|
2020-01-25 08:31:42 -05:00
|
|
|
.pending_promise_exceptions
|
2020-11-11 17:11:40 -05:00
|
|
|
.insert(promise_global, error_global);
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
v8::PromiseRejectEvent::PromiseHandlerAddedAfterReject => {
|
2020-11-11 17:11:40 -05:00
|
|
|
state.pending_promise_exceptions.remove(&promise_global);
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
v8::PromiseRejectEvent::PromiseRejectAfterResolved => {}
|
|
|
|
v8::PromiseRejectEvent::PromiseResolveAfterResolved => {
|
|
|
|
// Should not warn. See #1272
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-04-22 14:24:49 -04:00
|
|
|
pub(crate) unsafe fn get_backing_store_slice(
|
|
|
|
backing_store: &v8::SharedRef<v8::BackingStore>,
|
|
|
|
byte_offset: usize,
|
|
|
|
byte_length: usize,
|
|
|
|
) -> &[u8] {
|
|
|
|
let cells: *const [Cell<u8>] =
|
|
|
|
&backing_store[byte_offset..byte_offset + byte_length];
|
|
|
|
let bytes = cells as *const [u8];
|
|
|
|
&*bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::mut_from_ref)]
|
|
|
|
pub(crate) unsafe fn get_backing_store_slice_mut(
|
|
|
|
backing_store: &v8::SharedRef<v8::BackingStore>,
|
|
|
|
byte_offset: usize,
|
|
|
|
byte_length: usize,
|
|
|
|
) -> &mut [u8] {
|
|
|
|
let cells: *const [Cell<u8>] =
|
|
|
|
&backing_store[byte_offset..byte_offset + byte_length];
|
|
|
|
let bytes = cells as *const _ as *mut [u8];
|
|
|
|
&mut *bytes
|
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
fn print(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-01-16 17:25:57 -05:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
let arg_len = args.length();
|
2021-03-21 08:52:28 -04:00
|
|
|
if !(0..=2).contains(&arg_len) {
|
|
|
|
return throw_type_error(scope, "Expected a maximum of 2 arguments.");
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
let obj = args.get(0);
|
|
|
|
let is_err_arg = args.get(1);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
let mut is_err = false;
|
|
|
|
if arg_len == 2 {
|
2021-03-21 08:52:28 -04:00
|
|
|
let int_val = match is_err_arg.integer_value(scope) {
|
|
|
|
Some(v) => v,
|
|
|
|
None => return throw_type_error(scope, "Invalid arugment. Argument 2 should indicate wheter or not to print to stderr."),
|
|
|
|
};
|
2020-01-06 10:24:44 -05:00
|
|
|
is_err = int_val != 0;
|
|
|
|
};
|
2020-06-20 07:18:08 -04:00
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
|
|
|
let str_ = match obj.to_string(tc_scope) {
|
2020-01-06 10:24:44 -05:00
|
|
|
Some(s) => s,
|
2020-06-20 07:18:08 -04:00
|
|
|
None => v8::String::new(tc_scope, "").unwrap(),
|
2020-01-06 10:24:44 -05:00
|
|
|
};
|
|
|
|
if is_err {
|
2020-06-20 07:18:08 -04:00
|
|
|
eprint!("{}", str_.to_rust_string_lossy(tc_scope));
|
2020-11-02 19:15:29 -05:00
|
|
|
stdout().flush().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
} else {
|
2020-06-20 07:18:08 -04:00
|
|
|
print!("{}", str_.to_rust_string_lossy(tc_scope));
|
2020-11-02 19:15:29 -05:00
|
|
|
stdout().flush().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
fn recv(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-01-16 17:25:57 -05:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue,
|
|
|
|
) {
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
let cb = match v8::Local::<v8::Function>::try_from(args.get(0)) {
|
|
|
|
Ok(cb) => cb,
|
|
|
|
Err(err) => return throw_type_error(scope, err.to_string()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let slot = match &mut state.js_recv_cb {
|
|
|
|
slot @ None => slot,
|
|
|
|
_ => return throw_type_error(scope, "Deno.core.recv() already called"),
|
|
|
|
};
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
slot.replace(v8::Global::new(scope, cb));
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
fn send<'s>(
|
|
|
|
scope: &mut v8::HandleScope<'s>,
|
2020-01-16 17:25:57 -05:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2021-02-23 07:08:50 -05:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-09-05 20:34:02 -04:00
|
|
|
|
|
|
|
let op_id = match v8::Local::<v8::Integer>::try_from(args.get(0))
|
2020-09-14 12:48:57 -04:00
|
|
|
.map_err(AnyError::from)
|
|
|
|
.and_then(|l| OpId::try_from(l.value()).map_err(AnyError::from))
|
2020-09-05 20:34:02 -04:00
|
|
|
{
|
|
|
|
Ok(op_id) => op_id,
|
2020-04-22 14:24:49 -04:00
|
|
|
Err(err) => {
|
|
|
|
let msg = format!("invalid op id: {}", err);
|
|
|
|
let msg = v8::String::new(scope, &msg).unwrap();
|
2020-08-21 05:47:57 -04:00
|
|
|
let exc = v8::Exception::type_error(scope, msg);
|
|
|
|
scope.throw_exception(exc);
|
2020-04-22 14:24:49 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2020-01-11 04:49:16 -05:00
|
|
|
|
2020-07-08 11:23:50 -04:00
|
|
|
let buf_iter = (1..args.length()).map(|idx| {
|
2020-06-01 14:20:47 -04:00
|
|
|
v8::Local::<v8::ArrayBufferView>::try_from(args.get(idx))
|
2020-06-03 12:19:21 -04:00
|
|
|
.map(|view| ZeroCopyBuf::new(scope, view))
|
2020-06-01 14:20:47 -04:00
|
|
|
.map_err(|err| {
|
|
|
|
let msg = format!("Invalid argument at position {}: {}", idx, err);
|
|
|
|
let msg = v8::String::new(scope, &msg).unwrap();
|
|
|
|
v8::Exception::type_error(scope, msg)
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
let bufs = match buf_iter.collect::<Result<_, _>>() {
|
|
|
|
Ok(bufs) => bufs,
|
|
|
|
Err(exc) => {
|
|
|
|
scope.throw_exception(exc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
let op = OpTable::route_op(op_id, state.op_state.clone(), bufs);
|
2020-09-05 20:34:02 -04:00
|
|
|
assert_eq!(state.shared.size(), 0);
|
|
|
|
match op {
|
|
|
|
Op::Sync(buf) if !buf.is_empty() => {
|
|
|
|
rv.set(boxed_slice_to_uint8array(scope, buf).into());
|
|
|
|
}
|
|
|
|
Op::Sync(_) => {}
|
|
|
|
Op::Async(fut) => {
|
|
|
|
let fut2 = fut.map(move |buf| (op_id, buf));
|
|
|
|
state.pending_ops.push(fut2.boxed_local());
|
2021-02-23 07:08:50 -05:00
|
|
|
state.have_unpolled_ops = true;
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
|
|
|
Op::AsyncUnref(fut) => {
|
|
|
|
let fut2 = fut.map(move |buf| (op_id, buf));
|
|
|
|
state.pending_unref_ops.push(fut2.boxed_local());
|
2021-02-23 07:08:50 -05:00
|
|
|
state.have_unpolled_ops = true;
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
|
|
|
Op::NotFound => {
|
|
|
|
let msg = format!("Unknown op id: {}", op_id);
|
|
|
|
let msg = v8::String::new(scope, &msg).unwrap();
|
|
|
|
let exc = v8::Exception::type_error(scope, msg);
|
|
|
|
scope.throw_exception(exc);
|
2020-01-11 04:49:16 -05:00
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-19 10:45:28 -04:00
|
|
|
fn set_macrotask_callback(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-03-19 10:45:28 -04:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue,
|
|
|
|
) {
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-03-19 10:45:28 -04:00
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
let cb = match v8::Local::<v8::Function>::try_from(args.get(0)) {
|
|
|
|
Ok(cb) => cb,
|
|
|
|
Err(err) => return throw_type_error(scope, err.to_string()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let slot = match &mut state.js_macrotask_cb {
|
|
|
|
slot @ None => slot,
|
|
|
|
_ => {
|
|
|
|
return throw_type_error(
|
|
|
|
scope,
|
|
|
|
"Deno.core.setMacrotaskCallback() already called",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
2020-03-19 10:45:28 -04:00
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
slot.replace(v8::Global::new(scope, cb));
|
2020-03-19 10:45:28 -04:00
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
fn eval_context(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-01-16 17:25:57 -05:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
let source = match v8::Local::<v8::String>::try_from(args.get(0)) {
|
2020-01-06 10:24:44 -05:00
|
|
|
Ok(s) => s,
|
|
|
|
Err(_) => {
|
2021-02-16 08:20:21 -05:00
|
|
|
throw_type_error(scope, "Invalid argument");
|
2020-01-06 10:24:44 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-19 10:42:07 -04:00
|
|
|
let url = v8::Local::<v8::String>::try_from(args.get(1))
|
|
|
|
.map(|n| Url::from_file_path(n.to_rust_string_lossy(scope)).unwrap());
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
let output = v8::Array::new(scope, 2);
|
|
|
|
/*
|
|
|
|
output[0] = result
|
|
|
|
output[1] = ErrorInfo | null
|
|
|
|
ErrorInfo = {
|
|
|
|
thrown: Error | any,
|
|
|
|
isNativeError: boolean,
|
|
|
|
isCompileError: boolean,
|
|
|
|
}
|
|
|
|
*/
|
2020-06-20 07:18:08 -04:00
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
2021-02-17 13:47:18 -05:00
|
|
|
let name = v8::String::new(
|
|
|
|
tc_scope,
|
|
|
|
url.as_ref().map_or(crate::DUMMY_SPECIFIER, Url::as_str),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-20 07:18:08 -04:00
|
|
|
let origin = script_origin(tc_scope, name);
|
|
|
|
let maybe_script = v8::Script::compile(tc_scope, source, Some(&origin));
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
if maybe_script.is_none() {
|
2020-06-20 07:18:08 -04:00
|
|
|
assert!(tc_scope.has_caught());
|
|
|
|
let exception = tc_scope.exception().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(tc_scope, 0);
|
|
|
|
let js_null = v8::null(tc_scope);
|
|
|
|
output.set(tc_scope, js_zero.into(), js_null.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let errinfo_obj = v8::Object::new(tc_scope);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let is_compile_error_key =
|
|
|
|
v8::String::new(tc_scope, "isCompileError").unwrap();
|
|
|
|
let is_compile_error_val = v8::Boolean::new(tc_scope, true);
|
2020-01-06 10:24:44 -05:00
|
|
|
errinfo_obj.set(
|
2020-06-20 07:18:08 -04:00
|
|
|
tc_scope,
|
|
|
|
is_compile_error_key.into(),
|
|
|
|
is_compile_error_val.into(),
|
2020-01-06 10:24:44 -05:00
|
|
|
);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let is_native_error_key =
|
|
|
|
v8::String::new(tc_scope, "isNativeError").unwrap();
|
|
|
|
let is_native_error_val =
|
|
|
|
v8::Boolean::new(tc_scope, exception.is_native_error());
|
2020-01-06 10:24:44 -05:00
|
|
|
errinfo_obj.set(
|
2020-06-20 07:18:08 -04:00
|
|
|
tc_scope,
|
|
|
|
is_native_error_key.into(),
|
|
|
|
is_native_error_val.into(),
|
2020-01-06 10:24:44 -05:00
|
|
|
);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let thrown_key = v8::String::new(tc_scope, "thrown").unwrap();
|
|
|
|
errinfo_obj.set(tc_scope, thrown_key.into(), exception);
|
|
|
|
|
|
|
|
let js_one = v8::Integer::new(tc_scope, 1);
|
|
|
|
output.set(tc_scope, js_one.into(), errinfo_obj.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
rv.set(output.into());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let result = maybe_script.unwrap().run(tc_scope);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
if result.is_none() {
|
2020-06-20 07:18:08 -04:00
|
|
|
assert!(tc_scope.has_caught());
|
|
|
|
let exception = tc_scope.exception().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(tc_scope, 0);
|
|
|
|
let js_null = v8::null(tc_scope);
|
|
|
|
output.set(tc_scope, js_zero.into(), js_null.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let errinfo_obj = v8::Object::new(tc_scope);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let is_compile_error_key =
|
|
|
|
v8::String::new(tc_scope, "isCompileError").unwrap();
|
|
|
|
let is_compile_error_val = v8::Boolean::new(tc_scope, false);
|
2020-01-06 10:24:44 -05:00
|
|
|
errinfo_obj.set(
|
2020-06-20 07:18:08 -04:00
|
|
|
tc_scope,
|
|
|
|
is_compile_error_key.into(),
|
|
|
|
is_compile_error_val.into(),
|
2020-01-06 10:24:44 -05:00
|
|
|
);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let is_native_error_key =
|
|
|
|
v8::String::new(tc_scope, "isNativeError").unwrap();
|
|
|
|
let is_native_error_val =
|
|
|
|
v8::Boolean::new(tc_scope, exception.is_native_error());
|
2020-01-06 10:24:44 -05:00
|
|
|
errinfo_obj.set(
|
2020-06-20 07:18:08 -04:00
|
|
|
tc_scope,
|
|
|
|
is_native_error_key.into(),
|
|
|
|
is_native_error_val.into(),
|
2020-01-06 10:24:44 -05:00
|
|
|
);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let thrown_key = v8::String::new(tc_scope, "thrown").unwrap();
|
|
|
|
errinfo_obj.set(tc_scope, thrown_key.into(), exception);
|
|
|
|
|
|
|
|
let js_one = v8::Integer::new(tc_scope, 1);
|
|
|
|
output.set(tc_scope, js_one.into(), errinfo_obj.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
rv.set(output.into());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(tc_scope, 0);
|
|
|
|
let js_one = v8::Integer::new(tc_scope, 1);
|
|
|
|
let js_null = v8::null(tc_scope);
|
|
|
|
output.set(tc_scope, js_zero.into(), result.unwrap());
|
|
|
|
output.set(tc_scope, js_one.into(), js_null.into());
|
2020-01-06 10:24:44 -05:00
|
|
|
rv.set(output.into());
|
|
|
|
}
|
|
|
|
|
2020-03-15 10:31:55 -04:00
|
|
|
fn encode(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-03-15 10:31:55 -04:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
let text = match v8::Local::<v8::String>::try_from(args.get(0)) {
|
|
|
|
Ok(s) => s,
|
|
|
|
Err(_) => {
|
2021-02-16 08:20:21 -05:00
|
|
|
throw_type_error(scope, "Invalid argument");
|
2020-03-15 10:31:55 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let text_str = text.to_rust_string_lossy(scope);
|
|
|
|
let text_bytes = text_str.as_bytes().to_vec().into_boxed_slice();
|
2020-03-19 16:31:56 -04:00
|
|
|
|
|
|
|
let buf = if text_bytes.is_empty() {
|
|
|
|
let ab = v8::ArrayBuffer::new(scope, 0);
|
2020-06-03 12:19:21 -04:00
|
|
|
v8::Uint8Array::new(scope, ab, 0, 0).expect("Failed to create UintArray8")
|
2020-03-19 16:31:56 -04:00
|
|
|
} else {
|
|
|
|
let buf_len = text_bytes.len();
|
|
|
|
let backing_store =
|
|
|
|
v8::ArrayBuffer::new_backing_store_from_boxed_slice(text_bytes);
|
2020-04-22 14:24:49 -04:00
|
|
|
let backing_store_shared = backing_store.make_shared();
|
|
|
|
let ab = v8::ArrayBuffer::with_backing_store(scope, &backing_store_shared);
|
2020-06-03 12:19:21 -04:00
|
|
|
v8::Uint8Array::new(scope, ab, 0, buf_len)
|
|
|
|
.expect("Failed to create UintArray8")
|
2020-03-19 16:31:56 -04:00
|
|
|
};
|
|
|
|
|
2020-03-15 10:31:55 -04:00
|
|
|
rv.set(buf.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn decode(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-03-15 10:31:55 -04:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
2020-04-22 14:24:49 -04:00
|
|
|
let view = match v8::Local::<v8::ArrayBufferView>::try_from(args.get(0)) {
|
|
|
|
Ok(view) => view,
|
|
|
|
Err(_) => {
|
2021-02-16 08:20:21 -05:00
|
|
|
throw_type_error(scope, "Invalid argument");
|
2020-03-15 10:31:55 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-03 12:19:21 -04:00
|
|
|
let backing_store = view.buffer(scope).unwrap().get_backing_store();
|
2020-04-22 14:24:49 -04:00
|
|
|
let buf = unsafe {
|
|
|
|
get_backing_store_slice(
|
|
|
|
&backing_store,
|
|
|
|
view.byte_offset(),
|
|
|
|
view.byte_length(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2021-01-05 13:50:40 -05:00
|
|
|
// Strip BOM
|
|
|
|
let buf =
|
|
|
|
if buf.len() >= 3 && buf[0] == 0xef && buf[1] == 0xbb && buf[2] == 0xbf {
|
|
|
|
&buf[3..]
|
|
|
|
} else {
|
|
|
|
buf
|
|
|
|
};
|
|
|
|
|
2020-09-09 14:52:11 -04:00
|
|
|
// If `String::new_from_utf8()` returns `None`, this means that the
|
|
|
|
// length of the decoded string would be longer than what V8 can
|
|
|
|
// handle. In this case we return `RangeError`.
|
|
|
|
//
|
|
|
|
// For more details see:
|
|
|
|
// - https://encoding.spec.whatwg.org/#dom-textdecoder-decode
|
|
|
|
// - https://github.com/denoland/deno/issues/6649
|
|
|
|
// - https://github.com/v8/v8/blob/d68fb4733e39525f9ff0a9222107c02c28096e2a/include/v8.h#L3277-L3278
|
|
|
|
match v8::String::new_from_utf8(scope, &buf, v8::NewStringType::Normal) {
|
|
|
|
Some(text) => rv.set(text.into()),
|
|
|
|
None => {
|
|
|
|
let msg = v8::String::new(scope, "string too long").unwrap();
|
|
|
|
let exception = v8::Exception::range_error(scope, msg);
|
|
|
|
scope.throw_exception(exception);
|
|
|
|
}
|
|
|
|
};
|
2020-03-15 10:31:55 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 08:20:21 -05:00
|
|
|
struct SerializeDeserialize {}
|
|
|
|
|
|
|
|
impl v8::ValueSerializerImpl for SerializeDeserialize {
|
|
|
|
#[allow(unused_variables)]
|
|
|
|
fn throw_data_clone_error<'s>(
|
|
|
|
&mut self,
|
|
|
|
scope: &mut v8::HandleScope<'s>,
|
|
|
|
message: v8::Local<'s, v8::String>,
|
|
|
|
) {
|
|
|
|
let error = v8::Exception::error(scope, message);
|
|
|
|
scope.throw_exception(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl v8::ValueDeserializerImpl for SerializeDeserialize {}
|
|
|
|
|
|
|
|
fn serialize(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
let serialize_deserialize = Box::new(SerializeDeserialize {});
|
|
|
|
let mut value_serializer =
|
|
|
|
v8::ValueSerializer::new(scope, serialize_deserialize);
|
|
|
|
match value_serializer.write_value(scope.get_current_context(), args.get(0)) {
|
|
|
|
Some(true) => {
|
|
|
|
let vector = value_serializer.release();
|
|
|
|
let buf = {
|
|
|
|
let buf_len = vector.len();
|
|
|
|
let backing_store = v8::ArrayBuffer::new_backing_store_from_boxed_slice(
|
|
|
|
vector.into_boxed_slice(),
|
|
|
|
);
|
|
|
|
let backing_store_shared = backing_store.make_shared();
|
|
|
|
let ab =
|
|
|
|
v8::ArrayBuffer::with_backing_store(scope, &backing_store_shared);
|
|
|
|
v8::Uint8Array::new(scope, ab, 0, buf_len)
|
|
|
|
.expect("Failed to create UintArray8")
|
|
|
|
};
|
|
|
|
|
|
|
|
rv.set(buf.into());
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
throw_type_error(scope, "Invalid argument");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn deserialize(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
let view = match v8::Local::<v8::ArrayBufferView>::try_from(args.get(0)) {
|
|
|
|
Ok(view) => view,
|
|
|
|
Err(_) => {
|
|
|
|
throw_type_error(scope, "Invalid argument");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let backing_store = view.buffer(scope).unwrap().get_backing_store();
|
|
|
|
let buf = unsafe {
|
|
|
|
get_backing_store_slice(
|
|
|
|
&backing_store,
|
|
|
|
view.byte_offset(),
|
|
|
|
view.byte_length(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
let serialize_deserialize = Box::new(SerializeDeserialize {});
|
|
|
|
let mut value_deserializer =
|
|
|
|
v8::ValueDeserializer::new(scope, serialize_deserialize, buf);
|
|
|
|
let value = value_deserializer.read_value(scope.get_current_context());
|
|
|
|
|
|
|
|
match value {
|
|
|
|
Some(deserialized) => rv.set(deserialized),
|
|
|
|
None => {
|
|
|
|
let msg = v8::String::new(scope, "string too long").unwrap();
|
|
|
|
let exception = v8::Exception::range_error(scope, msg);
|
|
|
|
scope.throw_exception(exception);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
fn queue_microtask(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-01-16 17:25:57 -05:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
match v8::Local::<v8::Function>::try_from(args.get(0)) {
|
2020-06-20 07:18:08 -04:00
|
|
|
Ok(f) => scope.enqueue_microtask(f),
|
2020-01-06 10:24:44 -05:00
|
|
|
Err(_) => {
|
2021-02-16 08:20:21 -05:00
|
|
|
throw_type_error(scope, "Invalid argument");
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-16 17:25:57 -05:00
|
|
|
fn shared_getter(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-01-06 10:24:44 -05:00
|
|
|
_name: v8::Local<v8::Name>,
|
2020-01-16 17:25:57 -05:00
|
|
|
_args: v8::PropertyCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
2020-01-06 10:24:44 -05:00
|
|
|
) {
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-05-29 17:41:39 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-09-06 15:44:29 -04:00
|
|
|
let JsRuntimeState {
|
2020-07-18 16:32:11 -04:00
|
|
|
shared_ab, shared, ..
|
|
|
|
} = &mut *state;
|
2020-01-16 17:25:57 -05:00
|
|
|
|
|
|
|
// Lazily initialize the persistent external ArrayBuffer.
|
2020-07-18 16:32:11 -04:00
|
|
|
let shared_ab = match shared_ab {
|
|
|
|
Some(ref ab) => v8::Local::new(scope, ab),
|
|
|
|
slot @ None => {
|
|
|
|
let ab = v8::SharedArrayBuffer::with_backing_store(
|
|
|
|
scope,
|
|
|
|
shared.get_backing_store(),
|
|
|
|
);
|
|
|
|
slot.replace(v8::Global::new(scope, ab));
|
|
|
|
ab
|
|
|
|
}
|
|
|
|
};
|
|
|
|
rv.set(shared_ab.into())
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-11-21 10:23:35 -05:00
|
|
|
// Called by V8 during `Isolate::mod_instantiate`.
|
2020-01-16 17:25:57 -05:00
|
|
|
pub fn module_resolve_callback<'s>(
|
|
|
|
context: v8::Local<'s, v8::Context>,
|
|
|
|
specifier: v8::Local<'s, v8::String>,
|
2021-02-05 16:25:02 -05:00
|
|
|
_import_assertions: v8::Local<'s, v8::FixedArray>,
|
2020-01-16 17:25:57 -05:00
|
|
|
referrer: v8::Local<'s, v8::Module>,
|
|
|
|
) -> Option<v8::Local<'s, v8::Module>> {
|
2020-06-20 07:18:08 -04:00
|
|
|
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
let state_rc = JsRuntime::state(scope);
|
2020-11-21 10:23:35 -05:00
|
|
|
let state = state_rc.borrow();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-11-21 10:23:35 -05:00
|
|
|
let referrer_global = v8::Global::new(scope, referrer);
|
|
|
|
let referrer_info = state
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-11-21 10:23:35 -05:00
|
|
|
.get_info(&referrer_global)
|
|
|
|
.expect("ModuleInfo not found");
|
|
|
|
let referrer_name = referrer_info.name.to_string();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
let specifier_str = specifier.to_rust_string_lossy(scope);
|
|
|
|
|
2020-11-21 10:23:35 -05:00
|
|
|
let resolved_specifier = state
|
|
|
|
.loader
|
|
|
|
.resolve(
|
|
|
|
state.op_state.clone(),
|
|
|
|
&specifier_str,
|
|
|
|
&referrer_name,
|
|
|
|
false,
|
|
|
|
)
|
|
|
|
.expect("Module should have been already resolved");
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
if let Some(id) = state.module_map.get_id(resolved_specifier.as_str()) {
|
|
|
|
if let Some(handle) = state.module_map.get_handle(id) {
|
2020-11-21 10:23:35 -05:00
|
|
|
return Some(v8::Local::new(scope, handle));
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-21 10:23:35 -05:00
|
|
|
let msg = format!(
|
|
|
|
r#"Cannot resolve module "{}" from "{}""#,
|
|
|
|
specifier_str, referrer_name
|
|
|
|
);
|
|
|
|
throw_type_error(scope, msg);
|
2020-01-16 17:25:57 -05:00
|
|
|
None
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2020-03-30 19:01:19 -04:00
|
|
|
|
|
|
|
// Returns promise details or throw TypeError, if argument passed isn't a Promise.
|
2020-06-20 07:18:08 -04:00
|
|
|
// Promise details is a js_two elements array.
|
2020-03-30 19:01:19 -04:00
|
|
|
// promise_details = [State, Result]
|
|
|
|
// State = enum { Pending = 0, Fulfilled = 1, Rejected = 2}
|
|
|
|
// Result = PromiseResult<T> | PromiseError
|
|
|
|
fn get_promise_details(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope,
|
2020-03-30 19:01:19 -04:00
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
2020-04-22 14:24:49 -04:00
|
|
|
let promise = match v8::Local::<v8::Promise>::try_from(args.get(0)) {
|
2020-03-30 19:01:19 -04:00
|
|
|
Ok(val) => val,
|
|
|
|
Err(_) => {
|
2021-02-16 08:20:21 -05:00
|
|
|
throw_type_error(scope, "Invalid argument");
|
2020-03-30 19:01:19 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let promise_details = v8::Array::new(scope, 2);
|
|
|
|
|
|
|
|
match promise.state() {
|
|
|
|
v8::PromiseState::Pending => {
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(scope, 0);
|
|
|
|
promise_details.set(scope, js_zero.into(), js_zero.into());
|
2020-03-30 19:01:19 -04:00
|
|
|
rv.set(promise_details.into());
|
|
|
|
}
|
|
|
|
v8::PromiseState::Fulfilled => {
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(scope, 0);
|
|
|
|
let js_one = v8::Integer::new(scope, 1);
|
|
|
|
let promise_result = promise.result(scope);
|
|
|
|
promise_details.set(scope, js_zero.into(), js_one.into());
|
|
|
|
promise_details.set(scope, js_one.into(), promise_result);
|
2020-03-30 19:01:19 -04:00
|
|
|
rv.set(promise_details.into());
|
|
|
|
}
|
|
|
|
v8::PromiseState::Rejected => {
|
2020-06-20 07:18:08 -04:00
|
|
|
let js_zero = v8::Integer::new(scope, 0);
|
|
|
|
let js_one = v8::Integer::new(scope, 1);
|
|
|
|
let js_two = v8::Integer::new(scope, 2);
|
|
|
|
let promise_result = promise.result(scope);
|
|
|
|
promise_details.set(scope, js_zero.into(), js_two.into());
|
|
|
|
promise_details.set(scope, js_one.into(), promise_result);
|
2020-03-30 19:01:19 -04:00
|
|
|
rv.set(promise_details.into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-18 16:32:11 -04:00
|
|
|
|
2020-09-08 10:06:26 -04:00
|
|
|
// Based on https://github.com/nodejs/node/blob/1e470510ff74391d7d4ec382909ea8960d2d2fbc/src/node_util.cc
|
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
fn get_proxy_details(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
// Return undefined if it's not a proxy.
|
|
|
|
let proxy = match v8::Local::<v8::Proxy>::try_from(args.get(0)) {
|
|
|
|
Ok(val) => val,
|
|
|
|
Err(_) => {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let proxy_details = v8::Array::new(scope, 2);
|
|
|
|
let js_zero = v8::Integer::new(scope, 0);
|
|
|
|
let js_one = v8::Integer::new(scope, 1);
|
|
|
|
let target = proxy.get_target(scope);
|
|
|
|
let handler = proxy.get_handler(scope);
|
|
|
|
proxy_details.set(scope, js_zero.into(), target);
|
|
|
|
proxy_details.set(scope, js_one.into(), handler);
|
|
|
|
rv.set(proxy_details.into());
|
|
|
|
}
|
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
fn throw_type_error(scope: &mut v8::HandleScope, message: impl AsRef<str>) {
|
2020-07-18 16:32:11 -04:00
|
|
|
let message = v8::String::new(scope, message.as_ref()).unwrap();
|
|
|
|
let exception = v8::Exception::type_error(scope, message);
|
|
|
|
scope.throw_exception(exception);
|
|
|
|
}
|
2021-03-23 10:33:06 -04:00
|
|
|
|
|
|
|
fn heap_stats(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
_args: v8::FunctionCallbackArguments,
|
|
|
|
mut rv: v8::ReturnValue,
|
|
|
|
) {
|
|
|
|
fn set_prop(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
obj: v8::Local<v8::Object>,
|
|
|
|
name: &'static str,
|
|
|
|
value: usize,
|
|
|
|
) {
|
|
|
|
let key = v8::String::new(scope, name).unwrap();
|
|
|
|
let val = v8::Number::new(scope, value as f64);
|
|
|
|
obj.set(scope, key.into(), val.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
let s = get_heap_stats(scope);
|
|
|
|
|
|
|
|
// TODO: use serde for this once we have serde_v8
|
|
|
|
let obj = v8::Object::new(scope);
|
|
|
|
set_prop(scope, obj, "totalHeapSize", s.total_heap_size);
|
|
|
|
set_prop(
|
|
|
|
scope,
|
|
|
|
obj,
|
|
|
|
"totalHeapSizexecutable",
|
|
|
|
s.total_heap_size_executable,
|
|
|
|
);
|
|
|
|
set_prop(scope, obj, "totalPhysicalSize", s.total_physical_size);
|
|
|
|
set_prop(scope, obj, "totalAvailableSize", s.total_available_size);
|
|
|
|
set_prop(
|
|
|
|
scope,
|
|
|
|
obj,
|
|
|
|
"totalGlobalHandlesSize",
|
|
|
|
s.total_global_handles_size,
|
|
|
|
);
|
|
|
|
set_prop(
|
|
|
|
scope,
|
|
|
|
obj,
|
|
|
|
"usedGlobalHandlesSize",
|
|
|
|
s.used_global_handles_size,
|
|
|
|
);
|
|
|
|
set_prop(scope, obj, "usedHeapSize", s.used_heap_size);
|
|
|
|
set_prop(scope, obj, "heapSizeLimit", s.heap_size_limit);
|
|
|
|
set_prop(scope, obj, "mallocedMemory", s.malloced_memory);
|
|
|
|
set_prop(scope, obj, "externalMemory", s.external_memory);
|
|
|
|
set_prop(scope, obj, "peakMallocedMemory", s.peak_malloced_memory);
|
|
|
|
set_prop(
|
|
|
|
scope,
|
|
|
|
obj,
|
|
|
|
"numberOfNativeContexts",
|
|
|
|
s.number_of_native_contexts,
|
|
|
|
);
|
|
|
|
set_prop(
|
|
|
|
scope,
|
|
|
|
obj,
|
|
|
|
"numberOfDetachedContexts",
|
|
|
|
s.number_of_detached_contexts,
|
|
|
|
);
|
|
|
|
|
|
|
|
rv.set(obj.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
// HeapStats stores values from a isolate.get_heap_statistics() call
|
|
|
|
struct HeapStats {
|
|
|
|
total_heap_size: usize,
|
|
|
|
total_heap_size_executable: usize,
|
|
|
|
total_physical_size: usize,
|
|
|
|
total_available_size: usize,
|
|
|
|
total_global_handles_size: usize,
|
|
|
|
used_global_handles_size: usize,
|
|
|
|
used_heap_size: usize,
|
|
|
|
heap_size_limit: usize,
|
|
|
|
malloced_memory: usize,
|
|
|
|
external_memory: usize,
|
|
|
|
peak_malloced_memory: usize,
|
|
|
|
number_of_native_contexts: usize,
|
|
|
|
number_of_detached_contexts: usize,
|
|
|
|
}
|
|
|
|
fn get_heap_stats(isolate: &mut v8::Isolate) -> HeapStats {
|
|
|
|
let mut s = v8::HeapStatistics::default();
|
|
|
|
isolate.get_heap_statistics(&mut s);
|
|
|
|
|
|
|
|
HeapStats {
|
|
|
|
total_heap_size: s.total_heap_size(),
|
|
|
|
total_heap_size_executable: s.total_heap_size_executable(),
|
|
|
|
total_physical_size: s.total_physical_size(),
|
|
|
|
total_available_size: s.total_available_size(),
|
|
|
|
total_global_handles_size: s.total_global_handles_size(),
|
|
|
|
used_global_handles_size: s.used_global_handles_size(),
|
|
|
|
used_heap_size: s.used_heap_size(),
|
|
|
|
heap_size_limit: s.heap_size_limit(),
|
|
|
|
malloced_memory: s.malloced_memory(),
|
|
|
|
external_memory: s.external_memory(),
|
|
|
|
peak_malloced_memory: s.peak_malloced_memory(),
|
|
|
|
number_of_native_contexts: s.number_of_native_contexts(),
|
|
|
|
number_of_detached_contexts: s.number_of_detached_contexts(),
|
|
|
|
}
|
|
|
|
}
|