From 9d9853b319a8a989080cf01d2f748b8fe844a812 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 14 Nov 2018 21:54:21 -0500 Subject: Lift snapshot to be an argument of Isolate::new(). --- src/isolate.rs | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) (limited to 'src/isolate.rs') diff --git a/src/isolate.rs b/src/isolate.rs index 6e8b1864d..ccfb3453c 100644 --- a/src/isolate.rs +++ b/src/isolate.rs @@ -10,7 +10,6 @@ use errors::DenoResult; use flags; use libdeno; use permissions::DenoPermissions; -use snapshot; use futures::Future; use libc::c_void; @@ -130,6 +129,7 @@ fn empty() -> libdeno::deno_buf { impl Isolate { pub fn new( + snapshot: libdeno::deno_buf, flags: flags::DenoFlags, argv_rest: Vec, dispatch: Dispatch, @@ -138,9 +138,8 @@ impl Isolate { unsafe { libdeno::deno_init() }; }); let shared = empty(); // TODO Use shared for message passing. - let libdeno_isolate = unsafe { - libdeno::deno_new(snapshot::deno_snapshot(), shared, pre_dispatch) - }; + let libdeno_isolate = + unsafe { libdeno::deno_new(snapshot, shared, pre_dispatch) }; // This channel handles sending async messages back to the runtime. let (tx, rx) = mpsc::channel::<(i32, Buf)>(); @@ -389,12 +388,15 @@ fn recv_deadline( mod tests { use super::*; use futures; + use snapshot; #[test] fn test_dispatch_sync() { let argv = vec![String::from("./deno"), String::from("hello.js")]; let (flags, rest_argv, _) = flags::set_flags(argv).unwrap(); - let mut isolate = Isolate::new(flags, rest_argv, dispatch_sync); + // TODO Don't use deno_snapshot for these tests. + let mut isolate = + Isolate::new(snapshot::deno_snapshot(), flags, rest_argv, dispatch_sync); tokio_util::init(|| { isolate .execute( @@ -434,7 +436,13 @@ mod tests { fn test_metrics_sync() { let argv = vec![String::from("./deno"), String::from("hello.js")]; let (flags, rest_argv, _) = flags::set_flags(argv).unwrap(); - let mut isolate = Isolate::new(flags, rest_argv, metrics_dispatch_sync); + // TODO Don't use deno_snapshot for these tests. + let mut isolate = Isolate::new( + snapshot::deno_snapshot(), + flags, + rest_argv, + metrics_dispatch_sync, + ); tokio_util::init(|| { // Verify that metrics have been properly initialized. { @@ -469,7 +477,13 @@ mod tests { fn test_metrics_async() { let argv = vec![String::from("./deno"), String::from("hello.js")]; let (flags, rest_argv, _) = flags::set_flags(argv).unwrap(); - let mut isolate = Isolate::new(flags, rest_argv, metrics_dispatch_async); + // TODO Don't use deno_snapshot for these tests. + let mut isolate = Isolate::new( + snapshot::deno_snapshot(), + flags, + rest_argv, + metrics_dispatch_async, + ); tokio_util::init(|| { // Verify that metrics have been properly initialized. { -- cgit v1.2.3