From 63cd5d0a8d3f77c0267f12a6aef52533cc2f7d09 Mon Sep 17 00:00:00 2001 From: Kaiden Fey Date: Sun, 25 Oct 2020 05:36:08 +0100 Subject: Adding a whole lot of shit (octopus and supergit) --- supergit/src/raw/mod.rs | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 supergit/src/raw/mod.rs (limited to 'supergit/src/raw/mod.rs') diff --git a/supergit/src/raw/mod.rs b/supergit/src/raw/mod.rs new file mode 100644 index 0000000..b2f67a4 --- /dev/null +++ b/supergit/src/raw/mod.rs @@ -0,0 +1,39 @@ +//! Raw representation wrappers for libgit2 + +use git2::{self, Repository}; + +pub(crate) type RawResult = Result; + +/// An error abstraction for raw git operations +#[derive(Debug)] +pub(crate) enum RawError { + AllBad, +} + +impl From for RawError { + fn from(_: git2::Error) -> Self { + Self::AllBad + } +} + +/// Wrap a libgit2 repository to provide an API fascade +pub(crate) struct RawRepository { + inner: Repository, +} + +impl RawRepository { + pub(crate) fn open(path: &str) -> RawResult { + Ok(Self { + inner: Repository::open(path)?, + }) + } + + /// Sync the backing storage with the backing git repo + /// + /// This function can be invoked manually, but should be invoked + /// basically every time your program expects changes to have + /// happened. Polling this function is not recommended. + pub(crate) fn update(&self) -> RawResult<()> { + Ok(()) + } +} -- cgit v1.2.3