mirror of
https://github.com/nushell/nushell
synced 2025-01-25 03:15:25 +00:00
93e8f6c05e
We split off the evaluation engine part of nu-cli into its own crate. This helps improve build times for nu-cli by 17% in my tests. It also helps us see a bit better what's the core engine portion vs the part specific to the interactive CLI piece. There's more than can be done here, but I think it's a good start in the right direction.
64 lines
1.5 KiB
Rust
64 lines
1.5 KiB
Rust
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{CommandAction, ReturnSuccess, Signature};
|
|
|
|
pub struct Exit;
|
|
|
|
#[async_trait]
|
|
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
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Exit the current shell",
|
|
example: "exit",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Exit all shells (exiting Nu)",
|
|
example: "exit --now",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
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)))
|
|
}
|
|
|
|
#[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;
|
|
|
|
Ok(test_examples(Exit {})?)
|
|
}
|
|
}
|