-
-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1618 from GitoxideLabs/merge
octopus-merge (part 5: tree-merge-ORT three-way)
- Loading branch information
Showing
109 changed files
with
5,597 additions
and
860 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
github: byron | ||
open_collective: gitoxide |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
mod file; | ||
pub use file::file; | ||
|
||
pub mod tree; | ||
pub use tree::function::tree; |
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,112 @@ | ||
use crate::OutputFormat; | ||
|
||
pub struct Options { | ||
pub format: OutputFormat, | ||
pub resolve_content_merge: Option<gix::merge::blob::builtin_driver::text::Conflict>, | ||
pub in_memory: bool, | ||
} | ||
|
||
pub(super) mod function { | ||
|
||
use crate::OutputFormat; | ||
use anyhow::{anyhow, bail, Context}; | ||
use gix::bstr::BString; | ||
use gix::bstr::ByteSlice; | ||
use gix::merge::blob::builtin_driver::binary; | ||
use gix::merge::blob::builtin_driver::text::Conflict; | ||
use gix::merge::tree::UnresolvedConflict; | ||
use gix::prelude::Write; | ||
|
||
use super::Options; | ||
|
||
#[allow(clippy::too_many_arguments)] | ||
pub fn tree( | ||
mut repo: gix::Repository, | ||
out: &mut dyn std::io::Write, | ||
err: &mut dyn std::io::Write, | ||
base: BString, | ||
ours: BString, | ||
theirs: BString, | ||
Options { | ||
format, | ||
resolve_content_merge, | ||
in_memory, | ||
}: Options, | ||
) -> anyhow::Result<()> { | ||
if format != OutputFormat::Human { | ||
bail!("JSON output isn't implemented yet"); | ||
} | ||
repo.object_cache_size_if_unset(repo.compute_object_cache_size_for_tree_diffs(&**repo.index_or_empty()?)); | ||
if in_memory { | ||
repo.objects.enable_object_memory(); | ||
} | ||
let (base_ref, base_id) = refname_and_tree(&repo, base)?; | ||
let (ours_ref, ours_id) = refname_and_tree(&repo, ours)?; | ||
let (theirs_ref, theirs_id) = refname_and_tree(&repo, theirs)?; | ||
|
||
let mut options = repo.tree_merge_options()?; | ||
if let Some(resolve) = resolve_content_merge { | ||
options.blob_merge.text.conflict = resolve; | ||
options.blob_merge.resolve_binary_with = match resolve { | ||
Conflict::Keep { .. } => None, | ||
Conflict::ResolveWithOurs => Some(binary::ResolveWith::Ours), | ||
Conflict::ResolveWithTheirs => Some(binary::ResolveWith::Theirs), | ||
Conflict::ResolveWithUnion => None, | ||
}; | ||
} | ||
|
||
let base_id_str = base_id.to_string(); | ||
let ours_id_str = ours_id.to_string(); | ||
let theirs_id_str = theirs_id.to_string(); | ||
let labels = gix::merge::blob::builtin_driver::text::Labels { | ||
ancestor: base_ref | ||
.as_ref() | ||
.map_or(base_id_str.as_str().into(), |n| n.as_bstr()) | ||
.into(), | ||
current: ours_ref | ||
.as_ref() | ||
.map_or(ours_id_str.as_str().into(), |n| n.as_bstr()) | ||
.into(), | ||
other: theirs_ref | ||
.as_ref() | ||
.map_or(theirs_id_str.as_str().into(), |n| n.as_bstr()) | ||
.into(), | ||
}; | ||
let mut res = repo.merge_trees(base_id, ours_id, theirs_id, labels, options)?; | ||
{ | ||
let _span = gix::trace::detail!("Writing merged tree"); | ||
let mut written = 0; | ||
let tree_id = res | ||
.tree | ||
.write(|tree| { | ||
written += 1; | ||
repo.write(tree) | ||
}) | ||
.map_err(|err| anyhow!("{err}"))?; | ||
writeln!(out, "{tree_id} (wrote {written} trees)")?; | ||
} | ||
|
||
if !res.conflicts.is_empty() { | ||
writeln!(err, "{} possibly resolved conflicts", res.conflicts.len())?; | ||
} | ||
if res.has_unresolved_conflicts(UnresolvedConflict::Renames) { | ||
bail!("Tree conflicted") | ||
} | ||
Ok(()) | ||
} | ||
|
||
fn refname_and_tree( | ||
repo: &gix::Repository, | ||
revspec: BString, | ||
) -> anyhow::Result<(Option<BString>, gix::hash::ObjectId)> { | ||
let spec = repo.rev_parse(revspec.as_bstr())?; | ||
let tree_id = spec | ||
.single() | ||
.context("Expected revspec to expand to a single rev only")? | ||
.object()? | ||
.peel_to_tree()? | ||
.id; | ||
let refname = spec.first_reference().map(|r| r.name.shorten().as_bstr().to_owned()); | ||
Ok((refname, tree_id)) | ||
} | ||
} |
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.