nushell/crates/nu-command/src/strings/size.rs

457 lines
14 KiB
Rust
Raw Normal View History

2021-10-12 23:55:29 +02:00
use nu_protocol::ast::Call;
2021-10-25 18:58:58 +02:00
use nu_protocol::engine::{Command, EngineState, Stack};
2021-12-03 00:11:25 +01:00
use nu_protocol::{Category, Example, PipelineData, ShellError, Signature, Span, Value};
use std::collections::BTreeMap;
use std::{fmt, str};
use unicode_segmentation::UnicodeSegmentation;
// borrowed liberally from here https://github.com/dead10ck/uwc
pub type Counted = BTreeMap<Counter, usize>;
2021-10-12 23:55:29 +02:00
2021-10-25 06:01:02 +02:00
#[derive(Clone)]
2021-10-12 23:55:29 +02:00
pub struct Size;
impl Command for Size {
fn name(&self) -> &str {
"size"
}
fn signature(&self) -> Signature {
Signature::build("size").category(Category::Strings)
2021-10-12 23:55:29 +02:00
}
fn usage(&self) -> &str {
"Gather word count statistics on the text."
}
fn search_terms(&self) -> Vec<&str> {
vec!["count", "word", "character", "unicode", "wc"]
}
2021-10-12 23:55:29 +02:00
fn run(
&self,
2021-10-28 06:13:10 +02:00
engine_state: &EngineState,
2021-10-25 08:31:39 +02:00
_stack: &mut Stack,
2021-10-12 23:55:29 +02:00
call: &Call,
2021-10-25 06:01:02 +02:00
input: PipelineData,
) -> Result<PipelineData, ShellError> {
2021-10-28 06:13:10 +02:00
size(engine_state, call, input)
2021-10-12 23:55:29 +02:00
}
2021-10-13 06:15:37 +02:00
fn examples(&self) -> Vec<Example> {
vec![
Example {
description: "Count the number of words in a string",
example: r#""There are seven words in this sentence" | size"#,
result: Some(Value::Record {
cols: vec![
"lines".into(),
"words".into(),
"bytes".into(),
"chars".into(),
"graphemes".into(),
2021-10-13 06:15:37 +02:00
],
vals: vec![
Value::Int {
val: 1,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 7,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 38,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 38,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 38,
span: Span::test_data(),
},
],
span: Span::test_data(),
}),
},
Example {
description: "Counts unicode characters",
example: r#"'今天天气真好' | size "#,
result: Some(Value::Record {
cols: vec![
"lines".into(),
"words".into(),
"bytes".into(),
"chars".into(),
"graphemes".into(),
],
vals: vec![
Value::Int {
val: 1,
span: Span::test_data(),
},
Value::Int {
val: 6,
span: Span::test_data(),
},
Value::Int {
val: 18,
span: Span::test_data(),
},
Value::Int {
val: 6,
span: Span::test_data(),
},
Value::Int {
val: 6,
span: Span::test_data(),
},
2021-10-13 06:15:37 +02:00
],
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
}),
},
Example {
description: "Counts Unicode characters correctly in a string",
example: r#""Amélie Amelie" | size"#,
result: Some(Value::Record {
cols: vec![
"lines".into(),
"words".into(),
"bytes".into(),
"chars".into(),
"graphemes".into(),
2021-10-13 06:15:37 +02:00
],
vals: vec![
Value::Int {
val: 1,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 2,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 15,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
Value::Int {
val: 14,
span: Span::test_data(),
},
Value::Int {
val: 13,
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
},
],
2021-12-19 08:46:13 +01:00
span: Span::test_data(),
2021-10-13 06:15:37 +02:00
}),
},
]
}
2021-10-12 23:55:29 +02:00
}
2021-10-28 06:13:10 +02:00
fn size(
engine_state: &EngineState,
call: &Call,
input: PipelineData,
) -> Result<PipelineData, ShellError> {
2021-10-12 23:55:29 +02:00
let span = call.head;
2021-10-28 06:13:10 +02:00
input.map(
move |v| match v.as_string() {
Ok(s) => counter(&s, span),
2021-10-28 06:13:10 +02:00
Err(_) => Value::Error {
2021-12-03 00:11:25 +01:00
error: ShellError::PipelineMismatch("string".into(), span, span),
2021-10-12 23:55:29 +02:00
},
2021-10-25 23:14:21 +02:00
},
2021-10-28 06:13:10 +02:00
engine_state.ctrlc.clone(),
)
2021-10-12 23:55:29 +02:00
}
fn counter(contents: &str, span: Span) -> Value {
let counts = uwc_count(&ALL_COUNTERS[..], contents);
2021-10-13 06:15:37 +02:00
let mut cols = vec![];
let mut vals = vec![];
cols.push("lines".into());
vals.push(Value::Int {
val: match counts.get(&Counter::Lines) {
Some(c) => *c as i64,
None => 0,
},
span,
});
2021-10-12 23:55:29 +02:00
2021-10-13 06:15:37 +02:00
cols.push("words".into());
vals.push(Value::Int {
val: match counts.get(&Counter::Words) {
Some(c) => *c as i64,
None => 0,
},
span,
});
cols.push("bytes".into());
vals.push(Value::Int {
val: match counts.get(&Counter::Bytes) {
Some(c) => *c as i64,
None => 0,
},
span,
});
2021-10-13 06:15:37 +02:00
cols.push("chars".into());
vals.push(Value::Int {
val: match counts.get(&Counter::CodePoints) {
Some(c) => *c as i64,
None => 0,
},
span,
});
2021-10-13 06:15:37 +02:00
cols.push("graphemes".into());
vals.push(Value::Int {
val: match counts.get(&Counter::GraphemeClusters) {
Some(c) => *c as i64,
None => 0,
},
span,
});
2021-10-13 06:15:37 +02:00
Value::Record { cols, vals, span }
2021-10-12 23:55:29 +02:00
}
/// Take all the counts in `other_counts` and sum them into `accum`.
// pub fn sum_counts(accum: &mut Counted, other_counts: &Counted) {
// for (counter, count) in other_counts {
// let entry = accum.entry(*counter).or_insert(0);
// *entry += count;
// }
// }
/// Sums all the `Counted` instances into a new one.
// pub fn sum_all_counts<'a, I>(counts: I) -> Counted
// where
// I: IntoIterator<Item = &'a Counted>,
// {
// let mut totals = BTreeMap::new();
// for counts in counts {
// sum_counts(&mut totals, counts);
// }
// totals
// }
/// Something that counts things in `&str`s.
pub trait Count {
/// Counts something in the given `&str`.
fn count(&self, s: &str) -> usize;
}
impl Count for Counter {
fn count(&self, s: &str) -> usize {
match *self {
Counter::GraphemeClusters => s.graphemes(true).count(),
Counter::Bytes => s.len(),
Counter::Lines => {
const LF: &str = "\n"; // 0xe0000a
const CR: &str = "\r"; // 0xe0000d
const CRLF: &str = "\r\n"; // 0xe00d0a
const NEL: &str = "\u{0085}"; // 0x00c285
const FF: &str = "\u{000C}"; // 0x00000c
const LS: &str = "\u{2028}"; // 0xe280a8
const PS: &str = "\u{2029}"; // 0xe280a9
// use regex here because it can search for CRLF first and not duplicate the count
let line_ending_types = [CRLF, LF, CR, NEL, FF, LS, PS];
let pattern = &line_ending_types.join("|");
let newline_pattern = regex::Regex::new(pattern).expect("Unable to create regex");
let line_endings = newline_pattern
.find_iter(s)
.map(|f| f.as_str().to_string())
.collect::<Vec<String>>();
let has_line_ending_suffix =
line_ending_types.iter().any(|&suffix| s.ends_with(suffix));
// eprintln!("suffix = {}", has_line_ending_suffix);
if has_line_ending_suffix {
line_endings.len()
} else {
line_endings.len() + 1
}
}
Counter::Words => s.unicode_words().count(),
Counter::CodePoints => s.chars().count(),
}
}
}
/// Different types of counters.
#[derive(Debug, Hash, PartialEq, Eq, PartialOrd, Ord, Copy, Clone)]
pub enum Counter {
/// Counts lines.
Lines,
/// Counts words.
Words,
/// Counts the total number of bytes.
Bytes,
/// Counts grapheme clusters. The input is required to be valid UTF-8.
GraphemeClusters,
/// Counts unicode code points
CodePoints,
}
/// A convenience array of all counter types.
pub const ALL_COUNTERS: [Counter; 5] = [
Counter::GraphemeClusters,
Counter::Bytes,
Counter::Lines,
Counter::Words,
Counter::CodePoints,
];
impl fmt::Display for Counter {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let s = match *self {
Counter::GraphemeClusters => "graphemes",
Counter::Bytes => "bytes",
Counter::Lines => "lines",
Counter::Words => "words",
Counter::CodePoints => "codepoints",
};
write!(f, "{}", s)
}
}
/// Counts the given `Counter`s in the given `&str`.
pub fn uwc_count<'a, I>(counters: I, s: &str) -> Counted
where
I: IntoIterator<Item = &'a Counter>,
{
let mut counts: Counted = counters.into_iter().map(|c| (*c, c.count(s))).collect();
if let Some(lines) = counts.get_mut(&Counter::Lines) {
if s.is_empty() {
// If s is empty, indeed, the count is 0
*lines = 0;
} else if *lines == 0 && !s.is_empty() {
// If s is not empty and the count is 0, it means there
// is a line without a line ending, so let's make it 1
*lines = 1;
} else {
// no change, whatever the count is, is right
}
}
counts
}
2021-10-13 06:15:37 +02:00
#[cfg(test)]
mod test {
use super::*;
2021-10-12 23:55:29 +02:00
2021-10-13 06:15:37 +02:00
#[test]
fn test_examples() {
use crate::test_examples;
2021-10-12 23:55:29 +02:00
2021-10-13 06:15:37 +02:00
test_examples(Size {})
}
}
#[test]
fn test_one_newline() {
let s = "\n".to_string();
let counts = uwc_count(&ALL_COUNTERS[..], &s);
let mut correct_counts = BTreeMap::new();
correct_counts.insert(Counter::Lines, 1);
correct_counts.insert(Counter::Words, 0);
correct_counts.insert(Counter::GraphemeClusters, 1);
correct_counts.insert(Counter::Bytes, 1);
correct_counts.insert(Counter::CodePoints, 1);
assert_eq!(correct_counts, counts);
}
#[test]
fn test_count_counts_lines() {
// const LF: &str = "\n"; // 0xe0000a
// const CR: &str = "\r"; // 0xe0000d
// const CRLF: &str = "\r\n"; // 0xe00d0a
const NEL: &str = "\u{0085}"; // 0x00c285
const FF: &str = "\u{000C}"; // 0x00000c
const LS: &str = "\u{2028}"; // 0xe280a8
const PS: &str = "\u{2029}"; // 0xe280a9
// * \r\n is a single graheme cluster
// * trailing newlines are counted
// * NEL is 2 bytes
// * FF is 1 byte
// * LS is 3 bytes
// * PS is 3 bytes
let mut s = String::from("foo\r\nbar\n\nbaz");
s += NEL;
s += "quux";
s += FF;
s += LS;
s += "xi";
s += PS;
s += "\n";
let counts = uwc_count(&ALL_COUNTERS[..], &s);
let mut correct_counts = BTreeMap::new();
correct_counts.insert(Counter::Lines, 8);
correct_counts.insert(Counter::Words, 5);
correct_counts.insert(Counter::GraphemeClusters, 23);
correct_counts.insert(Counter::Bytes, 29);
// one more than grapheme clusters because of \r\n
correct_counts.insert(Counter::CodePoints, 24);
assert_eq!(correct_counts, counts);
}
#[test]
fn test_count_counts_words() {
let i_can_eat_glass = "Μπορῶ νὰ φάω σπασμένα γυαλιὰ χωρὶς νὰ πάθω τίποτα.";
let s = String::from(i_can_eat_glass);
let counts = uwc_count(&ALL_COUNTERS[..], &s);
let mut correct_counts = BTreeMap::new();
correct_counts.insert(Counter::GraphemeClusters, 50);
correct_counts.insert(Counter::Lines, 1);
correct_counts.insert(Counter::Bytes, i_can_eat_glass.len());
correct_counts.insert(Counter::Words, 9);
correct_counts.insert(Counter::CodePoints, 50);
assert_eq!(correct_counts, counts);
}
#[test]
fn test_count_counts_codepoints() {
// these are NOT the same! One is e + ́́ , and one is é, a single codepoint
let one = "é";
let two = "";
let counters = [Counter::CodePoints];
let counts = uwc_count(&counters[..], one);
let mut correct_counts = BTreeMap::new();
correct_counts.insert(Counter::CodePoints, 1);
assert_eq!(correct_counts, counts);
let counts = uwc_count(&counters[..], two);
let mut correct_counts = BTreeMap::new();
correct_counts.insert(Counter::CodePoints, 2);
assert_eq!(correct_counts, counts);
}