2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-08-07 19:49:11 +02:00
|
|
|
use crate::errors::ShellError;
|
|
|
|
use crate::object::TaggedDictBuilder;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct Shells;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for Shells {
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
shells(args, registry)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"shells"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("shells")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn shells(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2019-08-07 19:49:11 +02:00
|
|
|
let mut shells_out = VecDeque::new();
|
|
|
|
let span = args.call_info.name_span;
|
|
|
|
|
2019-08-10 22:18:14 +02:00
|
|
|
for (index, shell) in args.shell_manager.shells.lock().unwrap().iter().enumerate() {
|
2019-08-07 19:49:11 +02:00
|
|
|
let mut dict = TaggedDictBuilder::new(Tag::unknown_origin(span));
|
2019-08-10 22:18:14 +02:00
|
|
|
|
2019-08-19 09:29:27 +02:00
|
|
|
if index == args.shell_manager.current_shell {
|
2019-08-10 22:18:14 +02:00
|
|
|
dict.insert(" ", "X".to_string());
|
|
|
|
} else {
|
|
|
|
dict.insert(" ", " ".to_string());
|
|
|
|
}
|
|
|
|
dict.insert("name", shell.name(&args.call_info.source_map));
|
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())
|
|
|
|
}
|