Skip to main content

Hasher

Struct Hasher 

Source
pub struct Hasher { /* private fields */ }
Expand description

An incremental content hasher for a module directory.

try_add records relative paths into a BTreeSet, so they are kept in lexicographic order as they are inserted. finalize walks them in that order, opens each file under the configured root, and feeds path bytes plus raw file contents into a single SHA-256 state.

Implementations§

Source§

impl Hasher

Source

pub fn new(root: impl Into<PathBuf>) -> Self

Creates a new Hasher rooted at root.

Source

pub fn paths(&self) -> impl Iterator<Item = &RelativePath>

Returns an iterator over the recorded paths in lexicographic order.

Source

pub fn try_add( &mut self, path: impl Into<String>, ) -> Result<&mut Self, HashError>

Records a path relative to the hasher’s root.

Accepts an absolute path under root (which is converted to a relative form) or any RelativePath-convertible input.

Source

pub fn finalize(self) -> Result<ContentHash, HashError>

Computes the ContentHash of the recorded paths.

Each file’s full path is canonicalized (resolving symbolic links) before reading; if the resolved target falls outside the module root, the module is rejected per the spec’s symlink-containment rule. Without this check, a symbolic link inside the module could pull bytes from elsewhere on the filesystem into the digest.

Trait Implementations§

Source§

impl Debug for Hasher

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.