Struct gix::filter::Pipeline

source ·
pub struct Pipeline<'repo> { /* private fields */ }
Available on crate feature attributes only.
Expand description

A git pipeline for transforming data to-git and to-worktree, based on git configuration and attributes.

Implementations§

source§

impl<'repo> Pipeline<'repo>

Lifecycle

source

pub fn options(repo: &'repo Repository) -> Result<Options, Error>

Extract options from repo that are needed to properly drive a standard git filter pipeline.

source

pub fn new(repo: &'repo Repository, cache: Stack) -> Result<Self, Error>

Create a new instance by extracting all necessary information and configuration from a repo along with cache for accessing attributes. The index is used for some filters which may access it under very specific circumstances.

source

pub fn into_parts(self) -> (Pipeline, Stack)

Detach the repository and obtain the individual functional parts.

source§

impl<'repo> Pipeline<'repo>

Conversions

source

pub fn convert_to_git<R>( &mut self, src: R, rela_path: &Path, index: &State ) -> Result<ToGitOutcome<'_, R>, Error>where R: Read,

Convert a src stream (to be found at rela_path, a repo-relative path) to a representation suitable for storage in git by using all attributes at rela_path and configuration of the repository to know exactly which filters apply. index is used in particularly rare cases where the CRLF filter in auto-mode tries to determine whether or not to apply itself, and it should match the state used when instantiating this instance. Note that the return-type implements std::io::Read.

source

pub fn convert_to_worktree<'input>( &mut self, src: &'input [u8], rela_path: &BStr, can_delay: Delay ) -> Result<ToWorktreeOutcome<'input, '_>, Error>

Convert a src buffer located at rela_path (in the index) from what’s in git to the worktree representation. This method will obtain all attributes and configuration necessary to know exactly which filters to apply. Note that the return-type implements std::io::Read.

Use can_delay to tell driver processes that they may delay the return of data. Doing this will require the caller to specifically handle delayed files by keeping state and using Self::into_parts() to get access to the driver state to follow the delayed-files protocol. For simplicity, most will want to disallow delayed processing.

source

pub fn driver_context_mut(&mut self) -> &mut Context

Retrieve the static context that is made available to the process filters.

The context set here is relevant for the convert_to_git() and convert_to_worktree() methods.

Trait Implementations§

source§

impl<'repo> Clone for Pipeline<'repo>

source§

fn clone(&self) -> Pipeline<'repo>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'repo> !RefUnwindSafe for Pipeline<'repo>

§

impl<'repo> !Send for Pipeline<'repo>

§

impl<'repo> !Sync for Pipeline<'repo>

§

impl<'repo> Unpin for Pipeline<'repo>

§

impl<'repo> !UnwindSafe for Pipeline<'repo>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.