GitCommandRunner

Struct GitCommandRunner 

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

Production implementation of git operations

Implementations§

Source§

impl GitCommandRunner

Source

pub fn new(process_runner: Arc<dyn ProcessRunner>) -> Self

Create a new GitCommandRunner

Trait Implementations§

Source§

impl GitReader for GitCommandRunner

Source§

fn is_repository<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<bool>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Check if a directory is a git repository
Source§

fn get_status<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<GitStatus>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Get git status for the repository
Source§

fn get_current_branch<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Get the current branch name
Source§

fn get_commit_message<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, ref_: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Get commit message by reference
Source§

fn list_files<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<Vec<PathBuf>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

List all files tracked by git
Source§

fn get_diff<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, path: &'life1 Path, from: &'life2 str, to: &'life3 str, ) -> Pin<Box<dyn Future<Output = LibResult<GitDiff>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,

Get diff between two references
Source§

fn get_last_commit_message<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Get the last commit message
Source§

fn is_clean<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<bool>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Check if working directory is clean
Source§

impl GitWorktree for GitCommandRunner

Source§

fn create_worktree<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, repo: &'life1 Path, name: &'life2 str, path: &'life3 Path, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,

Create a new worktree
Source§

fn remove_worktree<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, repo: &'life1 Path, name: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Remove a worktree
Source§

fn list_worktrees<'life0, 'life1, 'async_trait>( &'life0 self, repo: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<Vec<WorktreeInfo>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

List all worktrees
Source§

fn prune_worktrees<'life0, 'life1, 'async_trait>( &'life0 self, repo: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Prune worktrees (remove stale references)
Source§

impl GitWriter for GitCommandRunner

Source§

fn init_repository<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Initialize a new git repository
Source§

fn stage_files<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, files: &'life2 [PathBuf], ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Stage specific files
Source§

fn stage_all<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Stage all changes
Source§

fn commit<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, message: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<CommitId>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Create a commit with message
Source§

fn create_branch<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, name: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Create a new branch
Source§

fn switch_branch<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, name: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Switch to a branch
Source§

fn delete_branch<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, path: &'life1 Path, name: &'life2 str, ) -> Pin<Box<dyn Future<Output = LibResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Delete a branch

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

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,