2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2019-03-26 11:56:34 -04:00
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
use rusty_v8 as v8;
|
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
use crate::bindings;
|
2020-09-14 12:48:57 -04:00
|
|
|
use crate::error::attach_handle_to_error;
|
2020-10-14 08:04:09 -04:00
|
|
|
use crate::error::generic_error;
|
2020-09-14 12:48:57 -04:00
|
|
|
use crate::error::AnyError;
|
|
|
|
use crate::error::ErrWithV8Handle;
|
|
|
|
use crate::error::JsError;
|
2020-09-06 10:50:49 -04:00
|
|
|
use crate::futures::FutureExt;
|
|
|
|
use crate::module_specifier::ModuleSpecifier;
|
|
|
|
use crate::modules::LoadState;
|
|
|
|
use crate::modules::ModuleId;
|
|
|
|
use crate::modules::ModuleLoadId;
|
|
|
|
use crate::modules::ModuleLoader;
|
2021-02-23 09:22:55 -05:00
|
|
|
use crate::modules::ModuleMap;
|
2020-09-06 10:50:49 -04:00
|
|
|
use crate::modules::ModuleSource;
|
|
|
|
use crate::modules::NoopModuleLoader;
|
|
|
|
use crate::modules::PrepareLoadFuture;
|
|
|
|
use crate::modules::RecursiveModuleLoad;
|
2019-09-30 14:59:44 -04:00
|
|
|
use crate::ops::*;
|
2019-03-14 19:17:52 -04:00
|
|
|
use crate::shared_queue::SharedQueue;
|
|
|
|
use crate::shared_queue::RECOMMENDED_SIZE;
|
2020-09-10 09:57:45 -04:00
|
|
|
use crate::BufVec;
|
|
|
|
use crate::OpState;
|
2020-10-14 08:04:09 -04:00
|
|
|
use futures::channel::mpsc;
|
2020-10-11 07:20:40 -04:00
|
|
|
use futures::future::poll_fn;
|
2019-08-07 12:55:39 -04:00
|
|
|
use futures::stream::FuturesUnordered;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::stream::StreamExt;
|
2020-09-06 10:50:49 -04:00
|
|
|
use futures::stream::StreamFuture;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::task::AtomicWaker;
|
2020-02-03 18:08:44 -05:00
|
|
|
use futures::Future;
|
2021-03-26 12:34:25 -04:00
|
|
|
use log::debug;
|
2020-08-11 21:07:14 -04:00
|
|
|
use std::any::Any;
|
2020-04-21 09:48:44 -04:00
|
|
|
use std::cell::RefCell;
|
2020-01-06 14:07:35 -05:00
|
|
|
use std::collections::HashMap;
|
2020-09-06 10:50:49 -04:00
|
|
|
use std::convert::TryFrom;
|
2020-08-11 21:07:14 -04:00
|
|
|
use std::ffi::c_void;
|
2020-02-24 18:53:29 -05:00
|
|
|
use std::mem::forget;
|
2020-01-06 14:07:35 -05:00
|
|
|
use std::option::Option;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::pin::Pin;
|
2020-04-21 09:48:44 -04:00
|
|
|
use std::rc::Rc;
|
2020-05-29 17:41:39 -04:00
|
|
|
use std::sync::Once;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::task::Context;
|
|
|
|
use std::task::Poll;
|
2020-01-24 15:10:49 -05:00
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
type PendingOpFuture = Pin<Box<dyn Future<Output = (OpId, Box<[u8]>)>>>;
|
2020-04-18 20:05:13 -04:00
|
|
|
|
2020-04-22 14:24:49 -04:00
|
|
|
pub enum Snapshot {
|
|
|
|
Static(&'static [u8]),
|
|
|
|
JustCreated(v8::StartupData),
|
2020-05-09 21:00:40 -04:00
|
|
|
Boxed(Box<[u8]>),
|
2020-04-22 14:24:49 -04:00
|
|
|
}
|
|
|
|
|
2020-12-01 17:33:44 -05:00
|
|
|
pub type JsErrorCreateFn = dyn Fn(JsError) -> AnyError;
|
2019-07-10 18:53:48 -04:00
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
pub type GetErrorClassFn =
|
|
|
|
&'static dyn for<'e> Fn(&'e AnyError) -> &'static str;
|
2020-08-25 18:22:15 -04:00
|
|
|
|
2020-08-11 21:07:14 -04:00
|
|
|
/// Objects that need to live as long as the isolate
|
|
|
|
#[derive(Default)]
|
|
|
|
struct IsolateAllocations {
|
|
|
|
near_heap_limit_callback_data:
|
|
|
|
Option<(Box<RefCell<dyn Any>>, v8::NearHeapLimitCallback)>,
|
|
|
|
}
|
|
|
|
|
2019-03-12 18:47:54 -04:00
|
|
|
/// A single execution context of JavaScript. Corresponds roughly to the "Web
|
2020-09-06 15:44:29 -04:00
|
|
|
/// Worker" concept in the DOM. A JsRuntime is a Future that can be used with
|
|
|
|
/// an event loop (Tokio, async_std).
|
|
|
|
////
|
|
|
|
/// The JsRuntime future completes when there is an error or when all
|
2019-03-12 18:47:54 -04:00
|
|
|
/// pending ops have completed.
|
|
|
|
///
|
2019-04-04 09:35:52 -04:00
|
|
|
/// Ops are created in JavaScript by calling Deno.core.dispatch(), and in Rust
|
2019-10-02 13:05:48 -04:00
|
|
|
/// by implementing dispatcher function that takes control buffer and optional zero copy buffer
|
|
|
|
/// as arguments. An async Op corresponds exactly to a Promise in JavaScript.
|
2020-09-06 15:44:29 -04:00
|
|
|
pub struct JsRuntime {
|
2020-05-29 17:41:39 -04:00
|
|
|
// This is an Option<OwnedIsolate> instead of just OwnedIsolate to workaround
|
2020-09-06 15:44:29 -04:00
|
|
|
// an safety issue with SnapshotCreator. See JsRuntime::drop.
|
2020-05-29 17:41:39 -04:00
|
|
|
v8_isolate: Option<v8::OwnedIsolate>,
|
2020-01-06 14:07:35 -05:00
|
|
|
snapshot_creator: Option<v8::SnapshotCreator>,
|
|
|
|
has_snapshotted: bool,
|
2020-08-11 21:07:14 -04:00
|
|
|
allocations: IsolateAllocations,
|
2020-05-29 17:41:39 -04:00
|
|
|
}
|
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
struct DynImportModEvaluate {
|
|
|
|
module_id: ModuleId,
|
|
|
|
promise: v8::Global<v8::Promise>,
|
|
|
|
module: v8::Global<v8::Module>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ModEvaluate {
|
|
|
|
promise: v8::Global<v8::Promise>,
|
|
|
|
sender: mpsc::Sender<Result<(), AnyError>>,
|
|
|
|
}
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
/// Internal state for JsRuntime which is stored in one of v8::Isolate's
|
2020-05-29 17:41:39 -04:00
|
|
|
/// embedder slots.
|
2020-09-14 23:49:12 -04:00
|
|
|
pub(crate) struct JsRuntimeState {
|
2020-07-18 16:32:11 -04:00
|
|
|
pub global_context: Option<v8::Global<v8::Context>>,
|
|
|
|
pub(crate) shared_ab: Option<v8::Global<v8::SharedArrayBuffer>>,
|
|
|
|
pub(crate) js_recv_cb: Option<v8::Global<v8::Function>>,
|
|
|
|
pub(crate) js_macrotask_cb: Option<v8::Global<v8::Function>>,
|
2020-11-11 17:11:40 -05:00
|
|
|
pub(crate) pending_promise_exceptions:
|
|
|
|
HashMap<v8::Global<v8::Promise>, v8::Global<v8::Value>>,
|
2020-10-14 08:04:09 -04:00
|
|
|
pending_dyn_mod_evaluate: HashMap<ModuleLoadId, DynImportModEvaluate>,
|
|
|
|
pending_mod_evaluate: Option<ModEvaluate>,
|
2020-12-11 12:49:26 -05:00
|
|
|
pub(crate) js_error_create_fn: Rc<JsErrorCreateFn>,
|
2020-01-11 04:49:16 -05:00
|
|
|
pub(crate) shared: SharedQueue,
|
2020-09-05 20:34:02 -04:00
|
|
|
pub(crate) pending_ops: FuturesUnordered<PendingOpFuture>,
|
|
|
|
pub(crate) pending_unref_ops: FuturesUnordered<PendingOpFuture>,
|
2021-02-23 07:08:50 -05:00
|
|
|
pub(crate) have_unpolled_ops: bool,
|
2020-09-10 09:57:45 -04:00
|
|
|
pub(crate) op_state: Rc<RefCell<OpState>>,
|
2020-11-21 10:23:35 -05:00
|
|
|
pub loader: Rc<dyn ModuleLoader>,
|
2021-02-23 09:22:55 -05:00
|
|
|
pub module_map: ModuleMap,
|
2020-09-06 10:50:49 -04:00
|
|
|
pub(crate) dyn_import_map:
|
|
|
|
HashMap<ModuleLoadId, v8::Global<v8::PromiseResolver>>,
|
|
|
|
preparing_dyn_imports: FuturesUnordered<Pin<Box<PrepareLoadFuture>>>,
|
|
|
|
pending_dyn_imports: FuturesUnordered<StreamFuture<RecursiveModuleLoad>>,
|
2019-11-16 19:17:47 -05:00
|
|
|
waker: AtomicWaker,
|
2020-05-29 17:41:39 -04:00
|
|
|
}
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
impl Drop for JsRuntime {
|
2019-03-11 17:57:36 -04:00
|
|
|
fn drop(&mut self) {
|
2020-01-06 14:07:35 -05:00
|
|
|
if let Some(creator) = self.snapshot_creator.take() {
|
2020-02-24 18:53:29 -05:00
|
|
|
// TODO(ry): in rusty_v8, `SnapShotCreator::get_owned_isolate()` returns
|
|
|
|
// a `struct OwnedIsolate` which is not actually owned, hence the need
|
|
|
|
// here to leak the `OwnedIsolate` in order to avoid a double free and
|
|
|
|
// the segfault that it causes.
|
|
|
|
let v8_isolate = self.v8_isolate.take().unwrap();
|
|
|
|
forget(v8_isolate);
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
// TODO(ry) V8 has a strange assert which prevents a SnapshotCreator from
|
|
|
|
// being deallocated if it hasn't created a snapshot yet.
|
|
|
|
// https://github.com/v8/v8/blob/73212783fbd534fac76cc4b66aac899c13f71fc8/src/api.cc#L603
|
|
|
|
// If that assert is removed, this if guard could be removed.
|
|
|
|
// WARNING: There may be false positive LSAN errors here.
|
2020-01-06 14:07:35 -05:00
|
|
|
if self.has_snapshotted {
|
2020-01-06 10:24:44 -05:00
|
|
|
drop(creator);
|
|
|
|
}
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
#[allow(clippy::missing_safety_doc)]
|
|
|
|
pub unsafe fn v8_init() {
|
2020-04-22 14:24:49 -04:00
|
|
|
let platform = v8::new_default_platform().unwrap();
|
2020-01-06 14:07:35 -05:00
|
|
|
v8::V8::initialize_platform(platform);
|
|
|
|
v8::V8::initialize();
|
|
|
|
let argv = vec![
|
|
|
|
"".to_string(),
|
2020-08-14 13:48:37 -04:00
|
|
|
"--wasm-test-streaming".to_string(),
|
2021-01-11 12:22:15 -05:00
|
|
|
// TODO(ry) This makes WASM compile synchronously. Eventually we should
|
|
|
|
// remove this to make it work asynchronously too. But that requires getting
|
|
|
|
// PumpMessageLoop and RunMicrotasks setup correctly.
|
|
|
|
// See https://github.com/denoland/deno/issues/2544
|
2020-01-06 14:07:35 -05:00
|
|
|
"--no-wasm-async-compilation".to_string(),
|
|
|
|
"--harmony-top-level-await".to_string(),
|
2021-02-09 07:06:24 -05:00
|
|
|
"--harmony-import-assertions".to_string(),
|
2021-01-07 10:50:57 -05:00
|
|
|
"--no-validate-asm".to_string(),
|
2020-01-06 14:07:35 -05:00
|
|
|
];
|
|
|
|
v8::V8::set_flags_from_command_line(argv);
|
|
|
|
}
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct RuntimeOptions {
|
2020-09-14 21:23:48 -04:00
|
|
|
/// Allows a callback to be set whenever a V8 exception is made. This allows
|
|
|
|
/// the caller to wrap the JsError into an error. By default this callback
|
|
|
|
/// is set to `JsError::create()`.
|
2020-12-11 12:49:26 -05:00
|
|
|
pub js_error_create_fn: Option<Rc<JsErrorCreateFn>>,
|
2020-09-14 21:23:48 -04:00
|
|
|
|
2020-11-21 09:56:14 -05:00
|
|
|
/// Allows to map error type to a string "class" used to represent
|
|
|
|
/// error in JavaScript.
|
|
|
|
pub get_error_class_fn: Option<GetErrorClassFn>,
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
/// Implementation of `ModuleLoader` which will be
|
|
|
|
/// called when V8 requests to load ES modules.
|
|
|
|
///
|
|
|
|
/// If not provided runtime will error if code being
|
|
|
|
/// executed tries to load modules.
|
|
|
|
pub module_loader: Option<Rc<dyn ModuleLoader>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
/// V8 snapshot that should be loaded on startup.
|
|
|
|
///
|
|
|
|
/// Currently can't be used with `will_snapshot`.
|
|
|
|
pub startup_snapshot: Option<Snapshot>,
|
2020-08-11 21:07:14 -04:00
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
/// Prepare runtime to take snapshot of loaded code.
|
|
|
|
///
|
|
|
|
/// Currently can't be used with `startup_snapshot`.
|
|
|
|
pub will_snapshot: bool,
|
2020-08-11 21:07:14 -04:00
|
|
|
|
2020-10-17 05:56:15 -04:00
|
|
|
/// Isolate creation parameters.
|
|
|
|
pub create_params: Option<v8::CreateParams>,
|
2020-09-11 09:18:49 -04:00
|
|
|
}
|
2020-08-11 21:07:14 -04:00
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
impl JsRuntime {
|
2020-11-05 20:26:14 -05:00
|
|
|
/// Only constructor, configuration is done through `options`.
|
2020-10-17 05:56:15 -04:00
|
|
|
pub fn new(mut options: RuntimeOptions) -> Self {
|
2020-05-29 17:41:39 -04:00
|
|
|
static DENO_INIT: Once = Once::new();
|
2019-03-11 17:57:36 -04:00
|
|
|
DENO_INIT.call_once(|| {
|
2021-02-15 11:32:08 -05:00
|
|
|
// Include 10MB ICU data file.
|
2021-03-12 17:55:32 -05:00
|
|
|
#[repr(C, align(16))]
|
2021-03-25 14:17:37 -04:00
|
|
|
struct IcuData([u8; 10413584]);
|
|
|
|
static ICU_DATA: IcuData = IcuData(*include_bytes!("icudtl.dat"));
|
2021-03-12 17:55:32 -05:00
|
|
|
v8::icu::set_common_data(&ICU_DATA.0).unwrap();
|
2020-01-06 14:07:35 -05:00
|
|
|
unsafe { v8_init() };
|
2019-03-11 17:57:36 -04:00
|
|
|
});
|
|
|
|
|
2021-01-05 16:10:50 -05:00
|
|
|
let has_startup_snapshot = options.startup_snapshot.is_some();
|
|
|
|
|
2020-07-18 16:32:11 -04:00
|
|
|
let global_context;
|
2020-08-11 21:07:14 -04:00
|
|
|
let (mut isolate, maybe_snapshot_creator) = if options.will_snapshot {
|
2020-01-06 10:24:44 -05:00
|
|
|
// TODO(ry) Support loading snapshots before snapshotting.
|
2020-08-11 21:07:14 -04:00
|
|
|
assert!(options.startup_snapshot.is_none());
|
2020-01-06 10:24:44 -05:00
|
|
|
let mut creator =
|
2020-01-06 14:07:35 -05:00
|
|
|
v8::SnapshotCreator::new(Some(&bindings::EXTERNAL_REFERENCES));
|
2020-01-06 10:24:44 -05:00
|
|
|
let isolate = unsafe { creator.get_owned_isolate() };
|
2020-09-06 15:44:29 -04:00
|
|
|
let mut isolate = JsRuntime::setup_isolate(isolate);
|
2020-06-20 07:18:08 -04:00
|
|
|
{
|
|
|
|
let scope = &mut v8::HandleScope::new(&mut isolate);
|
|
|
|
let context = bindings::initialize_context(scope);
|
2020-07-18 16:32:11 -04:00
|
|
|
global_context = v8::Global::new(scope, context);
|
2020-06-20 07:18:08 -04:00
|
|
|
creator.set_default_context(context);
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
(isolate, Some(creator))
|
|
|
|
} else {
|
2020-10-17 05:56:15 -04:00
|
|
|
let mut params = options
|
|
|
|
.create_params
|
|
|
|
.take()
|
|
|
|
.unwrap_or_else(v8::Isolate::create_params)
|
2020-04-22 14:24:49 -04:00
|
|
|
.external_references(&**bindings::EXTERNAL_REFERENCES);
|
2020-08-11 21:07:14 -04:00
|
|
|
let snapshot_loaded = if let Some(snapshot) = options.startup_snapshot {
|
2020-04-22 14:24:49 -04:00
|
|
|
params = match snapshot {
|
|
|
|
Snapshot::Static(data) => params.snapshot_blob(data),
|
|
|
|
Snapshot::JustCreated(data) => params.snapshot_blob(data),
|
2020-05-09 21:00:40 -04:00
|
|
|
Snapshot::Boxed(data) => params.snapshot_blob(data),
|
2020-04-22 14:24:49 -04:00
|
|
|
};
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
2020-01-06 10:24:44 -05:00
|
|
|
|
|
|
|
let isolate = v8::Isolate::new(params);
|
2020-09-06 15:44:29 -04:00
|
|
|
let mut isolate = JsRuntime::setup_isolate(isolate);
|
2020-06-20 07:18:08 -04:00
|
|
|
{
|
|
|
|
let scope = &mut v8::HandleScope::new(&mut isolate);
|
|
|
|
let context = if snapshot_loaded {
|
|
|
|
v8::Context::new(scope)
|
|
|
|
} else {
|
|
|
|
// If no snapshot is provided, we initialize the context with empty
|
|
|
|
// main source code and source maps.
|
|
|
|
bindings::initialize_context(scope)
|
|
|
|
};
|
2020-07-18 16:32:11 -04:00
|
|
|
global_context = v8::Global::new(scope, context);
|
2020-06-20 07:18:08 -04:00
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
(isolate, None)
|
|
|
|
};
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
let loader = options
|
|
|
|
.module_loader
|
|
|
|
.unwrap_or_else(|| Rc::new(NoopModuleLoader));
|
|
|
|
|
2020-09-14 21:23:48 -04:00
|
|
|
let js_error_create_fn = options
|
|
|
|
.js_error_create_fn
|
2020-12-11 12:49:26 -05:00
|
|
|
.unwrap_or_else(|| Rc::new(JsError::create));
|
2021-01-05 16:10:50 -05:00
|
|
|
let mut op_state = OpState::new();
|
2020-11-21 09:56:14 -05:00
|
|
|
|
|
|
|
if let Some(get_error_class_fn) = options.get_error_class_fn {
|
|
|
|
op_state.get_error_class_fn = get_error_class_fn;
|
|
|
|
}
|
2020-09-10 09:57:45 -04:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
isolate.set_slot(Rc::new(RefCell::new(JsRuntimeState {
|
2020-07-18 16:32:11 -04:00
|
|
|
global_context: Some(global_context),
|
2020-01-25 08:31:42 -05:00
|
|
|
pending_promise_exceptions: HashMap::new(),
|
2020-10-14 08:04:09 -04:00
|
|
|
pending_dyn_mod_evaluate: HashMap::new(),
|
|
|
|
pending_mod_evaluate: None,
|
2020-07-18 16:32:11 -04:00
|
|
|
shared_ab: None,
|
|
|
|
js_recv_cb: None,
|
|
|
|
js_macrotask_cb: None,
|
2020-09-14 21:23:48 -04:00
|
|
|
js_error_create_fn,
|
2020-05-29 17:41:39 -04:00
|
|
|
shared: SharedQueue::new(RECOMMENDED_SIZE),
|
2019-04-14 20:07:34 -04:00
|
|
|
pending_ops: FuturesUnordered::new(),
|
2020-01-21 12:01:10 -05:00
|
|
|
pending_unref_ops: FuturesUnordered::new(),
|
2020-09-10 09:57:45 -04:00
|
|
|
op_state: Rc::new(RefCell::new(op_state)),
|
2021-02-23 07:08:50 -05:00
|
|
|
have_unpolled_ops: false,
|
2021-02-23 09:22:55 -05:00
|
|
|
module_map: ModuleMap::new(),
|
2020-09-11 09:18:49 -04:00
|
|
|
loader,
|
2020-09-06 10:50:49 -04:00
|
|
|
dyn_import_map: HashMap::new(),
|
|
|
|
preparing_dyn_imports: FuturesUnordered::new(),
|
|
|
|
pending_dyn_imports: FuturesUnordered::new(),
|
2019-11-16 19:17:47 -05:00
|
|
|
waker: AtomicWaker::new(),
|
2020-05-29 17:41:39 -04:00
|
|
|
})));
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2021-01-05 16:10:50 -05:00
|
|
|
let mut js_runtime = Self {
|
2020-05-29 17:41:39 -04:00
|
|
|
v8_isolate: Some(isolate),
|
|
|
|
snapshot_creator: maybe_snapshot_creator,
|
|
|
|
has_snapshotted: false,
|
2020-08-11 21:07:14 -04:00
|
|
|
allocations: IsolateAllocations::default(),
|
2021-01-05 16:10:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if !has_startup_snapshot {
|
|
|
|
js_runtime.js_init();
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2021-01-05 16:10:50 -05:00
|
|
|
|
|
|
|
if !options.will_snapshot {
|
|
|
|
js_runtime.shared_queue_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
js_runtime
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-10-07 09:56:52 -04:00
|
|
|
pub fn global_context(&mut self) -> v8::Global<v8::Context> {
|
|
|
|
let state = Self::state(self.v8_isolate());
|
2020-09-14 23:49:12 -04:00
|
|
|
let state = state.borrow();
|
|
|
|
state.global_context.clone().unwrap()
|
|
|
|
}
|
|
|
|
|
2020-10-07 09:56:52 -04:00
|
|
|
pub fn v8_isolate(&mut self) -> &mut v8::OwnedIsolate {
|
2020-10-05 05:08:19 -04:00
|
|
|
self.v8_isolate.as_mut().unwrap()
|
|
|
|
}
|
|
|
|
|
2020-04-23 05:51:07 -04:00
|
|
|
fn setup_isolate(mut isolate: v8::OwnedIsolate) -> v8::OwnedIsolate {
|
2020-01-06 10:24:44 -05:00
|
|
|
isolate.set_capture_stack_trace_for_uncaught_exceptions(true, 10);
|
|
|
|
isolate.set_promise_reject_callback(bindings::promise_reject_callback);
|
2020-09-06 10:50:49 -04:00
|
|
|
isolate.set_host_initialize_import_meta_object_callback(
|
|
|
|
bindings::host_initialize_import_meta_object_callback,
|
|
|
|
);
|
|
|
|
isolate.set_host_import_module_dynamically_callback(
|
|
|
|
bindings::host_import_module_dynamically_callback,
|
|
|
|
);
|
2020-01-06 10:24:44 -05:00
|
|
|
isolate
|
|
|
|
}
|
|
|
|
|
2020-09-14 23:49:12 -04:00
|
|
|
pub(crate) fn state(isolate: &v8::Isolate) -> Rc<RefCell<JsRuntimeState>> {
|
2020-09-06 15:44:29 -04:00
|
|
|
let s = isolate.get_slot::<Rc<RefCell<JsRuntimeState>>>().unwrap();
|
2020-05-29 17:41:39 -04:00
|
|
|
s.clone()
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
|
2021-01-05 16:10:50 -05:00
|
|
|
/// Executes a JavaScript code to provide Deno.core and error reporting.
|
|
|
|
///
|
|
|
|
/// This function can be called during snapshotting.
|
|
|
|
fn js_init(&mut self) {
|
|
|
|
self
|
|
|
|
.execute("deno:core/core.js", include_str!("core.js"))
|
|
|
|
.unwrap();
|
|
|
|
self
|
|
|
|
.execute("deno:core/error.js", include_str!("error.js"))
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Executes a JavaScript code to initialize shared queue binding
|
|
|
|
/// between Rust and JS.
|
|
|
|
///
|
|
|
|
/// This function mustn't be called during snapshotting.
|
|
|
|
fn shared_queue_init(&mut self) {
|
|
|
|
self
|
|
|
|
.execute(
|
|
|
|
"deno:core/shared_queue_init.js",
|
|
|
|
"Deno.core.sharedQueueInit()",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
2020-11-05 20:26:14 -05:00
|
|
|
/// Returns the runtime's op state, which can be used to maintain ops
|
|
|
|
/// and access resources between op calls.
|
2020-09-10 09:57:45 -04:00
|
|
|
pub fn op_state(&mut self) -> Rc<RefCell<OpState>> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-10 09:57:45 -04:00
|
|
|
let state = state_rc.borrow();
|
|
|
|
state.op_state.clone()
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:45:44 -05:00
|
|
|
/// Executes traditional JavaScript code (traditional = not ES modules)
|
|
|
|
///
|
2020-11-05 20:26:14 -05:00
|
|
|
/// The execution takes place on the current global context, so it is possible
|
|
|
|
/// to maintain local JS state and invoke this method multiple times.
|
|
|
|
///
|
2020-09-14 12:48:57 -04:00
|
|
|
/// `AnyError` can be downcast to a type that exposes additional information
|
|
|
|
/// about the V8 exception. By default this type is `JsError`, however it may
|
2020-09-14 21:23:48 -04:00
|
|
|
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
|
2020-01-07 06:45:44 -05:00
|
|
|
pub fn execute(
|
2020-01-06 10:24:44 -05:00
|
|
|
&mut self,
|
|
|
|
js_filename: &str,
|
|
|
|
js_source: &str,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
2020-01-21 14:24:31 -05:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
2020-05-29 17:41:39 -04:00
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
let source = v8::String::new(scope, js_source).unwrap();
|
|
|
|
let name = v8::String::new(scope, js_filename).unwrap();
|
2020-01-25 08:31:42 -05:00
|
|
|
let origin = bindings::script_origin(scope, name);
|
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
2020-01-25 08:31:42 -05:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
let script = match v8::Script::compile(tc_scope, source, Some(&origin)) {
|
|
|
|
Some(script) => script,
|
|
|
|
None => {
|
|
|
|
let exception = tc_scope.exception().unwrap();
|
2020-10-25 23:34:00 -04:00
|
|
|
return exception_to_err_result(tc_scope, exception, false);
|
2020-06-20 07:18:08 -04:00
|
|
|
}
|
|
|
|
};
|
2020-04-16 06:58:17 -04:00
|
|
|
|
2020-06-20 07:18:08 -04:00
|
|
|
match script.run(tc_scope) {
|
2020-01-25 08:31:42 -05:00
|
|
|
Some(_) => Ok(()),
|
|
|
|
None => {
|
2020-06-20 07:18:08 -04:00
|
|
|
assert!(tc_scope.has_caught());
|
|
|
|
let exception = tc_scope.exception().unwrap();
|
2020-10-25 23:34:00 -04:00
|
|
|
exception_to_err_result(tc_scope, exception, false)
|
2020-01-25 08:31:42 -05:00
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2019-07-10 18:53:48 -04:00
|
|
|
/// Takes a snapshot. The isolate should have been created with will_snapshot
|
|
|
|
/// set to true.
|
|
|
|
///
|
2020-09-14 12:48:57 -04:00
|
|
|
/// `AnyError` can be downcast to a type that exposes additional information
|
|
|
|
/// about the V8 exception. By default this type is `JsError`, however it may
|
2020-09-14 21:23:48 -04:00
|
|
|
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
|
2020-04-22 14:24:49 -04:00
|
|
|
pub fn snapshot(&mut self) -> v8::StartupData {
|
2020-01-06 14:07:35 -05:00
|
|
|
assert!(self.snapshot_creator.is_some());
|
2020-10-07 09:56:52 -04:00
|
|
|
let state = Self::state(self.v8_isolate());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-02-28 02:28:33 -05:00
|
|
|
// Note: create_blob() method must not be called from within a HandleScope.
|
|
|
|
// TODO(piscisaureus): The rusty_v8 type system should enforce this.
|
2020-07-18 16:32:11 -04:00
|
|
|
state.borrow_mut().global_context.take();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
std::mem::take(&mut state.borrow_mut().module_map);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
let snapshot_creator = self.snapshot_creator.as_mut().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
let snapshot = snapshot_creator
|
|
|
|
.create_blob(v8::FunctionCodeHandling::Keep)
|
|
|
|
.unwrap();
|
2020-01-06 14:07:35 -05:00
|
|
|
self.has_snapshotted = true;
|
2020-02-24 18:53:29 -05:00
|
|
|
|
2020-02-28 02:28:33 -05:00
|
|
|
snapshot
|
2019-04-08 10:12:43 -04:00
|
|
|
}
|
2020-05-29 17:41:39 -04:00
|
|
|
|
2020-11-05 20:26:14 -05:00
|
|
|
/// Registers an op that can be called from JavaScript.
|
|
|
|
///
|
|
|
|
/// The _op_ mechanism allows to expose Rust functions to the JS runtime,
|
|
|
|
/// which can be called using the provided `name`.
|
|
|
|
///
|
|
|
|
/// This function provides byte-level bindings. To pass data via JSON, the
|
|
|
|
/// following functions can be passed as an argument for `op_fn`:
|
|
|
|
/// * [json_op_sync()](fn.json_op_sync.html)
|
|
|
|
/// * [json_op_async()](fn.json_op_async.html)
|
2020-09-10 09:57:45 -04:00
|
|
|
pub fn register_op<F>(&mut self, name: &str, op_fn: F) -> OpId
|
|
|
|
where
|
|
|
|
F: Fn(Rc<RefCell<OpState>>, BufVec) -> Op + 'static,
|
|
|
|
{
|
2020-10-07 09:56:52 -04:00
|
|
|
Self::state(self.v8_isolate())
|
2020-09-10 09:57:45 -04:00
|
|
|
.borrow_mut()
|
|
|
|
.op_state
|
|
|
|
.borrow_mut()
|
|
|
|
.op_table
|
|
|
|
.register_op(name, op_fn)
|
|
|
|
}
|
|
|
|
|
2020-08-11 21:07:14 -04:00
|
|
|
/// Registers a callback on the isolate when the memory limits are approached.
|
|
|
|
/// Use this to prevent V8 from crashing the process when reaching the limit.
|
|
|
|
///
|
|
|
|
/// Calls the closure with the current heap limit and the initial heap limit.
|
|
|
|
/// The return value of the closure is set as the new limit.
|
|
|
|
pub fn add_near_heap_limit_callback<C>(&mut self, cb: C)
|
|
|
|
where
|
|
|
|
C: FnMut(usize, usize) -> usize + 'static,
|
|
|
|
{
|
|
|
|
let boxed_cb = Box::new(RefCell::new(cb));
|
|
|
|
let data = boxed_cb.as_ptr() as *mut c_void;
|
2020-08-12 00:08:50 -04:00
|
|
|
|
|
|
|
let prev = self
|
|
|
|
.allocations
|
|
|
|
.near_heap_limit_callback_data
|
|
|
|
.replace((boxed_cb, near_heap_limit_callback::<C>));
|
|
|
|
if let Some((_, prev_cb)) = prev {
|
|
|
|
self
|
2020-10-05 05:08:19 -04:00
|
|
|
.v8_isolate()
|
2020-08-12 00:08:50 -04:00
|
|
|
.remove_near_heap_limit_callback(prev_cb, 0);
|
|
|
|
}
|
|
|
|
|
2020-08-11 21:07:14 -04:00
|
|
|
self
|
2020-10-05 05:08:19 -04:00
|
|
|
.v8_isolate()
|
2020-08-11 21:07:14 -04:00
|
|
|
.add_near_heap_limit_callback(near_heap_limit_callback::<C>, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn remove_near_heap_limit_callback(&mut self, heap_limit: usize) {
|
|
|
|
if let Some((_, cb)) = self.allocations.near_heap_limit_callback_data.take()
|
|
|
|
{
|
|
|
|
self
|
2020-10-05 05:08:19 -04:00
|
|
|
.v8_isolate()
|
2020-08-11 21:07:14 -04:00
|
|
|
.remove_near_heap_limit_callback(cb, heap_limit);
|
|
|
|
}
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
/// Runs event loop to completion
|
|
|
|
///
|
|
|
|
/// This future resolves when:
|
|
|
|
/// - there are no more pending dynamic imports
|
|
|
|
/// - there are no more pending ops
|
|
|
|
pub async fn run_event_loop(&mut self) -> Result<(), AnyError> {
|
|
|
|
poll_fn(|cx| self.poll_event_loop(cx)).await
|
|
|
|
}
|
2019-06-12 13:53:24 -04:00
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
/// Runs a single tick of event loop
|
|
|
|
pub fn poll_event_loop(
|
|
|
|
&mut self,
|
|
|
|
cx: &mut Context,
|
|
|
|
) -> Poll<Result<(), AnyError>> {
|
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-05-29 17:41:39 -04:00
|
|
|
{
|
|
|
|
let state = state_rc.borrow();
|
|
|
|
state.waker.register(cx.waker());
|
|
|
|
}
|
2020-02-24 18:53:29 -05:00
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
// Ops
|
|
|
|
{
|
|
|
|
let overflow_response = self.poll_pending_ops(cx);
|
|
|
|
self.async_op_response(overflow_response)?;
|
|
|
|
self.drain_macrotasks()?;
|
|
|
|
self.check_promise_exceptions()?;
|
|
|
|
}
|
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
// Dynamic module loading - ie. modules loaded using "import()"
|
|
|
|
{
|
2020-10-11 07:20:40 -04:00
|
|
|
let poll_imports = self.prepare_dyn_imports(cx)?;
|
2020-09-06 10:50:49 -04:00
|
|
|
assert!(poll_imports.is_ready());
|
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
let poll_imports = self.poll_dyn_imports(cx)?;
|
2020-09-06 10:50:49 -04:00
|
|
|
assert!(poll_imports.is_ready());
|
2020-05-29 17:41:39 -04:00
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
self.evaluate_dyn_imports();
|
2019-03-14 19:17:52 -04:00
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
self.check_promise_exceptions()?;
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
// Top level module
|
2020-11-27 14:47:35 -05:00
|
|
|
self.evaluate_pending_module();
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
let state = state_rc.borrow();
|
2020-10-14 08:04:09 -04:00
|
|
|
let has_pending_ops = !state.pending_ops.is_empty();
|
|
|
|
|
|
|
|
let has_pending_dyn_imports = !{
|
|
|
|
state.preparing_dyn_imports.is_empty()
|
2020-10-05 05:08:19 -04:00
|
|
|
&& state.pending_dyn_imports.is_empty()
|
|
|
|
};
|
2020-10-14 08:04:09 -04:00
|
|
|
let has_pending_dyn_module_evaluation =
|
|
|
|
!state.pending_dyn_mod_evaluate.is_empty();
|
|
|
|
let has_pending_module_evaluation = state.pending_mod_evaluate.is_some();
|
|
|
|
|
|
|
|
if !has_pending_ops
|
|
|
|
&& !has_pending_dyn_imports
|
|
|
|
&& !has_pending_dyn_module_evaluation
|
|
|
|
&& !has_pending_module_evaluation
|
|
|
|
{
|
2020-10-05 05:08:19 -04:00
|
|
|
return Poll::Ready(Ok(()));
|
2020-05-29 17:41:39 -04:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
// Check if more async ops have been dispatched
|
|
|
|
// during this turn of event loop.
|
2021-02-23 07:08:50 -05:00
|
|
|
if state.have_unpolled_ops {
|
2020-10-05 05:08:19 -04:00
|
|
|
state.waker.wake();
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
2020-10-05 05:08:19 -04:00
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
if has_pending_module_evaluation {
|
|
|
|
if has_pending_ops
|
|
|
|
|| has_pending_dyn_imports
|
|
|
|
|| has_pending_dyn_module_evaluation
|
|
|
|
{
|
|
|
|
// pass, will be polled again
|
|
|
|
} else {
|
|
|
|
let msg = "Module evaluation is still pending but there are no pending ops or dynamic imports. This situation is often caused by unresolved promise.";
|
|
|
|
return Poll::Ready(Err(generic_error(msg)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if has_pending_dyn_module_evaluation {
|
|
|
|
if has_pending_ops || has_pending_dyn_imports {
|
|
|
|
// pass, will be polled again
|
|
|
|
} else {
|
|
|
|
let msg = "Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promise.";
|
|
|
|
return Poll::Ready(Err(generic_error(msg)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
Poll::Pending
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
extern "C" fn near_heap_limit_callback<F>(
|
|
|
|
data: *mut c_void,
|
|
|
|
current_heap_limit: usize,
|
|
|
|
initial_heap_limit: usize,
|
|
|
|
) -> usize
|
|
|
|
where
|
|
|
|
F: FnMut(usize, usize) -> usize,
|
|
|
|
{
|
|
|
|
let callback = unsafe { &mut *(data as *mut F) };
|
|
|
|
callback(current_heap_limit, initial_heap_limit)
|
|
|
|
}
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
impl JsRuntimeState {
|
2020-09-06 10:50:49 -04:00
|
|
|
// Called by V8 during `Isolate::mod_instantiate`.
|
|
|
|
pub fn dyn_import_cb(
|
|
|
|
&mut self,
|
|
|
|
resolver_handle: v8::Global<v8::PromiseResolver>,
|
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
) {
|
|
|
|
debug!("dyn_import specifier {} referrer {} ", specifier, referrer);
|
|
|
|
|
|
|
|
let load = RecursiveModuleLoad::dynamic_import(
|
2020-09-19 19:17:35 -04:00
|
|
|
self.op_state.clone(),
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier,
|
|
|
|
referrer,
|
|
|
|
self.loader.clone(),
|
|
|
|
);
|
|
|
|
self.dyn_import_map.insert(load.id, resolver_handle);
|
|
|
|
self.waker.wake();
|
|
|
|
let fut = load.prepare().boxed_local();
|
|
|
|
self.preparing_dyn_imports.push(fut);
|
|
|
|
}
|
2020-05-29 17:41:39 -04:00
|
|
|
}
|
|
|
|
|
2020-03-02 17:20:16 -05:00
|
|
|
pub(crate) fn exception_to_err_result<'s, T>(
|
2020-06-20 07:18:08 -04:00
|
|
|
scope: &mut v8::HandleScope<'s>,
|
2020-02-24 18:53:29 -05:00
|
|
|
exception: v8::Local<v8::Value>,
|
2020-10-25 23:34:00 -04:00
|
|
|
in_promise: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<T, AnyError> {
|
2020-12-28 10:36:44 -05:00
|
|
|
let is_terminating_exception = scope.is_execution_terminating();
|
2020-02-24 18:53:29 -05:00
|
|
|
let mut exception = exception;
|
|
|
|
|
|
|
|
if is_terminating_exception {
|
|
|
|
// TerminateExecution was called. Cancel exception termination so that the
|
|
|
|
// exception can be created..
|
2020-12-28 10:36:44 -05:00
|
|
|
scope.cancel_terminate_execution();
|
2020-02-24 18:53:29 -05:00
|
|
|
|
|
|
|
// Maybe make a new exception object.
|
|
|
|
if exception.is_null_or_undefined() {
|
2020-03-02 17:20:16 -05:00
|
|
|
let message = v8::String::new(scope, "execution terminated").unwrap();
|
|
|
|
exception = v8::Exception::error(scope, message);
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
}
|
2020-02-24 18:53:29 -05:00
|
|
|
|
2020-10-25 23:34:00 -04:00
|
|
|
let mut js_error = JsError::from_v8_exception(scope, exception);
|
|
|
|
if in_promise {
|
|
|
|
js_error.message = format!(
|
|
|
|
"Uncaught (in promise) {}",
|
|
|
|
js_error.message.trim_start_matches("Uncaught ")
|
|
|
|
);
|
|
|
|
}
|
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 state = state_rc.borrow();
|
|
|
|
let js_error = (state.js_error_create_fn)(js_error);
|
2020-02-24 18:53:29 -05:00
|
|
|
|
|
|
|
if is_terminating_exception {
|
|
|
|
// Re-enable exception termination.
|
2020-12-28 10:36:44 -05:00
|
|
|
scope.terminate_execution();
|
2020-02-24 18:53:29 -05:00
|
|
|
}
|
|
|
|
|
2020-02-29 19:24:36 -05:00
|
|
|
Err(js_error)
|
2020-02-24 18:53:29 -05:00
|
|
|
}
|
|
|
|
|
2020-09-06 10:50:49 -04:00
|
|
|
// Related to module loading
|
2020-09-06 15:44:29 -04:00
|
|
|
impl JsRuntime {
|
2020-09-06 10:50:49 -04:00
|
|
|
/// Low-level module creation.
|
|
|
|
///
|
|
|
|
/// Called during module loading or dynamic import loading.
|
|
|
|
fn mod_new(
|
|
|
|
&mut self,
|
|
|
|
main: bool,
|
|
|
|
name: &str,
|
|
|
|
source: &str,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleId, AnyError> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
let name_str = v8::String::new(scope, name).unwrap();
|
|
|
|
let source_str = v8::String::new(scope, source).unwrap();
|
|
|
|
|
|
|
|
let origin = bindings::module_origin(scope, name_str);
|
2021-03-10 15:16:43 -05:00
|
|
|
let source = v8::script_compiler::Source::new(source_str, Some(&origin));
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
|
|
|
|
|
|
|
let maybe_module = v8::script_compiler::compile_module(tc_scope, source);
|
|
|
|
|
|
|
|
if tc_scope.has_caught() {
|
|
|
|
assert!(maybe_module.is_none());
|
|
|
|
let e = tc_scope.exception().unwrap();
|
2020-10-25 23:34:00 -04:00
|
|
|
return exception_to_err_result(tc_scope, e, false);
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let module = maybe_module.unwrap();
|
|
|
|
|
|
|
|
let mut import_specifiers: Vec<ModuleSpecifier> = vec![];
|
2021-02-15 11:32:08 -05:00
|
|
|
let module_requests = module.get_module_requests();
|
|
|
|
for i in 0..module_requests.length() {
|
|
|
|
let module_request = v8::Local::<v8::ModuleRequest>::try_from(
|
|
|
|
module_requests.get(tc_scope, i).unwrap(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let import_specifier = module_request
|
|
|
|
.get_specifier()
|
|
|
|
.to_rust_string_lossy(tc_scope);
|
2020-09-06 10:50:49 -04:00
|
|
|
let state = state_rc.borrow();
|
2020-10-02 07:13:23 -04:00
|
|
|
let module_specifier = state.loader.resolve(
|
|
|
|
state.op_state.clone(),
|
|
|
|
&import_specifier,
|
|
|
|
name,
|
|
|
|
false,
|
|
|
|
)?;
|
2020-09-06 10:50:49 -04:00
|
|
|
import_specifiers.push(module_specifier);
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
let id = state_rc.borrow_mut().module_map.register(
|
2020-09-06 10:50:49 -04:00
|
|
|
name,
|
|
|
|
main,
|
|
|
|
v8::Global::<v8::Module>::new(tc_scope, module),
|
|
|
|
import_specifiers,
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Instantiates a ES module
|
|
|
|
///
|
2020-09-14 12:48:57 -04:00
|
|
|
/// `AnyError` can be downcast to a type that exposes additional information
|
|
|
|
/// about the V8 exception. By default this type is `JsError`, however it may
|
2020-09-14 21:23:48 -04:00
|
|
|
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
|
2021-02-23 09:22:55 -05:00
|
|
|
fn mod_instantiate(&mut self, id: ModuleId) -> Result<(), AnyError> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
let module = state_rc
|
|
|
|
.borrow()
|
|
|
|
.module_map
|
|
|
|
.get_handle(id)
|
|
|
|
.map(|handle| v8::Local::new(tc_scope, handle))
|
|
|
|
.expect("ModuleInfo not found");
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
if module.get_status() == v8::ModuleStatus::Errored {
|
|
|
|
let exception = module.get_exception();
|
|
|
|
exception_to_err_result(tc_scope, exception, false)
|
|
|
|
.map_err(|err| attach_handle_to_error(tc_scope, err, exception))
|
|
|
|
} else {
|
|
|
|
let instantiate_result =
|
|
|
|
module.instantiate_module(tc_scope, bindings::module_resolve_callback);
|
|
|
|
match instantiate_result {
|
|
|
|
Some(_) => Ok(()),
|
|
|
|
None => {
|
|
|
|
let exception = tc_scope.exception().unwrap();
|
|
|
|
exception_to_err_result(tc_scope, exception, false)
|
|
|
|
.map_err(|err| attach_handle_to_error(tc_scope, err, exception))
|
2021-02-20 16:50:13 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Evaluates an already instantiated ES module.
|
|
|
|
///
|
2020-09-14 12:48:57 -04:00
|
|
|
/// `AnyError` can be downcast to a type that exposes additional information
|
|
|
|
/// about the V8 exception. By default this type is `JsError`, however it may
|
2020-09-14 21:23:48 -04:00
|
|
|
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
|
2020-10-14 08:04:09 -04:00
|
|
|
pub fn dyn_mod_evaluate(
|
|
|
|
&mut self,
|
|
|
|
load_id: ModuleLoadId,
|
|
|
|
id: ModuleId,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
|
|
|
let context = self.global_context();
|
|
|
|
let context1 = self.global_context();
|
|
|
|
|
|
|
|
let module_handle = state_rc
|
|
|
|
.borrow()
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-11-21 10:23:35 -05:00
|
|
|
.get_handle(id)
|
|
|
|
.expect("ModuleInfo not found");
|
2020-10-14 08:04:09 -04:00
|
|
|
|
|
|
|
let status = {
|
|
|
|
let scope =
|
|
|
|
&mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
let module = module_handle.get(scope);
|
|
|
|
module.get_status()
|
|
|
|
};
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
// Since the same module might be dynamically imported more than once,
|
|
|
|
// we short-circuit is it is already evaluated.
|
|
|
|
if status == v8::ModuleStatus::Evaluated {
|
|
|
|
self.dyn_import_done(load_id, id);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
if status != v8::ModuleStatus::Instantiated {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
// IMPORTANT: Top-level-await is enabled, which means that return value
|
|
|
|
// of module evaluation is a promise.
|
|
|
|
//
|
|
|
|
// This promise is internal, and not the same one that gets returned to
|
|
|
|
// the user. We add an empty `.catch()` handler so that it does not result
|
|
|
|
// in an exception if it rejects. That will instead happen for the other
|
|
|
|
// promise if not handled by the user.
|
|
|
|
//
|
|
|
|
// For more details see:
|
|
|
|
// https://github.com/denoland/deno/issues/4908
|
|
|
|
// https://v8.dev/features/top-level-await#module-execution-order
|
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context1);
|
|
|
|
let module = v8::Local::new(scope, &module_handle);
|
|
|
|
let maybe_value = module.evaluate(scope);
|
|
|
|
|
|
|
|
// Update status after evaluating.
|
|
|
|
let status = module.get_status();
|
|
|
|
|
|
|
|
if let Some(value) = maybe_value {
|
|
|
|
assert!(
|
|
|
|
status == v8::ModuleStatus::Evaluated
|
|
|
|
|| status == v8::ModuleStatus::Errored
|
|
|
|
);
|
|
|
|
let promise = v8::Local::<v8::Promise>::try_from(value)
|
|
|
|
.expect("Expected to get promise as module evaluation result");
|
|
|
|
let empty_fn = |_scope: &mut v8::HandleScope,
|
|
|
|
_args: v8::FunctionCallbackArguments,
|
|
|
|
_rv: v8::ReturnValue| {};
|
|
|
|
let empty_fn = v8::FunctionTemplate::new(scope, empty_fn);
|
|
|
|
let empty_fn = empty_fn.get_function(scope).unwrap();
|
|
|
|
promise.catch(scope, empty_fn);
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
let promise_global = v8::Global::new(scope, promise);
|
|
|
|
let module_global = v8::Global::new(scope, module);
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
let dyn_import_mod_evaluate = DynImportModEvaluate {
|
|
|
|
module_id: id,
|
|
|
|
promise: promise_global,
|
|
|
|
module: module_global,
|
|
|
|
};
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
state
|
|
|
|
.pending_dyn_mod_evaluate
|
|
|
|
.insert(load_id, dyn_import_mod_evaluate);
|
|
|
|
} else {
|
|
|
|
assert!(status == v8::ModuleStatus::Errored);
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-03-04 07:19:47 -05:00
|
|
|
// TODO(bartlomieju): make it return `ModuleEvaluationFuture`?
|
2020-10-14 08:04:09 -04:00
|
|
|
/// Evaluates an already instantiated ES module.
|
|
|
|
///
|
2021-03-04 07:19:47 -05:00
|
|
|
/// Returns a receiver handle that resolves when module promise resolves.
|
|
|
|
/// Implementors must manually call `run_event_loop()` to drive module
|
|
|
|
/// evaluation future.
|
|
|
|
///
|
2020-10-14 08:04:09 -04:00
|
|
|
/// `AnyError` can be downcast to a type that exposes additional information
|
|
|
|
/// about the V8 exception. By default this type is `JsError`, however it may
|
|
|
|
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
|
2021-02-23 09:22:55 -05:00
|
|
|
///
|
|
|
|
/// This function panics if module has not been instantiated.
|
2021-03-04 07:19:47 -05:00
|
|
|
pub fn mod_evaluate(
|
2020-10-14 08:04:09 -04:00
|
|
|
&mut self,
|
|
|
|
id: ModuleId,
|
2020-11-27 14:47:35 -05:00
|
|
|
) -> mpsc::Receiver<Result<(), AnyError>> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
let module = state_rc
|
|
|
|
.borrow()
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-11-21 10:23:35 -05:00
|
|
|
.get_handle(id)
|
|
|
|
.map(|handle| v8::Local::new(scope, handle))
|
2020-09-06 10:50:49 -04:00
|
|
|
.expect("ModuleInfo not found");
|
|
|
|
let mut status = module.get_status();
|
2021-02-23 09:22:55 -05:00
|
|
|
assert_eq!(status, v8::ModuleStatus::Instantiated);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
let (sender, receiver) = mpsc::channel(1);
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
// IMPORTANT: Top-level-await is enabled, which means that return value
|
|
|
|
// of module evaluation is a promise.
|
|
|
|
//
|
|
|
|
// Because that promise is created internally by V8, when error occurs during
|
|
|
|
// module evaluation the promise is rejected, and since the promise has no rejection
|
|
|
|
// handler it will result in call to `bindings::promise_reject_callback` adding
|
|
|
|
// the promise to pending promise rejection table - meaning JsRuntime will return
|
|
|
|
// error on next poll().
|
|
|
|
//
|
|
|
|
// This situation is not desirable as we want to manually return error at the
|
|
|
|
// end of this function to handle it further. It means we need to manually
|
|
|
|
// remove this promise from pending promise rejection table.
|
|
|
|
//
|
|
|
|
// For more details see:
|
|
|
|
// https://github.com/denoland/deno/issues/4908
|
|
|
|
// https://v8.dev/features/top-level-await#module-execution-order
|
|
|
|
let maybe_value = module.evaluate(scope);
|
|
|
|
|
|
|
|
// Update status after evaluating.
|
|
|
|
status = module.get_status();
|
|
|
|
|
|
|
|
if let Some(value) = maybe_value {
|
|
|
|
assert!(
|
|
|
|
status == v8::ModuleStatus::Evaluated
|
|
|
|
|| status == v8::ModuleStatus::Errored
|
|
|
|
);
|
|
|
|
let promise = v8::Local::<v8::Promise>::try_from(value)
|
|
|
|
.expect("Expected to get promise as module evaluation result");
|
|
|
|
let promise_global = v8::Global::new(scope, promise);
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
state.pending_promise_exceptions.remove(&promise_global);
|
|
|
|
let promise_global = v8::Global::new(scope, promise);
|
|
|
|
assert!(
|
|
|
|
state.pending_mod_evaluate.is_none(),
|
|
|
|
"There is already pending top level module evaluation"
|
|
|
|
);
|
2020-10-14 08:04:09 -04:00
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
state.pending_mod_evaluate = Some(ModEvaluate {
|
|
|
|
promise: promise_global,
|
|
|
|
sender,
|
|
|
|
});
|
|
|
|
scope.perform_microtask_checkpoint();
|
|
|
|
} else {
|
|
|
|
assert!(status == v8::ModuleStatus::Errored);
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
receiver
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
fn dyn_import_error(&mut self, id: ModuleLoadId, err: AnyError) {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
let resolver_handle = state_rc
|
|
|
|
.borrow_mut()
|
|
|
|
.dyn_import_map
|
|
|
|
.remove(&id)
|
|
|
|
.expect("Invalid dyn import id");
|
|
|
|
let resolver = resolver_handle.get(scope);
|
|
|
|
|
|
|
|
let exception = err
|
|
|
|
.downcast_ref::<ErrWithV8Handle>()
|
|
|
|
.map(|err| err.get_handle(scope))
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
let message = err.to_string();
|
|
|
|
let message = v8::String::new(scope, &message).unwrap();
|
|
|
|
v8::Exception::type_error(scope, message)
|
|
|
|
});
|
|
|
|
|
|
|
|
resolver.reject(scope, exception).unwrap();
|
|
|
|
scope.perform_microtask_checkpoint();
|
|
|
|
}
|
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
fn dyn_import_done(&mut self, id: ModuleLoadId, mod_id: ModuleId) {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let context = self.global_context();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
debug!("dyn_import_done {} {:?}", id, mod_id);
|
2020-10-05 05:08:19 -04:00
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
let resolver_handle = state_rc
|
|
|
|
.borrow_mut()
|
|
|
|
.dyn_import_map
|
|
|
|
.remove(&id)
|
|
|
|
.expect("Invalid dyn import id");
|
|
|
|
let resolver = resolver_handle.get(scope);
|
|
|
|
|
|
|
|
let module = {
|
|
|
|
let state = state_rc.borrow();
|
|
|
|
state
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-11-21 10:23:35 -05:00
|
|
|
.get_handle(mod_id)
|
|
|
|
.map(|handle| v8::Local::new(scope, handle))
|
2020-09-06 10:50:49 -04:00
|
|
|
.expect("Dyn import module info not found")
|
|
|
|
};
|
|
|
|
// Resolution success
|
|
|
|
assert_eq!(module.get_status(), v8::ModuleStatus::Evaluated);
|
|
|
|
|
|
|
|
let module_namespace = module.get_module_namespace();
|
|
|
|
resolver.resolve(scope, module_namespace).unwrap();
|
|
|
|
scope.perform_microtask_checkpoint();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn prepare_dyn_imports(
|
|
|
|
&mut self,
|
|
|
|
cx: &mut Context,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Poll<Result<(), AnyError>> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-10-05 05:08:19 -04:00
|
|
|
if state_rc.borrow().preparing_dyn_imports.is_empty() {
|
|
|
|
return Poll::Ready(Ok(()));
|
|
|
|
}
|
|
|
|
|
2020-09-06 10:50:49 -04:00
|
|
|
loop {
|
|
|
|
let r = {
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
state.preparing_dyn_imports.poll_next_unpin(cx)
|
|
|
|
};
|
|
|
|
match r {
|
|
|
|
Poll::Pending | Poll::Ready(None) => {
|
|
|
|
// There are no active dynamic import loaders, or none are ready.
|
|
|
|
return Poll::Ready(Ok(()));
|
|
|
|
}
|
|
|
|
Poll::Ready(Some(prepare_poll)) => {
|
|
|
|
let dyn_import_id = prepare_poll.0;
|
|
|
|
let prepare_result = prepare_poll.1;
|
|
|
|
|
|
|
|
match prepare_result {
|
|
|
|
Ok(load) => {
|
|
|
|
let state = state_rc.borrow_mut();
|
|
|
|
state.pending_dyn_imports.push(load.into_future());
|
|
|
|
}
|
|
|
|
Err(err) => {
|
2020-11-27 14:47:35 -05:00
|
|
|
self.dyn_import_error(dyn_import_id, err);
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
fn poll_dyn_imports(
|
|
|
|
&mut self,
|
|
|
|
cx: &mut Context,
|
|
|
|
) -> Poll<Result<(), AnyError>> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
|
|
|
|
if state_rc.borrow().pending_dyn_imports.is_empty() {
|
|
|
|
return Poll::Ready(Ok(()));
|
|
|
|
}
|
|
|
|
|
2020-09-06 10:50:49 -04:00
|
|
|
loop {
|
|
|
|
let poll_result = {
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
state.pending_dyn_imports.poll_next_unpin(cx)
|
|
|
|
};
|
|
|
|
|
|
|
|
match poll_result {
|
|
|
|
Poll::Pending | Poll::Ready(None) => {
|
|
|
|
// There are no active dynamic import loaders, or none are ready.
|
|
|
|
return Poll::Ready(Ok(()));
|
|
|
|
}
|
|
|
|
Poll::Ready(Some(load_stream_poll)) => {
|
|
|
|
let maybe_result = load_stream_poll.0;
|
|
|
|
let mut load = load_stream_poll.1;
|
|
|
|
let dyn_import_id = load.id;
|
|
|
|
|
|
|
|
if let Some(load_stream_result) = maybe_result {
|
|
|
|
match load_stream_result {
|
|
|
|
Ok(info) => {
|
|
|
|
// A module (not necessarily the one dynamically imported) has been
|
|
|
|
// fetched. Create and register it, and if successful, poll for the
|
|
|
|
// next recursive-load event related to this dynamic import.
|
|
|
|
match self.register_during_load(info, &mut load) {
|
|
|
|
Ok(()) => {
|
|
|
|
// Keep importing until it's fully drained
|
|
|
|
let state = state_rc.borrow_mut();
|
|
|
|
state.pending_dyn_imports.push(load.into_future());
|
|
|
|
}
|
2020-11-27 14:47:35 -05:00
|
|
|
Err(err) => self.dyn_import_error(dyn_import_id, err),
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
// A non-javascript error occurred; this could be due to a an invalid
|
|
|
|
// module specifier, or a problem with the source map, or a failure
|
|
|
|
// to fetch the module source code.
|
2020-11-27 14:47:35 -05:00
|
|
|
self.dyn_import_error(dyn_import_id, err)
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The top-level module from a dynamic import has been instantiated.
|
|
|
|
// Load is done.
|
|
|
|
let module_id = load.root_module_id.unwrap();
|
2021-02-23 09:22:55 -05:00
|
|
|
let result = self.mod_instantiate(module_id);
|
|
|
|
if let Err(err) = result {
|
|
|
|
self.dyn_import_error(dyn_import_id, err);
|
|
|
|
}
|
2020-10-14 08:04:09 -04:00
|
|
|
self.dyn_mod_evaluate(dyn_import_id, module_id)?;
|
2020-10-06 04:18:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-14 08:04:09 -04:00
|
|
|
/// "deno_core" runs V8 with "--harmony-top-level-await"
|
|
|
|
/// flag on - it means that each module evaluation returns a promise
|
|
|
|
/// from V8.
|
|
|
|
///
|
|
|
|
/// This promise resolves after all dependent modules have also
|
|
|
|
/// resolved. Each dependent module may perform calls to "import()" and APIs
|
|
|
|
/// using async ops will add futures to the runtime's event loop.
|
|
|
|
/// It means that the promise returned from module evaluation will
|
|
|
|
/// resolve only after all futures in the event loop are done.
|
|
|
|
///
|
|
|
|
/// Thus during turn of event loop we need to check if V8 has
|
|
|
|
/// resolved or rejected the promise. If the promise is still pending
|
|
|
|
/// then another turn of event loop must be performed.
|
2020-11-27 14:47:35 -05:00
|
|
|
fn evaluate_pending_module(&mut self) {
|
2020-10-14 08:04:09 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
|
|
|
|
|
|
|
let context = self.global_context();
|
|
|
|
{
|
|
|
|
let scope =
|
|
|
|
&mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
|
|
|
|
if let Some(module_evaluation) = state.pending_mod_evaluate.as_ref() {
|
|
|
|
let promise = module_evaluation.promise.get(scope);
|
|
|
|
let mut sender = module_evaluation.sender.clone();
|
|
|
|
let promise_state = promise.state();
|
|
|
|
|
|
|
|
match promise_state {
|
|
|
|
v8::PromiseState::Pending => {
|
|
|
|
// pass, poll_event_loop will decide if
|
|
|
|
// runtime would be woken soon
|
|
|
|
}
|
|
|
|
v8::PromiseState::Fulfilled => {
|
|
|
|
state.pending_mod_evaluate.take();
|
|
|
|
scope.perform_microtask_checkpoint();
|
2021-03-04 07:19:47 -05:00
|
|
|
// Receiver end might have been already dropped, ignore the result
|
|
|
|
let _ = sender.try_send(Ok(()));
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
v8::PromiseState::Rejected => {
|
|
|
|
let exception = promise.result(scope);
|
|
|
|
state.pending_mod_evaluate.take();
|
|
|
|
drop(state);
|
|
|
|
scope.perform_microtask_checkpoint();
|
2020-10-25 23:34:00 -04:00
|
|
|
let err1 = exception_to_err_result::<()>(scope, exception, false)
|
2020-10-14 08:04:09 -04:00
|
|
|
.map_err(|err| attach_handle_to_error(scope, err, exception))
|
|
|
|
.unwrap_err();
|
2021-03-04 07:19:47 -05:00
|
|
|
// Receiver end might have been already dropped, ignore the result
|
|
|
|
let _ = sender.try_send(Err(err1));
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-11-27 14:47:35 -05:00
|
|
|
fn evaluate_dyn_imports(&mut self) {
|
2020-10-14 08:04:09 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let context = self.global_context();
|
|
|
|
let maybe_result = {
|
|
|
|
let scope =
|
|
|
|
&mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
if let Some(&dyn_import_id) =
|
|
|
|
state.pending_dyn_mod_evaluate.keys().next()
|
|
|
|
{
|
|
|
|
let handle = state
|
|
|
|
.pending_dyn_mod_evaluate
|
|
|
|
.remove(&dyn_import_id)
|
|
|
|
.unwrap();
|
|
|
|
drop(state);
|
|
|
|
|
|
|
|
let module_id = handle.module_id;
|
|
|
|
let promise = handle.promise.get(scope);
|
|
|
|
let _module = handle.module.get(scope);
|
|
|
|
|
|
|
|
let promise_state = promise.state();
|
|
|
|
|
|
|
|
match promise_state {
|
|
|
|
v8::PromiseState::Pending => {
|
|
|
|
state_rc
|
|
|
|
.borrow_mut()
|
|
|
|
.pending_dyn_mod_evaluate
|
|
|
|
.insert(dyn_import_id, handle);
|
|
|
|
None
|
|
|
|
}
|
|
|
|
v8::PromiseState::Fulfilled => Some(Ok((dyn_import_id, module_id))),
|
|
|
|
v8::PromiseState::Rejected => {
|
|
|
|
let exception = promise.result(scope);
|
2020-10-25 23:34:00 -04:00
|
|
|
let err1 = exception_to_err_result::<()>(scope, exception, false)
|
2020-10-14 08:04:09 -04:00
|
|
|
.map_err(|err| attach_handle_to_error(scope, err, exception))
|
|
|
|
.unwrap_err();
|
|
|
|
Some(Err((dyn_import_id, err1)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(result) = maybe_result {
|
|
|
|
match result {
|
|
|
|
Ok((dyn_import_id, module_id)) => {
|
2020-11-27 14:47:35 -05:00
|
|
|
self.dyn_import_done(dyn_import_id, module_id);
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
Err((dyn_import_id, err1)) => {
|
2020-11-27 14:47:35 -05:00
|
|
|
self.dyn_import_error(dyn_import_id, err1);
|
2020-10-14 08:04:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 10:50:49 -04:00
|
|
|
fn register_during_load(
|
|
|
|
&mut self,
|
|
|
|
info: ModuleSource,
|
|
|
|
load: &mut RecursiveModuleLoad,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
let ModuleSource {
|
|
|
|
code,
|
|
|
|
module_url_specified,
|
|
|
|
module_url_found,
|
|
|
|
} = info;
|
|
|
|
|
|
|
|
let is_main =
|
|
|
|
load.state == LoadState::LoadingRoot && !load.is_dynamic_import();
|
2021-02-17 13:47:18 -05:00
|
|
|
let referrer_specifier = crate::resolve_url(&module_url_found).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
// #A There are 3 cases to handle at this moment:
|
|
|
|
// 1. Source code resolved result have the same module name as requested
|
|
|
|
// and is not yet registered
|
|
|
|
// -> register
|
|
|
|
// 2. Source code resolved result have a different name as requested:
|
|
|
|
// 2a. The module with resolved module name has been registered
|
|
|
|
// -> alias
|
|
|
|
// 2b. The module with resolved module name has not yet been registered
|
|
|
|
// -> register & alias
|
|
|
|
|
|
|
|
// If necessary, register an alias.
|
|
|
|
if module_url_specified != module_url_found {
|
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
state
|
2021-02-23 09:22:55 -05:00
|
|
|
.module_map
|
2020-09-06 10:50:49 -04:00
|
|
|
.alias(&module_url_specified, &module_url_found);
|
|
|
|
}
|
|
|
|
|
|
|
|
let maybe_mod_id = {
|
|
|
|
let state = state_rc.borrow();
|
2021-02-23 09:22:55 -05:00
|
|
|
state.module_map.get_id(&module_url_found)
|
2020-09-06 10:50:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
let module_id = match maybe_mod_id {
|
|
|
|
Some(id) => {
|
|
|
|
// Module has already been registered.
|
|
|
|
debug!(
|
|
|
|
"Already-registered module fetched again: {}",
|
|
|
|
module_url_found
|
|
|
|
);
|
|
|
|
id
|
|
|
|
}
|
|
|
|
// Module not registered yet, do it now.
|
|
|
|
None => self.mod_new(is_main, &module_url_found, &code)?,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Now we must iterate over all imports of the module and load them.
|
|
|
|
let imports = {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
let state = state_rc.borrow();
|
2021-02-23 09:22:55 -05:00
|
|
|
state.module_map.get_children(module_id).unwrap().clone()
|
2020-09-06 10:50:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
for module_specifier in imports {
|
|
|
|
let is_registered = {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
let state = state_rc.borrow();
|
2021-02-23 09:22:55 -05:00
|
|
|
state.module_map.is_registered(&module_specifier)
|
2020-09-06 10:50:49 -04:00
|
|
|
};
|
|
|
|
if !is_registered {
|
|
|
|
load
|
|
|
|
.add_import(module_specifier.to_owned(), referrer_specifier.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we just finished loading the root module, store the root module id.
|
|
|
|
if load.state == LoadState::LoadingRoot {
|
|
|
|
load.root_module_id = Some(module_id);
|
|
|
|
load.state = LoadState::LoadingImports;
|
|
|
|
}
|
|
|
|
|
|
|
|
if load.pending.is_empty() {
|
|
|
|
load.state = LoadState::Done;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-12-05 09:43:46 -05:00
|
|
|
/// Asynchronously load specified module and all of its dependencies
|
2020-09-06 10:50:49 -04:00
|
|
|
///
|
2020-09-06 15:44:29 -04:00
|
|
|
/// User must call `JsRuntime::mod_evaluate` with returned `ModuleId`
|
2020-09-06 10:50:49 -04:00
|
|
|
/// manually after load is finished.
|
|
|
|
pub async fn load_module(
|
|
|
|
&mut self,
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
code: Option<String>,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleId, AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
let loader = {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
let state = state_rc.borrow();
|
|
|
|
state.loader.clone()
|
|
|
|
};
|
|
|
|
|
2020-09-19 19:17:35 -04:00
|
|
|
let load = RecursiveModuleLoad::main(
|
|
|
|
self.op_state(),
|
|
|
|
&specifier.to_string(),
|
|
|
|
code,
|
|
|
|
loader,
|
|
|
|
);
|
2020-09-06 10:50:49 -04:00
|
|
|
let (_load_id, prepare_result) = load.prepare().await;
|
|
|
|
|
|
|
|
let mut load = prepare_result?;
|
|
|
|
|
|
|
|
while let Some(info_result) = load.next().await {
|
|
|
|
let info = info_result?;
|
|
|
|
self.register_during_load(info, &mut load)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
let root_id = load.root_module_id.expect("Root module id empty");
|
2021-02-23 09:22:55 -05:00
|
|
|
self.mod_instantiate(root_id).map(|_| root_id)
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
2020-10-05 05:08:19 -04:00
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
fn poll_pending_ops(&mut self, cx: &mut Context) -> Vec<(OpId, Box<[u8]>)> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2021-02-23 07:08:50 -05:00
|
|
|
let mut overflow_response: Vec<(OpId, Box<[u8]>)> = Vec::new();
|
2020-10-05 05:08:19 -04:00
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
let mut state = state_rc.borrow_mut();
|
2020-10-05 05:08:19 -04:00
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
// Now handle actual ops.
|
|
|
|
state.have_unpolled_ops = false;
|
|
|
|
|
|
|
|
loop {
|
2020-10-05 05:08:19 -04:00
|
|
|
let pending_r = state.pending_ops.poll_next_unpin(cx);
|
|
|
|
match pending_r {
|
|
|
|
Poll::Ready(None) => break,
|
|
|
|
Poll::Pending => break,
|
|
|
|
Poll::Ready(Some((op_id, buf))) => {
|
|
|
|
let successful_push = state.shared.push(op_id, &buf);
|
|
|
|
if !successful_push {
|
2021-02-23 07:08:50 -05:00
|
|
|
overflow_response.push((op_id, buf));
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let unref_r = state.pending_unref_ops.poll_next_unpin(cx);
|
|
|
|
match unref_r {
|
|
|
|
Poll::Ready(None) => break,
|
|
|
|
Poll::Pending => break,
|
|
|
|
Poll::Ready(Some((op_id, buf))) => {
|
|
|
|
let successful_push = state.shared.push(op_id, &buf);
|
|
|
|
if !successful_push {
|
2021-02-23 07:08:50 -05:00
|
|
|
overflow_response.push((op_id, buf));
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
overflow_response
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_promise_exceptions(&mut self) -> Result<(), AnyError> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
let mut state = state_rc.borrow_mut();
|
|
|
|
|
|
|
|
if state.pending_promise_exceptions.is_empty() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2020-11-11 17:11:40 -05:00
|
|
|
let key = {
|
|
|
|
state
|
|
|
|
.pending_promise_exceptions
|
|
|
|
.keys()
|
|
|
|
.next()
|
|
|
|
.unwrap()
|
|
|
|
.clone()
|
|
|
|
};
|
2020-10-05 05:08:19 -04:00
|
|
|
let handle = state.pending_promise_exceptions.remove(&key).unwrap();
|
|
|
|
drop(state);
|
|
|
|
|
|
|
|
let context = self.global_context();
|
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
|
|
|
|
let exception = v8::Local::new(scope, handle);
|
2020-10-25 23:34:00 -04:00
|
|
|
exception_to_err_result(scope, exception, true)
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Respond using shared queue and optionally overflown response
|
|
|
|
fn async_op_response(
|
|
|
|
&mut self,
|
2021-02-23 07:08:50 -05:00
|
|
|
overflown_responses: Vec<(OpId, Box<[u8]>)>,
|
2020-10-05 05:08:19 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = Self::state(self.v8_isolate());
|
2020-10-05 05:08:19 -04:00
|
|
|
|
|
|
|
let shared_queue_size = state_rc.borrow().shared.size();
|
2021-02-23 07:08:50 -05:00
|
|
|
let overflown_responses_size = overflown_responses.len();
|
2020-10-05 05:08:19 -04:00
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
if shared_queue_size == 0 && overflown_responses_size == 0 {
|
2020-10-05 05:08:19 -04:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME(bartlomieju): without check above this call would panic
|
|
|
|
// because of lazy initialization in core.js. It seems this lazy initialization
|
|
|
|
// hides unnecessary complexity.
|
|
|
|
let js_recv_cb_handle = state_rc
|
|
|
|
.borrow()
|
|
|
|
.js_recv_cb
|
|
|
|
.clone()
|
|
|
|
.expect("Deno.core.recv has not been called.");
|
|
|
|
|
|
|
|
let context = self.global_context();
|
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
let context = scope.get_current_context();
|
|
|
|
let global: v8::Local<v8::Value> = context.global(scope).into();
|
|
|
|
let js_recv_cb = js_recv_cb_handle.get(scope);
|
|
|
|
|
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
let mut args: Vec<v8::Local<v8::Value>> =
|
|
|
|
Vec::with_capacity(2 * overflown_responses_size);
|
|
|
|
for overflown_response in overflown_responses {
|
|
|
|
let (op_id, buf) = overflown_response;
|
|
|
|
args.push(v8::Integer::new(tc_scope, op_id as i32).into());
|
|
|
|
args.push(bindings::boxed_slice_to_uint8array(tc_scope, buf).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
if shared_queue_size > 0 || overflown_responses_size > 0 {
|
|
|
|
js_recv_cb.call(tc_scope, global, args.as_slice());
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
match tc_scope.exception() {
|
2021-03-08 09:53:39 -05:00
|
|
|
None => {
|
|
|
|
// The other side should have shifted off all the messages.
|
|
|
|
let shared_queue_size = state_rc.borrow().shared.size();
|
|
|
|
assert_eq!(shared_queue_size, 0);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-10-25 23:34:00 -04:00
|
|
|
Some(exception) => exception_to_err_result(tc_scope, exception, false),
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn drain_macrotasks(&mut self) -> Result<(), AnyError> {
|
|
|
|
let js_macrotask_cb_handle =
|
2020-10-07 09:56:52 -04:00
|
|
|
match &Self::state(self.v8_isolate()).borrow().js_macrotask_cb {
|
2020-10-05 05:08:19 -04:00
|
|
|
Some(handle) => handle.clone(),
|
|
|
|
None => return Ok(()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let context = self.global_context();
|
|
|
|
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
|
|
|
|
let context = scope.get_current_context();
|
|
|
|
let global: v8::Local<v8::Value> = context.global(scope).into();
|
|
|
|
let js_macrotask_cb = js_macrotask_cb_handle.get(scope);
|
|
|
|
|
|
|
|
// Repeatedly invoke macrotask callback until it returns true (done),
|
|
|
|
// such that ready microtasks would be automatically run before
|
|
|
|
// next macrotask is processed.
|
|
|
|
let tc_scope = &mut v8::TryCatch::new(scope);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let is_done = js_macrotask_cb.call(tc_scope, global, &[]);
|
|
|
|
|
|
|
|
if let Some(exception) = tc_scope.exception() {
|
2020-10-25 23:34:00 -04:00
|
|
|
return exception_to_err_result(tc_scope, exception, false);
|
2020-10-05 05:08:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let is_done = is_done.unwrap();
|
|
|
|
if is_done.is_true() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-11 17:57:36 -04:00
|
|
|
#[cfg(test)]
|
2019-03-26 11:56:34 -04:00
|
|
|
pub mod tests {
|
2019-03-11 17:57:36 -04:00
|
|
|
use super::*;
|
2020-09-06 10:50:49 -04:00
|
|
|
use crate::modules::ModuleSourceFuture;
|
2020-09-05 20:34:02 -04:00
|
|
|
use crate::BufVec;
|
2019-04-14 21:58:27 -04:00
|
|
|
use futures::future::lazy;
|
2020-09-05 20:34:02 -04:00
|
|
|
use futures::FutureExt;
|
2020-09-06 10:50:49 -04:00
|
|
|
use std::io;
|
2019-04-14 21:58:27 -04:00
|
|
|
use std::ops::FnOnce;
|
2020-09-05 20:34:02 -04:00
|
|
|
use std::rc::Rc;
|
2019-03-25 17:43:31 -04:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2020-05-29 17:41:39 -04:00
|
|
|
use std::sync::Arc;
|
2019-03-14 19:17:52 -04:00
|
|
|
|
2019-11-16 19:17:47 -05:00
|
|
|
pub fn run_in_task<F>(f: F)
|
2019-04-14 21:58:27 -04:00
|
|
|
where
|
2019-11-16 19:17:47 -05:00
|
|
|
F: FnOnce(&mut Context) + Send + 'static,
|
2019-04-14 21:58:27 -04:00
|
|
|
{
|
2019-12-07 15:04:17 -05:00
|
|
|
futures::executor::block_on(lazy(move |cx| f(cx)));
|
2019-04-14 21:58:27 -04:00
|
|
|
}
|
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
fn poll_until_ready(
|
|
|
|
runtime: &mut JsRuntime,
|
|
|
|
max_poll_count: usize,
|
|
|
|
) -> Result<(), AnyError> {
|
2019-11-16 19:17:47 -05:00
|
|
|
let mut cx = Context::from_waker(futures::task::noop_waker_ref());
|
2019-04-14 21:58:27 -04:00
|
|
|
for _ in 0..max_poll_count {
|
2020-10-11 07:20:40 -04:00
|
|
|
match runtime.poll_event_loop(&mut cx) {
|
2019-11-16 19:17:47 -05:00
|
|
|
Poll::Pending => continue,
|
|
|
|
Poll::Ready(val) => return val,
|
2019-04-14 21:58:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!(
|
2020-09-06 15:44:29 -04:00
|
|
|
"JsRuntime still not ready after polling {} times.",
|
2019-04-14 21:58:27 -04:00
|
|
|
max_poll_count
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
enum Mode {
|
2019-12-07 15:04:17 -05:00
|
|
|
Async,
|
2020-01-21 12:01:10 -05:00
|
|
|
AsyncUnref,
|
2020-06-01 14:20:47 -04:00
|
|
|
AsyncZeroCopy(u8),
|
2019-03-14 19:17:52 -04:00
|
|
|
OverflowReqSync,
|
|
|
|
OverflowResSync,
|
|
|
|
OverflowReqAsync,
|
|
|
|
OverflowResAsync,
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
struct TestState {
|
2020-09-05 20:34:02 -04:00
|
|
|
mode: Mode,
|
|
|
|
dispatch_count: Arc<AtomicUsize>,
|
|
|
|
}
|
2019-10-02 13:05:48 -04:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
fn dispatch(op_state: Rc<RefCell<OpState>>, bufs: BufVec) -> Op {
|
|
|
|
let op_state_ = op_state.borrow();
|
|
|
|
let test_state = op_state_.borrow::<TestState>();
|
|
|
|
test_state.dispatch_count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
match test_state.mode {
|
|
|
|
Mode::Async => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 1);
|
|
|
|
assert_eq!(bufs[0][0], 42);
|
|
|
|
let buf = vec![43u8].into_boxed_slice();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
2020-09-10 09:57:45 -04:00
|
|
|
Mode::AsyncUnref => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 1);
|
|
|
|
assert_eq!(bufs[0][0], 42);
|
|
|
|
let fut = async {
|
|
|
|
// This future never finish.
|
|
|
|
futures::future::pending::<()>().await;
|
|
|
|
vec![43u8].into_boxed_slice()
|
|
|
|
};
|
|
|
|
Op::AsyncUnref(fut.boxed())
|
|
|
|
}
|
|
|
|
Mode::AsyncZeroCopy(count) => {
|
|
|
|
assert_eq!(bufs.len(), count as usize);
|
|
|
|
bufs.iter().enumerate().for_each(|(idx, buf)| {
|
|
|
|
assert_eq!(buf.len(), 1);
|
|
|
|
assert_eq!(idx, buf[0] as usize);
|
|
|
|
});
|
|
|
|
|
|
|
|
let buf = vec![43u8].into_boxed_slice();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
|
|
|
}
|
|
|
|
Mode::OverflowReqSync => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 100 * 1024 * 1024);
|
|
|
|
let buf = vec![43u8].into_boxed_slice();
|
|
|
|
Op::Sync(buf)
|
|
|
|
}
|
|
|
|
Mode::OverflowResSync => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 1);
|
|
|
|
assert_eq!(bufs[0][0], 42);
|
2020-11-12 17:17:31 -05:00
|
|
|
let mut vec = vec![0u8; 100 * 1024 * 1024];
|
2020-09-10 09:57:45 -04:00
|
|
|
vec[0] = 99;
|
|
|
|
let buf = vec.into_boxed_slice();
|
|
|
|
Op::Sync(buf)
|
|
|
|
}
|
|
|
|
Mode::OverflowReqAsync => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 100 * 1024 * 1024);
|
|
|
|
let buf = vec![43u8].into_boxed_slice();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
|
|
|
}
|
|
|
|
Mode::OverflowResAsync => {
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 1);
|
|
|
|
assert_eq!(bufs[0][0], 42);
|
2020-11-12 17:17:31 -05:00
|
|
|
let mut vec = vec![0u8; 100 * 1024 * 1024];
|
2020-09-10 09:57:45 -04:00
|
|
|
vec[0] = 4;
|
|
|
|
let buf = vec.into_boxed_slice();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
2020-04-19 23:54:46 -04:00
|
|
|
}
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
|
|
|
}
|
2019-10-02 13:05:48 -04:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
fn setup(mode: Mode) -> (JsRuntime, Arc<AtomicUsize>) {
|
2020-09-05 20:34:02 -04:00
|
|
|
let dispatch_count = Arc::new(AtomicUsize::new(0));
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(Default::default());
|
2020-09-10 09:57:45 -04:00
|
|
|
let op_state = runtime.op_state();
|
|
|
|
op_state.borrow_mut().put(TestState {
|
2020-09-05 20:34:02 -04:00
|
|
|
mode,
|
|
|
|
dispatch_count: dispatch_count.clone(),
|
|
|
|
});
|
2020-09-10 09:57:45 -04:00
|
|
|
|
|
|
|
runtime.register_op("test", dispatch);
|
2019-10-02 13:05:48 -04:00
|
|
|
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"setup.js",
|
|
|
|
r#"
|
2019-04-23 18:58:00 -04:00
|
|
|
function assert(cond) {
|
|
|
|
if (!cond) {
|
|
|
|
throw Error("assert");
|
|
|
|
}
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-04-23 18:58:00 -04:00
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
2020-09-06 15:44:29 -04:00
|
|
|
(runtime, dispatch_count)
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
|
|
|
#[test]
|
2019-03-30 14:45:36 -04:00
|
|
|
fn test_dispatch() {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::Async);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"filename.js",
|
|
|
|
r#"
|
2019-03-14 19:17:52 -04:00
|
|
|
let control = new Uint8Array([42]);
|
2019-10-02 13:05:48 -04:00
|
|
|
Deno.core.send(1, control);
|
2019-03-11 17:57:36 -04:00
|
|
|
async function main() {
|
2019-10-02 13:05:48 -04:00
|
|
|
Deno.core.send(1, control);
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
main();
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
2020-06-01 14:20:47 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_dispatch_no_zero_copy_buf() {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::AsyncZeroCopy(0));
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"filename.js",
|
|
|
|
r#"
|
2020-07-08 11:23:50 -04:00
|
|
|
Deno.core.send(1);
|
2020-06-01 14:20:47 -04:00
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-01 14:20:47 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-07-08 11:23:50 -04:00
|
|
|
fn test_dispatch_stack_zero_copy_bufs() {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::AsyncZeroCopy(2));
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"filename.js",
|
|
|
|
r#"
|
2020-07-08 11:23:50 -04:00
|
|
|
let zero_copy_a = new Uint8Array([0]);
|
|
|
|
let zero_copy_b = new Uint8Array([1]);
|
|
|
|
Deno.core.send(1, zero_copy_a, zero_copy_b);
|
2020-06-01 14:20:47 -04:00
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-01 14:20:47 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-07-08 11:23:50 -04:00
|
|
|
fn test_dispatch_heap_zero_copy_bufs() {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::AsyncZeroCopy(5));
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime.execute(
|
2020-06-01 14:20:47 -04:00
|
|
|
"filename.js",
|
|
|
|
r#"
|
|
|
|
let zero_copy_a = new Uint8Array([0]);
|
|
|
|
let zero_copy_b = new Uint8Array([1]);
|
2020-07-08 11:23:50 -04:00
|
|
|
let zero_copy_c = new Uint8Array([2]);
|
|
|
|
let zero_copy_d = new Uint8Array([3]);
|
|
|
|
let zero_copy_e = new Uint8Array([4]);
|
|
|
|
Deno.core.send(1, zero_copy_a, zero_copy_b, zero_copy_c, zero_copy_d, zero_copy_e);
|
2020-06-01 14:20:47 -04:00
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
).unwrap();
|
2020-06-01 14:20:47 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2019-10-14 17:46:27 -04:00
|
|
|
#[test]
|
|
|
|
fn test_poll_async_delayed_ops() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::Async);
|
2019-10-14 17:46:27 -04:00
|
|
|
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"setup2.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
let nrecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
2019-10-14 17:46:27 -04:00
|
|
|
nrecv++;
|
|
|
|
});
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-10-14 17:46:27 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"check1.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(nrecv == 0);
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
assert(nrecv == 0);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"check2.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(nrecv == 1);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
assert(nrecv == 1);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime.execute("check3.js", "assert(nrecv == 2)").unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2019-04-14 21:58:27 -04:00
|
|
|
// We are idle, so the next poll should be the last.
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2019-04-14 21:58:27 -04:00
|
|
|
});
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2020-01-21 12:01:10 -05:00
|
|
|
#[test]
|
|
|
|
fn test_poll_async_optional_ops() {
|
|
|
|
run_in_task(|cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::AsyncUnref);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"check1.js",
|
|
|
|
r#"
|
2020-01-21 12:01:10 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
|
|
|
// This handler will never be called
|
|
|
|
assert(false);
|
|
|
|
});
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-01-21 12:01:10 -05:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2020-09-06 15:44:29 -04:00
|
|
|
// The above op never finish, but runtime can finish
|
2020-01-21 12:01:10 -05:00
|
|
|
// because the op is an unreffed async op.
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2020-01-21 12:01:10 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-21 09:48:19 -04:00
|
|
|
#[test]
|
|
|
|
fn terminate_execution() {
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, _dispatch_count) = setup(Mode::Async);
|
2020-02-24 18:53:29 -05:00
|
|
|
// TODO(piscisaureus): in rusty_v8, the `thread_safe_handle()` method
|
|
|
|
// should not require a mutable reference to `struct rusty_v8::Isolate`.
|
2020-10-05 05:08:19 -04:00
|
|
|
let v8_isolate_handle = isolate.v8_isolate().thread_safe_handle();
|
2019-03-21 09:48:19 -04:00
|
|
|
|
2020-02-24 18:53:29 -05:00
|
|
|
let terminator_thread = std::thread::spawn(move || {
|
2019-03-21 09:48:19 -04:00
|
|
|
// allow deno to boot and run
|
|
|
|
std::thread::sleep(std::time::Duration::from_millis(100));
|
|
|
|
|
|
|
|
// terminate execution
|
2020-02-24 18:53:29 -05:00
|
|
|
let ok = v8_isolate_handle.terminate_execution();
|
2020-02-27 19:27:24 -05:00
|
|
|
assert!(ok);
|
2019-03-21 09:48:19 -04:00
|
|
|
});
|
|
|
|
|
2020-02-24 18:53:29 -05:00
|
|
|
// Rn an infinite loop, which should be terminated.
|
|
|
|
match isolate.execute("infinite_loop.js", "for(;;) {}") {
|
|
|
|
Ok(_) => panic!("execution should be terminated"),
|
|
|
|
Err(e) => {
|
2020-10-31 14:57:19 -04:00
|
|
|
assert_eq!(e.to_string(), "Uncaught Error: execution terminated")
|
2020-02-24 18:53:29 -05:00
|
|
|
}
|
|
|
|
};
|
2019-03-21 09:48:19 -04:00
|
|
|
|
2020-02-24 18:53:29 -05:00
|
|
|
// Cancel the execution-terminating exception in order to allow script
|
|
|
|
// execution again.
|
2020-12-28 10:36:44 -05:00
|
|
|
let ok = isolate.v8_isolate().cancel_terminate_execution();
|
2020-02-24 18:53:29 -05:00
|
|
|
assert!(ok);
|
|
|
|
|
|
|
|
// Verify that the isolate usable again.
|
|
|
|
isolate
|
|
|
|
.execute("simple.js", "1 + 1")
|
|
|
|
.expect("execution should be possible again");
|
2019-03-21 09:48:19 -04:00
|
|
|
|
2020-02-24 18:53:29 -05:00
|
|
|
terminator_thread.join().unwrap();
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dangling_shared_isolate() {
|
2020-02-24 18:53:29 -05:00
|
|
|
let v8_isolate_handle = {
|
2019-03-21 09:48:19 -04:00
|
|
|
// isolate is dropped at the end of this block
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, _dispatch_count) = setup(Mode::Async);
|
2020-02-24 18:53:29 -05:00
|
|
|
// TODO(piscisaureus): in rusty_v8, the `thread_safe_handle()` method
|
|
|
|
// should not require a mutable reference to `struct rusty_v8::Isolate`.
|
2020-10-05 05:08:19 -04:00
|
|
|
runtime.v8_isolate().thread_safe_handle()
|
2019-03-21 09:48:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// this should not SEGFAULT
|
2020-02-24 18:53:29 -05:00
|
|
|
v8_isolate_handle.terminate_execution();
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
|
2019-03-14 19:17:52 -04:00
|
|
|
#[test]
|
|
|
|
fn overflow_req_sync() {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::OverflowReqSync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_req_sync.js",
|
|
|
|
r#"
|
2019-03-14 19:17:52 -04:00
|
|
|
let asyncRecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => { asyncRecv++ });
|
2019-03-14 19:17:52 -04:00
|
|
|
// Large message that will overflow the shared space.
|
|
|
|
let control = new Uint8Array(100 * 1024 * 1024);
|
2019-10-02 13:05:48 -04:00
|
|
|
let response = Deno.core.dispatch(1, control);
|
2019-03-14 19:17:52 -04:00
|
|
|
assert(response instanceof Uint8Array);
|
2020-02-09 13:54:16 -05:00
|
|
|
assert(response.length == 1);
|
2019-03-14 19:17:52 -04:00
|
|
|
assert(response[0] == 43);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn overflow_res_sync() {
|
|
|
|
// TODO(ry) This test is quite slow due to memcpy-ing 100MB into JS. We
|
|
|
|
// should optimize this.
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::OverflowResSync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_res_sync.js",
|
|
|
|
r#"
|
2019-03-14 19:17:52 -04:00
|
|
|
let asyncRecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => { asyncRecv++ });
|
2019-03-14 19:17:52 -04:00
|
|
|
// Large message that will overflow the shared space.
|
|
|
|
let control = new Uint8Array([42]);
|
2019-10-02 13:05:48 -04:00
|
|
|
let response = Deno.core.dispatch(1, control);
|
2019-03-14 19:17:52 -04:00
|
|
|
assert(response instanceof Uint8Array);
|
|
|
|
assert(response.length == 100 * 1024 * 1024);
|
|
|
|
assert(response[0] == 99);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn overflow_req_async() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::OverflowReqAsync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_req_async.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
let asyncRecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
2020-02-09 13:54:16 -05:00
|
|
|
assert(buf.byteLength === 1);
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(buf[0] === 43);
|
|
|
|
asyncRecv++;
|
|
|
|
});
|
|
|
|
// Large message that will overflow the shared space.
|
|
|
|
let control = new Uint8Array(100 * 1024 * 1024);
|
|
|
|
let response = Deno.core.dispatch(1, control);
|
|
|
|
// Async messages always have null response.
|
|
|
|
assert(response == null);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute("check.js", "assert(asyncRecv == 1);")
|
|
|
|
.unwrap();
|
2019-04-14 21:58:27 -04:00
|
|
|
});
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
#[test]
|
|
|
|
fn overflow_res_async_combined_with_unref() {
|
|
|
|
run_in_task(|cx| {
|
|
|
|
let mut runtime = JsRuntime::new(Default::default());
|
|
|
|
|
|
|
|
runtime.register_op(
|
|
|
|
"test1",
|
|
|
|
|_op_state: Rc<RefCell<OpState>>, _bufs: BufVec| -> Op {
|
|
|
|
let mut vec = vec![0u8; 100 * 1024 * 1024];
|
|
|
|
vec[0] = 4;
|
|
|
|
let buf = vec.into_boxed_slice();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
runtime.register_op(
|
|
|
|
"test2",
|
|
|
|
|_op_state: Rc<RefCell<OpState>>, _bufs: BufVec| -> Op {
|
|
|
|
let mut vec = vec![0u8; 100 * 1024 * 1024];
|
|
|
|
vec[0] = 4;
|
|
|
|
let buf = vec.into_boxed_slice();
|
|
|
|
Op::AsyncUnref(futures::future::ready(buf).boxed())
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_res_async_combined_with_unref.js",
|
|
|
|
r#"
|
|
|
|
function assert(cond) {
|
|
|
|
if (!cond) {
|
|
|
|
throw Error("assert");
|
|
|
|
}
|
|
|
|
}
|
2021-03-04 07:19:47 -05:00
|
|
|
|
2021-02-23 07:08:50 -05:00
|
|
|
let asyncRecv = 0;
|
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
|
|
|
assert(buf.byteLength === 100 * 1024 * 1024);
|
|
|
|
assert(buf[0] === 4);
|
|
|
|
asyncRecv++;
|
|
|
|
});
|
|
|
|
Deno.core.setAsyncHandler(2, (buf) => {
|
|
|
|
assert(buf.byteLength === 100 * 1024 * 1024);
|
|
|
|
assert(buf[0] === 4);
|
|
|
|
asyncRecv++;
|
|
|
|
});
|
|
|
|
let control = new Uint8Array(1);
|
|
|
|
let response1 = Deno.core.dispatch(1, control);
|
|
|
|
// Async messages always have null response.
|
|
|
|
assert(response1 == null);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
let response2 = Deno.core.dispatch(2, control);
|
|
|
|
// Async messages always have null response.
|
|
|
|
assert(response2 == null);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
|
|
|
runtime
|
|
|
|
.execute("check.js", "assert(asyncRecv == 2);")
|
|
|
|
.unwrap();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-14 19:17:52 -04:00
|
|
|
#[test]
|
|
|
|
fn overflow_res_async() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|_cx| {
|
2019-04-14 21:58:27 -04:00
|
|
|
// TODO(ry) This test is quite slow due to memcpy-ing 100MB into JS. We
|
|
|
|
// should optimize this.
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::OverflowResAsync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_res_async.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
let asyncRecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(buf.byteLength === 100 * 1024 * 1024);
|
|
|
|
assert(buf[0] === 4);
|
|
|
|
asyncRecv++;
|
|
|
|
});
|
|
|
|
// Large message that will overflow the shared space.
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
let response = Deno.core.dispatch(1, control);
|
|
|
|
assert(response == null);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2020-09-06 15:44:29 -04:00
|
|
|
poll_until_ready(&mut runtime, 3).unwrap();
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute("check.js", "assert(asyncRecv == 1);")
|
|
|
|
.unwrap();
|
2019-04-14 21:58:27 -04:00
|
|
|
});
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
2019-03-24 11:07:10 -04:00
|
|
|
#[test]
|
2019-03-30 14:45:36 -04:00
|
|
|
fn overflow_res_multiple_dispatch_async() {
|
2019-03-24 11:07:10 -04:00
|
|
|
// TODO(ry) This test is quite slow due to memcpy-ing 100MB into JS. We
|
|
|
|
// should optimize this.
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|_cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, dispatch_count) = setup(Mode::OverflowResAsync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"overflow_res_multiple_dispatch_async.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
let asyncRecv = 0;
|
2020-01-17 08:26:11 -05:00
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(buf.byteLength === 100 * 1024 * 1024);
|
|
|
|
assert(buf[0] === 4);
|
|
|
|
asyncRecv++;
|
|
|
|
});
|
|
|
|
// Large message that will overflow the shared space.
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
let response = Deno.core.dispatch(1, control);
|
|
|
|
assert(response == null);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
// Dispatch another message to verify that pending ops
|
|
|
|
// are done even if shared space overflows
|
|
|
|
Deno.core.dispatch(1, control);
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2020-09-06 15:44:29 -04:00
|
|
|
poll_until_ready(&mut runtime, 3).unwrap();
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute("check.js", "assert(asyncRecv == 2);")
|
|
|
|
.unwrap();
|
2019-04-14 21:58:27 -04:00
|
|
|
});
|
2019-03-24 11:07:10 -04:00
|
|
|
}
|
|
|
|
|
2021-03-08 09:53:39 -05:00
|
|
|
#[test]
|
|
|
|
fn shared_queue_not_empty_when_js_error() {
|
|
|
|
run_in_task(|_cx| {
|
|
|
|
let dispatch_count = Arc::new(AtomicUsize::new(0));
|
|
|
|
let mut runtime = JsRuntime::new(Default::default());
|
|
|
|
let op_state = runtime.op_state();
|
|
|
|
op_state.borrow_mut().put(TestState {
|
|
|
|
mode: Mode::Async,
|
|
|
|
dispatch_count: dispatch_count.clone(),
|
|
|
|
});
|
|
|
|
|
|
|
|
runtime.register_op("test", dispatch);
|
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"shared_queue_not_empty_when_js_error.js",
|
|
|
|
r#"
|
|
|
|
const assert = (cond) => {if (!cond) throw Error("assert")};
|
|
|
|
let asyncRecv = 0;
|
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
|
|
|
asyncRecv++;
|
|
|
|
throw Error('x');
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.core.dispatch(1, new Uint8Array([42]));
|
|
|
|
Deno.core.dispatch(1, new Uint8Array([42]));
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
|
|
|
if poll_until_ready(&mut runtime, 3).is_ok() {
|
|
|
|
panic!("Thrown error was not detected!")
|
|
|
|
}
|
|
|
|
runtime
|
|
|
|
.execute("check.js", "assert(asyncRecv == 1);")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let state_rc = JsRuntime::state(runtime.v8_isolate());
|
|
|
|
let shared_queue_size = state_rc.borrow().shared.size();
|
|
|
|
assert_eq!(shared_queue_size, 1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-22 10:49:58 -04:00
|
|
|
#[test]
|
|
|
|
fn test_pre_dispatch() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|mut cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, _dispatch_count) = setup(Mode::OverflowResAsync);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"bad_op_id.js",
|
|
|
|
r#"
|
2019-10-22 10:49:58 -04:00
|
|
|
let thrown;
|
|
|
|
try {
|
2020-07-08 11:23:50 -04:00
|
|
|
Deno.core.dispatch(100);
|
2019-10-22 10:49:58 -04:00
|
|
|
} catch (e) {
|
|
|
|
thrown = e;
|
|
|
|
}
|
2020-01-25 08:31:42 -05:00
|
|
|
assert(String(thrown) === "TypeError: Unknown op id: 100");
|
2019-10-22 10:49:58 -04:00
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-10-11 07:20:40 -04:00
|
|
|
if let Poll::Ready(Err(_)) = runtime.poll_event_loop(&mut cx) {
|
2019-11-16 19:17:47 -05:00
|
|
|
unreachable!();
|
|
|
|
}
|
2019-10-22 10:49:58 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-14 19:17:52 -04:00
|
|
|
#[test]
|
2020-05-12 11:09:28 -04:00
|
|
|
fn core_test_js() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|mut cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, _dispatch_count) = setup(Mode::Async);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute("core_test.js", include_str!("core_test.js"))
|
|
|
|
.unwrap();
|
2020-10-11 07:20:40 -04:00
|
|
|
if let Poll::Ready(Err(_)) = runtime.poll_event_loop(&mut cx) {
|
2019-11-16 19:17:47 -05:00
|
|
|
unreachable!();
|
|
|
|
}
|
2019-04-14 21:58:27 -04:00
|
|
|
});
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-04-24 21:43:06 -04:00
|
|
|
|
2020-04-16 06:58:17 -04:00
|
|
|
#[test]
|
|
|
|
fn syntax_error() {
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(Default::default());
|
2020-04-16 06:58:17 -04:00
|
|
|
let src = "hocuspocus(";
|
2020-09-06 15:44:29 -04:00
|
|
|
let r = runtime.execute("i.js", src);
|
2020-04-16 06:58:17 -04:00
|
|
|
let e = r.unwrap_err();
|
2020-09-06 15:44:29 -04:00
|
|
|
let js_error = e.downcast::<JsError>().unwrap();
|
2020-04-16 06:58:17 -04:00
|
|
|
assert_eq!(js_error.end_column, Some(11));
|
|
|
|
}
|
|
|
|
|
2020-03-15 10:31:55 -04:00
|
|
|
#[test]
|
|
|
|
fn test_encode_decode() {
|
|
|
|
run_in_task(|mut cx| {
|
2020-09-06 15:44:29 -04:00
|
|
|
let (mut runtime, _dispatch_count) = setup(Mode::Async);
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"encode_decode_test.js",
|
|
|
|
include_str!("encode_decode_test.js"),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-10-11 07:20:40 -04:00
|
|
|
if let Poll::Ready(Err(_)) = runtime.poll_event_loop(&mut cx) {
|
2020-03-15 10:31:55 -04:00
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-16 08:20:21 -05:00
|
|
|
#[test]
|
|
|
|
fn test_serialize_deserialize() {
|
|
|
|
run_in_task(|mut cx| {
|
|
|
|
let (mut runtime, _dispatch_count) = setup(Mode::Async);
|
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"serialize_deserialize_test.js",
|
|
|
|
include_str!("serialize_deserialize_test.js"),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
if let Poll::Ready(Err(_)) = runtime.poll_event_loop(&mut cx) {
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-24 21:43:06 -04:00
|
|
|
#[test]
|
|
|
|
fn will_snapshot() {
|
|
|
|
let snapshot = {
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
will_snapshot: true,
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime.execute("a.js", "a = 1 + 2").unwrap();
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.snapshot()
|
2019-04-24 21:43:06 -04:00
|
|
|
};
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
let snapshot = Snapshot::JustCreated(snapshot);
|
|
|
|
let mut runtime2 = JsRuntime::new(RuntimeOptions {
|
|
|
|
startup_snapshot: Some(snapshot),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime2
|
|
|
|
.execute("check.js", "if (a != 3) throw Error('x')")
|
|
|
|
.unwrap();
|
2019-04-24 21:43:06 -04:00
|
|
|
}
|
2020-05-09 21:00:40 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from_boxed_snapshot() {
|
|
|
|
let snapshot = {
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
will_snapshot: true,
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime.execute("a.js", "a = 1 + 2").unwrap();
|
2020-09-06 15:44:29 -04:00
|
|
|
let snap: &[u8] = &*runtime.snapshot();
|
2020-05-09 21:00:40 -04:00
|
|
|
Vec::from(snap).into_boxed_slice()
|
|
|
|
};
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
let snapshot = Snapshot::Boxed(snapshot);
|
|
|
|
let mut runtime2 = JsRuntime::new(RuntimeOptions {
|
|
|
|
startup_snapshot: Some(snapshot),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime2
|
|
|
|
.execute("check.js", "if (a != 3) throw Error('x')")
|
|
|
|
.unwrap();
|
2020-05-09 21:00:40 -04:00
|
|
|
}
|
2020-08-11 21:07:14 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_heap_limits() {
|
2020-10-17 05:56:15 -04:00
|
|
|
let create_params = v8::Isolate::create_params().heap_limits(0, 20 * 1024);
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
2020-10-17 05:56:15 -04:00
|
|
|
create_params: Some(create_params),
|
2020-09-11 09:18:49 -04:00
|
|
|
..Default::default()
|
|
|
|
});
|
2020-10-07 09:56:52 -04:00
|
|
|
let cb_handle = runtime.v8_isolate().thread_safe_handle();
|
2020-08-11 21:07:14 -04:00
|
|
|
|
|
|
|
let callback_invoke_count = Rc::new(AtomicUsize::default());
|
|
|
|
let inner_invoke_count = Rc::clone(&callback_invoke_count);
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.add_near_heap_limit_callback(
|
2020-08-11 21:07:14 -04:00
|
|
|
move |current_limit, _initial_limit| {
|
|
|
|
inner_invoke_count.fetch_add(1, Ordering::SeqCst);
|
|
|
|
cb_handle.terminate_execution();
|
|
|
|
current_limit * 2
|
|
|
|
},
|
|
|
|
);
|
2020-09-06 15:44:29 -04:00
|
|
|
let err = runtime
|
2020-08-11 21:07:14 -04:00
|
|
|
.execute(
|
|
|
|
"script name",
|
|
|
|
r#"let s = ""; while(true) { s += "Hello"; }"#,
|
|
|
|
)
|
|
|
|
.expect_err("script should fail");
|
|
|
|
assert_eq!(
|
|
|
|
"Uncaught Error: execution terminated",
|
2020-09-06 15:44:29 -04:00
|
|
|
err.downcast::<JsError>().unwrap().message
|
2020-08-11 21:07:14 -04:00
|
|
|
);
|
|
|
|
assert!(callback_invoke_count.load(Ordering::SeqCst) > 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_heap_limit_cb_remove() {
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(Default::default());
|
2020-08-11 21:07:14 -04:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.add_near_heap_limit_callback(|current_limit, _initial_limit| {
|
2020-08-11 21:07:14 -04:00
|
|
|
current_limit * 2
|
|
|
|
});
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.remove_near_heap_limit_callback(20 * 1024);
|
|
|
|
assert!(runtime.allocations.near_heap_limit_callback_data.is_none());
|
2020-08-11 21:07:14 -04:00
|
|
|
}
|
2020-08-12 00:08:50 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_heap_limit_cb_multiple() {
|
2020-10-17 05:56:15 -04:00
|
|
|
let create_params = v8::Isolate::create_params().heap_limits(0, 20 * 1024);
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
2020-10-17 05:56:15 -04:00
|
|
|
create_params: Some(create_params),
|
2020-09-11 09:18:49 -04:00
|
|
|
..Default::default()
|
|
|
|
});
|
2020-10-07 09:56:52 -04:00
|
|
|
let cb_handle = runtime.v8_isolate().thread_safe_handle();
|
2020-08-12 00:08:50 -04:00
|
|
|
|
|
|
|
let callback_invoke_count_first = Rc::new(AtomicUsize::default());
|
|
|
|
let inner_invoke_count_first = Rc::clone(&callback_invoke_count_first);
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.add_near_heap_limit_callback(
|
2020-08-12 00:08:50 -04:00
|
|
|
move |current_limit, _initial_limit| {
|
|
|
|
inner_invoke_count_first.fetch_add(1, Ordering::SeqCst);
|
|
|
|
current_limit * 2
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
let callback_invoke_count_second = Rc::new(AtomicUsize::default());
|
|
|
|
let inner_invoke_count_second = Rc::clone(&callback_invoke_count_second);
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.add_near_heap_limit_callback(
|
2020-08-12 00:08:50 -04:00
|
|
|
move |current_limit, _initial_limit| {
|
|
|
|
inner_invoke_count_second.fetch_add(1, Ordering::SeqCst);
|
|
|
|
cb_handle.terminate_execution();
|
|
|
|
current_limit * 2
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
let err = runtime
|
2020-08-12 00:08:50 -04:00
|
|
|
.execute(
|
|
|
|
"script name",
|
|
|
|
r#"let s = ""; while(true) { s += "Hello"; }"#,
|
|
|
|
)
|
|
|
|
.expect_err("script should fail");
|
|
|
|
assert_eq!(
|
|
|
|
"Uncaught Error: execution terminated",
|
2020-09-06 15:44:29 -04:00
|
|
|
err.downcast::<JsError>().unwrap().message
|
2020-08-12 00:08:50 -04:00
|
|
|
);
|
|
|
|
assert_eq!(0, callback_invoke_count_first.load(Ordering::SeqCst));
|
|
|
|
assert!(callback_invoke_count_second.load(Ordering::SeqCst) > 0);
|
|
|
|
}
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_mods() {
|
|
|
|
#[derive(Default)]
|
|
|
|
struct ModsLoader {
|
|
|
|
pub count: Arc<AtomicUsize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModuleLoader for ModsLoader {
|
|
|
|
fn resolve(
|
|
|
|
&self,
|
2020-10-02 07:13:23 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
_is_main: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleSpecifier, AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
self.count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
assert_eq!(specifier, "./b.js");
|
|
|
|
assert_eq!(referrer, "file:///a.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let s = crate::resolve_import(specifier, referrer).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
Ok(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load(
|
|
|
|
&self,
|
2020-09-19 19:17:35 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
_module_specifier: &ModuleSpecifier,
|
|
|
|
_maybe_referrer: Option<ModuleSpecifier>,
|
|
|
|
_is_dyn_import: bool,
|
|
|
|
) -> Pin<Box<ModuleSourceFuture>> {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let loader = Rc::new(ModsLoader::default());
|
|
|
|
|
|
|
|
let resolve_count = loader.count.clone();
|
|
|
|
let dispatch_count = Arc::new(AtomicUsize::new(0));
|
|
|
|
let dispatch_count_ = dispatch_count.clone();
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
let dispatcher = move |_state: Rc<RefCell<OpState>>, bufs: BufVec| -> Op {
|
2020-09-06 10:50:49 -04:00
|
|
|
dispatch_count_.fetch_add(1, Ordering::Relaxed);
|
|
|
|
assert_eq!(bufs.len(), 1);
|
|
|
|
assert_eq!(bufs[0].len(), 1);
|
|
|
|
assert_eq!(bufs[0][0], 42);
|
|
|
|
let buf = [43u8, 0, 0, 0][..].into();
|
|
|
|
Op::Async(futures::future::ready(buf).boxed())
|
|
|
|
};
|
|
|
|
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
module_loader: Some(loader),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-10 09:57:45 -04:00
|
|
|
runtime.register_op("test", dispatcher);
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"setup.js",
|
|
|
|
r#"
|
2020-09-06 10:50:49 -04:00
|
|
|
function assert(cond) {
|
|
|
|
if (!cond) {
|
|
|
|
throw Error("assert");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
|
|
|
|
let specifier_a = "file:///a.js".to_string();
|
2020-09-06 15:44:29 -04:00
|
|
|
let mod_a = runtime
|
2020-09-06 10:50:49 -04:00
|
|
|
.mod_new(
|
|
|
|
true,
|
|
|
|
&specifier_a,
|
|
|
|
r#"
|
|
|
|
import { b } from './b.js'
|
|
|
|
if (b() != 'b') throw Error();
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
|
2020-10-07 09:56:52 -04:00
|
|
|
let state_rc = JsRuntime::state(runtime.v8_isolate());
|
2020-09-06 10:50:49 -04:00
|
|
|
{
|
|
|
|
let state = state_rc.borrow();
|
2021-02-23 09:22:55 -05:00
|
|
|
let imports = state.module_map.get_children(mod_a);
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(
|
|
|
|
imports,
|
2021-02-17 13:47:18 -05:00
|
|
|
Some(&vec![crate::resolve_url("file:///b.js").unwrap()])
|
2020-09-06 10:50:49 -04:00
|
|
|
);
|
|
|
|
}
|
2020-09-06 15:44:29 -04:00
|
|
|
let mod_b = runtime
|
2020-09-06 10:50:49 -04:00
|
|
|
.mod_new(false, "file:///b.js", "export function b() { return 'b' }")
|
|
|
|
.unwrap();
|
|
|
|
{
|
|
|
|
let state = state_rc.borrow();
|
2021-02-23 09:22:55 -05:00
|
|
|
let imports = state.module_map.get_children(mod_b).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(imports.len(), 0);
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
runtime.mod_instantiate(mod_b).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
assert_eq!(resolve_count.load(Ordering::SeqCst), 1);
|
|
|
|
|
2021-02-23 09:22:55 -05:00
|
|
|
runtime.mod_instantiate(mod_a).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
|
2021-03-04 07:19:47 -05:00
|
|
|
runtime.mod_evaluate(mod_a);
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dyn_import_err() {
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
struct DynImportErrLoader {
|
|
|
|
pub count: Arc<AtomicUsize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModuleLoader for DynImportErrLoader {
|
|
|
|
fn resolve(
|
|
|
|
&self,
|
2020-10-02 07:13:23 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
_is_main: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleSpecifier, AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
self.count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
assert_eq!(specifier, "/foo.js");
|
|
|
|
assert_eq!(referrer, "file:///dyn_import2.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let s = crate::resolve_import(specifier, referrer).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
Ok(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load(
|
|
|
|
&self,
|
2020-09-19 19:17:35 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
_module_specifier: &ModuleSpecifier,
|
|
|
|
_maybe_referrer: Option<ModuleSpecifier>,
|
|
|
|
_is_dyn_import: bool,
|
|
|
|
) -> Pin<Box<ModuleSourceFuture>> {
|
|
|
|
async { Err(io::Error::from(io::ErrorKind::NotFound).into()) }.boxed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test an erroneous dynamic import where the specified module isn't found.
|
|
|
|
run_in_task(|cx| {
|
|
|
|
let loader = Rc::new(DynImportErrLoader::default());
|
|
|
|
let count = loader.count.clone();
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
module_loader: Some(loader),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"file:///dyn_import2.js",
|
|
|
|
r#"
|
2020-09-06 10:50:49 -04:00
|
|
|
(async () => {
|
|
|
|
await import("/foo.js");
|
|
|
|
})();
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
assert_eq!(count.load(Ordering::Relaxed), 0);
|
|
|
|
// We should get an error here.
|
2020-10-11 07:20:40 -04:00
|
|
|
let result = runtime.poll_event_loop(cx);
|
2020-09-06 10:50:49 -04:00
|
|
|
if let Poll::Ready(Ok(_)) = result {
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
assert_eq!(count.load(Ordering::Relaxed), 2);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
struct DynImportOkLoader {
|
|
|
|
pub prepare_load_count: Arc<AtomicUsize>,
|
|
|
|
pub resolve_count: Arc<AtomicUsize>,
|
|
|
|
pub load_count: Arc<AtomicUsize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModuleLoader for DynImportOkLoader {
|
|
|
|
fn resolve(
|
|
|
|
&self,
|
2020-10-02 07:13:23 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
_is_main: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleSpecifier, AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
let c = self.resolve_count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
assert!(c < 4);
|
|
|
|
assert_eq!(specifier, "./b.js");
|
|
|
|
assert_eq!(referrer, "file:///dyn_import3.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let s = crate::resolve_import(specifier, referrer).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
Ok(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load(
|
|
|
|
&self,
|
2020-09-19 19:17:35 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
_maybe_referrer: Option<ModuleSpecifier>,
|
|
|
|
_is_dyn_import: bool,
|
|
|
|
) -> Pin<Box<ModuleSourceFuture>> {
|
|
|
|
self.load_count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
let info = ModuleSource {
|
|
|
|
module_url_specified: specifier.to_string(),
|
|
|
|
module_url_found: specifier.to_string(),
|
|
|
|
code: "export function b() { return 'b' }".to_owned(),
|
|
|
|
};
|
|
|
|
async move { Ok(info) }.boxed()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn prepare_load(
|
|
|
|
&self,
|
2020-09-19 19:17:35 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
_load_id: ModuleLoadId,
|
|
|
|
_module_specifier: &ModuleSpecifier,
|
|
|
|
_maybe_referrer: Option<String>,
|
|
|
|
_is_dyn_import: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Pin<Box<dyn Future<Output = Result<(), AnyError>>>> {
|
2020-09-06 10:50:49 -04:00
|
|
|
self.prepare_load_count.fetch_add(1, Ordering::Relaxed);
|
|
|
|
async { Ok(()) }.boxed_local()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dyn_import_ok() {
|
|
|
|
run_in_task(|cx| {
|
|
|
|
let loader = Rc::new(DynImportOkLoader::default());
|
|
|
|
let prepare_load_count = loader.prepare_load_count.clone();
|
|
|
|
let resolve_count = loader.resolve_count.clone();
|
|
|
|
let load_count = loader.load_count.clone();
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
module_loader: Some(loader),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
// Dynamically import mod_b
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"file:///dyn_import3.js",
|
|
|
|
r#"
|
2020-09-06 10:50:49 -04:00
|
|
|
(async () => {
|
|
|
|
let mod = await import("./b.js");
|
|
|
|
if (mod.b() !== 'b') {
|
|
|
|
throw Error("bad1");
|
|
|
|
}
|
|
|
|
// And again!
|
|
|
|
mod = await import("./b.js");
|
|
|
|
if (mod.b() !== 'b') {
|
|
|
|
throw Error("bad2");
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
|
|
|
// First poll runs `prepare_load` hook.
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Pending));
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(prepare_load_count.load(Ordering::Relaxed), 1);
|
|
|
|
|
|
|
|
// Second poll actually loads modules into the isolate.
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(resolve_count.load(Ordering::Relaxed), 4);
|
|
|
|
assert_eq!(load_count.load(Ordering::Relaxed), 2);
|
2020-10-11 07:20:40 -04:00
|
|
|
assert!(matches!(runtime.poll_event_loop(cx), Poll::Ready(Ok(_))));
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(resolve_count.load(Ordering::Relaxed), 4);
|
|
|
|
assert_eq!(load_count.load(Ordering::Relaxed), 2);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dyn_import_borrow_mut_error() {
|
|
|
|
// https://github.com/denoland/deno/issues/6054
|
|
|
|
run_in_task(|cx| {
|
|
|
|
let loader = Rc::new(DynImportOkLoader::default());
|
|
|
|
let prepare_load_count = loader.prepare_load_count.clone();
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
module_loader: Some(loader),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-22 17:30:03 -04:00
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"file:///dyn_import3.js",
|
|
|
|
r#"
|
2020-09-06 10:50:49 -04:00
|
|
|
(async () => {
|
|
|
|
let mod = await import("./b.js");
|
|
|
|
if (mod.b() !== 'b') {
|
|
|
|
throw Error("bad");
|
|
|
|
}
|
|
|
|
// Now do any op
|
|
|
|
Deno.core.ops();
|
|
|
|
})();
|
|
|
|
"#,
|
2020-09-22 17:30:03 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
// First poll runs `prepare_load` hook.
|
2020-10-11 07:20:40 -04:00
|
|
|
let _ = runtime.poll_event_loop(cx);
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(prepare_load_count.load(Ordering::Relaxed), 1);
|
|
|
|
// Second poll triggers error
|
2020-10-11 07:20:40 -04:00
|
|
|
let _ = runtime.poll_event_loop(cx);
|
2020-09-06 10:50:49 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn es_snapshot() {
|
|
|
|
#[derive(Default)]
|
|
|
|
struct ModsLoader;
|
|
|
|
|
|
|
|
impl ModuleLoader for ModsLoader {
|
|
|
|
fn resolve(
|
|
|
|
&self,
|
2020-10-02 07:13:23 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
_is_main: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<ModuleSpecifier, AnyError> {
|
2020-09-06 10:50:49 -04:00
|
|
|
assert_eq!(specifier, "file:///main.js");
|
|
|
|
assert_eq!(referrer, ".");
|
2021-02-17 13:47:18 -05:00
|
|
|
let s = crate::resolve_import(specifier, referrer).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
Ok(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load(
|
|
|
|
&self,
|
2020-09-19 19:17:35 -04:00
|
|
|
_op_state: Rc<RefCell<OpState>>,
|
2020-09-06 10:50:49 -04:00
|
|
|
_module_specifier: &ModuleSpecifier,
|
|
|
|
_maybe_referrer: Option<ModuleSpecifier>,
|
|
|
|
_is_dyn_import: bool,
|
|
|
|
) -> Pin<Box<ModuleSourceFuture>> {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let loader = std::rc::Rc::new(ModsLoader::default());
|
2020-09-11 09:18:49 -04:00
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
module_loader: Some(loader),
|
|
|
|
will_snapshot: true,
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2021-02-17 13:47:18 -05:00
|
|
|
let specifier = crate::resolve_url("file:///main.js").unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
let source_code = "Deno.core.print('hello\\n')".to_string();
|
|
|
|
|
|
|
|
let module_id = futures::executor::block_on(
|
2020-09-06 15:44:29 -04:00
|
|
|
runtime.load_module(&specifier, Some(source_code)),
|
2020-09-06 10:50:49 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2021-03-04 07:19:47 -05:00
|
|
|
runtime.mod_evaluate(module_id);
|
|
|
|
futures::executor::block_on(runtime.run_event_loop()).unwrap();
|
2020-09-06 10:50:49 -04:00
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
let _snapshot = runtime.snapshot();
|
2020-09-06 10:50:49 -04:00
|
|
|
}
|
2020-09-22 17:30:03 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_error_without_stack() {
|
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions::default());
|
|
|
|
// SyntaxError
|
|
|
|
let result = runtime.execute(
|
|
|
|
"error_without_stack.js",
|
|
|
|
r#"
|
|
|
|
function main() {
|
|
|
|
console.log("asdf);
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
let expected_error = r#"Uncaught SyntaxError: Invalid or unexpected token
|
2020-10-31 14:57:19 -04:00
|
|
|
at error_without_stack.js:3:14"#;
|
2020-09-22 17:30:03 -04:00
|
|
|
assert_eq!(result.unwrap_err().to_string(), expected_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_error_stack() {
|
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions::default());
|
|
|
|
let result = runtime.execute(
|
|
|
|
"error_stack.js",
|
|
|
|
r#"
|
|
|
|
function assert(cond) {
|
|
|
|
if (!cond) {
|
|
|
|
throw Error("assert");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
let expected_error = r#"Error: assert
|
|
|
|
at assert (error_stack.js:4:11)
|
|
|
|
at main (error_stack.js:9:3)
|
2020-10-31 14:57:19 -04:00
|
|
|
at error_stack.js:12:1"#;
|
2020-09-22 17:30:03 -04:00
|
|
|
assert_eq!(result.unwrap_err().to_string(), expected_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_error_async_stack() {
|
|
|
|
run_in_task(|cx| {
|
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions::default());
|
|
|
|
runtime
|
|
|
|
.execute(
|
|
|
|
"error_async_stack.js",
|
|
|
|
r#"
|
|
|
|
(async () => {
|
|
|
|
const p = (async () => {
|
|
|
|
await Promise.resolve().then(() => {
|
|
|
|
throw new Error("async");
|
|
|
|
});
|
|
|
|
})();
|
|
|
|
|
|
|
|
try {
|
|
|
|
await p;
|
|
|
|
} catch (error) {
|
|
|
|
console.log(error.stack);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
})();"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let expected_error = r#"Error: async
|
|
|
|
at error_async_stack.js:5:13
|
|
|
|
at async error_async_stack.js:4:5
|
2020-10-31 14:57:19 -04:00
|
|
|
at async error_async_stack.js:10:5"#;
|
2020-09-22 17:30:03 -04:00
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
match runtime.poll_event_loop(cx) {
|
2020-09-22 17:30:03 -04:00
|
|
|
Poll::Ready(Err(e)) => {
|
|
|
|
assert_eq!(e.to_string(), expected_error);
|
|
|
|
}
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
})
|
|
|
|
}
|
2020-12-07 18:36:15 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_core_js_stack_frame() {
|
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions::default());
|
|
|
|
// Call non-existent op so we get error from `core.js`
|
|
|
|
let error = runtime
|
|
|
|
.execute(
|
|
|
|
"core_js_stack_frame.js",
|
|
|
|
"Deno.core.dispatchByName('non_existent');",
|
|
|
|
)
|
|
|
|
.unwrap_err();
|
|
|
|
let error_string = error.to_string();
|
|
|
|
// Test that the script specifier is a URL: `deno:<repo-relative path>`.
|
|
|
|
assert!(error_string.contains("deno:core/core.js"));
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|