mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-19 14:51:42 +03:00
fix: set stdio to null when orphan
is true (#229)
This commit is contained in:
parent
d3d3462b5e
commit
5584ba4844
65
core/src/external/shell.rs
vendored
65
core/src/external/shell.rs
vendored
@ -15,37 +15,44 @@ impl ShellOpt {
|
||||
self.piped = true;
|
||||
self
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn stdio(&self) -> Stdio {
|
||||
if self.orphan {
|
||||
Stdio::null()
|
||||
} else if self.piped {
|
||||
Stdio::piped()
|
||||
} else {
|
||||
Stdio::inherit()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn shell(opt: ShellOpt) -> Result<Child> {
|
||||
#[cfg(not(target_os = "windows"))]
|
||||
{
|
||||
Ok(
|
||||
Command::new("sh")
|
||||
.arg("-c")
|
||||
.arg(opt.cmd)
|
||||
.arg("") // $0 is the command name
|
||||
.args(opt.args)
|
||||
.stdin(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.stdout(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.stderr(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.kill_on_drop(!opt.orphan)
|
||||
.spawn()?,
|
||||
)
|
||||
}
|
||||
#[cfg(unix)]
|
||||
return Ok(
|
||||
Command::new("sh")
|
||||
.arg("-c")
|
||||
.stdin(opt.stdio())
|
||||
.stdout(opt.stdio())
|
||||
.stderr(opt.stdio())
|
||||
.arg(opt.cmd)
|
||||
.arg("") // $0 is the command name
|
||||
.args(opt.args)
|
||||
.kill_on_drop(!opt.orphan)
|
||||
.spawn()?,
|
||||
);
|
||||
|
||||
#[cfg(target_os = "windows")]
|
||||
{
|
||||
Ok(
|
||||
Command::new("cmd")
|
||||
.arg("/C")
|
||||
.arg(opt.cmd)
|
||||
.args(opt.args)
|
||||
.stdin(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.stdout(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.stderr(if opt.piped { Stdio::piped() } else { Stdio::inherit() })
|
||||
.kill_on_drop(true)
|
||||
.spawn()?,
|
||||
)
|
||||
}
|
||||
#[cfg(windows)]
|
||||
return Ok(
|
||||
Command::new("cmd")
|
||||
.stdin(opt.stdio())
|
||||
.stdout(opt.stdio())
|
||||
.stderr(opt.stdio())
|
||||
.arg("/C")
|
||||
.arg(opt.cmd)
|
||||
.args(opt.args)
|
||||
.kill_on_drop(true)
|
||||
.spawn()?,
|
||||
);
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ use std::{ffi::OsString, mem};
|
||||
|
||||
use anyhow::Result;
|
||||
use tokio::{io::{AsyncBufReadExt, BufReader}, select, sync::{mpsc, oneshot}};
|
||||
use tracing::trace;
|
||||
|
||||
use crate::{emit, external::{self, ShellOpt}, tasks::TaskOp, BLOCKER};
|
||||
|
||||
@ -41,26 +40,37 @@ impl Process {
|
||||
fn done(&self, id: usize) -> Result<()> { Ok(self.sch.send(TaskOp::Done(id))?) }
|
||||
|
||||
pub(crate) async fn open(&self, mut task: ProcessOpOpen) -> Result<()> {
|
||||
let opt = ShellOpt::from(&mut task);
|
||||
if task.block {
|
||||
let _guard = BLOCKER.acquire().await.unwrap();
|
||||
emit!(Stop(true)).await;
|
||||
|
||||
match external::shell(ShellOpt::from(&mut task)) {
|
||||
match external::shell(opt) {
|
||||
Ok(mut child) => {
|
||||
child.wait().await.ok();
|
||||
self.done(task.id)?;
|
||||
}
|
||||
Err(e) => {
|
||||
trace!("Failed to spawn process: {e}");
|
||||
self.sch.send(TaskOp::New(task.id, 0))?;
|
||||
self.log(task.id, format!("Failed to spawn process: {e}"))?;
|
||||
}
|
||||
}
|
||||
emit!(Stop(false)).await;
|
||||
return Ok(emit!(Stop(false)).await);
|
||||
}
|
||||
|
||||
self.sch.send(TaskOp::Adv(task.id, 1, 0))?;
|
||||
return self.done(task.id);
|
||||
if task.orphan {
|
||||
match external::shell(opt) {
|
||||
Ok(_) => self.done(task.id)?,
|
||||
Err(e) => {
|
||||
self.sch.send(TaskOp::New(task.id, 0))?;
|
||||
self.log(task.id, format!("Failed to spawn process: {e}"))?;
|
||||
}
|
||||
}
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
self.sch.send(TaskOp::New(task.id, 0))?;
|
||||
let mut child = external::shell(ShellOpt::from(&mut task).with_piped())?;
|
||||
let mut child = external::shell(opt.with_piped())?;
|
||||
|
||||
let mut stdout = BufReader::new(child.stdout.take().unwrap()).lines();
|
||||
let mut stderr = BufReader::new(child.stderr.take().unwrap()).lines();
|
||||
|
Loading…
Reference in New Issue
Block a user