nushell/crates/nu-command/src/commands/exit.rs

65 lines
1.5 KiB
Rust
Raw Normal View History

2019-06-13 21:47:25 +00:00
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::{CommandAction, ReturnSuccess, Signature};
2019-06-13 21:47:25 +00:00
2019-08-07 17:49:11 +00:00
pub struct Exit;
2020-05-29 08:22:52 +00:00
#[async_trait]
2019-08-15 05:02:02 +00:00
impl WholeStreamCommand for Exit {
fn name(&self) -> &str {
"exit"
}
fn signature(&self) -> Signature {
Signature::build("exit").switch("now", "exit out of the shell immediately", Some('n'))
}
fn usage(&self) -> &str {
"Exit the current shell (or all shells)"
}
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
exit(args).await
2019-08-07 17:49:11 +00:00
}
2020-05-12 05:17:17 +00:00
fn examples(&self) -> Vec<Example> {
vec![
2020-05-12 05:17:17 +00:00
Example {
description: "Exit the current shell",
example: "exit",
result: None,
2020-05-12 05:17:17 +00:00
},
Example {
description: "Exit all shells (exiting Nu)",
example: "exit --now",
result: None,
2020-05-12 05:17:17 +00:00
},
]
}
2019-08-07 17:49:11 +00:00
}
pub async fn exit(args: CommandArgs) -> Result<OutputStream, ShellError> {
let args = args.evaluate_once().await?;
let command_action = if args.call_info.args.has("now") {
CommandAction::Exit
} else {
CommandAction::LeaveShell
};
Ok(OutputStream::one(ReturnSuccess::action(command_action)))
2019-06-13 21:47:25 +00:00
}
#[cfg(test)]
mod tests {
use super::Exit;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
2021-02-12 10:13:14 +00:00
test_examples(Exit {})
}
}