mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-24 00:01:03 +00:00
193 lines
6.3 KiB
Rust
193 lines
6.3 KiB
Rust
use std::{ops::DerefMut, process::ExitStatus, time::Duration};
|
|
|
|
use futures::future::try_join3;
|
|
use mlua::{AnyUserData, ExternalError, IntoLua, IntoLuaMulti, Table, UserData, UserDataMethods, Value};
|
|
use tokio::{io::{self, AsyncBufReadExt, AsyncReadExt, AsyncWriteExt, BufReader, BufWriter}, process::{ChildStderr, ChildStdin, ChildStdout}, select};
|
|
use yazi_binding::Error;
|
|
|
|
use super::Status;
|
|
use crate::process::Output;
|
|
|
|
pub struct Child {
|
|
inner: tokio::process::Child,
|
|
stdin: Option<BufWriter<ChildStdin>>,
|
|
stdout: Option<BufReader<ChildStdout>>,
|
|
stderr: Option<BufReader<ChildStderr>>,
|
|
#[cfg(windows)]
|
|
job_handle: Option<std::os::windows::io::RawHandle>,
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
impl Drop for Child {
|
|
fn drop(&mut self) {
|
|
if let Some(h) = self.job_handle.take() {
|
|
unsafe { windows_sys::Win32::Foundation::CloseHandle(h) };
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Child {
|
|
pub fn new(
|
|
mut inner: tokio::process::Child,
|
|
#[cfg(windows)] job_handle: Option<std::os::windows::io::RawHandle>,
|
|
) -> Self {
|
|
let stdin = inner.stdin.take().map(BufWriter::new);
|
|
let stdout = inner.stdout.take().map(BufReader::new);
|
|
let stderr = inner.stderr.take().map(BufReader::new);
|
|
Self {
|
|
inner,
|
|
stdin,
|
|
stdout,
|
|
stderr,
|
|
#[cfg(windows)]
|
|
job_handle,
|
|
}
|
|
}
|
|
|
|
pub(super) async fn wait(&mut self) -> io::Result<ExitStatus> {
|
|
drop(self.stdin.take());
|
|
self.inner.wait().await
|
|
}
|
|
|
|
pub(super) async fn status(&mut self) -> io::Result<ExitStatus> {
|
|
drop(self.stdin.take());
|
|
drop(self.stdout.take());
|
|
drop(self.stderr.take());
|
|
self.inner.wait().await
|
|
}
|
|
|
|
async fn read_line(&mut self) -> (Option<Vec<u8>>, u8) {
|
|
async fn read(r: Option<impl AsyncBufReadExt + Unpin>) -> Option<Vec<u8>> {
|
|
let mut buf = Vec::new();
|
|
match r?.read_until(b'\n', &mut buf).await {
|
|
Ok(0) | Err(_) => None,
|
|
Ok(_) => Some(buf),
|
|
}
|
|
}
|
|
|
|
select! {
|
|
r @ Some(_) = read(self.stdout.as_mut()) => (r, 0u8),
|
|
r @ Some(_) = read(self.stderr.as_mut()) => (r, 1u8),
|
|
else => (None, 2u8),
|
|
}
|
|
}
|
|
|
|
pub(super) async fn wait_with_output(mut self) -> io::Result<std::process::Output> {
|
|
async fn read(r: &mut Option<impl AsyncBufReadExt + Unpin>) -> io::Result<Vec<u8>> {
|
|
let mut vec = Vec::new();
|
|
if let Some(r) = r.as_mut() {
|
|
r.read_to_end(&mut vec).await?;
|
|
}
|
|
Ok(vec)
|
|
}
|
|
|
|
// Ensure stdin is closed so the child isn't stuck waiting on input while the
|
|
// parent is waiting for it to exit.
|
|
drop(self.stdin.take());
|
|
|
|
// Drop happens after `try_join` due to <https://github.com/tokio-rs/tokio/issues/4309>
|
|
let mut stdout = self.stdout.take();
|
|
let mut stderr = self.stderr.take();
|
|
|
|
let result = try_join3(self.inner.wait(), read(&mut stdout), read(&mut stderr)).await?;
|
|
Ok(std::process::Output { status: result.0, stdout: result.1, stderr: result.2 })
|
|
}
|
|
}
|
|
|
|
impl UserData for Child {
|
|
fn add_methods<M: UserDataMethods<Self>>(methods: &mut M) {
|
|
methods.add_method("id", |_, me, ()| Ok(me.inner.id()));
|
|
|
|
methods.add_async_method_mut("read", |_, mut me, len: usize| async move {
|
|
async fn read(r: Option<impl AsyncBufReadExt + Unpin>, len: usize) -> Option<Vec<u8>> {
|
|
let mut r = r?;
|
|
let mut buf = vec![0; len];
|
|
match r.read(&mut buf).await {
|
|
Ok(0) | Err(_) => return None,
|
|
Ok(n) => buf.truncate(n),
|
|
}
|
|
Some(buf)
|
|
}
|
|
|
|
let me = me.deref_mut();
|
|
Ok(select! {
|
|
Some(r) = read(me.stdout.as_mut(), len) => (r, 0u8),
|
|
Some(r) = read(me.stderr.as_mut(), len) => (r, 1u8),
|
|
else => (vec![], 2u8)
|
|
})
|
|
});
|
|
methods.add_async_method_mut("read_line", |lua, mut me, ()| async move {
|
|
match me.read_line().await {
|
|
(Some(b), event) => (lua.create_string(b)?, event).into_lua_multi(&lua),
|
|
(None, event) => (Value::Nil, event).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
// TODO: deprecate this method
|
|
methods.add_async_method_mut("read_line_with", |lua, mut me, options: Table| async move {
|
|
let timeout = Duration::from_millis(options.raw_get("timeout")?);
|
|
let Ok(result) = tokio::time::timeout(timeout, me.read_line()).await else {
|
|
return (Value::Nil, 3u8).into_lua_multi(&lua);
|
|
};
|
|
match result {
|
|
(Some(b), event) => (lua.create_string(b)?, event).into_lua_multi(&lua),
|
|
(None, event) => (Value::Nil, event).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
|
|
methods.add_async_method_mut("write_all", |lua, mut me, src: mlua::String| async move {
|
|
let Some(stdin) = &mut me.stdin else {
|
|
return Err("stdin is not piped".into_lua_err());
|
|
};
|
|
match stdin.write_all(&src.as_bytes()).await {
|
|
Ok(()) => true.into_lua_multi(&lua),
|
|
Err(e) => (false, Error::Io(e)).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
methods.add_async_method_mut("flush", |lua, mut me, ()| async move {
|
|
let Some(stdin) = &mut me.stdin else {
|
|
return Err("stdin is not piped".into_lua_err());
|
|
};
|
|
match stdin.flush().await {
|
|
Ok(()) => true.into_lua_multi(&lua),
|
|
Err(e) => (false, Error::Io(e)).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
|
|
methods.add_async_method_mut("wait", |lua, mut me, ()| async move {
|
|
match me.wait().await {
|
|
Ok(status) => Status::new(status).into_lua_multi(&lua),
|
|
Err(e) => (Value::Nil, Error::Io(e)).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
methods.add_async_function("wait_with_output", |lua, ud: AnyUserData| async move {
|
|
match ud.take::<Self>()?.wait_with_output().await {
|
|
Ok(output) => Output::new(output).into_lua_multi(&lua),
|
|
Err(e) => (Value::Nil, Error::Io(e)).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
methods.add_async_method_mut("try_wait", |lua, mut me, ()| async move {
|
|
match me.inner.try_wait() {
|
|
Ok(Some(status)) => Status::new(status).into_lua_multi(&lua),
|
|
Ok(None) => Value::Nil.into_lua_multi(&lua),
|
|
Err(e) => (Value::Nil, Error::Io(e)).into_lua_multi(&lua),
|
|
}
|
|
});
|
|
methods.add_method_mut("start_kill", |lua, me, ()| match me.inner.start_kill() {
|
|
Ok(_) => true.into_lua_multi(lua),
|
|
Err(e) => (false, Error::Io(e)).into_lua_multi(lua),
|
|
});
|
|
|
|
methods.add_method_mut("take_stdin", |lua, me, ()| match me.stdin.take() {
|
|
Some(stdin) => lua.create_any_userdata(stdin.into_inner())?.into_lua(lua),
|
|
None => Ok(Value::Nil),
|
|
});
|
|
methods.add_method_mut("take_stdout", |lua, me, ()| match me.stdout.take() {
|
|
Some(stdout) => lua.create_any_userdata(stdout.into_inner())?.into_lua(lua),
|
|
None => Ok(Value::Nil),
|
|
});
|
|
methods.add_method_mut("take_stderr", |lua, me, ()| match me.stderr.take() {
|
|
Some(stderr) => lua.create_any_userdata(stderr.into_inner())?.into_lua(lua),
|
|
None => Ok(Value::Nil),
|
|
});
|
|
}
|
|
}
|