use crate::byte_chunk::{ByteChunk, Chunk};
#[inline]
pub fn count_breaks(text: &str) -> usize {
count_breaks_impl::<Chunk>(text.as_bytes())
}
#[inline]
pub fn from_byte_idx(text: &str, byte_idx: usize) -> usize {
let i = byte_idx.min(text.len());
count_breaks_impl::<Chunk>(&text.as_bytes()[..i])
}
#[inline]
pub fn to_byte_idx(text: &str, line_idx: usize) -> usize {
to_byte_idx_impl::<Chunk>(text.as_bytes(), line_idx)
}
#[inline(always)]
fn to_byte_idx_impl<T: ByteChunk>(text: &[u8], line_idx: usize) -> usize {
let (start, middle, _) = unsafe { text.align_to::<T>() };
let mut byte_count = 0;
let mut lf_count = 0;
for byte in start.iter() {
if lf_count == line_idx {
break;
}
lf_count += (*byte == 0x0A) as usize;
byte_count += 1;
}
let mut chunks = middle;
let mut max_round_len = (line_idx - lf_count) / T::MAX_ACC;
while max_round_len > 0 && !chunks.is_empty() {
let round_len = T::MAX_ACC.min(max_round_len).min(chunks.len());
max_round_len -= round_len;
let round = &chunks[..round_len];
chunks = &chunks[round_len..];
let mut acc = T::zero();
for chunk in round.iter() {
acc = acc.add(chunk.cmp_eq_byte(0x0A));
}
lf_count += acc.sum_bytes();
byte_count += T::SIZE * round_len;
}
for chunk in chunks.iter() {
let new_lf_count = lf_count + chunk.cmp_eq_byte(0x0A).sum_bytes();
if new_lf_count >= line_idx {
break;
}
lf_count = new_lf_count;
byte_count += T::SIZE;
}
let end = &text[byte_count..];
for byte in end.iter() {
if lf_count == line_idx {
break;
}
lf_count += (*byte == 0x0A) as usize;
byte_count += 1;
}
byte_count
}
#[inline(always)]
fn count_breaks_impl<T: ByteChunk>(text: &[u8]) -> usize {
if text.len() < T::SIZE {
text.iter().map(|byte| (*byte == 0x0A) as usize).sum()
} else {
let (start, middle, end) = unsafe { text.align_to::<T>() };
let mut count = 0;
for byte in start.iter() {
count += (*byte == 0x0A) as usize;
}
for chunks in middle.chunks(T::MAX_ACC) {
let mut acc = T::zero();
for chunk in chunks.iter() {
acc = acc.add(chunk.cmp_eq_byte(0x0A));
}
count += acc.sum_bytes();
}
for byte in end.iter() {
count += (*byte == 0x0A) as usize;
}
count
}
}
#[cfg(test)]
mod tests {
use super::*;
const TEXT_LINES: &str = "Hello there! How're you doing?\nIt's \
a fine day, isn't it?\nAren't you glad \
we're alive?\nこんにちは、みんなさん!";
#[test]
fn count_breaks_01() {
let text = "\nHello\u{000D}\nせ\u{000B}か\u{000C}い\u{0085}. \
There\nis something.\u{2029}";
assert_eq!(45, text.len());
assert_eq!(3, count_breaks(text));
}
#[test]
fn from_byte_idx_01() {
let text = "Here\nare\nsome\nwords";
assert_eq!(0, from_byte_idx(text, 0));
assert_eq!(0, from_byte_idx(text, 4));
assert_eq!(1, from_byte_idx(text, 5));
assert_eq!(1, from_byte_idx(text, 8));
assert_eq!(2, from_byte_idx(text, 9));
assert_eq!(2, from_byte_idx(text, 13));
assert_eq!(3, from_byte_idx(text, 14));
assert_eq!(3, from_byte_idx(text, 19));
}
#[test]
fn from_byte_idx_02() {
let text = "\nHere\nare\nsome\nwords\n";
assert_eq!(0, from_byte_idx(text, 0));
assert_eq!(1, from_byte_idx(text, 1));
assert_eq!(1, from_byte_idx(text, 5));
assert_eq!(2, from_byte_idx(text, 6));
assert_eq!(2, from_byte_idx(text, 9));
assert_eq!(3, from_byte_idx(text, 10));
assert_eq!(3, from_byte_idx(text, 14));
assert_eq!(4, from_byte_idx(text, 15));
assert_eq!(4, from_byte_idx(text, 20));
assert_eq!(5, from_byte_idx(text, 21));
}
#[test]
fn from_byte_idx_03() {
let text = "Here\r\nare\r\nsome\r\nwords";
assert_eq!(0, from_byte_idx(text, 0));
assert_eq!(0, from_byte_idx(text, 4));
assert_eq!(0, from_byte_idx(text, 5));
assert_eq!(1, from_byte_idx(text, 6));
assert_eq!(1, from_byte_idx(text, 9));
assert_eq!(1, from_byte_idx(text, 10));
assert_eq!(2, from_byte_idx(text, 11));
assert_eq!(2, from_byte_idx(text, 15));
assert_eq!(2, from_byte_idx(text, 16));
assert_eq!(3, from_byte_idx(text, 17));
}
#[test]
fn from_byte_idx_04() {
for i in 0..32 {
assert_eq!(0, from_byte_idx(TEXT_LINES, i));
}
for i in 32..59 {
assert_eq!(1, from_byte_idx(TEXT_LINES, i));
}
for i in 59..88 {
assert_eq!(2, from_byte_idx(TEXT_LINES, i));
}
for i in 88..125 {
assert_eq!(3, from_byte_idx(TEXT_LINES, i));
}
for i in 125..130 {
assert_eq!(3, from_byte_idx(TEXT_LINES, i));
}
}
#[test]
fn to_byte_idx_01() {
let text = "Here\r\nare\r\nsome\r\nwords";
assert_eq!(0, to_byte_idx(text, 0));
assert_eq!(6, to_byte_idx(text, 1));
assert_eq!(11, to_byte_idx(text, 2));
assert_eq!(17, to_byte_idx(text, 3));
}
#[test]
fn to_byte_idx_02() {
let text = "\nHere\nare\nsome\nwords\n";
assert_eq!(0, to_byte_idx(text, 0));
assert_eq!(1, to_byte_idx(text, 1));
assert_eq!(6, to_byte_idx(text, 2));
assert_eq!(10, to_byte_idx(text, 3));
assert_eq!(15, to_byte_idx(text, 4));
assert_eq!(21, to_byte_idx(text, 5));
}
#[test]
fn to_byte_idx_03() {
assert_eq!(0, to_byte_idx(TEXT_LINES, 0));
assert_eq!(32, to_byte_idx(TEXT_LINES, 1));
assert_eq!(59, to_byte_idx(TEXT_LINES, 2));
assert_eq!(88, to_byte_idx(TEXT_LINES, 3));
assert_eq!(124, to_byte_idx(TEXT_LINES, 4));
assert_eq!(124, to_byte_idx(TEXT_LINES, 5));
assert_eq!(124, to_byte_idx(TEXT_LINES, 6));
}
#[test]
fn line_byte_round_trip() {
let text = "\nHere\nare\nsome\nwords\n";
assert_eq!(6, to_byte_idx(text, from_byte_idx(text, 6)));
assert_eq!(2, from_byte_idx(text, to_byte_idx(text, 2)));
assert_eq!(0, to_byte_idx(text, from_byte_idx(text, 0)));
assert_eq!(0, from_byte_idx(text, to_byte_idx(text, 0)));
assert_eq!(21, to_byte_idx(text, from_byte_idx(text, 21)));
assert_eq!(5, from_byte_idx(text, to_byte_idx(text, 5)));
}
}