pub struct NewlineCache { /* private fields */ }
Expand description

Cache newlines from an input. These can be used to turn UTF-8 byte offsets into human-friendly line numbers (and vice versa) without having to store the full input. The cache stores only newline positions, and not the actual user input; the cache can only be filled incrementally using the NewlineCache::feed method.

It is easy to to intermix bytes and human-friendly line numbers so NewlineCache uses the following terminology:

  • byte and bytes: a UTF-8 byte offset.
  • line_byte and line_bytes: the UTF-8 byte offset of a line start or end.
  • line_num: a human-friendly line number.
  • col_num: a human-friendly column number.

Implementations§

source§

impl NewlineCache

source

pub fn new() -> Self

Create an empty NewlineCache.

source

pub fn feed(&mut self, src: &str)

Feed further input into the cache. This input is considered to be a direct continuation of any previous input fed into the cache. Feeding new data thus appends to the cache. If the previous input contained a partial line (i.e. did not end in a newline), then the new input (unless it starts with a newline) will be considered to be a continuation of that partial line.

source

pub fn byte_to_line_num(&self, byte: usize) -> Option<usize>

Convert a byte offset in the input to a logical line number (i.e. a “human friendly” line number, starting from 1). Returns None if the byte offset exceeds the known input length.

source

pub fn byte_to_line_byte(&self, byte: usize) -> Option<usize>

Convert a byte offset in the input to the byte offset of the beginning of its line. Returns None if the byte offset exceeds the known input length.

source

pub fn byte_to_line_num_and_col_num( &self, src: &str, byte: usize ) -> Option<(usize, usize)>

A convenience method to return the logical line and logical column number of a byte. This requires passing a &str which must be equivalent to the string(s) passed to feed: if not, nondeterminstic results, including panics, are possible.

§Panics

May panic if src is different than the string(s) passed to feed (or might not panic and return non-deterministic results).

source

pub fn span_line_bytes(&self, span: Span) -> (usize, usize)

Return the (start byte, end byte) of the lines containing span. This will always cover at least 1 logical line.

Trait Implementations§

source§

impl<'a> FromIterator<&'a str> for NewlineCache

source§

fn from_iter<I>(iter: I) -> Self
where I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl FromStr for NewlineCache

source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Construct a NewlineCache directly from a &str. This is equivalent to creating a blank NewlineCache and Self::feed()ing the string directly in.

§

type Err = ()

The associated error which can be returned from parsing.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.