2019-08-21 20:42:48 -04:00
|
|
|
use super::dispatch_minimal::MinimalOp;
|
2019-12-31 09:09:58 -05:00
|
|
|
use crate::http_util::HttpBody;
|
2020-02-23 14:51:29 -05:00
|
|
|
use crate::op_error::OpError;
|
2019-10-11 14:41:54 -04:00
|
|
|
use crate::ops::minimal_op;
|
2020-02-08 14:34:31 -05:00
|
|
|
use crate::state::State;
|
2020-01-05 11:56:18 -05:00
|
|
|
use deno_core::*;
|
2020-02-26 16:06:20 -05:00
|
|
|
use futures::future::poll_fn;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::future::FutureExt;
|
2020-01-02 13:11:33 -05:00
|
|
|
use futures::ready;
|
2020-03-11 18:19:24 -04:00
|
|
|
use std::collections::HashMap;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::pin::Pin;
|
2020-03-11 18:19:24 -04:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::task::Context;
|
|
|
|
use std::task::Poll;
|
2019-12-30 08:57:17 -05:00
|
|
|
use tokio::io::{AsyncRead, AsyncWrite};
|
2019-11-14 12:10:25 -05:00
|
|
|
use tokio::net::TcpStream;
|
|
|
|
use tokio_rustls::client::TlsStream as ClientTlsStream;
|
|
|
|
use tokio_rustls::server::TlsStream as ServerTlsStream;
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
use std::os::unix::io::FromRawFd;
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
use std::os::windows::io::FromRawHandle;
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate winapi;
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
/// Due to portability issues on Windows handle to stdout is created from raw file descriptor.
|
|
|
|
/// The caveat of that approach is fact that when this handle is dropped underlying
|
|
|
|
/// file descriptor is closed - that is highly not desirable in case of stdout.
|
|
|
|
/// That's why we store this global handle that is then cloned when obtaining stdio
|
|
|
|
/// for process. In turn when resource table is dropped storing reference to that handle,
|
|
|
|
/// the handle itself won't be closed (so Deno.core.print) will still work.
|
|
|
|
static ref STDOUT_HANDLE: std::fs::File = {
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
let stdout = unsafe { std::fs::File::from_raw_fd(1) };
|
|
|
|
#[cfg(windows)]
|
|
|
|
let stdout = unsafe {
|
|
|
|
std::fs::File::from_raw_handle(winapi::um::processenv::GetStdHandle(
|
|
|
|
winapi::um::winbase::STD_OUTPUT_HANDLE,
|
|
|
|
))
|
|
|
|
};
|
|
|
|
|
|
|
|
stdout
|
|
|
|
};
|
|
|
|
}
|
2019-08-21 20:42:48 -04:00
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
pub fn init(i: &mut Isolate, s: &State) {
|
2019-11-14 12:10:25 -05:00
|
|
|
i.register_op(
|
2020-02-25 09:14:27 -05:00
|
|
|
"op_read",
|
2019-11-14 12:10:25 -05:00
|
|
|
s.core_op(minimal_op(s.stateful_minimal_op(op_read))),
|
|
|
|
);
|
|
|
|
i.register_op(
|
2020-02-25 09:14:27 -05:00
|
|
|
"op_write",
|
2019-11-14 12:10:25 -05:00
|
|
|
s.core_op(minimal_op(s.stateful_minimal_op(op_write))),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:19:24 -04:00
|
|
|
pub fn get_stdio() -> (
|
|
|
|
StreamResourceHolder,
|
|
|
|
StreamResourceHolder,
|
|
|
|
StreamResourceHolder,
|
|
|
|
) {
|
|
|
|
let stdin = StreamResourceHolder::new(StreamResource::Stdin(
|
|
|
|
tokio::io::stdin(),
|
|
|
|
TTYMetadata::default(),
|
|
|
|
));
|
|
|
|
let stdout = StreamResourceHolder::new(StreamResource::Stdout({
|
2019-11-14 12:10:25 -05:00
|
|
|
let stdout = STDOUT_HANDLE
|
|
|
|
.try_clone()
|
|
|
|
.expect("Unable to clone stdout handle");
|
|
|
|
tokio::fs::File::from_std(stdout)
|
2020-03-11 18:19:24 -04:00
|
|
|
}));
|
|
|
|
let stderr =
|
|
|
|
StreamResourceHolder::new(StreamResource::Stderr(tokio::io::stderr()));
|
2019-11-14 12:10:25 -05:00
|
|
|
|
|
|
|
(stdin, stdout, stderr)
|
|
|
|
}
|
|
|
|
|
2020-02-26 16:06:20 -05:00
|
|
|
fn no_buffer_specified() -> OpError {
|
|
|
|
OpError::type_error("no buffer specified".to_string())
|
|
|
|
}
|
|
|
|
|
2020-02-26 01:01:24 -05:00
|
|
|
#[cfg(unix)]
|
|
|
|
use nix::sys::termios;
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct TTYMetadata {
|
|
|
|
#[cfg(unix)]
|
|
|
|
pub mode: Option<termios::Termios>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct FileMetadata {
|
|
|
|
pub tty: TTYMetadata,
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:19:24 -04:00
|
|
|
pub struct StreamResourceHolder {
|
|
|
|
pub resource: StreamResource,
|
|
|
|
waker: HashMap<usize, futures::task::AtomicWaker>,
|
|
|
|
waker_counter: AtomicUsize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StreamResourceHolder {
|
|
|
|
pub fn new(resource: StreamResource) -> StreamResourceHolder {
|
|
|
|
StreamResourceHolder {
|
|
|
|
resource,
|
|
|
|
// Atleast one task is expecter for the resource
|
|
|
|
waker: HashMap::with_capacity(1),
|
|
|
|
// Tracks wakers Ids
|
|
|
|
waker_counter: AtomicUsize::new(0),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for StreamResourceHolder {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.wake_tasks();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StreamResourceHolder {
|
|
|
|
pub fn track_task(&mut self, cx: &Context) -> Result<usize, OpError> {
|
|
|
|
let waker = futures::task::AtomicWaker::new();
|
|
|
|
waker.register(cx.waker());
|
|
|
|
// Its OK if it overflows
|
|
|
|
let task_waker_id = self.waker_counter.fetch_add(1, Ordering::Relaxed);
|
|
|
|
self.waker.insert(task_waker_id, waker);
|
|
|
|
Ok(task_waker_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn wake_tasks(&mut self) {
|
|
|
|
for waker in self.waker.values() {
|
|
|
|
waker.wake();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn untrack_task(&mut self, task_waker_id: usize) {
|
|
|
|
self.waker.remove(&task_waker_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 12:10:25 -05:00
|
|
|
pub enum StreamResource {
|
2020-02-26 01:01:24 -05:00
|
|
|
Stdin(tokio::io::Stdin, TTYMetadata),
|
2019-11-14 12:10:25 -05:00
|
|
|
Stdout(tokio::fs::File),
|
|
|
|
Stderr(tokio::io::Stderr),
|
2020-02-26 01:01:24 -05:00
|
|
|
FsFile(tokio::fs::File, FileMetadata),
|
2019-11-14 12:10:25 -05:00
|
|
|
TcpStream(tokio::net::TcpStream),
|
|
|
|
ServerTlsStream(Box<ServerTlsStream<TcpStream>>),
|
|
|
|
ClientTlsStream(Box<ClientTlsStream<TcpStream>>),
|
2019-11-16 19:17:47 -05:00
|
|
|
HttpBody(Box<HttpBody>),
|
2019-12-30 08:57:17 -05:00
|
|
|
ChildStdin(tokio::process::ChildStdin),
|
|
|
|
ChildStdout(tokio::process::ChildStdout),
|
|
|
|
ChildStderr(tokio::process::ChildStderr),
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
2020-03-16 13:46:31 -04:00
|
|
|
trait UnpinAsyncRead: AsyncRead + Unpin {}
|
|
|
|
trait UnpinAsyncWrite: AsyncWrite + Unpin {}
|
|
|
|
|
|
|
|
impl<T: AsyncRead + Unpin> UnpinAsyncRead for T {}
|
|
|
|
impl<T: AsyncWrite + Unpin> UnpinAsyncWrite for T {}
|
|
|
|
|
2019-11-14 12:10:25 -05:00
|
|
|
/// `DenoAsyncRead` is the same as the `tokio_io::AsyncRead` trait
|
2020-02-23 14:51:29 -05:00
|
|
|
/// but uses an `OpError` error instead of `std::io:Error`
|
2019-11-14 12:10:25 -05:00
|
|
|
pub trait DenoAsyncRead {
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll_read(
|
2020-01-02 13:11:33 -05:00
|
|
|
&mut self,
|
2019-11-16 19:17:47 -05:00
|
|
|
cx: &mut Context,
|
|
|
|
buf: &mut [u8],
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Poll<Result<usize, OpError>>;
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DenoAsyncRead for StreamResource {
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll_read(
|
2020-01-02 13:11:33 -05:00
|
|
|
&mut self,
|
2019-11-16 19:17:47 -05:00
|
|
|
cx: &mut Context,
|
|
|
|
buf: &mut [u8],
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Poll<Result<usize, OpError>> {
|
2020-01-02 13:11:33 -05:00
|
|
|
use StreamResource::*;
|
2020-03-16 13:46:31 -04:00
|
|
|
let f: &mut dyn UnpinAsyncRead = match self {
|
|
|
|
FsFile(f, _) => f,
|
|
|
|
Stdin(f, _) => f,
|
|
|
|
TcpStream(f) => f,
|
|
|
|
ClientTlsStream(f) => f,
|
|
|
|
ServerTlsStream(f) => f,
|
|
|
|
ChildStdout(f) => f,
|
|
|
|
ChildStderr(f) => f,
|
|
|
|
HttpBody(f) => f,
|
2020-03-05 08:30:41 -05:00
|
|
|
_ => return Err(OpError::bad_resource_id()).into(),
|
2019-11-14 12:10:25 -05:00
|
|
|
};
|
2020-03-16 13:46:31 -04:00
|
|
|
let v = ready!(Pin::new(f).poll_read(cx, buf))?;
|
2020-01-02 13:11:33 -05:00
|
|
|
Ok(v).into()
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2019-11-14 12:10:25 -05:00
|
|
|
pub fn op_read(
|
2020-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-11-14 12:10:25 -05:00
|
|
|
rid: i32,
|
2020-01-24 15:10:49 -05:00
|
|
|
zero_copy: Option<ZeroCopyBuf>,
|
2019-11-16 19:17:47 -05:00
|
|
|
) -> Pin<Box<MinimalOp>> {
|
2019-08-21 20:42:48 -04:00
|
|
|
debug!("read rid={}", rid);
|
2020-02-25 09:14:27 -05:00
|
|
|
if zero_copy.is_none() {
|
|
|
|
return futures::future::err(no_buffer_specified()).boxed_local();
|
|
|
|
}
|
2020-02-26 16:06:20 -05:00
|
|
|
|
|
|
|
let state = state.clone();
|
|
|
|
let mut buf = zero_copy.unwrap();
|
|
|
|
|
|
|
|
poll_fn(move |cx| {
|
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
2020-03-11 18:19:24 -04:00
|
|
|
let resource_holder = resource_table
|
|
|
|
.get_mut::<StreamResourceHolder>(rid as u32)
|
2020-03-05 08:30:41 -05:00
|
|
|
.ok_or_else(OpError::bad_resource_id)?;
|
2020-03-11 18:19:24 -04:00
|
|
|
|
|
|
|
let mut task_tracker_id: Option<usize> = None;
|
|
|
|
let nread = match resource_holder
|
|
|
|
.resource
|
|
|
|
.poll_read(cx, &mut buf.as_mut()[..])
|
|
|
|
.map_err(OpError::from)
|
|
|
|
{
|
|
|
|
Poll::Ready(t) => {
|
|
|
|
if let Some(id) = task_tracker_id {
|
|
|
|
resource_holder.untrack_task(id);
|
|
|
|
}
|
|
|
|
t
|
|
|
|
}
|
|
|
|
Poll::Pending => {
|
|
|
|
task_tracker_id.replace(resource_holder.track_task(cx)?);
|
|
|
|
return Poll::Pending;
|
|
|
|
}
|
|
|
|
}?;
|
2020-02-26 16:06:20 -05:00
|
|
|
Poll::Ready(Ok(nread as i32))
|
|
|
|
})
|
2020-02-25 09:14:27 -05:00
|
|
|
.boxed_local()
|
2019-11-07 11:11:15 -05:00
|
|
|
}
|
|
|
|
|
2019-11-14 12:10:25 -05:00
|
|
|
/// `DenoAsyncWrite` is the same as the `tokio_io::AsyncWrite` trait
|
2020-02-23 14:51:29 -05:00
|
|
|
/// but uses an `OpError` error instead of `std::io:Error`
|
2019-11-14 12:10:25 -05:00
|
|
|
pub trait DenoAsyncWrite {
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll_write(
|
2020-01-02 13:11:33 -05:00
|
|
|
&mut self,
|
2019-11-16 19:17:47 -05:00
|
|
|
cx: &mut Context,
|
|
|
|
buf: &[u8],
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Poll<Result<usize, OpError>>;
|
2019-11-16 19:17:47 -05:00
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
fn poll_close(&mut self, cx: &mut Context) -> Poll<Result<(), OpError>>;
|
2019-12-30 08:57:17 -05:00
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
fn poll_flush(&mut self, cx: &mut Context) -> Poll<Result<(), OpError>>;
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DenoAsyncWrite for StreamResource {
|
2019-11-16 19:17:47 -05:00
|
|
|
fn poll_write(
|
2020-01-02 13:11:33 -05:00
|
|
|
&mut self,
|
2019-11-16 19:17:47 -05:00
|
|
|
cx: &mut Context,
|
|
|
|
buf: &[u8],
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Poll<Result<usize, OpError>> {
|
2020-01-02 13:11:33 -05:00
|
|
|
use StreamResource::*;
|
2020-03-16 13:46:31 -04:00
|
|
|
let f: &mut dyn UnpinAsyncWrite = match self {
|
|
|
|
FsFile(f, _) => f,
|
|
|
|
Stdout(f) => f,
|
|
|
|
Stderr(f) => f,
|
|
|
|
TcpStream(f) => f,
|
|
|
|
ClientTlsStream(f) => f,
|
|
|
|
ServerTlsStream(f) => f,
|
|
|
|
ChildStdin(f) => f,
|
2020-03-05 08:30:41 -05:00
|
|
|
_ => return Err(OpError::bad_resource_id()).into(),
|
2019-11-14 12:10:25 -05:00
|
|
|
};
|
|
|
|
|
2020-03-16 13:46:31 -04:00
|
|
|
let v = ready!(Pin::new(f).poll_write(cx, buf))?;
|
2020-01-02 13:11:33 -05:00
|
|
|
Ok(v).into()
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
fn poll_flush(&mut self, cx: &mut Context) -> Poll<Result<(), OpError>> {
|
2020-01-02 13:11:33 -05:00
|
|
|
use StreamResource::*;
|
2020-03-16 13:46:31 -04:00
|
|
|
let f: &mut dyn UnpinAsyncWrite = match self {
|
|
|
|
FsFile(f, _) => f,
|
|
|
|
Stdout(f) => f,
|
|
|
|
Stderr(f) => f,
|
|
|
|
TcpStream(f) => f,
|
|
|
|
ClientTlsStream(f) => f,
|
|
|
|
ServerTlsStream(f) => f,
|
|
|
|
ChildStdin(f) => f,
|
2020-03-05 08:30:41 -05:00
|
|
|
_ => return Err(OpError::bad_resource_id()).into(),
|
2019-12-30 08:57:17 -05:00
|
|
|
};
|
|
|
|
|
2020-03-16 13:46:31 -04:00
|
|
|
ready!(Pin::new(f).poll_flush(cx))?;
|
2020-01-02 13:11:33 -05:00
|
|
|
Ok(()).into()
|
2019-12-30 08:57:17 -05:00
|
|
|
}
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
fn poll_close(&mut self, _cx: &mut Context) -> Poll<Result<(), OpError>> {
|
2019-11-14 12:10:25 -05:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn op_write(
|
2020-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-11-14 12:10:25 -05:00
|
|
|
rid: i32,
|
2020-01-24 15:10:49 -05:00
|
|
|
zero_copy: Option<ZeroCopyBuf>,
|
2019-11-16 19:17:47 -05:00
|
|
|
) -> Pin<Box<MinimalOp>> {
|
2019-08-21 20:42:48 -04:00
|
|
|
debug!("write rid={}", rid);
|
2020-02-25 09:14:27 -05:00
|
|
|
if zero_copy.is_none() {
|
|
|
|
return futures::future::err(no_buffer_specified()).boxed_local();
|
|
|
|
}
|
2020-02-26 16:06:20 -05:00
|
|
|
|
|
|
|
let state = state.clone();
|
|
|
|
let buf = zero_copy.unwrap();
|
|
|
|
|
|
|
|
async move {
|
|
|
|
let nwritten = poll_fn(|cx| {
|
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
2020-03-11 18:19:24 -04:00
|
|
|
let resource_holder = resource_table
|
|
|
|
.get_mut::<StreamResourceHolder>(rid as u32)
|
2020-03-05 08:30:41 -05:00
|
|
|
.ok_or_else(OpError::bad_resource_id)?;
|
2020-03-11 18:19:24 -04:00
|
|
|
resource_holder.resource.poll_write(cx, &buf.as_ref()[..])
|
2020-02-26 16:06:20 -05:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
// TODO(bartlomieju): this step was added during upgrade to Tokio 0.2
|
|
|
|
// and the reasons for the need to explicitly flush are not fully known.
|
|
|
|
// Figure out why it's needed and preferably remove it.
|
|
|
|
// https://github.com/denoland/deno/issues/3565
|
|
|
|
poll_fn(|cx| {
|
|
|
|
let resource_table = &mut state.borrow_mut().resource_table;
|
2020-03-11 18:19:24 -04:00
|
|
|
let resource_holder = resource_table
|
|
|
|
.get_mut::<StreamResourceHolder>(rid as u32)
|
2020-03-05 08:30:41 -05:00
|
|
|
.ok_or_else(OpError::bad_resource_id)?;
|
2020-03-11 18:19:24 -04:00
|
|
|
resource_holder.resource.poll_flush(cx)
|
2020-02-26 16:06:20 -05:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(nwritten as i32)
|
2020-02-25 09:14:27 -05:00
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-08-21 20:42:48 -04:00
|
|
|
}
|