2020-08-21 11:14:47 -04:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
use deno_core::js_check;
|
|
|
|
use deno_core::BufVec;
|
2020-09-06 15:44:29 -04:00
|
|
|
use deno_core::JsRuntime;
|
2020-08-21 11:14:47 -04:00
|
|
|
use deno_core::Op;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
2020-08-21 11:14:47 -04:00
|
|
|
use deno_core::Script;
|
|
|
|
use deno_core::StartupData;
|
|
|
|
use deno_core::ZeroCopyBuf;
|
|
|
|
use futures::future::poll_fn;
|
|
|
|
use futures::future::FutureExt;
|
|
|
|
use futures::future::TryFuture;
|
|
|
|
use futures::future::TryFutureExt;
|
2020-09-10 09:57:45 -04:00
|
|
|
use std::cell::RefCell;
|
2020-08-21 11:14:47 -04:00
|
|
|
use std::convert::TryInto;
|
|
|
|
use std::env;
|
|
|
|
use std::fmt::Debug;
|
|
|
|
use std::io::Error;
|
|
|
|
use std::io::ErrorKind;
|
|
|
|
use std::mem::size_of;
|
|
|
|
use std::net::SocketAddr;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::ptr;
|
|
|
|
use std::rc::Rc;
|
|
|
|
use tokio::io::AsyncRead;
|
|
|
|
use tokio::io::AsyncWrite;
|
|
|
|
use tokio::net::TcpListener;
|
|
|
|
use tokio::net::TcpStream;
|
2020-09-05 20:34:02 -04:00
|
|
|
use tokio::runtime;
|
2020-08-21 11:14:47 -04:00
|
|
|
|
|
|
|
struct Logger;
|
|
|
|
|
|
|
|
impl log::Log for Logger {
|
|
|
|
fn enabled(&self, metadata: &log::Metadata) -> bool {
|
|
|
|
metadata.level() <= log::max_level()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn log(&self, record: &log::Record) {
|
|
|
|
if self.enabled(record.metadata()) {
|
|
|
|
println!("{} - {}", record.level(), record.args());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn flush(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
struct Record {
|
2020-09-05 20:34:02 -04:00
|
|
|
promise_id: u32,
|
|
|
|
rid: u32,
|
|
|
|
result: i32,
|
2020-08-21 11:14:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type RecordBuf = [u8; size_of::<Record>()];
|
|
|
|
|
|
|
|
impl From<&[u8]> for Record {
|
|
|
|
fn from(buf: &[u8]) -> Self {
|
|
|
|
assert_eq!(buf.len(), size_of::<RecordBuf>());
|
|
|
|
unsafe { *(buf as *const _ as *const RecordBuf) }.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<RecordBuf> for Record {
|
|
|
|
fn from(buf: RecordBuf) -> Self {
|
|
|
|
unsafe {
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
ptr::read_unaligned(&buf as *const _ as *const Self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Record> for RecordBuf {
|
|
|
|
fn from(record: Record) -> Self {
|
|
|
|
unsafe { ptr::read(&record as *const _ as *const Self) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 15:44:29 -04:00
|
|
|
fn create_isolate() -> JsRuntime {
|
2020-08-21 11:14:47 -04:00
|
|
|
let startup_data = StartupData::Script(Script {
|
|
|
|
source: include_str!("http_bench_bin_ops.js"),
|
|
|
|
filename: "http_bench_bin_ops.js",
|
|
|
|
});
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
let mut isolate = JsRuntime::new(startup_data, false);
|
|
|
|
register_op_bin_sync(&mut isolate, "listen", op_listen);
|
|
|
|
register_op_bin_sync(&mut isolate, "close", op_close);
|
|
|
|
register_op_bin_async(&mut isolate, "accept", op_accept);
|
|
|
|
register_op_bin_async(&mut isolate, "read", op_read);
|
|
|
|
register_op_bin_async(&mut isolate, "write", op_write);
|
|
|
|
isolate
|
2020-08-21 11:14:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_listen(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2020-08-21 11:14:47 -04:00
|
|
|
_rid: u32,
|
2020-09-05 20:34:02 -04:00
|
|
|
_bufs: &mut [ZeroCopyBuf],
|
2020-08-21 11:14:47 -04:00
|
|
|
) -> Result<u32, Error> {
|
|
|
|
debug!("listen");
|
|
|
|
let addr = "127.0.0.1:4544".parse::<SocketAddr>().unwrap();
|
|
|
|
let std_listener = std::net::TcpListener::bind(&addr)?;
|
|
|
|
let listener = TcpListener::from_std(std_listener)?;
|
2020-09-10 09:57:45 -04:00
|
|
|
let rid = state.resource_table.add("tcpListener", Box::new(listener));
|
2020-08-21 11:14:47 -04:00
|
|
|
Ok(rid)
|
|
|
|
}
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
fn op_close(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2020-09-05 20:34:02 -04:00
|
|
|
rid: u32,
|
|
|
|
_bufs: &mut [ZeroCopyBuf],
|
|
|
|
) -> Result<u32, Error> {
|
|
|
|
debug!("close rid={}", rid);
|
|
|
|
state
|
|
|
|
.resource_table
|
|
|
|
.close(rid)
|
|
|
|
.map(|_| 0)
|
|
|
|
.ok_or_else(bad_resource_id)
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
async fn op_accept(
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2020-08-21 11:14:47 -04:00
|
|
|
rid: u32,
|
2020-09-05 20:34:02 -04:00
|
|
|
_bufs: BufVec,
|
2020-09-10 09:57:45 -04:00
|
|
|
) -> Result<u32, Error> {
|
2020-08-21 11:14:47 -04:00
|
|
|
debug!("accept rid={}", rid);
|
|
|
|
|
|
|
|
poll_fn(move |cx| {
|
2020-09-10 09:57:45 -04:00
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
|
|
|
|
2020-08-21 11:14:47 -04:00
|
|
|
let listener = resource_table
|
|
|
|
.get_mut::<TcpListener>(rid)
|
2020-09-05 20:34:02 -04:00
|
|
|
.ok_or_else(bad_resource_id)?;
|
2020-08-21 11:14:47 -04:00
|
|
|
listener.poll_accept(cx).map_ok(|(stream, _addr)| {
|
|
|
|
resource_table.add("tcpStream", Box::new(stream))
|
|
|
|
})
|
|
|
|
})
|
2020-09-10 09:57:45 -04:00
|
|
|
.await
|
2020-08-21 11:14:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_read(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: Rc<RefCell<OpState>>,
|
2020-08-21 11:14:47 -04:00
|
|
|
rid: u32,
|
2020-09-05 20:34:02 -04:00
|
|
|
bufs: BufVec,
|
2020-08-21 11:14:47 -04:00
|
|
|
) -> impl TryFuture<Ok = usize, Error = Error> {
|
|
|
|
assert_eq!(bufs.len(), 1, "Invalid number of arguments");
|
|
|
|
let mut buf = bufs[0].clone();
|
|
|
|
|
|
|
|
debug!("read rid={}", rid);
|
|
|
|
|
|
|
|
poll_fn(move |cx| {
|
2020-09-10 09:57:45 -04:00
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
|
|
|
|
2020-08-21 11:14:47 -04:00
|
|
|
let stream = resource_table
|
|
|
|
.get_mut::<TcpStream>(rid)
|
2020-09-05 20:34:02 -04:00
|
|
|
.ok_or_else(bad_resource_id)?;
|
2020-08-21 11:14:47 -04:00
|
|
|
Pin::new(stream).poll_read(cx, &mut buf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn op_write(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: Rc<RefCell<OpState>>,
|
2020-08-21 11:14:47 -04:00
|
|
|
rid: u32,
|
2020-09-05 20:34:02 -04:00
|
|
|
bufs: BufVec,
|
2020-08-21 11:14:47 -04:00
|
|
|
) -> impl TryFuture<Ok = usize, Error = Error> {
|
|
|
|
assert_eq!(bufs.len(), 1, "Invalid number of arguments");
|
|
|
|
let buf = bufs[0].clone();
|
|
|
|
debug!("write rid={}", rid);
|
|
|
|
|
|
|
|
poll_fn(move |cx| {
|
2020-09-10 09:57:45 -04:00
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
|
|
|
|
2020-08-21 11:14:47 -04:00
|
|
|
let stream = resource_table
|
|
|
|
.get_mut::<TcpStream>(rid)
|
2020-09-05 20:34:02 -04:00
|
|
|
.ok_or_else(bad_resource_id)?;
|
2020-08-21 11:14:47 -04:00
|
|
|
Pin::new(stream).poll_write(cx, &buf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
fn register_op_bin_sync<F>(
|
|
|
|
isolate: &mut JsRuntime,
|
|
|
|
name: &'static str,
|
|
|
|
op_fn: F,
|
|
|
|
) where
|
|
|
|
F: Fn(&mut OpState, u32, &mut [ZeroCopyBuf]) -> Result<u32, Error> + 'static,
|
2020-09-05 20:34:02 -04:00
|
|
|
{
|
2020-09-10 09:57:45 -04:00
|
|
|
let base_op_fn = move |state: Rc<RefCell<OpState>>, mut bufs: BufVec| -> Op {
|
2020-09-05 20:34:02 -04:00
|
|
|
let record = Record::from(bufs[0].as_ref());
|
|
|
|
let is_sync = record.promise_id == 0;
|
|
|
|
assert!(is_sync);
|
|
|
|
|
|
|
|
let zero_copy_bufs = &mut bufs[1..];
|
2020-09-10 09:57:45 -04:00
|
|
|
let result: i32 =
|
|
|
|
match op_fn(&mut state.borrow_mut(), record.rid, zero_copy_bufs) {
|
|
|
|
Ok(r) => r as i32,
|
|
|
|
Err(_) => -1,
|
|
|
|
};
|
2020-09-05 20:34:02 -04:00
|
|
|
let buf = RecordBuf::from(Record { result, ..record })[..].into();
|
|
|
|
Op::Sync(buf)
|
|
|
|
};
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
isolate.register_op(name, base_op_fn);
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
fn register_op_bin_async<F, R>(
|
|
|
|
isolate: &mut JsRuntime,
|
|
|
|
name: &'static str,
|
|
|
|
op_fn: F,
|
|
|
|
) where
|
|
|
|
F: Fn(Rc<RefCell<OpState>>, u32, BufVec) -> R + Copy + 'static,
|
2020-09-05 20:34:02 -04:00
|
|
|
R: TryFuture,
|
|
|
|
R::Ok: TryInto<i32>,
|
|
|
|
<R::Ok as TryInto<i32>>::Error: Debug,
|
|
|
|
{
|
2020-09-10 09:57:45 -04:00
|
|
|
let base_op_fn = move |state: Rc<RefCell<OpState>>, bufs: BufVec| -> Op {
|
2020-09-05 20:34:02 -04:00
|
|
|
let mut bufs_iter = bufs.into_iter();
|
|
|
|
let record_buf = bufs_iter.next().unwrap();
|
|
|
|
let zero_copy_bufs = bufs_iter.collect::<BufVec>();
|
|
|
|
|
|
|
|
let record = Record::from(record_buf.as_ref());
|
|
|
|
let is_sync = record.promise_id == 0;
|
|
|
|
assert!(!is_sync);
|
|
|
|
|
|
|
|
let fut = async move {
|
|
|
|
let op = op_fn(state, record.rid, zero_copy_bufs);
|
|
|
|
let result = op
|
|
|
|
.map_ok(|r| r.try_into().expect("op result does not fit in i32"))
|
|
|
|
.unwrap_or_else(|_| -1)
|
|
|
|
.await;
|
|
|
|
RecordBuf::from(Record { result, ..record })[..].into()
|
|
|
|
};
|
|
|
|
|
|
|
|
Op::Async(fut.boxed_local())
|
|
|
|
};
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
isolate.register_op(name, base_op_fn);
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bad_resource_id() -> Error {
|
2020-08-21 11:14:47 -04:00
|
|
|
Error::new(ErrorKind::NotFound, "bad resource id")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
log::set_logger(&Logger).unwrap();
|
|
|
|
log::set_max_level(
|
|
|
|
env::args()
|
|
|
|
.find(|a| a == "-D")
|
|
|
|
.map(|_| log::LevelFilter::Debug)
|
|
|
|
.unwrap_or(log::LevelFilter::Warn),
|
|
|
|
);
|
|
|
|
|
|
|
|
// NOTE: `--help` arg will display V8 help and exit
|
|
|
|
deno_core::v8_set_flags(env::args().collect());
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
let isolate = create_isolate();
|
|
|
|
let mut runtime = runtime::Builder::new()
|
2020-08-21 11:14:47 -04:00
|
|
|
.basic_scheduler()
|
|
|
|
.enable_all()
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
2020-09-05 20:34:02 -04:00
|
|
|
js_check(runtime.block_on(isolate));
|
2020-08-21 11:14:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_record_from() {
|
|
|
|
let expected = Record {
|
|
|
|
promise_id: 1,
|
|
|
|
rid: 3,
|
|
|
|
result: 4,
|
|
|
|
};
|
|
|
|
let buf = RecordBuf::from(expected);
|
|
|
|
if cfg!(target_endian = "little") {
|
|
|
|
assert_eq!(buf, [1u8, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0]);
|
|
|
|
}
|
|
|
|
let actual = Record::from(buf);
|
|
|
|
assert_eq!(actual, expected);
|
|
|
|
}
|