2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 08:26:41 -04:00
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
use deno_core::error::resource_unavailable;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2023-03-04 19:39:48 -05:00
|
|
|
use deno_core::include_js_files;
|
2022-03-14 13:44:15 -04:00
|
|
|
use deno_core::op;
|
2022-09-04 22:33:06 -04:00
|
|
|
use deno_core::parking_lot::Mutex;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::AsyncMutFuture;
|
|
|
|
use deno_core::AsyncRefCell;
|
2021-11-09 13:26:17 -05:00
|
|
|
use deno_core::AsyncResult;
|
2022-10-09 10:49:25 -04:00
|
|
|
use deno_core::BufMutView;
|
|
|
|
use deno_core::BufView;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::CancelHandle;
|
|
|
|
use deno_core::CancelTryFuture;
|
2021-05-02 19:22:57 -04:00
|
|
|
use deno_core::Extension;
|
2023-03-09 09:56:19 -05:00
|
|
|
use deno_core::ExtensionBuilder;
|
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;
|
2023-03-04 19:10:31 -05:00
|
|
|
use deno_core::TaskQueue;
|
2021-12-18 16:14:42 -05:00
|
|
|
use once_cell::sync::Lazy;
|
2020-12-16 11:14:12 -05:00
|
|
|
use std::borrow::Cow;
|
2022-04-19 10:41:31 -04:00
|
|
|
use std::cell::RefCell;
|
2021-10-25 11:16:16 -04:00
|
|
|
use std::fs::File as StdFile;
|
2022-05-11 12:48:38 -04:00
|
|
|
use std::io::ErrorKind;
|
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;
|
2022-09-04 22:33:06 -04:00
|
|
|
use std::sync::Arc;
|
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)]
|
2023-01-14 23:18:58 -05:00
|
|
|
use std::os::windows::io::FromRawHandle;
|
|
|
|
#[cfg(windows)]
|
|
|
|
use winapi::um::processenv::GetStdHandle;
|
|
|
|
#[cfg(windows)]
|
|
|
|
use winapi::um::winbase;
|
2019-11-14 12:10:25 -05:00
|
|
|
|
2022-05-11 12:48:38 -04:00
|
|
|
// Store the stdio fd/handles in global statics in order to keep them
|
|
|
|
// alive for the duration of the application since the last handle/fd
|
|
|
|
// being dropped will close the corresponding pipe.
|
2021-10-25 11:16:16 -04:00
|
|
|
#[cfg(unix)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDIN_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stdin
|
|
|
|
unsafe { StdFile::from_raw_fd(0) }
|
|
|
|
});
|
2021-12-18 16:14:42 -05:00
|
|
|
#[cfg(unix)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDOUT_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stdout
|
|
|
|
unsafe { StdFile::from_raw_fd(1) }
|
|
|
|
});
|
2021-12-18 16:14:42 -05:00
|
|
|
#[cfg(unix)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDERR_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stderr
|
|
|
|
unsafe { StdFile::from_raw_fd(2) }
|
|
|
|
});
|
2021-10-25 11:16:16 -04:00
|
|
|
|
|
|
|
#[cfg(windows)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDIN_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stdin
|
|
|
|
unsafe { StdFile::from_raw_handle(GetStdHandle(winbase::STD_INPUT_HANDLE)) }
|
2021-12-18 16:14:42 -05:00
|
|
|
});
|
|
|
|
#[cfg(windows)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDOUT_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stdout
|
|
|
|
unsafe { StdFile::from_raw_handle(GetStdHandle(winbase::STD_OUTPUT_HANDLE)) }
|
2021-12-18 16:14:42 -05:00
|
|
|
});
|
|
|
|
#[cfg(windows)]
|
2022-12-12 20:52:10 -05:00
|
|
|
pub static STDERR_HANDLE: Lazy<StdFile> = Lazy::new(|| {
|
2022-06-25 18:13:24 -04:00
|
|
|
// SAFETY: corresponds to OS stderr
|
|
|
|
unsafe { StdFile::from_raw_handle(GetStdHandle(winbase::STD_ERROR_HANDLE)) }
|
2021-12-18 16:14:42 -05:00
|
|
|
});
|
2019-08-21 20:42:48 -04:00
|
|
|
|
2023-03-09 09:56:19 -05:00
|
|
|
fn ext() -> ExtensionBuilder {
|
2023-03-09 07:10:54 -05:00
|
|
|
Extension::builder_with_deps("deno_io", &["deno_web"])
|
2023-03-09 09:56:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ops(
|
|
|
|
ext: &mut ExtensionBuilder,
|
|
|
|
stdio: Rc<RefCell<Option<Stdio>>>,
|
|
|
|
) -> &mut ExtensionBuilder {
|
|
|
|
ext
|
2023-03-04 19:39:48 -05:00
|
|
|
.ops(vec![op_read_sync::decl(), op_write_sync::decl()])
|
2022-05-01 14:44:55 -04:00
|
|
|
.middleware(|op| match op.name {
|
|
|
|
"op_print" => op_print::decl(),
|
|
|
|
_ => op,
|
|
|
|
})
|
2022-04-26 19:00:04 -04:00
|
|
|
.state(move |state| {
|
|
|
|
let stdio = stdio
|
|
|
|
.borrow_mut()
|
|
|
|
.take()
|
|
|
|
.expect("Extension only supports being used once.");
|
2021-05-02 19:22:57 -04:00
|
|
|
let t = &mut state.resource_table;
|
2022-10-07 08:38:06 -04:00
|
|
|
|
|
|
|
let rid = t.add(StdFileResource::stdio(
|
2022-05-11 12:48:38 -04:00
|
|
|
match stdio.stdin {
|
2022-09-04 22:33:06 -04:00
|
|
|
StdioPipe::Inherit => StdFileResourceInner {
|
|
|
|
kind: StdFileResourceKind::Stdin,
|
|
|
|
file: STDIN_HANDLE.try_clone().unwrap(),
|
|
|
|
},
|
2022-05-11 12:48:38 -04:00
|
|
|
StdioPipe::File(pipe) => StdFileResourceInner::file(pipe),
|
2022-04-26 19:00:04 -04:00
|
|
|
},
|
|
|
|
"stdin",
|
|
|
|
));
|
2022-10-07 08:38:06 -04:00
|
|
|
assert_eq!(rid, 0, "stdin must have ResourceId 0");
|
|
|
|
|
|
|
|
let rid = t.add(StdFileResource::stdio(
|
2022-05-11 12:48:38 -04:00
|
|
|
match stdio.stdout {
|
2022-09-04 22:33:06 -04:00
|
|
|
StdioPipe::Inherit => StdFileResourceInner {
|
|
|
|
kind: StdFileResourceKind::Stdout,
|
|
|
|
file: STDOUT_HANDLE.try_clone().unwrap(),
|
|
|
|
},
|
2022-05-11 12:48:38 -04:00
|
|
|
StdioPipe::File(pipe) => StdFileResourceInner::file(pipe),
|
2022-04-26 19:00:04 -04:00
|
|
|
},
|
|
|
|
"stdout",
|
|
|
|
));
|
2022-10-07 08:38:06 -04:00
|
|
|
assert_eq!(rid, 1, "stdout must have ResourceId 1");
|
|
|
|
|
|
|
|
let rid = t.add(StdFileResource::stdio(
|
2022-05-11 12:48:38 -04:00
|
|
|
match stdio.stderr {
|
2022-09-04 22:33:06 -04:00
|
|
|
StdioPipe::Inherit => StdFileResourceInner {
|
|
|
|
kind: StdFileResourceKind::Stderr,
|
|
|
|
file: STDERR_HANDLE.try_clone().unwrap(),
|
|
|
|
},
|
2022-05-11 12:48:38 -04:00
|
|
|
StdioPipe::File(pipe) => StdFileResourceInner::file(pipe),
|
2022-04-26 19:00:04 -04:00
|
|
|
},
|
|
|
|
"stderr",
|
|
|
|
));
|
2022-10-07 08:38:06 -04:00
|
|
|
assert_eq!(rid, 2, "stderr must have ResourceId 2");
|
2021-05-02 19:22:57 -04:00
|
|
|
})
|
2023-03-09 09:56:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn init_ops_and_esm(stdio: Stdio) -> Extension {
|
|
|
|
// todo(dsheret): don't do this? Taking out the writers was necessary to prevent invalid handle panics
|
|
|
|
let stdio = Rc::new(RefCell::new(Some(stdio)));
|
|
|
|
|
|
|
|
ops(&mut ext(), stdio)
|
|
|
|
.esm(include_js_files!("12_io.js",))
|
2021-05-02 19:22:57 -04:00
|
|
|
.build()
|
2019-11-14 12:10:25 -05:00
|
|
|
}
|
|
|
|
|
2023-03-09 09:56:19 -05:00
|
|
|
pub fn init_ops(stdio: Stdio) -> Extension {
|
|
|
|
// todo(dsheret): don't do this? Taking out the writers was necessary to prevent invalid handle panics
|
|
|
|
let stdio = Rc::new(RefCell::new(Some(stdio)));
|
|
|
|
|
|
|
|
ops(&mut ext(), stdio).build()
|
|
|
|
}
|
|
|
|
|
2023-03-04 19:39:48 -05:00
|
|
|
pub enum StdioPipe {
|
|
|
|
Inherit,
|
|
|
|
File(StdFile),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for StdioPipe {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::Inherit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for StdioPipe {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
match self {
|
|
|
|
StdioPipe::Inherit => StdioPipe::Inherit,
|
|
|
|
StdioPipe::File(pipe) => StdioPipe::File(pipe.try_clone().unwrap()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Specify how stdin, stdout, and stderr are piped.
|
|
|
|
/// By default, inherits from the process.
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
pub struct Stdio {
|
|
|
|
pub stdin: StdioPipe,
|
|
|
|
pub stdout: StdioPipe,
|
|
|
|
pub stderr: StdioPipe,
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
async fn write(self: Rc<Self>, data: &[u8]) -> Result<usize, AnyError> {
|
2021-01-14 23:32:27 -05:00
|
|
|
let mut stream = self.borrow_mut().await;
|
2022-10-09 10:49:25 -04:00
|
|
|
let nwritten = stream.write(data).await?;
|
2021-01-14 23:32:27 -05:00
|
|
|
Ok(nwritten)
|
|
|
|
}
|
|
|
|
|
2021-11-09 13:26:17 -05:00
|
|
|
async fn shutdown(self: Rc<Self>) -> Result<(), AnyError> {
|
2021-01-14 23:32:27 -05:00
|
|
|
let mut stream = self.borrow_mut().await;
|
|
|
|
stream.shutdown().await?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-04-20 18:20:33 -04:00
|
|
|
|
|
|
|
pub fn into_inner(self) -> S {
|
|
|
|
self.stream.into_inner()
|
|
|
|
}
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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()
|
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
async fn read(self: Rc<Self>, data: &mut [u8]) -> Result<usize, AnyError> {
|
2021-01-14 23:32:27 -05:00
|
|
|
let mut rd = self.borrow_mut().await;
|
2022-10-09 10:49:25 -04:00
|
|
|
let nread = rd.read(data).try_or_cancel(self.cancel_handle()).await?;
|
|
|
|
Ok(nread)
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
2022-04-20 18:20:33 -04:00
|
|
|
|
|
|
|
pub fn into_inner(self) -> S {
|
|
|
|
self.stream.into_inner()
|
|
|
|
}
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type ChildStdinResource = WriteOnlyResource<process::ChildStdin>;
|
|
|
|
|
|
|
|
impl Resource for ChildStdinResource {
|
|
|
|
fn name(&self) -> Cow<str> {
|
|
|
|
"childStdin".into()
|
|
|
|
}
|
2021-11-09 13:26:17 -05:00
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
deno_core::impl_writable!();
|
2021-11-09 13:26:17 -05:00
|
|
|
|
|
|
|
fn shutdown(self: Rc<Self>) -> AsyncResult<()> {
|
|
|
|
Box::pin(self.shutdown())
|
|
|
|
}
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type ChildStdoutResource = ReadOnlyResource<process::ChildStdout>;
|
|
|
|
|
|
|
|
impl Resource for ChildStdoutResource {
|
2022-10-09 10:49:25 -04:00
|
|
|
deno_core::impl_readable_byob!();
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
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 {
|
2022-10-09 10:49:25 -04:00
|
|
|
deno_core::impl_readable_byob!();
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
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
|
|
|
|
2022-09-04 22:33:06 -04:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
enum StdFileResourceKind {
|
|
|
|
File,
|
2022-07-13 11:16:42 -04:00
|
|
|
// For stdout and stderr, we sometimes instead use std::io::stdout() directly,
|
|
|
|
// because we get some Windows specific functionality for free by using Rust
|
|
|
|
// std's wrappers. So we take a bit of a complexity hit in order to not
|
|
|
|
// have to duplicate the functionality in Rust's std/src/sys/windows/stdio.rs
|
2022-09-04 22:33:06 -04:00
|
|
|
Stdin,
|
|
|
|
Stdout,
|
|
|
|
Stderr,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StdFileResourceInner {
|
|
|
|
kind: StdFileResourceKind,
|
|
|
|
file: StdFile,
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StdFileResourceInner {
|
|
|
|
pub fn file(fs_file: StdFile) -> Self {
|
2022-09-04 22:33:06 -04:00
|
|
|
StdFileResourceInner {
|
|
|
|
kind: StdFileResourceKind::File,
|
|
|
|
file: fs_file,
|
|
|
|
}
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
pub fn with_file<R>(&mut self, f: impl FnOnce(&mut StdFile) -> R) -> R {
|
2022-09-04 22:33:06 -04:00
|
|
|
f(&mut self.file)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_clone(&self) -> Result<Self, std::io::Error> {
|
|
|
|
Ok(Self {
|
|
|
|
kind: self.kind,
|
|
|
|
file: self.file.try_clone()?,
|
|
|
|
})
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_and_maybe_flush(
|
|
|
|
&mut self,
|
|
|
|
buf: &[u8],
|
|
|
|
) -> Result<usize, AnyError> {
|
2022-07-13 11:16:42 -04:00
|
|
|
// Rust will line buffer and we don't want that behavior
|
|
|
|
// (see https://github.com/denoland/deno/issues/948), so flush stdout and stderr.
|
|
|
|
// Although an alternative solution could be to bypass Rust's std by
|
|
|
|
// using the raw fds/handles, it will cause encoding issues on Windows
|
|
|
|
// that we get solved for free by using Rust's stdio wrappers (see
|
|
|
|
// std/src/sys/windows/stdio.rs in Rust's source code).
|
2022-09-04 22:33:06 -04:00
|
|
|
match self.kind {
|
|
|
|
StdFileResourceKind::File => Ok(self.file.write(buf)?),
|
|
|
|
StdFileResourceKind::Stdin => {
|
2022-07-13 11:16:42 -04:00
|
|
|
Err(Into::<std::io::Error>::into(ErrorKind::Unsupported).into())
|
|
|
|
}
|
2022-09-04 22:33:06 -04:00
|
|
|
StdFileResourceKind::Stdout => {
|
2022-07-13 11:16:42 -04:00
|
|
|
// bypass the file and use std::io::stdout()
|
|
|
|
let mut stdout = std::io::stdout().lock();
|
|
|
|
let nwritten = stdout.write(buf)?;
|
|
|
|
stdout.flush()?;
|
|
|
|
Ok(nwritten)
|
|
|
|
}
|
2022-09-04 22:33:06 -04:00
|
|
|
StdFileResourceKind::Stderr => {
|
2022-07-13 11:16:42 -04:00
|
|
|
// bypass the file and use std::io::stderr()
|
|
|
|
let mut stderr = std::io::stderr().lock();
|
|
|
|
let nwritten = stderr.write(buf)?;
|
|
|
|
stderr.flush()?;
|
|
|
|
Ok(nwritten)
|
|
|
|
}
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
pub fn write_all_and_maybe_flush(
|
|
|
|
&mut self,
|
|
|
|
buf: &[u8],
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
// this method exists instead of using a `Write` implementation
|
|
|
|
// so that we can acquire the locks once and do both actions
|
2022-09-04 22:33:06 -04:00
|
|
|
match self.kind {
|
|
|
|
StdFileResourceKind::File => Ok(self.file.write_all(buf)?),
|
|
|
|
StdFileResourceKind::Stdin => {
|
2022-07-13 11:16:42 -04:00
|
|
|
Err(Into::<std::io::Error>::into(ErrorKind::Unsupported).into())
|
|
|
|
}
|
2022-09-04 22:33:06 -04:00
|
|
|
StdFileResourceKind::Stdout => {
|
2022-07-13 11:16:42 -04:00
|
|
|
// bypass the file and use std::io::stdout()
|
|
|
|
let mut stdout = std::io::stdout().lock();
|
|
|
|
stdout.write_all(buf)?;
|
|
|
|
stdout.flush()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-09-04 22:33:06 -04:00
|
|
|
StdFileResourceKind::Stderr => {
|
2022-07-13 11:16:42 -04:00
|
|
|
// bypass the file and use std::io::stderr()
|
|
|
|
let mut stderr = std::io::stderr().lock();
|
|
|
|
stderr.write_all(buf)?;
|
|
|
|
stderr.flush()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
}
|
2022-07-13 11:16:42 -04:00
|
|
|
}
|
2022-05-11 12:48:38 -04:00
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
impl Read for StdFileResourceInner {
|
|
|
|
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
|
2022-09-04 22:33:06 -04:00
|
|
|
match self.kind {
|
|
|
|
StdFileResourceKind::File | StdFileResourceKind::Stdin => {
|
|
|
|
self.file.read(buf)
|
|
|
|
}
|
|
|
|
StdFileResourceKind::Stdout | StdFileResourceKind::Stderr => {
|
|
|
|
Err(ErrorKind::Unsupported.into())
|
|
|
|
}
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-04 22:33:06 -04:00
|
|
|
struct StdFileResourceCellValue {
|
|
|
|
inner: StdFileResourceInner,
|
|
|
|
meta_data: Arc<Mutex<FileMetadata>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StdFileResourceCellValue {
|
|
|
|
pub fn try_clone(&self) -> Result<Self, std::io::Error> {
|
|
|
|
Ok(Self {
|
|
|
|
inner: self.inner.try_clone()?,
|
|
|
|
meta_data: self.meta_data.clone(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 23:32:27 -05:00
|
|
|
pub struct StdFileResource {
|
|
|
|
name: String,
|
2022-09-04 22:33:06 -04:00
|
|
|
// We can't use an AsyncRefCell here because we need to allow
|
|
|
|
// access to the resource synchronously at any time and
|
|
|
|
// asynchronously one at a time in order
|
|
|
|
cell: RefCell<Option<StdFileResourceCellValue>>,
|
|
|
|
// Used to keep async actions in order and only allow one
|
2022-09-05 09:05:48 -04:00
|
|
|
// to occur at a time
|
|
|
|
cell_async_task_queue: TaskQueue,
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StdFileResource {
|
2022-05-11 12:48:38 -04:00
|
|
|
fn stdio(inner: StdFileResourceInner, name: &str) -> Self {
|
2020-12-16 11:14:12 -05:00
|
|
|
Self {
|
2022-09-04 22:33:06 -04:00
|
|
|
cell: RefCell::new(Some(StdFileResourceCellValue {
|
|
|
|
inner,
|
|
|
|
meta_data: Default::default(),
|
|
|
|
})),
|
2022-09-05 09:05:48 -04:00
|
|
|
cell_async_task_queue: Default::default(),
|
2020-12-16 11:14:12 -05:00
|
|
|
name: name.to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-19 10:41:31 -04:00
|
|
|
pub fn fs_file(fs_file: StdFile) -> Self {
|
2020-12-16 11:14:12 -05:00
|
|
|
Self {
|
2022-09-04 22:33:06 -04:00
|
|
|
cell: RefCell::new(Some(StdFileResourceCellValue {
|
|
|
|
inner: StdFileResourceInner::file(fs_file),
|
|
|
|
meta_data: Default::default(),
|
|
|
|
})),
|
2022-09-05 09:05:48 -04:00
|
|
|
cell_async_task_queue: Default::default(),
|
2020-12-16 11:14:12 -05:00
|
|
|
name: "fsFile".to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
fn with_inner_and_metadata<TResult>(
|
|
|
|
self: Rc<Self>,
|
|
|
|
action: impl FnOnce(
|
|
|
|
&mut StdFileResourceInner,
|
2022-09-04 22:33:06 -04:00
|
|
|
&Arc<Mutex<FileMetadata>>,
|
2022-07-13 11:16:42 -04:00
|
|
|
) -> Result<TResult, AnyError>,
|
|
|
|
) -> Result<TResult, AnyError> {
|
2022-09-04 22:33:06 -04:00
|
|
|
match self.cell.try_borrow_mut() {
|
|
|
|
Ok(mut cell) => {
|
2022-07-13 11:16:42 -04:00
|
|
|
let mut file = cell.take().unwrap();
|
2022-09-04 22:33:06 -04:00
|
|
|
let result = action(&mut file.inner, &file.meta_data);
|
2022-07-13 11:16:42 -04:00
|
|
|
cell.replace(file);
|
|
|
|
result
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
2022-09-04 22:33:06 -04:00
|
|
|
Err(_) => Err(resource_unavailable()),
|
2022-05-10 10:13:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
async fn with_inner_blocking_task<F, R: Send + 'static>(
|
|
|
|
self: Rc<Self>,
|
|
|
|
action: F,
|
|
|
|
) -> R
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut StdFileResourceInner) -> R + Send + 'static,
|
|
|
|
{
|
2022-09-04 22:33:06 -04:00
|
|
|
// we want to restrict this to one async action at a time
|
2022-09-05 09:05:48 -04:00
|
|
|
let _permit = self.cell_async_task_queue.acquire().await;
|
2022-07-13 11:16:42 -04:00
|
|
|
// we take the value out of the cell, use it on a blocking task,
|
|
|
|
// then put it back into the cell when we're done
|
2022-09-04 22:33:06 -04:00
|
|
|
let mut did_take = false;
|
|
|
|
let mut cell_value = {
|
|
|
|
let mut cell = self.cell.borrow_mut();
|
|
|
|
match cell.as_mut().unwrap().try_clone() {
|
|
|
|
Ok(value) => value,
|
|
|
|
Err(_) => {
|
|
|
|
did_take = true;
|
|
|
|
cell.take().unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let (cell_value, result) = tokio::task::spawn_blocking(move || {
|
|
|
|
let result = action(&mut cell_value.inner);
|
|
|
|
(cell_value, result)
|
2022-07-13 11:16:42 -04:00
|
|
|
})
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-09-04 22:33:06 -04:00
|
|
|
|
|
|
|
if did_take {
|
|
|
|
// put it back
|
|
|
|
self.cell.borrow_mut().replace(cell_value);
|
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
result
|
2022-05-10 10:13:08 -04:00
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
async fn read_byob(
|
2021-11-09 13:26:17 -05:00
|
|
|
self: Rc<Self>,
|
2022-10-09 10:49:25 -04:00
|
|
|
mut buf: BufMutView,
|
|
|
|
) -> Result<(usize, BufMutView), AnyError> {
|
2022-07-13 11:16:42 -04:00
|
|
|
self
|
2022-10-09 10:49:25 -04:00
|
|
|
.with_inner_blocking_task(move |inner| {
|
|
|
|
let nread = inner.read(&mut buf)?;
|
|
|
|
Ok((nread, buf))
|
|
|
|
})
|
2022-07-13 11:16:42 -04:00
|
|
|
.await
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
async fn write(self: Rc<Self>, data: &[u8]) -> Result<usize, AnyError> {
|
|
|
|
let buf = data.to_owned();
|
2022-07-13 11:16:42 -04:00
|
|
|
self
|
|
|
|
.with_inner_blocking_task(move |inner| inner.write_and_maybe_flush(&buf))
|
|
|
|
.await
|
2021-01-14 23:32:27 -05:00
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
async fn write_all(self: Rc<Self>, data: &[u8]) -> Result<(), AnyError> {
|
|
|
|
let buf = data.to_owned();
|
|
|
|
self
|
|
|
|
.with_inner_blocking_task(move |inner| {
|
|
|
|
inner.write_all_and_maybe_flush(&buf)
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2022-07-13 11:16:42 -04:00
|
|
|
fn with_resource<F, R>(
|
2021-01-14 23:32:27 -05:00
|
|
|
state: &mut OpState,
|
2021-03-19 13:25:37 -04:00
|
|
|
rid: ResourceId,
|
2022-07-13 11:16:42 -04:00
|
|
|
f: F,
|
2021-01-14 23:32:27 -05:00
|
|
|
) -> Result<R, AnyError>
|
|
|
|
where
|
2022-07-13 11:16:42 -04:00
|
|
|
F: FnOnce(Rc<StdFileResource>) -> Result<R, AnyError>,
|
2021-01-14 23:32:27 -05:00
|
|
|
{
|
2021-08-15 07:29:19 -04:00
|
|
|
let resource = state.resource_table.get::<StdFileResource>(rid)?;
|
2022-07-13 11:16:42 -04:00
|
|
|
f(resource)
|
2022-05-11 12:48:38 -04:00
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
|
2022-05-11 12:48:38 -04:00
|
|
|
pub fn with_file<F, R>(
|
|
|
|
state: &mut OpState,
|
|
|
|
rid: ResourceId,
|
|
|
|
f: F,
|
|
|
|
) -> Result<R, AnyError>
|
|
|
|
where
|
2022-07-13 11:16:42 -04:00
|
|
|
F: FnOnce(&mut StdFile) -> Result<R, AnyError>,
|
2022-05-11 12:48:38 -04:00
|
|
|
{
|
2022-07-13 11:16:42 -04:00
|
|
|
Self::with_resource(state, rid, move |resource| {
|
|
|
|
resource.with_inner_and_metadata(move |inner, _| inner.with_file(f))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_file_and_metadata<F, R>(
|
|
|
|
state: &mut OpState,
|
|
|
|
rid: ResourceId,
|
|
|
|
f: F,
|
|
|
|
) -> Result<R, AnyError>
|
|
|
|
where
|
2022-09-04 22:33:06 -04:00
|
|
|
F: FnOnce(&mut StdFile, &Arc<Mutex<FileMetadata>>) -> Result<R, AnyError>,
|
2022-07-13 11:16:42 -04:00
|
|
|
{
|
|
|
|
Self::with_resource(state, rid, move |resource| {
|
|
|
|
resource.with_inner_and_metadata(move |inner, metadata| {
|
|
|
|
inner.with_file(move |file| f(file, metadata))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn with_file_blocking_task<F, R: Send + 'static>(
|
|
|
|
state: Rc<RefCell<OpState>>,
|
|
|
|
rid: ResourceId,
|
|
|
|
f: F,
|
|
|
|
) -> Result<R, AnyError>
|
|
|
|
where
|
|
|
|
F: (FnOnce(&mut StdFile) -> Result<R, AnyError>) + Send + 'static,
|
|
|
|
{
|
|
|
|
let resource = state
|
|
|
|
.borrow_mut()
|
|
|
|
.resource_table
|
|
|
|
.get::<StdFileResource>(rid)?;
|
|
|
|
|
|
|
|
resource
|
|
|
|
.with_inner_blocking_task(move |inner| inner.with_file(f))
|
|
|
|
.await
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2022-04-26 09:26:05 -04:00
|
|
|
|
|
|
|
pub fn clone_file(
|
|
|
|
state: &mut OpState,
|
|
|
|
rid: ResourceId,
|
2022-05-11 12:48:38 -04:00
|
|
|
) -> Result<StdFile, AnyError> {
|
|
|
|
Self::with_file(state, rid, move |std_file| {
|
|
|
|
std_file.try_clone().map_err(AnyError::from)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_stdio(
|
|
|
|
state: &mut OpState,
|
|
|
|
rid: u32,
|
|
|
|
) -> Result<std::process::Stdio, AnyError> {
|
2022-07-13 11:16:42 -04:00
|
|
|
Self::with_resource(state, rid, |resource| {
|
2022-09-04 22:33:06 -04:00
|
|
|
resource.with_inner_and_metadata(|inner, _| match inner.kind {
|
|
|
|
StdFileResourceKind::File => {
|
|
|
|
let file = inner.file.try_clone()?;
|
2022-07-13 11:16:42 -04:00
|
|
|
Ok(file.into())
|
|
|
|
}
|
|
|
|
_ => Ok(std::process::Stdio::inherit()),
|
|
|
|
})
|
2022-04-26 09:26:05 -04: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
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
fn read(self: Rc<Self>, limit: usize) -> AsyncResult<deno_core::BufView> {
|
|
|
|
Box::pin(async move {
|
|
|
|
let vec = vec![0; limit];
|
|
|
|
let buf = BufMutView::from(vec);
|
|
|
|
let (nread, buf) = self.read_byob(buf).await?;
|
|
|
|
let mut vec = buf.unwrap_vec();
|
|
|
|
if vec.len() != nread {
|
|
|
|
vec.truncate(nread);
|
|
|
|
}
|
|
|
|
Ok(BufView::from(vec))
|
|
|
|
})
|
2021-11-09 13:26:17 -05:00
|
|
|
}
|
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
fn read_byob(
|
|
|
|
self: Rc<Self>,
|
|
|
|
buf: deno_core::BufMutView,
|
|
|
|
) -> AsyncResult<(usize, deno_core::BufMutView)> {
|
|
|
|
Box::pin(self.read_byob(buf))
|
2021-11-09 13:26:17 -05:00
|
|
|
}
|
2022-08-18 08:05:02 -04:00
|
|
|
|
2022-10-09 10:49:25 -04:00
|
|
|
deno_core::impl_writable!(with_all);
|
|
|
|
|
2022-08-18 08:05:02 -04:00
|
|
|
#[cfg(unix)]
|
|
|
|
fn backing_fd(self: Rc<Self>) -> Option<std::os::unix::prelude::RawFd> {
|
|
|
|
use std::os::unix::io::AsRawFd;
|
|
|
|
self
|
|
|
|
.with_inner_and_metadata(move |std_file, _| {
|
|
|
|
Ok(std_file.with_file(|f| f.as_raw_fd()))
|
|
|
|
})
|
|
|
|
.ok()
|
|
|
|
}
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 14:44:55 -04:00
|
|
|
// override op_print to use the stdout and stderr in the resource table
|
|
|
|
#[op]
|
|
|
|
pub fn op_print(
|
|
|
|
state: &mut OpState,
|
2023-03-03 08:34:10 -05:00
|
|
|
msg: &str,
|
2022-05-01 14:44:55 -04:00
|
|
|
is_err: bool,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let rid = if is_err { 2 } else { 1 };
|
2022-07-13 11:16:42 -04:00
|
|
|
StdFileResource::with_resource(state, rid, move |resource| {
|
|
|
|
resource.with_inner_and_metadata(|inner, _| {
|
|
|
|
inner.write_all_and_maybe_flush(msg.as_bytes())?;
|
|
|
|
Ok(())
|
|
|
|
})
|
2022-05-01 14:44:55 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-12-02 01:05:18 -05:00
|
|
|
#[op(fast)]
|
2021-01-14 23:32:27 -05:00
|
|
|
fn op_read_sync(
|
2021-03-18 09:10:27 -04:00
|
|
|
state: &mut OpState,
|
2022-12-02 01:05:18 -05:00
|
|
|
rid: u32,
|
|
|
|
buf: &mut [u8],
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2022-07-13 11:16:42 -04:00
|
|
|
StdFileResource::with_resource(state, rid, move |resource| {
|
|
|
|
resource.with_inner_and_metadata(|inner, _| {
|
|
|
|
inner
|
2022-12-02 01:05:18 -05:00
|
|
|
.read(buf)
|
2022-07-13 11:16:42 -04:00
|
|
|
.map(|n: usize| n as u32)
|
|
|
|
.map_err(AnyError::from)
|
|
|
|
})
|
2021-01-14 23:32:27 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-12-02 01:05:18 -05:00
|
|
|
#[op(fast)]
|
2021-01-14 23:32:27 -05:00
|
|
|
fn op_write_sync(
|
2021-03-18 09:10:27 -04:00
|
|
|
state: &mut OpState,
|
2022-12-02 01:05:18 -05:00
|
|
|
rid: u32,
|
|
|
|
buf: &mut [u8],
|
2021-03-18 09:10:27 -04:00
|
|
|
) -> Result<u32, AnyError> {
|
2022-07-13 11:16:42 -04:00
|
|
|
StdFileResource::with_resource(state, rid, move |resource| {
|
|
|
|
resource.with_inner_and_metadata(|inner, _| {
|
|
|
|
inner
|
2022-12-02 01:05:18 -05:00
|
|
|
.write_and_maybe_flush(buf)
|
2022-07-13 11:16:42 -04:00
|
|
|
.map(|nwritten: usize| nwritten as u32)
|
|
|
|
.map_err(AnyError::from)
|
|
|
|
})
|
2021-01-14 23:32:27 -05:00
|
|
|
})
|
|
|
|
}
|