mirror of
https://github.com/nushell/nushell
synced 2025-01-25 19:35:25 +00:00
fe6d96e996
* Another batch of removing async_stream * merge master
67 lines
1.6 KiB
Rust
67 lines
1.6 KiB
Rust
use crate::cli::History as HistoryFile;
|
|
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, UntaggedValue};
|
|
use std::fs::File;
|
|
use std::io::{BufRead, BufReader};
|
|
|
|
pub struct History;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for History {
|
|
fn name(&self) -> &str {
|
|
"history"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("history")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Display command history."
|
|
}
|
|
|
|
async fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
history(args, registry)
|
|
}
|
|
}
|
|
|
|
fn history(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let tag = args.call_info.name_tag;
|
|
let history_path = HistoryFile::path();
|
|
let file = File::open(history_path);
|
|
if let Ok(file) = file {
|
|
let reader = BufReader::new(file);
|
|
let output = reader.lines().filter_map(move |line| match line {
|
|
Ok(line) => Some(ReturnSuccess::value(
|
|
UntaggedValue::string(line).into_value(tag.clone()),
|
|
)),
|
|
Err(_) => None,
|
|
});
|
|
|
|
Ok(futures::stream::iter(output).to_output_stream())
|
|
} else {
|
|
Err(ShellError::labeled_error(
|
|
"Could not open history",
|
|
"history file could not be opened",
|
|
tag,
|
|
))
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::History;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(History {})
|
|
}
|
|
}
|