2019-08-15 07:02:02 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
use crate::prelude::*;
|
2020-01-01 07:45:27 +01:00
|
|
|
use indexmap::map::IndexMap;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
use nu_errors::ShellError;
|
2020-01-01 07:45:27 +01:00
|
|
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
|
|
|
use nu_source::Tagged;
|
2019-08-10 09:06:08 +02:00
|
|
|
|
|
|
|
pub struct Which;
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
#[async_trait]
|
2019-08-15 07:02:02 +02:00
|
|
|
impl WholeStreamCommand for Which {
|
2019-08-30 00:52:32 +02:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"which"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-01-01 07:45:27 +01:00
|
|
|
Signature::build("which")
|
2020-01-01 08:47:25 +01:00
|
|
|
.required("application", SyntaxShape::String, "application")
|
2020-02-12 03:24:31 +01:00
|
|
|
.switch("all", "list all executables", Some('a'))
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Finds a program file."
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
async fn run(
|
2019-08-10 09:06:08 +02:00
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-06-13 06:03:39 +02:00
|
|
|
which(args, registry).await
|
2019-08-10 09:06:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 07:45:27 +01:00
|
|
|
/// Shortcuts for creating an entry to the output table
|
|
|
|
fn entry(arg: impl Into<String>, path: Value, builtin: bool, tag: Tag) -> Value {
|
|
|
|
let mut map = IndexMap::new();
|
|
|
|
map.insert(
|
|
|
|
"arg".to_string(),
|
|
|
|
UntaggedValue::Primitive(Primitive::String(arg.into())).into_value(tag.clone()),
|
|
|
|
);
|
|
|
|
map.insert("path".to_string(), path);
|
|
|
|
map.insert(
|
|
|
|
"builtin".to_string(),
|
|
|
|
UntaggedValue::Primitive(Primitive::Boolean(builtin)).into_value(tag.clone()),
|
|
|
|
);
|
|
|
|
|
|
|
|
UntaggedValue::row(map).into_value(tag)
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! entry_builtin {
|
|
|
|
($arg:expr, $tag:expr) => {
|
|
|
|
entry(
|
|
|
|
$arg.clone(),
|
|
|
|
UntaggedValue::Primitive(Primitive::String("nushell built-in command".to_string()))
|
|
|
|
.into_value($tag.clone()),
|
|
|
|
true,
|
|
|
|
$tag,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-07-18 03:59:23 +02:00
|
|
|
#[allow(unused)]
|
2020-01-01 07:45:27 +01:00
|
|
|
macro_rules! entry_path {
|
|
|
|
($arg:expr, $path:expr, $tag:expr) => {
|
|
|
|
entry(
|
|
|
|
$arg.clone(),
|
|
|
|
UntaggedValue::Primitive(Primitive::Path($path)).into_value($tag.clone()),
|
|
|
|
false,
|
|
|
|
$tag,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
struct WhichArgs {
|
2020-01-01 08:47:25 +01:00
|
|
|
application: Tagged<String>,
|
2020-01-01 07:45:27 +01:00
|
|
|
all: bool,
|
|
|
|
}
|
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
async fn which(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2020-05-16 05:18:24 +02:00
|
|
|
let registry = registry.clone();
|
2020-06-13 06:03:39 +02:00
|
|
|
|
|
|
|
let mut output = vec![];
|
|
|
|
|
|
|
|
let (WhichArgs { application, all }, _) = args.process(®istry).await?;
|
|
|
|
let external = application.starts_with('^');
|
|
|
|
let item = if external {
|
|
|
|
application.item[1..].to_string()
|
|
|
|
} else {
|
|
|
|
application.item.clone()
|
|
|
|
};
|
|
|
|
if !external {
|
|
|
|
let builtin = registry.has(&item);
|
|
|
|
if builtin {
|
|
|
|
output.push(ReturnSuccess::value(entry_builtin!(
|
|
|
|
item,
|
|
|
|
application.tag.clone()
|
|
|
|
)));
|
2020-03-22 14:11:39 +01:00
|
|
|
}
|
2020-06-13 06:03:39 +02:00
|
|
|
}
|
2020-01-01 07:45:27 +01:00
|
|
|
|
2020-07-18 03:59:23 +02:00
|
|
|
#[cfg(feature = "ichwh")]
|
|
|
|
{
|
|
|
|
if let Ok(paths) = ichwh::which_all(&item).await {
|
|
|
|
for path in paths {
|
|
|
|
output.push(ReturnSuccess::value(entry_path!(
|
|
|
|
item,
|
|
|
|
path.into(),
|
|
|
|
application.tag.clone()
|
|
|
|
)));
|
|
|
|
}
|
2020-03-22 14:11:39 +01:00
|
|
|
}
|
2020-06-13 06:03:39 +02:00
|
|
|
}
|
2020-01-01 07:45:27 +01:00
|
|
|
|
2020-03-22 14:11:39 +01:00
|
|
|
if all {
|
2020-06-13 06:03:39 +02:00
|
|
|
Ok(futures::stream::iter(output.into_iter()).to_output_stream())
|
2019-08-10 09:06:08 +02:00
|
|
|
} else {
|
2020-06-13 06:03:39 +02:00
|
|
|
Ok(futures::stream::iter(output.into_iter().take(1)).to_output_stream())
|
2020-01-01 07:45:27 +01:00
|
|
|
}
|
2019-08-10 09:06:08 +02:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::Which;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn examples_work_as_expected() {
|
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
|
|
|
test_examples(Which {})
|
|
|
|
}
|
|
|
|
}
|