2020-09-05 02:27:01 +00:00
|
|
|
use crate::prelude::*;
|
2021-01-10 02:50:49 +00:00
|
|
|
use nu_engine::WholeStreamCommand;
|
2020-09-05 02:27:01 +00:00
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::{Signature, SyntaxShape};
|
|
|
|
use nu_source::Tagged;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
pub struct Exec;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ExecArgs {
|
|
|
|
pub command: Tagged<PathBuf>,
|
|
|
|
pub rest: Vec<Tagged<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
impl WholeStreamCommand for Exec {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"exec"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("exec")
|
2021-01-08 07:30:41 +00:00
|
|
|
.required("command", SyntaxShape::FilePath, "the command to execute")
|
|
|
|
.rest(
|
|
|
|
SyntaxShape::GlobPattern,
|
|
|
|
"any additional arguments for command",
|
|
|
|
)
|
2020-09-05 02:27:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Execute command"
|
|
|
|
}
|
|
|
|
|
2020-12-18 07:53:49 +00:00
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
|
|
exec(args).await
|
2020-09-05 02:27:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![
|
|
|
|
Example {
|
|
|
|
description: "Execute 'ps aux'",
|
|
|
|
example: "exec ps aux",
|
|
|
|
result: None,
|
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description: "Execute 'nautilus'",
|
|
|
|
example: "exec nautilus",
|
|
|
|
result: None,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
2020-12-18 07:53:49 +00:00
|
|
|
async fn exec(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
2020-09-05 02:27:01 +00:00
|
|
|
use std::os::unix::process::CommandExt;
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
let name = args.call_info.name_tag.clone();
|
2020-12-18 07:53:49 +00:00
|
|
|
let (args, _): (ExecArgs, _) = args.process().await?;
|
2020-09-05 02:27:01 +00:00
|
|
|
|
|
|
|
let mut command = Command::new(args.command.item);
|
|
|
|
for tagged_arg in args.rest {
|
|
|
|
command.arg(tagged_arg.item);
|
|
|
|
}
|
|
|
|
|
|
|
|
let err = command.exec(); // this replaces our process, should not return
|
|
|
|
|
|
|
|
Err(ShellError::labeled_error(
|
|
|
|
"Error on exec",
|
|
|
|
format!("{}", err),
|
|
|
|
&name,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(unix))]
|
2020-12-18 07:53:49 +00:00
|
|
|
async fn exec(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
2020-09-05 02:27:01 +00:00
|
|
|
Err(ShellError::labeled_error(
|
|
|
|
"Error on exec",
|
|
|
|
"exec is not supported on your platform",
|
|
|
|
&args.call_info.name_tag,
|
|
|
|
))
|
|
|
|
}
|