nushell/src/commands/shells.rs

51 lines
1.3 KiB
Rust
Raw Normal View History

use crate::commands::WholeStreamCommand;
use crate::data::TaggedDictBuilder;
2019-09-11 16:36:50 +02:00
use crate::errors::ShellError;
2019-08-07 19:49:11 +02:00
use crate::prelude::*;
use std::sync::atomic::Ordering;
2019-08-07 19:49:11 +02:00
pub struct Shells;
impl WholeStreamCommand for Shells {
fn name(&self) -> &str {
"shells"
}
fn signature(&self) -> Signature {
Signature::build("shells")
}
fn usage(&self) -> &str {
"Display the list of current shells."
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
shells(args, registry)
}
}
fn shells(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
2019-08-07 19:49:11 +02:00
let mut shells_out = VecDeque::new();
let tag = args.call_info.name_tag;
2019-08-07 19:49:11 +02:00
2019-08-10 22:18:14 +02:00
for (index, shell) in args.shell_manager.shells.lock().unwrap().iter().enumerate() {
let mut dict = TaggedDictBuilder::new(&tag);
2019-08-10 22:18:14 +02:00
if index == (*args.shell_manager.current_shell).load(Ordering::SeqCst) {
2019-08-10 22:18:14 +02:00
dict.insert(" ", "X".to_string());
} else {
dict.insert(" ", " ".to_string());
}
dict.insert("name", shell.name());
2019-08-07 19:49:11 +02:00
dict.insert("path", shell.path());
shells_out.push_back(dict.into_tagged_value());
}
Ok(shells_out.to_output_stream())
}