2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-08-09 12:17:08 -07:00
|
|
|
use binding;
|
2018-07-23 14:13:12 -04:00
|
|
|
use binding::{deno_buf, deno_set_response, DenoC};
|
|
|
|
use flatbuffers;
|
2018-07-26 17:54:22 -04:00
|
|
|
use from_c;
|
2018-08-09 13:24:30 -04:00
|
|
|
use fs;
|
2018-08-09 12:17:08 -07:00
|
|
|
use futures;
|
|
|
|
use futures::sync::oneshot;
|
2018-07-23 14:13:12 -04:00
|
|
|
use msg_generated::deno as msg;
|
2018-08-13 19:55:10 -04:00
|
|
|
use std;
|
2018-08-09 13:24:30 -04:00
|
|
|
use std::path::Path;
|
2018-07-06 11:27:36 -04:00
|
|
|
|
2018-08-13 19:55:10 -04:00
|
|
|
pub extern "C" fn msg_from_js(d: *const DenoC, buf: deno_buf) {
|
|
|
|
let bytes = unsafe { std::slice::from_raw_parts(buf.data_ptr, buf.data_len) };
|
|
|
|
let base = msg::GetRootAsBase(bytes);
|
|
|
|
let msg_type = base.msg_type();
|
|
|
|
match msg_type {
|
|
|
|
msg::Any::Start => {
|
|
|
|
reply_start(d);
|
|
|
|
}
|
|
|
|
msg::Any::CodeFetch => {
|
|
|
|
// TODO base.msg_as_CodeFetch();
|
|
|
|
let msg = msg::CodeFetch::init_from_table(base.msg().unwrap());
|
|
|
|
let module_specifier = msg.module_specifier().unwrap();
|
|
|
|
let containing_file = msg.containing_file().unwrap();
|
|
|
|
handle_code_fetch(d, module_specifier, containing_file);
|
|
|
|
}
|
|
|
|
msg::Any::CodeCache => {
|
|
|
|
// TODO base.msg_as_CodeCache();
|
|
|
|
let msg = msg::CodeCache::init_from_table(base.msg().unwrap());
|
|
|
|
let filename = msg.filename().unwrap();
|
|
|
|
let source_code = msg.source_code().unwrap();
|
|
|
|
let output_code = msg.output_code().unwrap();
|
|
|
|
handle_code_cache(d, filename, source_code, output_code);
|
|
|
|
}
|
|
|
|
msg::Any::TimerStart => {
|
|
|
|
// TODO base.msg_as_TimerStart();
|
|
|
|
let msg = msg::TimerStart::init_from_table(base.msg().unwrap());
|
|
|
|
handle_timer_start(d, msg.id(), msg.interval(), msg.delay());
|
|
|
|
}
|
|
|
|
msg::Any::TimerClear => {
|
|
|
|
// TODO base.msg_as_TimerClear();
|
|
|
|
let msg = msg::TimerClear::init_from_table(base.msg().unwrap());
|
|
|
|
handle_timer_clear(d, msg.id());
|
|
|
|
}
|
|
|
|
msg::Any::Exit => {
|
|
|
|
// TODO base.msg_as_Exit();
|
|
|
|
let msg = msg::Exit::init_from_table(base.msg().unwrap());
|
|
|
|
std::process::exit(msg.code());
|
|
|
|
}
|
|
|
|
msg::Any::ReadFileSync => {
|
|
|
|
// TODO base.msg_as_ReadFileSync();
|
|
|
|
let msg = msg::ReadFileSync::init_from_table(base.msg().unwrap());
|
|
|
|
let filename = msg.filename().unwrap();
|
|
|
|
handle_read_file_sync(d, filename);
|
|
|
|
}
|
|
|
|
msg::Any::NONE => {
|
|
|
|
assert!(false, "Got message with msg_type == Any_NONE");
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
assert!(
|
|
|
|
false,
|
|
|
|
format!("Unhandled message {}", msg::EnumNameAny(msg_type))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2018-07-13 03:24:07 -04:00
|
|
|
}
|
|
|
|
|
2018-08-13 19:55:10 -04:00
|
|
|
fn reply_start(d: *const DenoC) {
|
|
|
|
let deno = from_c(d);
|
|
|
|
|
|
|
|
let mut builder = flatbuffers::FlatBufferBuilder::new();
|
|
|
|
|
|
|
|
let argv = deno.argv.iter().map(|s| s.as_str()).collect::<Vec<_>>();
|
|
|
|
let argv_off = builder.create_vector_of_strings(argv.as_slice());
|
|
|
|
|
|
|
|
let cwd_path = std::env::current_dir().unwrap();
|
|
|
|
let cwd_off = builder.create_string(cwd_path.to_str().unwrap());
|
|
|
|
|
|
|
|
let msg = msg::CreateStartRes(
|
|
|
|
&mut builder,
|
|
|
|
&msg::StartResArgs {
|
|
|
|
cwd: Some(cwd_off),
|
|
|
|
argv: Some(argv_off),
|
|
|
|
debug_flag: false,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
set_response_base(
|
|
|
|
d,
|
|
|
|
&mut builder,
|
|
|
|
&msg::BaseArgs {
|
|
|
|
msg: Some(flatbuffers::Offset::new(msg.value())),
|
|
|
|
msg_type: msg::Any::StartRes,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
2018-07-13 03:24:07 -04:00
|
|
|
}
|
|
|
|
|
2018-08-09 12:17:08 -07:00
|
|
|
// TODO(ry) Use Deno instead of DenoC as first arg.
|
2018-07-23 14:13:12 -04:00
|
|
|
fn reply_error(d: *const DenoC, cmd_id: u32, msg: &String) {
|
|
|
|
let mut builder = flatbuffers::FlatBufferBuilder::new();
|
|
|
|
// println!("reply_error{}", msg);
|
|
|
|
let args = msg::BaseArgs {
|
|
|
|
cmdId: cmd_id,
|
2018-08-13 15:02:35 -04:00
|
|
|
error: Some(builder.create_string(msg)),
|
2018-07-23 14:13:12 -04:00
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
set_response_base(d, &mut builder, &args)
|
|
|
|
}
|
|
|
|
|
2018-08-09 12:17:08 -07:00
|
|
|
fn create_msg(
|
2018-07-23 14:13:12 -04:00
|
|
|
builder: &mut flatbuffers::FlatBufferBuilder,
|
|
|
|
args: &msg::BaseArgs,
|
2018-08-09 12:17:08 -07:00
|
|
|
) -> deno_buf {
|
2018-07-23 14:13:12 -04:00
|
|
|
let base = msg::CreateBase(builder, &args);
|
2018-08-13 15:02:35 -04:00
|
|
|
msg::FinishBaseBuffer(builder, base);
|
2018-07-23 14:13:12 -04:00
|
|
|
let data = builder.get_active_buf_slice();
|
2018-08-09 12:17:08 -07:00
|
|
|
deno_buf {
|
2018-07-23 14:13:12 -04:00
|
|
|
// TODO(ry)
|
|
|
|
// The deno_buf / ImportBuf / ExportBuf semantics should be such that we do not need to yield
|
|
|
|
// ownership. Temporarally there is a hack in ImportBuf that when alloc_ptr is null, it will
|
|
|
|
// memcpy the deno_buf into V8 instead of doing zero copy.
|
|
|
|
alloc_ptr: 0 as *mut u8,
|
|
|
|
alloc_len: 0,
|
|
|
|
data_ptr: data.as_ptr() as *mut u8,
|
|
|
|
data_len: data.len(),
|
2018-08-09 12:17:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(ry) Use Deno instead of DenoC as first arg.
|
|
|
|
fn set_response_base(
|
|
|
|
d: *const DenoC,
|
|
|
|
builder: &mut flatbuffers::FlatBufferBuilder,
|
|
|
|
args: &msg::BaseArgs,
|
|
|
|
) {
|
|
|
|
let buf = create_msg(builder, args);
|
2018-07-23 14:13:12 -04:00
|
|
|
unsafe { deno_set_response(d, buf) }
|
|
|
|
}
|
|
|
|
|
2018-08-09 12:17:08 -07:00
|
|
|
// TODO(ry) Use Deno instead of DenoC as first arg.
|
|
|
|
fn send_base(
|
|
|
|
d: *const DenoC,
|
|
|
|
builder: &mut flatbuffers::FlatBufferBuilder,
|
|
|
|
args: &msg::BaseArgs,
|
|
|
|
) {
|
|
|
|
let buf = create_msg(builder, args);
|
|
|
|
unsafe { binding::deno_send(d, buf) }
|
|
|
|
}
|
|
|
|
|
2018-08-02 19:13:02 -04:00
|
|
|
// https://github.com/denoland/deno/blob/golang/os.go#L100-L154
|
2018-08-13 19:55:10 -04:00
|
|
|
fn handle_code_fetch(
|
2018-07-19 21:14:32 -04:00
|
|
|
d: *const DenoC,
|
2018-08-13 19:55:10 -04:00
|
|
|
module_specifier: &str,
|
|
|
|
containing_file: &str,
|
2018-07-06 11:27:36 -04:00
|
|
|
) {
|
2018-07-26 17:54:22 -04:00
|
|
|
let deno = from_c(d);
|
2018-07-19 21:14:32 -04:00
|
|
|
|
2018-07-26 17:54:22 -04:00
|
|
|
assert!(deno.dir.root.join("gen") == deno.dir.gen, "Sanity check");
|
2018-07-06 11:27:36 -04:00
|
|
|
|
2018-07-26 17:54:22 -04:00
|
|
|
let result = deno
|
|
|
|
.dir
|
|
|
|
.code_fetch(module_specifier, containing_file)
|
|
|
|
.map_err(|err| {
|
|
|
|
let errmsg = format!("{}", err);
|
2018-08-13 19:55:10 -04:00
|
|
|
reply_error(d, 0, &errmsg);
|
2018-07-26 17:54:22 -04:00
|
|
|
});
|
|
|
|
if result.is_err() {
|
|
|
|
return;
|
2018-07-19 21:14:32 -04:00
|
|
|
}
|
2018-07-26 17:54:22 -04:00
|
|
|
let out = result.unwrap();
|
|
|
|
// reply_code_fetch
|
|
|
|
let mut builder = flatbuffers::FlatBufferBuilder::new();
|
|
|
|
let mut msg_args = msg::CodeFetchResArgs {
|
2018-08-13 15:02:35 -04:00
|
|
|
module_name: Some(builder.create_string(&out.module_name)),
|
|
|
|
filename: Some(builder.create_string(&out.filename)),
|
|
|
|
source_code: Some(builder.create_string(&out.source_code)),
|
2018-07-26 17:54:22 -04:00
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
match out.maybe_output_code {
|
|
|
|
Some(ref output_code) => {
|
2018-08-13 15:02:35 -04:00
|
|
|
msg_args.output_code = Some(builder.create_string(output_code));
|
2018-07-26 17:54:22 -04:00
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
};
|
|
|
|
let msg = msg::CreateCodeFetchRes(&mut builder, &msg_args);
|
|
|
|
let args = msg::BaseArgs {
|
2018-08-13 15:02:35 -04:00
|
|
|
msg: Some(flatbuffers::Offset::new(msg.value())),
|
2018-07-26 17:54:22 -04:00
|
|
|
msg_type: msg::Any::CodeFetchRes,
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
set_response_base(d, &mut builder, &args)
|
2018-07-13 03:24:07 -04:00
|
|
|
}
|
|
|
|
|
2018-08-02 19:13:02 -04:00
|
|
|
// https://github.com/denoland/deno/blob/golang/os.go#L156-L169
|
2018-08-13 19:55:10 -04:00
|
|
|
fn handle_code_cache(
|
2018-07-26 17:54:22 -04:00
|
|
|
d: *const DenoC,
|
2018-08-13 19:55:10 -04:00
|
|
|
filename: &str,
|
|
|
|
source_code: &str,
|
|
|
|
output_code: &str,
|
2018-07-26 17:54:22 -04:00
|
|
|
) {
|
|
|
|
let deno = from_c(d);
|
|
|
|
let result = deno.dir.code_cache(filename, source_code, output_code);
|
|
|
|
if result.is_err() {
|
|
|
|
let err = result.unwrap_err();
|
|
|
|
let errmsg = format!("{}", err);
|
2018-08-13 19:55:10 -04:00
|
|
|
reply_error(d, 0, &errmsg);
|
2018-07-26 17:54:22 -04:00
|
|
|
}
|
|
|
|
// null response indicates success.
|
2018-07-06 11:27:36 -04:00
|
|
|
}
|
2018-08-09 12:17:08 -07:00
|
|
|
|
|
|
|
fn set_timeout<F>(
|
|
|
|
cb: F,
|
|
|
|
delay: u32,
|
|
|
|
) -> (
|
|
|
|
impl Future<Item = (), Error = ()>,
|
|
|
|
futures::sync::oneshot::Sender<()>,
|
|
|
|
)
|
|
|
|
where
|
|
|
|
F: FnOnce() -> (),
|
|
|
|
{
|
|
|
|
let (cancel_tx, cancel_rx) = oneshot::channel::<()>();
|
|
|
|
let when = Instant::now() + Duration::from_millis(delay.into());
|
|
|
|
let delay_task = Delay::new(when)
|
|
|
|
.map_err(|e| panic!("timer failed; err={:?}", e))
|
|
|
|
.and_then(|_| {
|
|
|
|
cb();
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.select(cancel_rx)
|
|
|
|
.map(|_| ())
|
|
|
|
.map_err(|_| ());
|
|
|
|
|
|
|
|
(delay_task, cancel_tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_interval<F>(
|
|
|
|
cb: F,
|
|
|
|
delay: u32,
|
|
|
|
) -> (
|
|
|
|
impl Future<Item = (), Error = ()>,
|
|
|
|
futures::sync::oneshot::Sender<()>,
|
|
|
|
)
|
|
|
|
where
|
|
|
|
F: Fn() -> (),
|
|
|
|
{
|
|
|
|
let (cancel_tx, cancel_rx) = oneshot::channel::<()>();
|
|
|
|
let delay = Duration::from_millis(delay.into());
|
|
|
|
let interval_task = future::lazy(move || {
|
|
|
|
Interval::new(Instant::now() + delay, delay)
|
|
|
|
.for_each(move |_| {
|
|
|
|
cb();
|
|
|
|
future::ok(())
|
|
|
|
})
|
|
|
|
.into_future()
|
|
|
|
.map_err(|_| panic!())
|
|
|
|
}).select(cancel_rx)
|
|
|
|
.map(|_| ())
|
|
|
|
.map_err(|_| ());
|
|
|
|
|
|
|
|
(interval_task, cancel_tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(ry) Use Deno instead of DenoC as first arg.
|
|
|
|
fn send_timer_ready(d: *const DenoC, timer_id: u32, done: bool) {
|
|
|
|
let mut builder = flatbuffers::FlatBufferBuilder::new();
|
|
|
|
let msg = msg::CreateTimerReady(
|
|
|
|
&mut builder,
|
|
|
|
&msg::TimerReadyArgs {
|
|
|
|
id: timer_id,
|
|
|
|
done,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
send_base(
|
|
|
|
d,
|
|
|
|
&mut builder,
|
|
|
|
&msg::BaseArgs {
|
2018-08-13 15:02:35 -04:00
|
|
|
msg: Some(flatbuffers::Offset::new(msg.value())),
|
2018-08-09 12:17:08 -07:00
|
|
|
msg_type: msg::Any::TimerReady,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-09 13:24:30 -04:00
|
|
|
// Prototype https://github.com/denoland/deno/blob/golang/os.go#L171-L184
|
2018-08-13 19:55:10 -04:00
|
|
|
fn handle_read_file_sync(d: *const DenoC, filename: &str) {
|
2018-08-09 13:24:30 -04:00
|
|
|
debug!("handle_read_file_sync {}", filename);
|
|
|
|
let result = fs::read_file_sync(Path::new(filename));
|
|
|
|
if result.is_err() {
|
|
|
|
let err = result.unwrap_err();
|
|
|
|
let errmsg = format!("{}", err);
|
2018-08-13 19:55:10 -04:00
|
|
|
reply_error(d, 0, &errmsg);
|
2018-08-09 13:24:30 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the response message. memcpy data into msg.
|
2018-08-13 15:02:35 -04:00
|
|
|
// TODO(ry) zero-copy.
|
2018-08-09 13:24:30 -04:00
|
|
|
let mut builder = flatbuffers::FlatBufferBuilder::new();
|
|
|
|
let vec = result.unwrap();
|
2018-08-13 15:02:35 -04:00
|
|
|
let data_off = builder.create_byte_vector(vec.as_slice());
|
2018-08-09 13:24:30 -04:00
|
|
|
let msg = msg::CreateReadFileSyncRes(
|
|
|
|
&mut builder,
|
|
|
|
&msg::ReadFileSyncResArgs {
|
2018-08-13 15:02:35 -04:00
|
|
|
data: Some(data_off),
|
2018-08-09 13:24:30 -04:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
set_response_base(
|
|
|
|
d,
|
|
|
|
&mut builder,
|
|
|
|
&msg::BaseArgs {
|
2018-08-13 15:02:35 -04:00
|
|
|
msg: Some(flatbuffers::Offset::new(msg.value())),
|
2018-08-09 13:24:30 -04:00
|
|
|
msg_type: msg::Any::ReadFileSyncRes,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-09 12:17:08 -07:00
|
|
|
// TODO(ry) Use Deno instead of DenoC as first arg.
|
|
|
|
fn remove_timer(d: *const DenoC, timer_id: u32) {
|
|
|
|
let deno = from_c(d);
|
|
|
|
deno.timers.remove(&timer_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
use std::time::{Duration, Instant};
|
|
|
|
use tokio::prelude::*;
|
|
|
|
use tokio::timer::{Delay, Interval};
|
|
|
|
// Prototype: https://github.com/ry/deno/blob/golang/timers.go#L25-L39
|
2018-08-13 19:55:10 -04:00
|
|
|
fn handle_timer_start(
|
2018-08-09 12:17:08 -07:00
|
|
|
d: *const DenoC,
|
|
|
|
timer_id: u32,
|
|
|
|
interval: bool,
|
|
|
|
delay: u32,
|
|
|
|
) {
|
|
|
|
debug!("handle_timer_start");
|
|
|
|
let deno = from_c(d);
|
|
|
|
|
|
|
|
if interval {
|
|
|
|
let (interval_task, cancel_interval) = set_interval(
|
|
|
|
move || {
|
|
|
|
send_timer_ready(d, timer_id, false);
|
|
|
|
},
|
|
|
|
delay,
|
|
|
|
);
|
|
|
|
|
|
|
|
deno.timers.insert(timer_id, cancel_interval);
|
|
|
|
deno.rt.spawn(interval_task);
|
|
|
|
} else {
|
|
|
|
let (delay_task, cancel_delay) = set_timeout(
|
|
|
|
move || {
|
|
|
|
remove_timer(d, timer_id);
|
|
|
|
send_timer_ready(d, timer_id, true);
|
|
|
|
},
|
|
|
|
delay,
|
|
|
|
);
|
|
|
|
|
|
|
|
deno.timers.insert(timer_id, cancel_delay);
|
|
|
|
deno.rt.spawn(delay_task);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prototype: https://github.com/ry/deno/blob/golang/timers.go#L40-L43
|
2018-08-13 19:55:10 -04:00
|
|
|
fn handle_timer_clear(d: *const DenoC, timer_id: u32) {
|
2018-08-09 12:17:08 -07:00
|
|
|
debug!("handle_timer_clear");
|
|
|
|
remove_timer(d, timer_id);
|
|
|
|
}
|