2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-05-10 18:59:12 +02:00
|
|
|
use crate::errors::ShellError;
|
2019-05-13 19:30:51 +02:00
|
|
|
use crate::prelude::*;
|
2019-09-14 18:30:24 +02:00
|
|
|
use std::path::PathBuf;
|
2019-05-10 18:59:12 +02:00
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct LS;
|
|
|
|
|
2019-09-14 18:30:24 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct LsArgs {
|
|
|
|
path: Option<Tagged<PathBuf>>,
|
2019-11-17 18:10:50 +01:00
|
|
|
full: bool,
|
2019-09-14 18:30:24 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
impl WholeStreamCommand for LS {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"ls"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-11-17 18:10:50 +01:00
|
|
|
Signature::build("ls")
|
|
|
|
.optional(
|
|
|
|
"path",
|
|
|
|
SyntaxShape::Pattern,
|
|
|
|
"a path to get the directory contents from",
|
|
|
|
)
|
|
|
|
.switch("full", "list all available columns for each entry")
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"View the contents of the current or given path."
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-09-14 18:30:24 +02:00
|
|
|
args.process(registry, ls)?.run()
|
|
|
|
// ls(args, registry)
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-11-17 18:10:50 +01:00
|
|
|
fn ls(LsArgs { path, full }: LsArgs, context: RunnableContext) -> Result<OutputStream, ShellError> {
|
|
|
|
context.shell_manager.ls(path, &context, full)
|
2019-05-10 18:59:12 +02:00
|
|
|
}
|