forked from extern/nushell
* Begin allowing comments and multiline scripts. * clippy * Finish moving to groups. Test pass * Keep going * WIP * WIP * BROKEN WIP * WIP * WIP * Fix more tests * WIP: alias starts working * Broken WIP * Broken WIP * Variables begin to work * captures start working * A little better but needs fixed scope * Shorthand env setting * Update main merge * Broken WIP * WIP * custom command parsing * Custom commands start working * Fix coloring and parsing of block * Almost there * Add some tests * Add more param types * Bump version * Fix benchmark * Fix stuff
47 lines
1.0 KiB
Rust
47 lines
1.0 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Value};
|
|
|
|
use rand::seq::SliceRandom;
|
|
use rand::thread_rng;
|
|
|
|
pub struct Shuffle;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Shuffle {
|
|
fn name(&self) -> &str {
|
|
"shuffle"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Shuffle rows randomly."
|
|
}
|
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
shuffle(args).await
|
|
}
|
|
}
|
|
|
|
async fn shuffle(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let input = args.input;
|
|
let mut values: Vec<Value> = input.collect().await;
|
|
|
|
values.shuffle(&mut thread_rng());
|
|
|
|
Ok(futures::stream::iter(values.into_iter().map(ReturnSuccess::value)).to_output_stream())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::ShellError;
|
|
use super::Shuffle;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
Ok(test_examples(Shuffle {})?)
|
|
}
|
|
}
|