mirror of
https://github.com/nushell/nushell.git
synced 2024-12-28 01:49:20 +01:00
d8594a62c2
* Working towards a PoC for wasm * Move bson and sqlite to plugins * proof of concept now working * tests are green * Add CI test for --no-default-features * Fix some tests * Fix clippy and windows build * More fixes * Fix the windows build * Fix the windows test
134 lines
3.3 KiB
Rust
134 lines
3.3 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use indexmap::map::IndexMap;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
|
use nu_source::Tagged;
|
|
|
|
pub struct Which;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Which {
|
|
fn name(&self) -> &str {
|
|
"which"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("which")
|
|
.required("application", SyntaxShape::String, "application")
|
|
.switch("all", "list all executables", Some('a'))
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Finds a program file."
|
|
}
|
|
|
|
async fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
which(args, registry).await
|
|
}
|
|
}
|
|
|
|
/// 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,
|
|
)
|
|
};
|
|
}
|
|
|
|
#[allow(unused)]
|
|
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 {
|
|
application: Tagged<String>,
|
|
all: bool,
|
|
}
|
|
|
|
async fn which(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
|
|
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()
|
|
)));
|
|
}
|
|
}
|
|
|
|
#[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()
|
|
)));
|
|
}
|
|
}
|
|
}
|
|
|
|
if all {
|
|
Ok(futures::stream::iter(output.into_iter()).to_output_stream())
|
|
} else {
|
|
Ok(futures::stream::iter(output.into_iter().take(1)).to_output_stream())
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Which;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(Which {})
|
|
}
|
|
}
|