-
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tree-editing capabilities to
Tree
and Repository
.
TBD
- Loading branch information
Showing
9 changed files
with
462 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
use crate::bstr::{BStr, BString}; | ||
use crate::prelude::ObjectIdExt; | ||
use crate::{Id, Repository}; | ||
use gix_hash::ObjectId; | ||
use gix_object::tree::EntryKind; | ||
|
||
/// | ||
pub mod init { | ||
/// The error returned by [`Editor::new()](crate::object::tree::Editor::new()). | ||
#[derive(Debug, thiserror::Error)] | ||
#[allow(missing_docs)] | ||
pub enum Error { | ||
#[error(transparent)] | ||
DecodeTree(#[from] gix_object::decode::Error), | ||
} | ||
} | ||
|
||
/// | ||
pub mod write { | ||
/// The error returned by [`Editor::write()](crate::object::tree::Editor::write()) and [`Cursor::write()](super::Cursor::write). | ||
#[derive(Debug, thiserror::Error)] | ||
#[allow(missing_docs)] | ||
pub enum Error { | ||
#[error(transparent)] | ||
WriteTree(#[from] crate::object::write::Error), | ||
} | ||
} | ||
|
||
/// A cursor at a specific portion of a tree to [edit](super::Editor). | ||
pub struct Cursor<'a, 'repo> { | ||
inner: gix_object::tree::editor::Cursor<'a, 'repo>, | ||
repo: &'repo Repository, | ||
} | ||
|
||
/// Lifecycle | ||
impl<'repo> super::Editor<'repo> { | ||
/// Initialize a new editor from the given `tree`. | ||
pub fn new(tree: &crate::Tree<'repo>) -> Result<Self, init::Error> { | ||
let tree_ref = tree.decode()?; | ||
let repo = tree.repo; | ||
Ok(super::Editor { | ||
inner: gix_object::tree::Editor::new(tree_ref.into(), &repo.objects, repo.object_hash()), | ||
repo, | ||
}) | ||
} | ||
} | ||
|
||
/// Tree editing | ||
#[cfg(feature = "tree-editor")] | ||
impl<'repo> crate::Tree<'repo> { | ||
/// Start editing a new tree based on this one. | ||
#[doc(alias = "treebuilder", alias = "git2")] | ||
pub fn edit(&self) -> Result<super::Editor<'repo>, init::Error> { | ||
super::Editor::new(self) | ||
} | ||
} | ||
|
||
/// Obtain an iterator over `BStr`-components. | ||
/// | ||
/// Note that the implementation is simple, and it's mainly meant for statically known strings | ||
/// or locations obtained during a merge. | ||
pub trait ToComponents { | ||
/// Return an iterator over the components of a path, without the separator. | ||
fn to_components(&self) -> impl Iterator<Item = &BStr>; | ||
} | ||
|
||
impl ToComponents for &str { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split('/').map(Into::into) | ||
} | ||
} | ||
|
||
impl ToComponents for String { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split('/').map(Into::into) | ||
} | ||
} | ||
|
||
impl ToComponents for &String { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split('/').map(Into::into) | ||
} | ||
} | ||
|
||
impl ToComponents for BString { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split(|b| *b == b'/').map(Into::into) | ||
} | ||
} | ||
|
||
impl ToComponents for &BString { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split(|b| *b == b'/').map(Into::into) | ||
} | ||
} | ||
|
||
impl ToComponents for &BStr { | ||
fn to_components(&self) -> impl Iterator<Item = &BStr> { | ||
self.split(|b| *b == b'/').map(Into::into) | ||
} | ||
} | ||
|
||
/// Cursor Handling | ||
impl<'repo> super::Editor<'repo> { | ||
/// Turn ourselves as a cursor, which points to the same tree as the editor. | ||
/// | ||
/// This is useful if a method takes a [`Cursor`], not an [`Editor`](super::Editor). | ||
pub fn to_cursor(&mut self) -> Cursor<'_, 'repo> { | ||
Cursor { | ||
inner: self.inner.to_cursor(), | ||
repo: self.repo, | ||
} | ||
} | ||
|
||
/// Create a cursor at the given `rela_path`, which must be a tree or is turned into a tree as its own edit. | ||
/// | ||
/// The returned cursor will then allow applying edits to the tree at `rela_path` as root. | ||
/// If `rela_path` is a single empty string, it is equivalent to using the current instance itself. | ||
pub fn cursor_at( | ||
&mut self, | ||
rela_path: impl ToComponents, | ||
) -> Result<Cursor<'_, 'repo>, gix_object::find::existing_object::Error> { | ||
Ok(Cursor { | ||
inner: self.inner.cursor_at(rela_path.to_components())?, | ||
repo: self.repo, | ||
}) | ||
} | ||
} | ||
/// Operations | ||
impl<'repo> Cursor<'_, 'repo> { | ||
/// Like [`Editor::upsert()`](super::Editor::upsert()), but with the constraint of only editing in this cursor's tree. | ||
pub fn upsert( | ||
&mut self, | ||
rela_path: impl ToComponents, | ||
kind: EntryKind, | ||
id: impl Into<ObjectId>, | ||
) -> Result<&mut Self, gix_object::find::existing_object::Error> { | ||
self.inner.upsert(rela_path.to_components(), kind, id.into())?; | ||
Ok(self) | ||
} | ||
|
||
/// Like [`Editor::remove()`](super::Editor::remove), but with the constraint of only editing in this cursor's tree. | ||
pub fn remove( | ||
&mut self, | ||
rela_path: impl ToComponents, | ||
) -> Result<&mut Self, gix_object::find::existing_object::Error> { | ||
self.inner.remove(rela_path.to_components())?; | ||
Ok(self) | ||
} | ||
|
||
/// Like [`Editor::write()`](super::Editor::write()), but will write only the subtree of the cursor. | ||
pub fn write(&mut self) -> Result<Id<'repo>, write::Error> { | ||
write_cursor(self) | ||
} | ||
} | ||
|
||
/// Operations | ||
impl<'repo> super::Editor<'repo> { | ||
/// Set the root tree of the modification to `root`, assuring it has a well-known state. | ||
/// | ||
/// Note that this erases all previous edits. | ||
/// | ||
/// This is useful if the same editor is re-used for various trees. | ||
pub fn set_root(&mut self, root: &crate::Tree<'repo>) -> Result<&mut Self, init::Error> { | ||
*self = super::Editor::new(root)?; | ||
Ok(self) | ||
} | ||
/// Insert a new entry of `kind` with `id` at `rela_path`, an iterator over each path component in the tree, | ||
/// like `a/b/c`. Names are matched case-sensitively. | ||
/// | ||
/// Existing leaf-entries will be overwritten unconditionally, and it is assumed that `id` is available in the object database | ||
/// or will be made available at a later point to assure the integrity of the produced tree. | ||
/// | ||
/// Intermediate trees will be created if they don't exist in the object database, otherwise they will be loaded and entries | ||
/// will be inserted into them instead. | ||
/// | ||
/// Note that `id` can be [null](ObjectId::null()) to create a placeholder. These will not be written, and paths leading | ||
/// through them will not be considered a problem. | ||
/// | ||
/// `id` can also be an empty tree, along with [the respective `kind`](EntryKind::Tree), even though that's normally not allowed | ||
/// in Git trees. | ||
/// | ||
/// Validation of path-components will not be performed here, but when [writing the tree](Self::write()). | ||
pub fn upsert( | ||
&mut self, | ||
rela_path: impl ToComponents, | ||
kind: EntryKind, | ||
id: impl Into<ObjectId>, | ||
) -> Result<&mut Self, gix_object::find::existing_object::Error> { | ||
self.inner.upsert(rela_path.to_components(), kind, id.into())?; | ||
Ok(self) | ||
} | ||
|
||
/// Remove the entry at `rela_path`, loading all trees on the path accordingly. | ||
/// It's no error if the entry doesn't exist, or if `rela_path` doesn't lead to an existing entry at all. | ||
pub fn remove( | ||
&mut self, | ||
rela_path: impl ToComponents, | ||
) -> Result<&mut Self, gix_object::find::existing_object::Error> { | ||
self.inner.remove(rela_path.to_components())?; | ||
Ok(self) | ||
} | ||
|
||
/// Write the entire in-memory state of all changed trees (and only changed trees) to the object database. | ||
/// Note that the returned object id *can* be the empty tree if everything was removed or if nothing | ||
/// was added to the tree. | ||
/// | ||
/// The last call to `out` will be the changed root tree, whose object-id will also be returned. | ||
/// `out` is free to do any kind of additional validation, like to assure that all entries in the tree exist. | ||
/// We don't assure that as there is no validation that inserted entries are valid object ids. | ||
/// | ||
/// Future calls to [`upsert`](Self::upsert) or similar will keep working on the last seen state of the | ||
/// just-written root-tree. | ||
/// If this is not desired, use [set_root()](Self::set_root()). | ||
/// | ||
/// Before writing a tree, all of its entries (not only added ones), will be validated to assure they are | ||
/// correct. | ||
pub fn write(&mut self) -> Result<Id<'repo>, write::Error> { | ||
write_cursor(&mut self.to_cursor()) | ||
} | ||
} | ||
|
||
fn write_cursor<'repo>(cursor: &mut Cursor<'_, 'repo>) -> Result<Id<'repo>, write::Error> { | ||
cursor | ||
.inner | ||
.write(|tree| -> Result<ObjectId, write::Error> { Ok(cursor.repo.write_object(tree)?.detach()) }) | ||
.map(|id| id.attach(cursor.repo)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.