2020-01-02 18:41:59 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-03-26 11:56:34 -04:00
|
|
|
|
2019-08-07 12:55:39 -04:00
|
|
|
// Do not add any dependency to modules.rs!
|
|
|
|
// modules.rs is complex and should remain decoupled from isolate.rs to keep the
|
|
|
|
// Isolate struct from becoming too bloating for users who do not need
|
|
|
|
// asynchronous module loading.
|
2019-03-26 11:56:34 -04:00
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
use rusty_v8 as v8;
|
|
|
|
|
2019-07-10 18:53:48 -04:00
|
|
|
use crate::any_error::ErrBox;
|
2020-01-06 14:07:35 -05:00
|
|
|
use crate::bindings;
|
2019-07-10 18:53:48 -04:00
|
|
|
use crate::js_errors::CoreJSError;
|
|
|
|
use crate::js_errors::V8Exception;
|
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;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::future::FutureExt;
|
|
|
|
use futures::future::TryFutureExt;
|
2020-01-21 12:01:10 -05:00
|
|
|
use futures::stream::select;
|
2019-08-07 12:55:39 -04:00
|
|
|
use futures::stream::FuturesUnordered;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::stream::StreamExt;
|
|
|
|
use futures::task::AtomicWaker;
|
2020-02-03 18:08:44 -05:00
|
|
|
use futures::Future;
|
2019-03-11 17:57:36 -04:00
|
|
|
use libc::c_void;
|
2020-01-06 14:07:35 -05:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::convert::From;
|
2020-01-25 08:31:42 -05:00
|
|
|
use std::error::Error;
|
|
|
|
use std::fmt;
|
2020-01-06 14:07:35 -05:00
|
|
|
use std::ops::{Deref, DerefMut};
|
|
|
|
use std::option::Option;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::pin::Pin;
|
2019-06-23 07:49:49 -04:00
|
|
|
use std::sync::{Arc, Mutex, 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
|
|
|
|
|
|
|
/// A ZeroCopyBuf encapsulates a slice that's been borrowed from a JavaScript
|
2020-01-06 14:07:35 -05:00
|
|
|
/// ArrayBuffer object. JavaScript objects can normally be garbage collected,
|
2020-01-24 15:10:49 -05:00
|
|
|
/// but the existence of a ZeroCopyBuf inhibits this until it is dropped. It
|
|
|
|
/// behaves much like an Arc<[u8]>, although a ZeroCopyBuf currently can't be
|
2020-01-06 14:07:35 -05:00
|
|
|
/// cloned.
|
2020-01-24 15:10:49 -05:00
|
|
|
pub struct ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
backing_store: v8::SharedRef<v8::BackingStore>,
|
2020-01-23 20:22:05 -05:00
|
|
|
byte_offset: usize,
|
|
|
|
byte_length: usize,
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
unsafe impl Send for ZeroCopyBuf {}
|
2020-01-06 14:07:35 -05:00
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
impl ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
pub fn new(view: v8::Local<v8::ArrayBufferView>) -> Self {
|
2020-01-23 20:22:05 -05:00
|
|
|
let backing_store = view.buffer().unwrap().get_backing_store();
|
|
|
|
let byte_offset = view.byte_offset();
|
|
|
|
let byte_length = view.byte_length();
|
2020-01-06 14:07:35 -05:00
|
|
|
Self {
|
|
|
|
backing_store,
|
2020-01-23 20:22:05 -05:00
|
|
|
byte_offset,
|
|
|
|
byte_length,
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
impl Deref for ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
type Target = [u8];
|
|
|
|
fn deref(&self) -> &[u8] {
|
2020-01-23 20:22:05 -05:00
|
|
|
let buf = unsafe { &**self.backing_store.get() };
|
|
|
|
&buf[self.byte_offset..self.byte_offset + self.byte_length]
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
impl DerefMut for ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
fn deref_mut(&mut self) -> &mut [u8] {
|
2020-01-23 20:22:05 -05:00
|
|
|
let buf = unsafe { &mut **self.backing_store.get() };
|
|
|
|
&mut buf[self.byte_offset..self.byte_offset + self.byte_length]
|
2020-01-06 14:07:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
impl AsRef<[u8]> for ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
fn as_ref(&self) -> &[u8] {
|
|
|
|
&*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:10:49 -05:00
|
|
|
impl AsMut<[u8]> for ZeroCopyBuf {
|
2020-01-06 14:07:35 -05:00
|
|
|
fn as_mut(&mut self) -> &mut [u8] {
|
|
|
|
&mut *self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SnapshotConfig {
|
|
|
|
Borrowed(v8::StartupData<'static>),
|
|
|
|
Owned(v8::OwnedStartupData),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&'static [u8]> for SnapshotConfig {
|
|
|
|
fn from(sd: &'static [u8]) -> Self {
|
|
|
|
Self::Borrowed(v8::StartupData::new(sd))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<v8::OwnedStartupData> for SnapshotConfig {
|
|
|
|
fn from(sd: v8::OwnedStartupData) -> Self {
|
|
|
|
Self::Owned(sd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for SnapshotConfig {
|
|
|
|
type Target = v8::StartupData<'static>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
match self {
|
|
|
|
Self::Borrowed(sd) => sd,
|
|
|
|
Self::Owned(sd) => &*sd,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-18 20:03:37 -04:00
|
|
|
/// Stores a script used to initalize a Isolate
|
2019-04-08 10:12:43 -04:00
|
|
|
pub struct Script<'a> {
|
|
|
|
pub source: &'a str,
|
|
|
|
pub filename: &'a str,
|
2019-03-18 20:03:37 -04:00
|
|
|
}
|
|
|
|
|
2019-06-12 13:53:24 -04:00
|
|
|
// TODO(ry) It's ugly that we have both Script and OwnedScript. Ideally we
|
|
|
|
// wouldn't expose such twiddly complexity.
|
|
|
|
struct OwnedScript {
|
|
|
|
pub source: String,
|
|
|
|
pub filename: String,
|
|
|
|
}
|
|
|
|
|
2019-06-23 07:49:49 -04:00
|
|
|
impl From<Script<'_>> for OwnedScript {
|
|
|
|
fn from(s: Script) -> OwnedScript {
|
2019-06-12 13:53:24 -04:00
|
|
|
OwnedScript {
|
|
|
|
source: s.source.to_string(),
|
|
|
|
filename: s.filename.to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-18 20:03:37 -04:00
|
|
|
/// Represents data used to initialize isolate at startup
|
|
|
|
/// either a binary snapshot or a javascript source file
|
|
|
|
/// in the form of the StartupScript struct.
|
2019-04-08 10:12:43 -04:00
|
|
|
pub enum StartupData<'a> {
|
|
|
|
Script(Script<'a>),
|
2020-01-05 09:19:29 -05:00
|
|
|
Snapshot(&'static [u8]),
|
2020-01-06 14:07:35 -05:00
|
|
|
OwnedSnapshot(v8::OwnedStartupData),
|
2019-04-08 10:12:43 -04:00
|
|
|
None,
|
2019-03-18 20:03:37 -04:00
|
|
|
}
|
|
|
|
|
2019-07-10 18:53:48 -04:00
|
|
|
type JSErrorCreateFn = dyn Fn(V8Exception) -> ErrBox;
|
2019-12-20 00:04:14 -05:00
|
|
|
type IsolateErrorHandleFn = dyn FnMut(ErrBox) -> Result<(), ErrBox>;
|
2019-07-10 18:53:48 -04:00
|
|
|
|
2019-03-12 18:47:54 -04:00
|
|
|
/// A single execution context of JavaScript. Corresponds roughly to the "Web
|
|
|
|
/// Worker" concept in the DOM. An Isolate is a Future that can be used with
|
|
|
|
/// Tokio. The Isolate future complete when there is an error or when all
|
|
|
|
/// 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-01-06 10:24:44 -05:00
|
|
|
#[allow(unused)]
|
2019-04-23 18:58:00 -04:00
|
|
|
pub struct Isolate {
|
2020-01-07 06:45:44 -05:00
|
|
|
pub(crate) v8_isolate: Option<v8::OwnedIsolate>,
|
2020-01-06 14:07:35 -05:00
|
|
|
snapshot_creator: Option<v8::SnapshotCreator>,
|
|
|
|
has_snapshotted: bool,
|
|
|
|
snapshot: Option<SnapshotConfig>,
|
|
|
|
pub(crate) last_exception: Option<String>,
|
|
|
|
pub(crate) global_context: v8::Global<v8::Context>,
|
|
|
|
pub(crate) shared_ab: v8::Global<v8::SharedArrayBuffer>,
|
|
|
|
pub(crate) js_recv_cb: v8::Global<v8::Function>,
|
2020-01-25 08:31:42 -05:00
|
|
|
pub(crate) pending_promise_exceptions: HashMap<i32, v8::Global<v8::Value>>,
|
2020-01-06 10:24:44 -05:00
|
|
|
shared_isolate_handle: Arc<Mutex<Option<*mut v8::Isolate>>>,
|
2019-07-10 18:53:48 -04:00
|
|
|
js_error_create: Arc<JSErrorCreateFn>,
|
2019-03-14 19:17:52 -04:00
|
|
|
needs_init: bool,
|
2020-01-11 04:49:16 -05:00
|
|
|
pub(crate) shared: SharedQueue,
|
2019-08-07 14:02:29 -04:00
|
|
|
pending_ops: FuturesUnordered<PendingOpFuture>,
|
2020-01-21 12:01:10 -05:00
|
|
|
pending_unref_ops: FuturesUnordered<PendingOpFuture>,
|
2019-04-14 20:07:34 -04:00
|
|
|
have_unpolled_ops: bool,
|
2019-06-12 13:53:24 -04:00
|
|
|
startup_script: Option<OwnedScript>,
|
2019-11-18 21:13:04 -05:00
|
|
|
pub op_registry: Arc<OpRegistry>,
|
2019-11-16 19:17:47 -05:00
|
|
|
waker: AtomicWaker,
|
2019-12-20 00:04:14 -05:00
|
|
|
error_handler: Option<Box<IsolateErrorHandleFn>>,
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2020-02-03 18:08:44 -05:00
|
|
|
// TODO(ry) this shouldn't be necessary, v8::OwnedIsolate should impl Send.
|
2019-04-23 18:58:00 -04:00
|
|
|
unsafe impl Send for Isolate {}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2019-04-23 18:58:00 -04:00
|
|
|
impl Drop for Isolate {
|
2019-03-11 17:57:36 -04:00
|
|
|
fn drop(&mut self) {
|
2019-03-21 09:48:19 -04:00
|
|
|
// remove shared_libdeno_isolate reference
|
2020-01-06 10:24:44 -05:00
|
|
|
*self.shared_isolate_handle.lock().unwrap() = None;
|
|
|
|
|
|
|
|
// TODO Too much boiler plate.
|
|
|
|
// <Boilerplate>
|
2020-01-06 14:07:35 -05:00
|
|
|
let isolate = self.v8_isolate.take().unwrap();
|
2020-01-07 06:45:44 -05:00
|
|
|
// Clear persistent handles we own.
|
2020-01-06 10:24:44 -05:00
|
|
|
{
|
|
|
|
let mut locker = v8::Locker::new(&isolate);
|
2020-01-21 14:24:31 -05:00
|
|
|
let mut hs = v8::HandleScope::new(locker.enter());
|
2020-01-06 10:24:44 -05:00
|
|
|
let scope = hs.enter();
|
|
|
|
// </Boilerplate>
|
2020-01-06 14:07:35 -05:00
|
|
|
self.global_context.reset(scope);
|
|
|
|
self.shared_ab.reset(scope);
|
|
|
|
self.js_recv_cb.reset(scope);
|
2020-01-25 08:31:42 -05:00
|
|
|
for (_key, handle) in self.pending_promise_exceptions.iter_mut() {
|
2020-01-06 10:24:44 -05:00
|
|
|
handle.reset(scope);
|
|
|
|
}
|
|
|
|
}
|
2020-01-06 14:07:35 -05:00
|
|
|
if let Some(creator) = self.snapshot_creator.take() {
|
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.
|
|
|
|
std::mem::forget(isolate);
|
2020-01-06 14:07:35 -05:00
|
|
|
if self.has_snapshotted {
|
2020-01-06 10:24:44 -05:00
|
|
|
drop(creator);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
drop(isolate);
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-23 07:49:49 -04:00
|
|
|
static DENO_INIT: Once = Once::new();
|
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-01-21 14:24:31 -05:00
|
|
|
let platform = v8::new_default_platform();
|
2020-01-06 14:07:35 -05:00
|
|
|
v8::V8::initialize_platform(platform);
|
|
|
|
v8::V8::initialize();
|
|
|
|
// 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
|
|
|
|
let argv = vec![
|
|
|
|
"".to_string(),
|
|
|
|
"--no-wasm-async-compilation".to_string(),
|
|
|
|
"--harmony-top-level-await".to_string(),
|
|
|
|
];
|
|
|
|
v8::V8::set_flags_from_command_line(argv);
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:58:00 -04:00
|
|
|
impl Isolate {
|
2019-06-23 07:49:49 -04:00
|
|
|
/// startup_data defines the snapshot or script used at startup to initialize
|
2019-04-08 10:12:43 -04:00
|
|
|
/// the isolate.
|
2020-01-06 10:24:44 -05:00
|
|
|
pub fn new(startup_data: StartupData, will_snapshot: bool) -> Box<Self> {
|
2019-03-11 17:57:36 -04:00
|
|
|
DENO_INIT.call_once(|| {
|
2020-01-06 14:07:35 -05:00
|
|
|
unsafe { v8_init() };
|
2019-03-11 17:57:36 -04:00
|
|
|
});
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
let mut load_snapshot: Option<SnapshotConfig> = None;
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut startup_script: Option<OwnedScript> = None;
|
|
|
|
|
2019-06-23 07:49:49 -04:00
|
|
|
// Separate into Option values for each startup type
|
2019-04-24 21:43:06 -04:00
|
|
|
match startup_data {
|
|
|
|
StartupData::Script(d) => {
|
2019-06-12 13:53:24 -04:00
|
|
|
startup_script = Some(d.into());
|
2019-04-24 21:43:06 -04:00
|
|
|
}
|
|
|
|
StartupData::Snapshot(d) => {
|
2020-01-06 10:24:44 -05:00
|
|
|
load_snapshot = Some(d.into());
|
2019-04-24 21:43:06 -04:00
|
|
|
}
|
2020-01-06 14:07:35 -05:00
|
|
|
StartupData::OwnedSnapshot(d) => {
|
2020-01-06 10:24:44 -05:00
|
|
|
load_snapshot = Some(d.into());
|
2019-04-24 21:43:06 -04:00
|
|
|
}
|
|
|
|
StartupData::None => {}
|
|
|
|
};
|
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
let mut global_context = v8::Global::<v8::Context>::new();
|
2020-01-06 10:24:44 -05:00
|
|
|
let (mut isolate, maybe_snapshot_creator) = if will_snapshot {
|
|
|
|
// TODO(ry) Support loading snapshots before snapshotting.
|
|
|
|
assert!(load_snapshot.is_none());
|
|
|
|
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() };
|
|
|
|
let isolate = Isolate::setup_isolate(isolate);
|
|
|
|
|
|
|
|
let mut locker = v8::Locker::new(&isolate);
|
2020-01-21 14:24:31 -05:00
|
|
|
let scope = locker.enter();
|
|
|
|
|
|
|
|
let mut hs = v8::HandleScope::new(scope);
|
|
|
|
let scope = hs.enter();
|
|
|
|
|
|
|
|
let context = bindings::initialize_context(scope);
|
|
|
|
global_context.set(scope, context);
|
|
|
|
creator.set_default_context(context);
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
(isolate, Some(creator))
|
|
|
|
} else {
|
|
|
|
let mut params = v8::Isolate::create_params();
|
|
|
|
params.set_array_buffer_allocator(v8::new_default_allocator());
|
2020-01-06 14:07:35 -05:00
|
|
|
params.set_external_references(&bindings::EXTERNAL_REFERENCES);
|
2020-01-06 10:24:44 -05:00
|
|
|
if let Some(ref mut snapshot) = load_snapshot {
|
|
|
|
params.set_snapshot_blob(snapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
let isolate = v8::Isolate::new(params);
|
|
|
|
let isolate = Isolate::setup_isolate(isolate);
|
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
let mut locker = v8::Locker::new(&isolate);
|
|
|
|
let scope = locker.enter();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-21 14:24:31 -05:00
|
|
|
let mut hs = v8::HandleScope::new(scope);
|
|
|
|
let scope = hs.enter();
|
|
|
|
|
|
|
|
let context = match load_snapshot {
|
|
|
|
Some(_) => v8::Context::new(scope),
|
|
|
|
None => {
|
2020-01-06 10:24:44 -05:00
|
|
|
// If no snapshot is provided, we initialize the context with empty
|
|
|
|
// main source code and source maps.
|
2020-01-21 14:24:31 -05:00
|
|
|
bindings::initialize_context(scope)
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2020-01-21 14:24:31 -05:00
|
|
|
};
|
|
|
|
global_context.set(scope, context);
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
(isolate, None)
|
|
|
|
};
|
|
|
|
|
|
|
|
let shared = SharedQueue::new(RECOMMENDED_SIZE);
|
|
|
|
let needs_init = true;
|
|
|
|
|
|
|
|
let core_isolate = Self {
|
2020-01-06 14:07:35 -05:00
|
|
|
v8_isolate: None,
|
|
|
|
last_exception: None,
|
|
|
|
global_context,
|
2020-01-25 08:31:42 -05:00
|
|
|
pending_promise_exceptions: HashMap::new(),
|
2020-01-06 14:07:35 -05:00
|
|
|
shared_ab: v8::Global::<v8::SharedArrayBuffer>::new(),
|
|
|
|
js_recv_cb: v8::Global::<v8::Function>::new(),
|
|
|
|
snapshot_creator: maybe_snapshot_creator,
|
|
|
|
snapshot: load_snapshot,
|
|
|
|
has_snapshotted: false,
|
2020-01-06 10:24:44 -05:00
|
|
|
shared_isolate_handle: Arc::new(Mutex::new(None)),
|
2019-07-10 18:53:48 -04:00
|
|
|
js_error_create: Arc::new(CoreJSError::from_v8_exception),
|
2019-03-14 19:17:52 -04:00
|
|
|
shared,
|
2019-03-14 19:17:52 -04:00
|
|
|
needs_init,
|
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(),
|
2019-04-14 20:07:34 -04:00
|
|
|
have_unpolled_ops: false,
|
2019-06-12 13:53:24 -04:00
|
|
|
startup_script,
|
2019-11-18 21:13:04 -05:00
|
|
|
op_registry: Arc::new(OpRegistry::new()),
|
2019-11-16 19:17:47 -05:00
|
|
|
waker: AtomicWaker::new(),
|
2019-12-20 00:04:14 -05:00
|
|
|
error_handler: None,
|
2020-01-06 10:24:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut boxed_isolate = Box::new(core_isolate);
|
|
|
|
{
|
|
|
|
let core_isolate_ptr: *mut Self = Box::into_raw(boxed_isolate);
|
|
|
|
unsafe { isolate.set_data(0, core_isolate_ptr as *mut c_void) };
|
|
|
|
boxed_isolate = unsafe { Box::from_raw(core_isolate_ptr) };
|
|
|
|
let shared_handle_ptr = &mut *isolate;
|
|
|
|
*boxed_isolate.shared_isolate_handle.lock().unwrap() =
|
|
|
|
Some(shared_handle_ptr);
|
2020-01-06 14:07:35 -05:00
|
|
|
boxed_isolate.v8_isolate = Some(isolate);
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
boxed_isolate
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setup_isolate(mut isolate: v8::OwnedIsolate) -> v8::OwnedIsolate {
|
|
|
|
isolate.set_capture_stack_trace_for_uncaught_exceptions(true, 10);
|
|
|
|
isolate.set_promise_reject_callback(bindings::promise_reject_callback);
|
|
|
|
isolate.add_message_listener(bindings::message_callback);
|
|
|
|
isolate
|
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
pub fn exception_to_err_result<'a, T>(
|
|
|
|
&mut self,
|
|
|
|
scope: &mut (impl v8::ToLocal<'a> + v8::InContext),
|
|
|
|
exception: v8::Local<v8::Value>,
|
|
|
|
) -> Result<T, ErrBox> {
|
|
|
|
self.handle_exception(scope, exception);
|
|
|
|
self.check_last_exception().map(|_| unreachable!())
|
2020-01-17 18:43:53 -05:00
|
|
|
}
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
pub fn handle_exception<'a>(
|
|
|
|
&mut self,
|
2020-01-25 08:31:42 -05:00
|
|
|
scope: &mut (impl v8::ToLocal<'a> + v8::InContext),
|
|
|
|
exception: v8::Local<v8::Value>,
|
2020-01-06 10:24:44 -05:00
|
|
|
) {
|
2020-01-25 08:31:42 -05:00
|
|
|
// Use a HandleScope because the functions below create a lot of
|
|
|
|
// local handles (in particular, `encode_message_as_json()` does).
|
|
|
|
let mut hs = v8::HandleScope::new(scope);
|
|
|
|
let scope = hs.enter();
|
|
|
|
|
|
|
|
let is_terminating_exception = scope.isolate().is_execution_terminating();
|
|
|
|
let mut exception = exception;
|
|
|
|
|
|
|
|
if is_terminating_exception {
|
|
|
|
// TerminateExecution was called. Cancel exception termination so that the
|
|
|
|
// exception can be created..
|
2020-01-16 17:25:57 -05:00
|
|
|
scope.isolate().cancel_terminate_execution();
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
// Maybe make a new exception object.
|
|
|
|
if exception.is_null_or_undefined() {
|
2020-01-16 17:25:57 -05:00
|
|
|
let exception_str =
|
|
|
|
v8::String::new(scope, "execution terminated").unwrap();
|
2020-01-25 08:31:42 -05:00
|
|
|
exception = v8::Exception::error(scope, exception_str);
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
let message = v8::Exception::create_message(scope, exception);
|
|
|
|
let json_str = self.encode_message_as_json(scope, message);
|
2020-01-06 14:07:35 -05:00
|
|
|
self.last_exception = Some(json_str);
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
if is_terminating_exception {
|
|
|
|
// Re-enable exception termination.
|
|
|
|
scope.isolate().terminate_execution();
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn encode_message_as_json<'a>(
|
|
|
|
&mut self,
|
2020-01-25 08:31:42 -05:00
|
|
|
scope: &mut (impl v8::ToLocal<'a> + v8::InContext),
|
2020-01-06 10:24:44 -05:00
|
|
|
message: v8::Local<v8::Message>,
|
|
|
|
) -> String {
|
2020-01-25 08:31:42 -05:00
|
|
|
let context = scope.isolate().get_current_context();
|
|
|
|
let json_obj = bindings::encode_message_as_object(scope, message);
|
2020-01-06 10:24:44 -05:00
|
|
|
let json_string = v8::json::stringify(context, json_obj.into()).unwrap();
|
2020-01-25 08:31:42 -05:00
|
|
|
json_string.to_rust_string_lossy(scope)
|
2019-12-20 00:04:14 -05:00
|
|
|
}
|
|
|
|
|
2019-06-12 13:53:24 -04:00
|
|
|
/// Defines the how Deno.core.dispatch() acts.
|
|
|
|
/// Called whenever Deno.core.dispatch() is called in JavaScript. zero_copy_buf
|
|
|
|
/// corresponds to the second argument of Deno.core.dispatch().
|
2019-09-30 14:59:44 -04:00
|
|
|
///
|
2019-10-02 13:05:48 -04:00
|
|
|
/// Requires runtime to explicitly ask for op ids before using any of the ops.
|
2019-11-18 21:13:04 -05:00
|
|
|
pub fn register_op<F>(&self, name: &str, op: F) -> OpId
|
2019-09-30 14:59:44 -04:00
|
|
|
where
|
2020-02-03 18:08:44 -05:00
|
|
|
F: Fn(&[u8], Option<ZeroCopyBuf>) -> CoreOp + 'static,
|
2019-09-30 14:59:44 -04:00
|
|
|
{
|
|
|
|
self.op_registry.register(name, op)
|
|
|
|
}
|
|
|
|
|
2019-07-10 18:53:48 -04:00
|
|
|
/// Allows a callback to be set whenever a V8 exception is made. This allows
|
|
|
|
/// the caller to wrap the V8Exception into an error. By default this callback
|
|
|
|
/// is set to CoreJSError::from_v8_exception.
|
|
|
|
pub fn set_js_error_create<F>(&mut self, f: F)
|
|
|
|
where
|
|
|
|
F: Fn(V8Exception) -> ErrBox + 'static,
|
|
|
|
{
|
|
|
|
self.js_error_create = Arc::new(f);
|
|
|
|
}
|
|
|
|
|
2019-03-21 09:48:19 -04:00
|
|
|
/// Get a thread safe handle on the isolate.
|
|
|
|
pub fn shared_isolate_handle(&mut self) -> IsolateHandle {
|
|
|
|
IsolateHandle {
|
2020-01-06 10:24:44 -05:00
|
|
|
shared_isolate: self.shared_isolate_handle.clone(),
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 08:22:07 -04:00
|
|
|
/// Executes a bit of built-in JavaScript to provide Deno.sharedQueue.
|
2020-01-07 06:45:44 -05:00
|
|
|
pub(crate) fn shared_init(&mut self) {
|
2019-03-14 19:17:52 -04:00
|
|
|
if self.needs_init {
|
|
|
|
self.needs_init = false;
|
|
|
|
js_check(
|
|
|
|
self.execute("shared_queue.js", include_str!("shared_queue.js")),
|
|
|
|
);
|
2019-06-12 13:53:24 -04:00
|
|
|
// Maybe execute the startup script.
|
|
|
|
if let Some(s) = self.startup_script.take() {
|
|
|
|
self.execute(&s.filename, &s.source).unwrap()
|
|
|
|
}
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
pub fn dispatch_op<'s>(
|
2020-01-06 10:24:44 -05:00
|
|
|
&mut self,
|
2020-01-25 08:31:42 -05:00
|
|
|
scope: &mut (impl v8::ToLocal<'s> + v8::InContext),
|
2019-08-07 14:02:29 -04:00
|
|
|
op_id: OpId,
|
2020-01-11 04:49:16 -05:00
|
|
|
control_buf: &[u8],
|
2020-01-24 15:10:49 -05:00
|
|
|
zero_copy_buf: Option<ZeroCopyBuf>,
|
2020-01-11 04:49:16 -05:00
|
|
|
) -> Option<(OpId, Box<[u8]>)> {
|
|
|
|
let maybe_op = self.op_registry.call(op_id, control_buf, zero_copy_buf);
|
2019-03-14 19:17:52 -04:00
|
|
|
|
2019-10-22 10:49:58 -04:00
|
|
|
let op = match maybe_op {
|
|
|
|
Some(op) => op,
|
|
|
|
None => {
|
2020-01-25 08:31:42 -05:00
|
|
|
let message =
|
|
|
|
v8::String::new(scope, &format!("Unknown op id: {}", op_id)).unwrap();
|
|
|
|
let exception = v8::Exception::type_error(scope, message);
|
|
|
|
scope.isolate().throw_exception(exception);
|
2020-01-11 04:49:16 -05:00
|
|
|
return None;
|
2019-10-22 10:49:58 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
debug_assert_eq!(self.shared.size(), 0);
|
2019-05-01 18:22:32 -04:00
|
|
|
match op {
|
|
|
|
Op::Sync(buf) => {
|
|
|
|
// For sync messages, we always return the response via Deno.core.send's
|
2019-08-07 14:02:29 -04:00
|
|
|
// return value. Sync messages ignore the op_id.
|
|
|
|
let op_id = 0;
|
2020-01-11 04:49:16 -05:00
|
|
|
Some((op_id, buf))
|
2019-05-01 18:22:32 -04:00
|
|
|
}
|
|
|
|
Op::Async(fut) => {
|
2019-11-16 19:17:47 -05:00
|
|
|
let fut2 = fut.map_ok(move |buf| (op_id, buf));
|
2020-02-03 18:08:44 -05:00
|
|
|
self.pending_ops.push(fut2.boxed_local());
|
2020-01-06 10:24:44 -05:00
|
|
|
self.have_unpolled_ops = true;
|
2020-01-11 04:49:16 -05:00
|
|
|
None
|
2019-05-01 18:22:32 -04:00
|
|
|
}
|
2020-01-21 12:01:10 -05:00
|
|
|
Op::AsyncUnref(fut) => {
|
|
|
|
let fut2 = fut.map_ok(move |buf| (op_id, buf));
|
2020-02-03 18:08:44 -05:00
|
|
|
self.pending_unref_ops.push(fut2.boxed_local());
|
2020-01-21 12:01:10 -05:00
|
|
|
self.have_unpolled_ops = true;
|
|
|
|
None
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:45:44 -05:00
|
|
|
/// Executes traditional JavaScript code (traditional = not ES modules)
|
|
|
|
///
|
|
|
|
/// ErrBox can be downcast to a type that exposes additional information about
|
|
|
|
/// the V8 exception. By default this type is CoreJSError, however it may be a
|
|
|
|
/// different type if Isolate::set_js_error_create() has been used.
|
|
|
|
pub fn execute(
|
2020-01-06 10:24:44 -05:00
|
|
|
&mut self,
|
|
|
|
js_filename: &str,
|
|
|
|
js_source: &str,
|
2020-01-07 06:45:44 -05:00
|
|
|
) -> Result<(), ErrBox> {
|
|
|
|
self.shared_init();
|
2020-01-25 08:31:42 -05:00
|
|
|
|
2020-01-07 06:45:44 -05:00
|
|
|
let isolate = self.v8_isolate.as_ref().unwrap();
|
|
|
|
let mut locker = v8::Locker::new(isolate);
|
|
|
|
assert!(!self.global_context.is_empty());
|
2020-01-21 14:24:31 -05:00
|
|
|
let mut hs = v8::HandleScope::new(locker.enter());
|
|
|
|
let scope = hs.enter();
|
|
|
|
let context = self.global_context.get(scope).unwrap();
|
|
|
|
let mut cs = v8::ContextScope::new(scope, context);
|
|
|
|
let scope = cs.enter();
|
|
|
|
|
|
|
|
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-01-21 14:24:31 -05:00
|
|
|
let mut try_catch = v8::TryCatch::new(scope);
|
2020-01-06 10:24:44 -05:00
|
|
|
let tc = try_catch.enter();
|
2020-01-25 08:31:42 -05:00
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
let mut script =
|
2020-01-21 14:24:31 -05:00
|
|
|
v8::Script::compile(scope, context, source, Some(&origin)).unwrap();
|
2020-01-25 08:31:42 -05:00
|
|
|
match script.run(scope, context) {
|
|
|
|
Some(_) => Ok(()),
|
|
|
|
None => {
|
|
|
|
assert!(tc.has_caught());
|
|
|
|
let exception = tc.exception().unwrap();
|
|
|
|
self.exception_to_err_result(scope, exception)
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2020-01-07 06:45:44 -05:00
|
|
|
pub(crate) fn check_last_exception(&mut self) -> Result<(), ErrBox> {
|
2020-01-25 08:31:42 -05:00
|
|
|
match self.last_exception.take() {
|
|
|
|
None => Ok(()),
|
|
|
|
Some(json_str) => {
|
|
|
|
let v8_exception = V8Exception::from_json(&json_str).unwrap();
|
|
|
|
let js_error = (self.js_error_create)(v8_exception);
|
|
|
|
Err(js_error)
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
pub(crate) fn attach_handle_to_error(
|
|
|
|
&mut self,
|
|
|
|
scope: &mut impl v8::InIsolate,
|
|
|
|
err: ErrBox,
|
|
|
|
handle: v8::Local<v8::Value>,
|
|
|
|
) -> ErrBox {
|
|
|
|
ErrWithV8Handle::new(scope, err, handle).into()
|
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
fn check_promise_exceptions<'s>(
|
|
|
|
&mut self,
|
|
|
|
scope: &mut (impl v8::ToLocal<'s> + v8::InContext),
|
|
|
|
) -> Result<(), ErrBox> {
|
|
|
|
if let Some(&key) = self.pending_promise_exceptions.keys().next() {
|
|
|
|
let mut handle = self.pending_promise_exceptions.remove(&key).unwrap();
|
|
|
|
let exception = handle.get(scope).expect("empty error handle");
|
2020-01-06 10:24:44 -05:00
|
|
|
handle.reset(scope);
|
2020-01-25 08:31:42 -05:00
|
|
|
self.exception_to_err_result(scope, exception)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
fn async_op_response<'s>(
|
|
|
|
&mut self,
|
|
|
|
scope: &mut (impl v8::ToLocal<'s> + v8::InContext),
|
|
|
|
maybe_buf: Option<(OpId, Box<[u8]>)>,
|
|
|
|
) -> Result<(), ErrBox> {
|
|
|
|
let context = scope.isolate().get_current_context();
|
|
|
|
let global: v8::Local<v8::Value> = context.global(scope).into();
|
|
|
|
let js_recv_cb = self
|
|
|
|
.js_recv_cb
|
|
|
|
.get(scope)
|
|
|
|
.expect("Deno.core.recv has not been called.");
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
// TODO(piscisaureus): properly integrate TryCatch in the scope chain.
|
2020-01-06 10:24:44 -05:00
|
|
|
let mut try_catch = v8::TryCatch::new(scope);
|
|
|
|
let tc = try_catch.enter();
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
match maybe_buf {
|
|
|
|
Some((op_id, buf)) => {
|
|
|
|
let op_id: v8::Local<v8::Value> =
|
|
|
|
v8::Integer::new(scope, op_id as i32).into();
|
|
|
|
let ui8: v8::Local<v8::Value> =
|
|
|
|
bindings::boxed_slice_to_uint8array(scope, buf).into();
|
|
|
|
js_recv_cb.call(scope, context, global, &[op_id, ui8])
|
|
|
|
}
|
|
|
|
None => js_recv_cb.call(scope, context, global, &[]),
|
2020-01-21 14:24:31 -05:00
|
|
|
};
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
match tc.exception() {
|
|
|
|
None => Ok(()),
|
|
|
|
Some(exception) => self.exception_to_err_result(scope, exception),
|
2020-01-06 10:24:44 -05:00
|
|
|
}
|
2019-10-22 10:49:58 -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.
|
|
|
|
///
|
|
|
|
/// ErrBox can be downcast to a type that exposes additional information about
|
|
|
|
/// the V8 exception. By default this type is CoreJSError, however it may be a
|
|
|
|
/// different type if Isolate::set_js_error_create() has been used.
|
2020-01-06 14:07:35 -05:00
|
|
|
pub fn snapshot(&mut self) -> Result<v8::OwnedStartupData, ErrBox> {
|
|
|
|
assert!(self.snapshot_creator.is_some());
|
2020-01-06 10:24:44 -05:00
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
let isolate = self.v8_isolate.as_ref().unwrap();
|
2020-01-06 10:24:44 -05:00
|
|
|
let mut locker = v8::Locker::new(isolate);
|
2020-01-21 14:24:31 -05:00
|
|
|
let mut hs = v8::HandleScope::new(locker.enter());
|
2020-01-06 10:24:44 -05:00
|
|
|
let scope = hs.enter();
|
2020-01-06 14:07:35 -05:00
|
|
|
self.global_context.reset(scope);
|
2020-01-06 10:24:44 -05: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-01-25 08:31:42 -05:00
|
|
|
self.check_last_exception().map(|_| snapshot)
|
2019-04-08 10:12:43 -04:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 18:58:00 -04:00
|
|
|
impl Future for Isolate {
|
2019-11-16 19:17:47 -05:00
|
|
|
type Output = Result<(), ErrBox>;
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
let inner = self.get_mut();
|
|
|
|
inner.waker.register(cx.waker());
|
|
|
|
inner.shared_init();
|
2019-06-12 13:53:24 -04:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
let mut locker = v8::Locker::new(&*inner.v8_isolate.as_mut().unwrap());
|
|
|
|
let mut hs = v8::HandleScope::new(locker.enter());
|
|
|
|
let scope = hs.enter();
|
|
|
|
let context = inner.global_context.get(scope).unwrap();
|
|
|
|
let mut cs = v8::ContextScope::new(scope, context);
|
|
|
|
let scope = cs.enter();
|
|
|
|
|
|
|
|
inner.check_promise_exceptions(scope)?;
|
|
|
|
|
2019-08-07 14:02:29 -04:00
|
|
|
let mut overflow_response: Option<(OpId, Buf)> = None;
|
2019-04-14 20:07:34 -04:00
|
|
|
|
|
|
|
loop {
|
2019-06-10 15:27:34 -04:00
|
|
|
// Now handle actual ops.
|
2019-11-16 19:17:47 -05:00
|
|
|
inner.have_unpolled_ops = false;
|
2019-04-14 20:07:34 -04:00
|
|
|
#[allow(clippy::match_wild_err_arm)]
|
2020-01-21 12:01:10 -05:00
|
|
|
match select(&mut inner.pending_ops, &mut inner.pending_unref_ops)
|
|
|
|
.poll_next_unpin(cx)
|
|
|
|
{
|
2019-11-16 19:17:47 -05:00
|
|
|
Poll::Ready(Some(Err(_))) => panic!("unexpected op error"),
|
|
|
|
Poll::Ready(None) => break,
|
|
|
|
Poll::Pending => break,
|
|
|
|
Poll::Ready(Some(Ok((op_id, buf)))) => {
|
|
|
|
let successful_push = inner.shared.push(op_id, &buf);
|
2019-04-14 20:07:34 -04:00
|
|
|
if !successful_push {
|
|
|
|
// If we couldn't push the response to the shared queue, because
|
|
|
|
// there wasn't enough size, we will return the buffer via the
|
|
|
|
// legacy route, using the argument of deno_respond.
|
2019-08-07 14:02:29 -04:00
|
|
|
overflow_response = Some((op_id, buf));
|
2019-04-14 20:07:34 -04:00
|
|
|
break;
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-14 20:07:34 -04:00
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
|
2019-11-16 19:17:47 -05:00
|
|
|
if inner.shared.size() > 0 {
|
2020-01-25 08:31:42 -05:00
|
|
|
inner.async_op_response(scope, None)?;
|
2019-04-14 20:07:34 -04:00
|
|
|
// The other side should have shifted off all the messages.
|
2019-11-16 19:17:47 -05:00
|
|
|
assert_eq!(inner.shared.size(), 0);
|
2019-04-14 20:07:34 -04:00
|
|
|
}
|
2019-03-14 19:17:52 -04:00
|
|
|
|
2019-04-14 20:07:34 -04:00
|
|
|
if overflow_response.is_some() {
|
2019-08-07 14:02:29 -04:00
|
|
|
let (op_id, buf) = overflow_response.take().unwrap();
|
2020-01-25 08:31:42 -05:00
|
|
|
inner.async_op_response(scope, Some((op_id, buf)))?;
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
inner.check_promise_exceptions(scope)?;
|
2019-03-11 17:57:36 -04:00
|
|
|
|
|
|
|
// We're idle if pending_ops is empty.
|
2020-01-07 06:45:44 -05:00
|
|
|
if inner.pending_ops.is_empty() {
|
2019-11-16 19:17:47 -05:00
|
|
|
Poll::Ready(Ok(()))
|
2019-03-11 17:57:36 -04:00
|
|
|
} else {
|
2019-11-16 19:17:47 -05:00
|
|
|
if inner.have_unpolled_ops {
|
|
|
|
inner.waker.wake();
|
2019-04-14 20:07:34 -04:00
|
|
|
}
|
2019-11-16 19:17:47 -05:00
|
|
|
Poll::Pending
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-21 09:48:19 -04:00
|
|
|
/// IsolateHandle is a thread safe handle on an Isolate. It exposed thread safe V8 functions.
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct IsolateHandle {
|
2020-01-06 10:24:44 -05:00
|
|
|
shared_isolate: Arc<Mutex<Option<*mut v8::Isolate>>>,
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for IsolateHandle {}
|
|
|
|
|
|
|
|
impl IsolateHandle {
|
|
|
|
/// Terminate the execution of any currently running javascript.
|
|
|
|
/// After terminating execution it is probably not wise to continue using
|
|
|
|
/// the isolate.
|
|
|
|
pub fn terminate_execution(&self) {
|
2020-01-06 10:24:44 -05:00
|
|
|
if let Some(isolate) = *self.shared_isolate.lock().unwrap() {
|
|
|
|
let isolate = unsafe { &mut *isolate };
|
|
|
|
isolate.terminate_execution();
|
2019-03-21 09:48:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-07 14:02:29 -04:00
|
|
|
pub fn js_check<T>(r: Result<T, ErrBox>) -> T {
|
2019-03-14 19:17:52 -04:00
|
|
|
if let Err(e) = r {
|
|
|
|
panic!(e.to_string());
|
|
|
|
}
|
2019-08-07 14:02:29 -04:00
|
|
|
r.unwrap()
|
2019-03-14 19:17:52 -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::*;
|
2019-04-14 21:58:27 -04:00
|
|
|
use futures::future::lazy;
|
|
|
|
use std::ops::FnOnce;
|
2019-03-25 17:43:31 -04:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
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
|
|
|
}
|
|
|
|
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll_until_ready<F>(future: &mut F, max_poll_count: usize) -> F::Output
|
2019-04-14 21:58:27 -04:00
|
|
|
where
|
2019-11-16 19:17:47 -05:00
|
|
|
F: Future + Unpin,
|
2019-04-14 21:58:27 -04:00
|
|
|
{
|
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 {
|
2019-11-16 19:17:47 -05:00
|
|
|
match future.poll_unpin(&mut cx) {
|
|
|
|
Poll::Pending => continue,
|
|
|
|
Poll::Ready(val) => return val,
|
2019-04-14 21:58:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!(
|
|
|
|
"Isolate still not ready after polling {} times.",
|
|
|
|
max_poll_count
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:58:00 -04:00
|
|
|
pub enum Mode {
|
2019-12-07 15:04:17 -05:00
|
|
|
Async,
|
2020-01-21 12:01:10 -05:00
|
|
|
AsyncUnref,
|
2019-03-14 19:17:52 -04:00
|
|
|
OverflowReqSync,
|
|
|
|
OverflowResSync,
|
|
|
|
OverflowReqAsync,
|
|
|
|
OverflowResAsync,
|
|
|
|
}
|
|
|
|
|
2020-01-06 10:24:44 -05:00
|
|
|
pub fn setup(mode: Mode) -> (Box<Isolate>, Arc<AtomicUsize>) {
|
2019-04-23 18:58:00 -04:00
|
|
|
let dispatch_count = Arc::new(AtomicUsize::new(0));
|
|
|
|
let dispatch_count_ = dispatch_count.clone();
|
|
|
|
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut isolate = Isolate::new(StartupData::None, false);
|
2019-10-02 13:05:48 -04:00
|
|
|
|
|
|
|
let dispatcher =
|
2020-01-24 15:10:49 -05:00
|
|
|
move |control: &[u8], _zero_copy: Option<ZeroCopyBuf>| -> CoreOp {
|
2019-10-02 13:05:48 -04:00
|
|
|
dispatch_count_.fetch_add(1, Ordering::Relaxed);
|
|
|
|
match mode {
|
2019-12-07 15:04:17 -05:00
|
|
|
Mode::Async => {
|
2019-10-02 13:05:48 -04:00
|
|
|
assert_eq!(control.len(), 1);
|
|
|
|
assert_eq!(control[0], 42);
|
|
|
|
let buf = vec![43u8, 0, 0, 0].into_boxed_slice();
|
2019-11-16 19:17:47 -05:00
|
|
|
Op::Async(futures::future::ok(buf).boxed())
|
2019-10-02 13:05:48 -04:00
|
|
|
}
|
2020-01-21 12:01:10 -05:00
|
|
|
Mode::AsyncUnref => {
|
|
|
|
assert_eq!(control.len(), 1);
|
|
|
|
assert_eq!(control[0], 42);
|
|
|
|
let fut = async {
|
|
|
|
// This future never finish.
|
|
|
|
futures::future::pending::<()>().await;
|
|
|
|
let buf = vec![43u8, 0, 0, 0].into_boxed_slice();
|
|
|
|
Ok(buf)
|
|
|
|
};
|
|
|
|
Op::AsyncUnref(fut.boxed())
|
|
|
|
}
|
2019-10-02 13:05:48 -04:00
|
|
|
Mode::OverflowReqSync => {
|
|
|
|
assert_eq!(control.len(), 100 * 1024 * 1024);
|
|
|
|
let buf = vec![43u8, 0, 0, 0].into_boxed_slice();
|
|
|
|
Op::Sync(buf)
|
|
|
|
}
|
|
|
|
Mode::OverflowResSync => {
|
|
|
|
assert_eq!(control.len(), 1);
|
|
|
|
assert_eq!(control[0], 42);
|
|
|
|
let mut vec = Vec::<u8>::new();
|
|
|
|
vec.resize(100 * 1024 * 1024, 0);
|
|
|
|
vec[0] = 99;
|
|
|
|
let buf = vec.into_boxed_slice();
|
|
|
|
Op::Sync(buf)
|
|
|
|
}
|
|
|
|
Mode::OverflowReqAsync => {
|
|
|
|
assert_eq!(control.len(), 100 * 1024 * 1024);
|
|
|
|
let buf = vec![43u8, 0, 0, 0].into_boxed_slice();
|
2019-12-07 15:04:17 -05:00
|
|
|
Op::Async(futures::future::ok(buf).boxed())
|
2019-10-02 13:05:48 -04:00
|
|
|
}
|
|
|
|
Mode::OverflowResAsync => {
|
|
|
|
assert_eq!(control.len(), 1);
|
|
|
|
assert_eq!(control[0], 42);
|
|
|
|
let mut vec = Vec::<u8>::new();
|
|
|
|
vec.resize(100 * 1024 * 1024, 0);
|
|
|
|
vec[0] = 4;
|
|
|
|
let buf = vec.into_boxed_slice();
|
2019-12-07 15:04:17 -05:00
|
|
|
Op::Async(futures::future::ok(buf).boxed())
|
2019-10-02 13:05:48 -04:00
|
|
|
}
|
2019-04-28 15:31:10 -04:00
|
|
|
}
|
2019-10-02 13:05:48 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
isolate.register_op("test", dispatcher);
|
|
|
|
|
2019-04-23 18:58:00 -04:00
|
|
|
js_check(isolate.execute(
|
|
|
|
"setup.js",
|
|
|
|
r#"
|
|
|
|
function assert(cond) {
|
|
|
|
if (!cond) {
|
|
|
|
throw Error("assert");
|
|
|
|
}
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-04-23 18:58:00 -04:00
|
|
|
"#,
|
|
|
|
));
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
(isolate, 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() {
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::Async);
|
2019-03-11 17:57:36 -04:00
|
|
|
js_check(isolate.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();
|
|
|
|
"#,
|
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
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| {
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::Async);
|
2019-10-14 17:46:27 -04:00
|
|
|
|
|
|
|
js_check(isolate.execute(
|
|
|
|
"setup2.js",
|
|
|
|
r#"
|
|
|
|
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++;
|
|
|
|
});
|
|
|
|
"#,
|
|
|
|
));
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 0);
|
|
|
|
js_check(isolate.execute(
|
|
|
|
"check1.js",
|
|
|
|
r#"
|
|
|
|
assert(nrecv == 0);
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
assert(nrecv == 0);
|
|
|
|
"#,
|
2019-04-14 21:58:27 -04:00
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-11-16 19:17:47 -05:00
|
|
|
assert!(match isolate.poll_unpin(cx) {
|
|
|
|
Poll::Ready(Ok(_)) => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.execute(
|
|
|
|
"check2.js",
|
|
|
|
r#"
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(nrecv == 1);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
assert(nrecv == 1);
|
|
|
|
"#,
|
2019-04-14 21:58:27 -04:00
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2019-11-16 19:17:47 -05:00
|
|
|
assert!(match isolate.poll_unpin(cx) {
|
|
|
|
Poll::Ready(Ok(_)) => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.execute("check3.js", "assert(nrecv == 2)"));
|
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.
|
2019-11-16 19:17:47 -05:00
|
|
|
assert!(match isolate.poll_unpin(cx) {
|
|
|
|
Poll::Ready(Ok(_)) => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
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| {
|
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::AsyncUnref);
|
|
|
|
js_check(isolate.execute(
|
|
|
|
"check1.js",
|
|
|
|
r#"
|
|
|
|
Deno.core.setAsyncHandler(1, (buf) => {
|
|
|
|
// This handler will never be called
|
|
|
|
assert(false);
|
|
|
|
});
|
|
|
|
let control = new Uint8Array([42]);
|
|
|
|
Deno.core.send(1, control);
|
|
|
|
"#,
|
|
|
|
));
|
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
|
|
|
// The above op never finish, but isolate can finish
|
|
|
|
// because the op is an unreffed async op.
|
|
|
|
assert!(match isolate.poll_unpin(cx) {
|
|
|
|
Poll::Ready(Ok(_)) => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-21 09:48:19 -04:00
|
|
|
#[test]
|
|
|
|
fn terminate_execution() {
|
|
|
|
let (tx, rx) = std::sync::mpsc::channel::<bool>();
|
|
|
|
let tx_clone = tx.clone();
|
|
|
|
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, _dispatch_count) = setup(Mode::Async);
|
2019-03-21 09:48:19 -04:00
|
|
|
let shared = isolate.shared_isolate_handle();
|
|
|
|
|
|
|
|
let t1 = std::thread::spawn(move || {
|
|
|
|
// allow deno to boot and run
|
|
|
|
std::thread::sleep(std::time::Duration::from_millis(100));
|
|
|
|
|
|
|
|
// terminate execution
|
|
|
|
shared.terminate_execution();
|
|
|
|
|
|
|
|
// allow shutdown
|
2019-11-16 19:17:47 -05:00
|
|
|
std::thread::sleep(std::time::Duration::from_millis(200));
|
2019-03-21 09:48:19 -04:00
|
|
|
|
|
|
|
// unless reported otherwise the test should fail after this point
|
|
|
|
tx_clone.send(false).ok();
|
|
|
|
});
|
|
|
|
|
|
|
|
let t2 = std::thread::spawn(move || {
|
2020-01-25 08:31:42 -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) => {
|
|
|
|
assert_eq!(e.to_string(), "Uncaught Error: execution terminated")
|
|
|
|
}
|
|
|
|
};
|
2019-03-21 09:48:19 -04:00
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
// `execute()` returned, which means `terminate_execution()` worked.
|
2019-03-21 09:48:19 -04:00
|
|
|
tx.send(true).ok();
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
// Make sure the isolate unusable again.
|
|
|
|
isolate
|
|
|
|
.execute("simple.js", "1 + 1")
|
|
|
|
.expect("execution should be possible again");
|
2019-03-21 09:48:19 -04:00
|
|
|
});
|
|
|
|
|
2020-01-25 08:31:42 -05:00
|
|
|
rx.recv().expect("execution should be terminated");
|
2019-03-21 09:48:19 -04:00
|
|
|
|
|
|
|
t1.join().unwrap();
|
|
|
|
t2.join().unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dangling_shared_isolate() {
|
|
|
|
let shared = {
|
|
|
|
// isolate is dropped at the end of this block
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, _dispatch_count) = setup(Mode::Async);
|
2019-03-21 09:48:19 -04:00
|
|
|
isolate.shared_isolate_handle()
|
|
|
|
};
|
|
|
|
|
|
|
|
// this should not SEGFAULT
|
|
|
|
shared.terminate_execution();
|
|
|
|
}
|
|
|
|
|
2019-03-14 19:17:52 -04:00
|
|
|
#[test]
|
|
|
|
fn overflow_req_sync() {
|
2019-04-23 18:58:00 -04:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::OverflowReqSync);
|
2019-03-14 19:17:52 -04:00
|
|
|
js_check(isolate.execute(
|
|
|
|
"overflow_req_sync.js",
|
|
|
|
r#"
|
|
|
|
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);
|
2019-08-26 07:48:40 -04:00
|
|
|
assert(response.length == 4);
|
2019-03-14 19:17:52 -04:00
|
|
|
assert(response[0] == 43);
|
|
|
|
assert(asyncRecv == 0);
|
|
|
|
"#,
|
|
|
|
));
|
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.
|
2019-04-23 18:58:00 -04:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::OverflowResSync);
|
2019-03-14 19:17:52 -04:00
|
|
|
js_check(isolate.execute(
|
|
|
|
"overflow_res_sync.js",
|
|
|
|
r#"
|
|
|
|
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);
|
|
|
|
"#,
|
|
|
|
));
|
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| {
|
2019-04-23 18:58:00 -04:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::OverflowReqAsync);
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.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) => {
|
2019-10-14 17:46:27 -04:00
|
|
|
assert(buf.byteLength === 4);
|
|
|
|
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);
|
|
|
|
"#,
|
2019-04-14 21:58:27 -04:00
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-11-16 19:17:47 -05:00
|
|
|
assert!(match isolate.poll_unpin(cx) {
|
|
|
|
Poll::Ready(Ok(_)) => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.execute("check.js", "assert(asyncRecv == 1);"));
|
|
|
|
});
|
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.
|
2019-04-23 18:58:00 -04:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::OverflowResAsync);
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.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);
|
|
|
|
"#,
|
2019-04-14 21:58:27 -04:00
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 1);
|
2019-07-10 18:53:48 -04:00
|
|
|
poll_until_ready(&mut isolate, 3).unwrap();
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.execute("check.js", "assert(asyncRecv == 1);"));
|
|
|
|
});
|
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| {
|
2019-04-23 18:58:00 -04:00
|
|
|
let (mut isolate, dispatch_count) = setup(Mode::OverflowResAsync);
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.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);
|
|
|
|
"#,
|
2019-04-14 21:58:27 -04:00
|
|
|
));
|
2019-04-23 18:58:00 -04:00
|
|
|
assert_eq!(dispatch_count.load(Ordering::Relaxed), 2);
|
2019-07-10 18:53:48 -04:00
|
|
|
poll_until_ready(&mut isolate, 3).unwrap();
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(isolate.execute("check.js", "assert(asyncRecv == 2);"));
|
|
|
|
});
|
2019-03-24 11:07:10 -04:00
|
|
|
}
|
|
|
|
|
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| {
|
2019-10-22 10:49:58 -04:00
|
|
|
let (mut isolate, _dispatch_count) = setup(Mode::OverflowResAsync);
|
|
|
|
js_check(isolate.execute(
|
|
|
|
"bad_op_id.js",
|
|
|
|
r#"
|
|
|
|
let thrown;
|
|
|
|
try {
|
|
|
|
Deno.core.dispatch(100, []);
|
|
|
|
} 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
|
|
|
"#,
|
|
|
|
));
|
2019-11-16 19:17:47 -05:00
|
|
|
if let Poll::Ready(Err(_)) = isolate.poll_unpin(&mut cx) {
|
|
|
|
unreachable!();
|
|
|
|
}
|
2019-10-22 10:49:58 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-14 19:17:52 -04:00
|
|
|
#[test]
|
|
|
|
fn test_js() {
|
2019-11-16 19:17:47 -05:00
|
|
|
run_in_task(|mut cx| {
|
2019-12-07 15:04:17 -05:00
|
|
|
let (mut isolate, _dispatch_count) = setup(Mode::Async);
|
2019-04-14 21:58:27 -04:00
|
|
|
js_check(
|
|
|
|
isolate.execute(
|
|
|
|
"shared_queue_test.js",
|
|
|
|
include_str!("shared_queue_test.js"),
|
|
|
|
),
|
|
|
|
);
|
2019-11-16 19:17:47 -05:00
|
|
|
if let Poll::Ready(Err(_)) = isolate.poll_unpin(&mut cx) {
|
|
|
|
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
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn will_snapshot() {
|
|
|
|
let snapshot = {
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut isolate = Isolate::new(StartupData::None, true);
|
2019-04-24 21:43:06 -04:00
|
|
|
js_check(isolate.execute("a.js", "a = 1 + 2"));
|
|
|
|
let s = isolate.snapshot().unwrap();
|
|
|
|
drop(isolate);
|
|
|
|
s
|
|
|
|
};
|
|
|
|
|
2020-01-06 14:07:35 -05:00
|
|
|
let startup_data = StartupData::OwnedSnapshot(snapshot);
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut isolate2 = Isolate::new(startup_data, false);
|
2019-04-24 21:43:06 -04:00
|
|
|
js_check(isolate2.execute("check.js", "if (a != 3) throw Error('x')"));
|
|
|
|
}
|
2019-03-11 17:57:36 -04:00
|
|
|
}
|
2020-01-25 08:31:42 -05:00
|
|
|
|
|
|
|
// TODO(piscisaureus): rusty_v8 should implement the Error trait on
|
|
|
|
// values of type v8::Global<T>.
|
|
|
|
pub struct ErrWithV8Handle {
|
|
|
|
err: ErrBox,
|
|
|
|
handle: v8::Global<v8::Value>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ErrWithV8Handle {
|
|
|
|
pub fn new(
|
|
|
|
scope: &mut impl v8::InIsolate,
|
|
|
|
err: ErrBox,
|
|
|
|
handle: v8::Local<v8::Value>,
|
|
|
|
) -> Self {
|
|
|
|
let handle = v8::Global::new_from(scope, handle);
|
|
|
|
Self { err, handle }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_handle(&mut self) -> &mut v8::Global<v8::Value> {
|
|
|
|
&mut self.handle
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for ErrWithV8Handle {}
|
|
|
|
unsafe impl Sync for ErrWithV8Handle {}
|
|
|
|
|
|
|
|
impl Error for ErrWithV8Handle {}
|
|
|
|
|
|
|
|
impl fmt::Display for ErrWithV8Handle {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.err.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for ErrWithV8Handle {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.err.fmt(f)
|
|
|
|
}
|
|
|
|
}
|