2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 08:26:41 -04:00
|
|
|
|
2021-08-15 07:29:19 -04:00
|
|
|
use deno_core::error::not_supported;
|
2021-04-02 09:47:57 -04:00
|
|
|
use deno_core::error::null_opbuf;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::resource_unavailable;
|
|
|
|
use deno_core::error::AnyError;
|
2021-05-02 19:22:57 -04:00
|
|
|
use deno_core::op_async;
|
|
|
|
use deno_core::op_sync;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::AsyncMutFuture;
|
|
|
|
use deno_core::AsyncRefCell;
|
|
|
|
use deno_core::CancelHandle;
|
|
|
|
use deno_core::CancelTryFuture;
|
2021-05-02 19:22:57 -04:00
|
|
|
use deno_core::Extension;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::RcRef;
|
|
|
|
use deno_core::Resource;
|
2021-03-19 13:25:37 -04:00
|
|
|
use deno_core::ResourceId;
|
2021-01-14 23:32:27 -05:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2021-06-28 19:43:03 -04:00
|
|
|
use deno_net::io::TcpStreamResource;
|
|
|
|
use deno_net::io::TlsStreamResource;
|
|
|
|
use deno_net::io::UnixStreamResource;
|
2020-12-16 11:14:12 -05:00
|
|
|
use std::borrow::Cow;
|
2020-09-10 09:57:45 -04:00
|
|
|
use std::cell::RefCell;
|
2021-01-14 23:32:27 -05:00
|
|
|
use std::io::Read;
|
|
|
|
use std::io::Write;
|
2020-08-18 12:30:13 -04:00
|
|
|
use std::rc::Rc;
|
2020-12-16 11:14:12 -05:00
|
|
|
use tokio::io::AsyncRead;
|
|
|
|
use tokio::io::AsyncReadExt;
|
|
|
|
use tokio::io::AsyncWrite;
|
|
|
|
use tokio::io::AsyncWriteExt;
|
2021-01-14 23:32:27 -05:00
|
|
|
use tokio::process;
|
2019-11-14 12:10:25 -05:00
|
|
|
|
2020-12-16 11:14:12 -05:00
|
|
|
#[cfg(unix)]
|
2019-11-14 12:10:25 -05:00
|
|
|
use std::os::unix::io::FromRawFd;
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
use std::os::windows::io::FromRawHandle;
|
|
|
|
|
2021-03-26 12:34:25 -04:00
|
|
|
lazy_static::lazy_static! {
|
2020-04-15 20:43:19 -04:00
|
|
|
/// 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.
|
|
|
|
// TODO(ry) It should be possible to close stdout.
|
2020-07-09 15:06:51 -04:00
|
|
|
static ref STDIN_HANDLE: Option<std::fs::File> = {
|
2020-06-09 12:29:12 -04:00
|
|
|
#[cfg(not(windows))]
|
2020-07-09 15:06:51 -04:00
|
|
|
let stdin = unsafe { Some(std::fs::File::from_raw_fd(0)) };
|
2020-06-09 12:29:12 -04:00
|
|
|
#[cfg(windows)]
|
|
|
|
let stdin = unsafe {
|
2020-07-09 15:06:51 -04:00
|
|
|
let handle = winapi::um::processenv::GetStdHandle(
|
2020-06-09 12:29:12 -04:00
|
|
|
winapi::um::winbase::STD_INPUT_HANDLE,
|
2020-07-09 15:06:51 -04:00
|
|
|
);
|
|
|
|
if handle.is_null() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(std::fs::File::from_raw_handle(handle))
|
2020-06-09 12:29:12 -04:00
|
|
|
};
|
|
|
|
stdin
|
|
|
|
};
|
2020-07-09 15:06:51 -04:00
|
|
|
static ref STDOUT_HANDLE: Option<std::fs::File> = {
|
2019-11-14 12:10:25 -05:00
|
|
|
#[cfg(not(windows))]
|
2020-07-09 15:06:51 -04:00
|
|
|
let stdout = unsafe { Some(std::fs::File::from_raw_fd(1)) };
|
2019-11-14 12:10:25 -05:00
|
|
|
#[cfg(windows)]
|
|
|
|
let stdout = unsafe {
|
2020-07-09 15:06:51 -04:00
|
|
|
let handle = winapi::um::processenv::GetStdHandle(
|
2019-11-14 12:10:25 -05:00
|
|
|
winapi::um::winbase::STD_OUTPUT_HANDLE,
|
2020-07-09 15:06:51 -04:00
|
|
|
);
|
|
|
|
if handle.is_null() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(std::fs::File::from_raw_handle(handle))
|
2019-11-14 12:10:25 -05:00
|
|
|
};
|
|
|
|
stdout
|
|
|
|
};
|
2020-07-09 15:06:51 -04:00
|
|
|
static ref STDERR_HANDLE: Option<std::fs::File> = {
|
2020-04-15 20:43:19 -04:00
|
|
|
#[cfg(not(windows))]
|
2020-07-09 15:06:51 -04:00
|
|
|
let stderr = unsafe { Some(std::fs::File::from_raw_fd(2)) };
|
2020-04-15 20:43:19 -04:00
|
|
|
#[cfg(windows)]
|
|
|
|
let stderr = unsafe {
|
2020-07-09 15:06:51 -04:00
|
|
|
let handle = winapi::um::processenv::GetStdHandle(
|
2020-04-15 20:43:19 -04:00
|
|
|
winapi::um::winbase::STD_ERROR_HANDLE,
|
2020-07-09 15:06:51 -04:00
|
|
|
);
|
|
|
|
if handle.is_null() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(std::fs::File::from_raw_handle(handle))
|
2020-04-15 20:43:19 -04:00
|
|
|
};
|
|
|
|
stderr
|
|
|
|
};
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
2019-08-21 20:42:48 -04:00
|
|
|
|
2021-05-02 19:22:57 -04:00
|
|
|
pub fn init() -> Extension {
|
|
|
|
Extension::builder()
|
|
|
|
.ops(vec![
|
|
|
|
("op_read_async", op_async(op_read_async)),
|
|
|
|
("op_write_async", op_async(op_write_async)),
|
|
|
|
("op_read_sync", op_sync(op_read_sync)),
|
|
|
|
("op_write_sync", op_sync(op_write_sync)),
|
|
|
|
("op_shutdown", op_async(op_shutdown)),
|
|
|
|
])
|
|
|
|
.build()
|
|
|
|
}
|
2021-03-18 09:10:27 -04:00
|
|
|
|
2021-05-02 19:22:57 -04:00
|
|
|
pub fn init_stdio() -> Extension {
|
|
|
|
Extension::builder()
|
|
|
|
.state(|state| {
|
|
|
|
let t = &mut state.resource_table;
|
|
|
|
let (stdin, stdout, stderr) = get_stdio();
|
|
|
|
if let Some(stream) = stdin {
|
|
|
|
t.add(stream);
|
|
|
|
}
|
|
|
|
if let Some(stream) = stdout {
|
|
|
|
t.add(stream);
|
|
|
|
}
|
|
|
|
if let Some(stream) = stderr {
|
|
|
|
t.add(stream);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.build()
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
2020-03-11 18:19:24 -04:00
|
|
|
pub fn get_stdio() -> (
|
2021-01-14 23:32:27 -05:00
|
|
|
Option<StdFileResource>,
|
|
|
|
Option<StdFileResource>,
|
|
|
|
Option<StdFileResource>,
|
2020-03-11 18:19:24 -04:00
|
|
|
) {
|
2020-12-16 11:14:12 -05:00
|
|
|
let stdin = get_stdio_stream(&STDIN_HANDLE, "stdin");
|
|
|
|
let stdout = get_stdio_stream(&STDOUT_HANDLE, "stdout");
|
|
|
|
let stderr = get_stdio_stream(&STDERR_HANDLE, "stderr");
|
2019-11-14 12:10:25 -05:00
|
|
|
|
|
|
|
(stdin, stdout, stderr)
|
|
|
|
}
|
|
|
|
|
2020-07-09 15:06:51 -04:00
|
|
|
fn get_stdio_stream(
|
|
|
|
handle: &Option<std::fs::File>,
|
2020-12-16 11:14:12 -05:00
|
|
|
name: &str,
|
2021-01-14 23:32:27 -05:00
|
|
|
) -> Option<StdFileResource> {
|
2020-07-09 15:06:51 -04:00
|
|
|
match handle {
|
|
|
|
None => None,
|
|
|
|
Some(file_handle) => match file_handle.try_clone() {
|
2020-12-16 11:14:12 -05:00
|
|
|
Ok(clone) => {
|
|
|
|
let tokio_file = tokio::fs::File::from_std(clone);
|
2021-01-14 23:32:27 -05:00
|
|
|
Some(StdFileResource::stdio(tokio_file, name))
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2020-07-09 15:06:51 -04:00
|
|
|
Err(_e) => None,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-26 01:01:24 -05:00
|
|
|
#[cfg(unix)]
|
|
|
|
use nix::sys::termios;
|
|
|
|
|
|
|
|
#[derive(Default)]
|
2021-03-25 14:17:37 -04:00
|
|
|
pub struct TtyMetadata {
|
2020-02-26 01:01:24 -05:00
|
|
|
#[cfg(unix)]
|
|
|
|
pub mode: Option<termios::Termios>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct FileMetadata {
|
2021-03-25 14:17:37 -04:00
|
|
|
pub tty: TtyMetadata,
|
2020-02-26 01:01:24 -05:00
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct WriteOnlyResource<S> {
|
|
|
|
stream: AsyncRefCell<S>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: 'static> From<S> for WriteOnlyResource<S> {
|
|
|
|
fn from(stream: S) -> Self {
|
|
|
|
Self {
|
|
|
|
stream: stream.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S> WriteOnlyResource<S>
|
|
|
|
where
|
|
|
|
S: AsyncWrite + Unpin + 'static,
|
|
|
|
{
|
|
|
|
pub fn borrow_mut(self: &Rc<Self>) -> AsyncMutFuture<S> {
|
|
|
|
RcRef::map(self, |r| &r.stream).borrow_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn write(self: &Rc<Self>, buf: &[u8]) -> Result<usize, AnyError> {
|
|
|
|
let mut stream = self.borrow_mut().await;
|
|
|
|
let nwritten = stream.write(buf).await?;
|
|
|
|
Ok(nwritten)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn shutdown(self: &Rc<Self>) -> Result<(), AnyError> {
|
|
|
|
let mut stream = self.borrow_mut().await;
|
|
|
|
stream.shutdown().await?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct ReadOnlyResource<S> {
|
|
|
|
stream: AsyncRefCell<S>,
|
|
|
|
cancel_handle: CancelHandle,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: 'static> From<S> for ReadOnlyResource<S> {
|
|
|
|
fn from(stream: S) -> Self {
|
|
|
|
Self {
|
|
|
|
stream: stream.into(),
|
|
|
|
cancel_handle: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S> ReadOnlyResource<S>
|
|
|
|
where
|
|
|
|
S: AsyncRead + Unpin + 'static,
|
|
|
|
{
|
|
|
|
pub fn borrow_mut(self: &Rc<Self>) -> AsyncMutFuture<S> {
|
|
|
|
RcRef::map(self, |r| &r.stream).borrow_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cancel_handle(self: &Rc<Self>) -> RcRef<CancelHandle> {
|
|
|
|
RcRef::map(self, |r| &r.cancel_handle)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cancel_read_ops(&self) {
|
|
|
|
self.cancel_handle.cancel()
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn read(self: &Rc<Self>, buf: &mut [u8]) -> Result<usize, AnyError> {
|
|
|
|
let mut rd = self.borrow_mut().await;
|
|
|
|
let nread = rd.read(buf).try_or_cancel(self.cancel_handle()).await?;
|
|
|
|
Ok(nread)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type ChildStdinResource = WriteOnlyResource<process::ChildStdin>;
|
|
|
|
|
|
|
|
impl Resource for ChildStdinResource {
|
|
|
|
fn name(&self) -> Cow<str> {
|
|
|
|
"childStdin".into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type ChildStdoutResource = ReadOnlyResource<process::ChildStdout>;
|
|
|
|
|
|
|
|
impl Resource for ChildStdoutResource {
|
|
|
|
fn name(&self) -> Cow<str> {
|
|
|
|
"childStdout".into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn close(self: Rc<Self>) {
|
|
|
|
self.cancel_read_ops();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type ChildStderrResource = ReadOnlyResource<process::ChildStderr>;
|
|
|
|
|
|
|
|
impl Resource for ChildStderrResource {
|
|
|
|
fn name(&self) -> Cow<str> {
|
|
|
|
"childStderr".into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn close(self: Rc<Self>) {
|
|
|
|
self.cancel_read_ops();
|
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2020-03-11 18:19:24 -04:00
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
pub struct StdFileResource {
|
|
|
|
pub fs_file:
|
|
|
|
Option<AsyncRefCell<(Option<tokio::fs::File>, Option<FileMetadata>)>>,
|
|
|
|
cancel: CancelHandle,
|
|
|
|
name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StdFileResource {
|
2020-12-16 11:14:12 -05:00
|
|
|
pub fn stdio(fs_file: tokio::fs::File, name: &str) -> Self {
|
|
|
|
Self {
|
|
|
|
fs_file: Some(AsyncRefCell::new((
|
|
|
|
Some(fs_file),
|
|
|
|
Some(FileMetadata::default()),
|
|
|
|
))),
|
|
|
|
name: name.to_string(),
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fs_file(fs_file: tokio::fs::File) -> Self {
|
|
|
|
Self {
|
|
|
|
fs_file: Some(AsyncRefCell::new((
|
|
|
|
Some(fs_file),
|
|
|
|
Some(FileMetadata::default()),
|
|
|
|
))),
|
|
|
|
name: "fsFile".to_string(),
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
async fn read(self: &Rc<Self>, buf: &mut [u8]) -> Result<usize, AnyError> {
|
2020-12-16 11:14:12 -05:00
|
|
|
if self.fs_file.is_some() {
|
2021-01-14 23:32:27 -05:00
|
|
|
let mut fs_file = RcRef::map(&*self, |r| r.fs_file.as_ref().unwrap())
|
2020-12-16 11:14:12 -05:00
|
|
|
.borrow_mut()
|
|
|
|
.await;
|
2021-01-14 23:32:27 -05:00
|
|
|
let nwritten = fs_file.0.as_mut().unwrap().read(buf).await?;
|
2021-06-17 15:56:30 -04:00
|
|
|
Ok(nwritten)
|
2021-01-14 23:32:27 -05:00
|
|
|
} else {
|
|
|
|
Err(resource_unavailable())
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
async fn write(self: &Rc<Self>, buf: &[u8]) -> Result<usize, AnyError> {
|
2020-12-16 11:14:12 -05:00
|
|
|
if self.fs_file.is_some() {
|
2021-01-14 23:32:27 -05:00
|
|
|
let mut fs_file = RcRef::map(&*self, |r| r.fs_file.as_ref().unwrap())
|
2020-12-16 11:14:12 -05:00
|
|
|
.borrow_mut()
|
|
|
|
.await;
|
2021-01-14 23:32:27 -05:00
|
|
|
let nwritten = fs_file.0.as_mut().unwrap().write(buf).await?;
|
|
|
|
fs_file.0.as_mut().unwrap().flush().await?;
|
2021-06-17 15:56:30 -04:00
|
|
|
Ok(nwritten)
|
2021-01-14 23:32:27 -05:00
|
|
|
} else {
|
|
|
|
Err(resource_unavailable())
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
pub fn with<F, R>(
|
|
|
|
state: &mut OpState,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2021-01-14 23:32:27 -05:00
|
|
|
mut f: F,
|
|
|
|
) -> Result<R, AnyError>
|
|
|
|
where
|
|
|
|
F: FnMut(Result<&mut std::fs::File, ()>) -> Result<R, AnyError>,
|
|
|
|
{
|
|
|
|
// First we look up the rid in the resource table.
|
2021-08-15 07:29:19 -04:00
|
|
|
let resource = state.resource_table.get::<StdFileResource>(rid)?;
|
2021-01-14 23:32:27 -05:00
|
|
|
|
|
|
|
// Sync write only works for FsFile. It doesn't make sense to do this
|
|
|
|
// for non-blocking sockets. So we error out if not FsFile.
|
|
|
|
if resource.fs_file.is_none() {
|
|
|
|
return f(Err(()));
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
// The object in the resource table is a tokio::fs::File - but in
|
|
|
|
// order to do a blocking write on it, we must turn it into a
|
|
|
|
// std::fs::File. Hopefully this code compiles down to nothing.
|
|
|
|
let fs_file_resource =
|
|
|
|
RcRef::map(&resource, |r| r.fs_file.as_ref().unwrap()).try_borrow_mut();
|
|
|
|
|
|
|
|
if let Some(mut fs_file) = fs_file_resource {
|
|
|
|
let tokio_file = fs_file.0.take().unwrap();
|
|
|
|
match tokio_file.try_into_std() {
|
|
|
|
Ok(mut std_file) => {
|
|
|
|
let result = f(Ok(&mut std_file));
|
|
|
|
// Turn the std_file handle back into a tokio file, put it back
|
|
|
|
// in the resource table.
|
|
|
|
let tokio_file = tokio::fs::File::from_std(std_file);
|
|
|
|
fs_file.0 = Some(tokio_file);
|
|
|
|
// return the result.
|
|
|
|
result
|
|
|
|
}
|
|
|
|
Err(tokio_file) => {
|
|
|
|
// This function will return an error containing the file if
|
|
|
|
// some operation is in-flight.
|
|
|
|
fs_file.0 = Some(tokio_file);
|
|
|
|
Err(resource_unavailable())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(resource_unavailable())
|
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
impl Resource for StdFileResource {
|
2020-12-16 11:14:12 -05:00
|
|
|
fn name(&self) -> Cow<str> {
|
2021-01-14 23:32:27 -05:00
|
|
|
self.name.as_str().into()
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn close(self: Rc<Self>) {
|
2021-01-14 23:32:27 -05:00
|
|
|
// TODO: do not cancel file I/O when file is writable.
|
2020-12-16 11:14:12 -05:00
|
|
|
self.cancel.cancel()
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
fn op_read_sync(
|
2021-03-18 09:10:27 -04:00
|
|
|
state: &mut OpState,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2021-04-02 09:47:57 -04:00
|
|
|
buf: Option<ZeroCopyBuf>,
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2021-04-02 09:47:57 -04:00
|
|
|
let mut buf = buf.ok_or_else(null_opbuf)?;
|
2021-03-18 09:10:27 -04:00
|
|
|
StdFileResource::with(state, rid, move |r| match r {
|
2021-01-14 23:32:27 -05:00
|
|
|
Ok(std_file) => std_file
|
2021-04-02 09:47:57 -04:00
|
|
|
.read(&mut buf)
|
2021-03-18 09:10:27 -04:00
|
|
|
.map(|n: usize| n as u32)
|
2021-01-14 23:32:27 -05:00
|
|
|
.map_err(AnyError::from),
|
|
|
|
Err(_) => Err(not_supported()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn op_read_async(
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2021-04-02 09:47:57 -04:00
|
|
|
buf: Option<ZeroCopyBuf>,
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2021-04-02 09:47:57 -04:00
|
|
|
let buf = &mut buf.ok_or_else(null_opbuf)?;
|
2021-08-15 07:29:19 -04:00
|
|
|
let resource = state.borrow().resource_table.get_any(rid)?;
|
2021-01-14 23:32:27 -05:00
|
|
|
let nread = if let Some(s) = resource.downcast_rc::<ChildStdoutResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<ChildStderrResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<TcpStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-05-10 19:49:57 -04:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<TlsStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<UnixStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<StdFileResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.read(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else {
|
|
|
|
return Err(not_supported());
|
|
|
|
};
|
2021-03-18 09:10:27 -04:00
|
|
|
Ok(nread as u32)
|
2020-04-15 20:43:19 -04:00
|
|
|
}
|
2020-02-26 16:06:20 -05:00
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
fn op_write_sync(
|
2021-03-18 09:10:27 -04:00
|
|
|
state: &mut OpState,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2021-04-02 09:47:57 -04:00
|
|
|
buf: Option<ZeroCopyBuf>,
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2021-04-02 09:47:57 -04:00
|
|
|
let buf = buf.ok_or_else(null_opbuf)?;
|
2021-03-18 09:10:27 -04:00
|
|
|
StdFileResource::with(state, rid, move |r| match r {
|
2021-01-14 23:32:27 -05:00
|
|
|
Ok(std_file) => std_file
|
2021-04-02 09:47:57 -04:00
|
|
|
.write(&buf)
|
2021-03-18 09:10:27 -04:00
|
|
|
.map(|nwritten: usize| nwritten as u32)
|
2021-01-14 23:32:27 -05:00
|
|
|
.map_err(AnyError::from),
|
|
|
|
Err(_) => Err(not_supported()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn op_write_async(
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2021-04-02 09:47:57 -04:00
|
|
|
buf: Option<ZeroCopyBuf>,
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2021-04-02 09:47:57 -04:00
|
|
|
let buf = &buf.ok_or_else(null_opbuf)?;
|
2021-08-15 07:29:19 -04:00
|
|
|
let resource = state.borrow().resource_table.get_any(rid)?;
|
2021-01-14 23:32:27 -05:00
|
|
|
let nwritten = if let Some(s) = resource.downcast_rc::<ChildStdinResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.write(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<TcpStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.write(buf).await?
|
2021-05-10 19:49:57 -04:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<TlsStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.write(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<UnixStreamResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.write(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<StdFileResource>() {
|
2021-03-18 09:10:27 -04:00
|
|
|
s.write(buf).await?
|
2021-01-14 23:32:27 -05:00
|
|
|
} else {
|
|
|
|
return Err(not_supported());
|
|
|
|
};
|
2021-03-18 09:10:27 -04:00
|
|
|
Ok(nwritten as u32)
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
async fn op_shutdown(
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-04-05 12:40:24 -04:00
|
|
|
rid: ResourceId,
|
2021-05-08 08:37:42 -04:00
|
|
|
_: (),
|
2021-04-05 12:40:24 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-08-15 07:29:19 -04:00
|
|
|
let resource = state.borrow().resource_table.get_any(rid)?;
|
2021-01-14 23:32:27 -05:00
|
|
|
if let Some(s) = resource.downcast_rc::<ChildStdinResource>() {
|
|
|
|
s.shutdown().await?;
|
|
|
|
} else if let Some(s) = resource.downcast_rc::<TcpStreamResource>() {
|
|
|
|
s.shutdown().await?;
|
2021-05-10 19:49:57 -04:00
|
|
|
} else if let Some(s) = resource.downcast_rc::<TlsStreamResource>() {
|
2021-01-14 23:32:27 -05:00
|
|
|
s.shutdown().await?;
|
|
|
|
} else if let Some(s) = resource.downcast_rc::<UnixStreamResource>() {
|
|
|
|
s.shutdown().await?;
|
2020-04-15 20:43:19 -04:00
|
|
|
} else {
|
2021-01-14 23:32:27 -05:00
|
|
|
return Err(not_supported());
|
2020-02-25 09:14:27 -05:00
|
|
|
}
|
2021-04-05 12:40:24 -04:00
|
|
|
Ok(())
|
2019-08-21 20:42:48 -04:00
|
|
|
}
|