mirror of
https://github.com/martinvonz/jj.git
synced 2025-05-18 05:34:26 +00:00
Alternatively, we can wrap BTreeMap<String, Option<RefTarget>> to flatten Option<&Option<..>> internally, but doing that would be tedious. It would also be unclear if map.remove(name) should construct an absent RefTarget if the ref doesn't exist.
1037 lines
41 KiB
Rust
1037 lines
41 KiB
Rust
// Copyright 2020 The Jujutsu Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#![allow(missing_docs)]
|
|
|
|
use std::collections::{BTreeMap, HashMap, HashSet};
|
|
use std::default::Default;
|
|
use std::io::Read;
|
|
use std::path::PathBuf;
|
|
|
|
use git2::Oid;
|
|
use itertools::Itertools;
|
|
use tempfile::NamedTempFile;
|
|
use thiserror::Error;
|
|
|
|
use crate::backend::{CommitId, ObjectId};
|
|
use crate::git_backend::NO_GC_REF_NAMESPACE;
|
|
use crate::op_store::{BranchTarget, RefTarget, RefTargetExt as _, RefTargetOptionExt};
|
|
use crate::repo::{MutableRepo, Repo};
|
|
use crate::revset;
|
|
use crate::settings::GitSettings;
|
|
use crate::view::{RefName, View};
|
|
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum GitImportError {
|
|
#[error("Unexpected git error when importing refs: {0}")]
|
|
InternalGitError(#[from] git2::Error),
|
|
}
|
|
|
|
fn parse_git_ref(ref_name: &str) -> Option<RefName> {
|
|
if let Some(branch_name) = ref_name.strip_prefix("refs/heads/") {
|
|
// Git CLI says 'HEAD' is not a valid branch name
|
|
(branch_name != "HEAD").then(|| RefName::LocalBranch(branch_name.to_string()))
|
|
} else if let Some(remote_and_branch) = ref_name.strip_prefix("refs/remotes/") {
|
|
remote_and_branch
|
|
.split_once('/')
|
|
// "refs/remotes/origin/HEAD" isn't a real remote-tracking branch
|
|
.filter(|&(_, branch)| branch != "HEAD")
|
|
.map(|(remote, branch)| RefName::RemoteBranch {
|
|
remote: remote.to_string(),
|
|
branch: branch.to_string(),
|
|
})
|
|
} else {
|
|
ref_name
|
|
.strip_prefix("refs/tags/")
|
|
.map(|tag_name| RefName::Tag(tag_name.to_string()))
|
|
}
|
|
}
|
|
|
|
fn to_git_ref_name(parsed_ref: &RefName) -> Option<String> {
|
|
match parsed_ref {
|
|
RefName::LocalBranch(branch) => (branch != "HEAD").then(|| format!("refs/heads/{branch}")),
|
|
RefName::RemoteBranch { branch, remote } => {
|
|
(branch != "HEAD").then(|| format!("refs/remotes/{remote}/{branch}"))
|
|
}
|
|
RefName::Tag(tag) => Some(format!("refs/tags/{tag}")),
|
|
RefName::GitRef(name) => Some(name.to_owned()),
|
|
}
|
|
}
|
|
|
|
fn to_remote_branch<'a>(parsed_ref: &'a RefName, remote_name: &str) -> Option<&'a str> {
|
|
match parsed_ref {
|
|
RefName::RemoteBranch { branch, remote } => (remote == remote_name).then_some(branch),
|
|
RefName::LocalBranch(..) | RefName::Tag(..) | RefName::GitRef(..) => None,
|
|
}
|
|
}
|
|
|
|
/// Checks if `git_ref` points to a Git commit object, and returns its id.
|
|
///
|
|
/// If the ref points to the previously `known_target` (i.e. unchanged), this
|
|
/// should be faster than `git_ref.peel_to_commit()`.
|
|
fn resolve_git_ref_to_commit_id(
|
|
git_ref: &git2::Reference<'_>,
|
|
known_target: &Option<RefTarget>,
|
|
) -> Option<CommitId> {
|
|
// Try fast path if we have a candidate id which is known to be a commit object.
|
|
if let Some(id) = known_target.as_normal() {
|
|
if matches!(git_ref.target(), Some(oid) if oid.as_bytes() == id.as_bytes()) {
|
|
return Some(id.clone());
|
|
}
|
|
if matches!(git_ref.target_peel(), Some(oid) if oid.as_bytes() == id.as_bytes()) {
|
|
// Perhaps an annotated tag stored in packed-refs file, and pointing to the
|
|
// already known target commit.
|
|
return Some(id.clone());
|
|
}
|
|
// A tag (according to ref name.) Try to peel one more level. This is slightly
|
|
// faster than recurse into peel_to_commit(). If we recorded a tag oid, we
|
|
// could skip this at all.
|
|
if let Some(Ok(tag)) = git_ref.is_tag().then(|| git_ref.peel_to_tag()) {
|
|
if tag.target_id().as_bytes() == id.as_bytes() {
|
|
// An annotated tag pointing to the already known target commit.
|
|
return Some(id.clone());
|
|
} else {
|
|
// Unknown id. Recurse from the current state as git_object_peel() of
|
|
// libgit2 would do. A tag may point to non-commit object.
|
|
let git_commit = tag.into_object().peel_to_commit().ok()?;
|
|
return Some(CommitId::from_bytes(git_commit.id().as_bytes()));
|
|
}
|
|
}
|
|
}
|
|
|
|
let git_commit = git_ref.peel_to_commit().ok()?;
|
|
Some(CommitId::from_bytes(git_commit.id().as_bytes()))
|
|
}
|
|
|
|
/// Builds a map of branches which also includes pseudo `@git` remote.
|
|
///
|
|
/// If there's an existing remote named `git`, a list of conflicting branch
|
|
/// names will be returned.
|
|
pub fn build_unified_branches_map(view: &View) -> (BTreeMap<String, BranchTarget>, Vec<String>) {
|
|
let mut all_branches = view.branches().clone();
|
|
let mut bad_branch_names = Vec::new();
|
|
for (branch_name, git_tracking_target) in local_branch_git_tracking_refs(view) {
|
|
let branch_target = all_branches.entry(branch_name.to_owned()).or_default();
|
|
if branch_target.remote_targets.contains_key("git") {
|
|
// TODO(#1690): There should be a mechanism to prevent importing a
|
|
// remote named "git" in `jj git import`.
|
|
bad_branch_names.push(branch_name.to_owned());
|
|
} else {
|
|
// TODO: `BTreeMap::try_insert` could be used here once that's stabilized.
|
|
branch_target
|
|
.remote_targets
|
|
.insert("git".to_owned(), git_tracking_target.clone());
|
|
}
|
|
}
|
|
(all_branches, bad_branch_names)
|
|
}
|
|
|
|
fn local_branch_git_tracking_refs(view: &View) -> impl Iterator<Item = (&str, &Option<RefTarget>)> {
|
|
view.git_refs().iter().filter_map(|(ref_name, target)| {
|
|
ref_name
|
|
.strip_prefix("refs/heads/")
|
|
.map(|branch_name| (branch_name, target))
|
|
})
|
|
}
|
|
|
|
pub fn get_local_git_tracking_branch<'a>(view: &'a View, branch: &str) -> &'a Option<RefTarget> {
|
|
view.git_refs()
|
|
.get(&format!("refs/heads/{branch}"))
|
|
.flatten()
|
|
}
|
|
|
|
fn prevent_gc(git_repo: &git2::Repository, id: &CommitId) -> Result<(), git2::Error> {
|
|
// If multiple processes do git::import_refs() in parallel, this can fail to
|
|
// acquire a lock file even with force=true.
|
|
git_repo.reference(
|
|
&format!("{}{}", NO_GC_REF_NAMESPACE, id.hex()),
|
|
Oid::from_bytes(id.as_bytes()).unwrap(),
|
|
true,
|
|
"used by jj",
|
|
)?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Reflect changes made in the underlying Git repo in the Jujutsu repo.
|
|
///
|
|
/// This function detects conflicts (if both Git and JJ modified a branch) and
|
|
/// records them in JJ's view.
|
|
pub fn import_refs(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
git_settings: &GitSettings,
|
|
) -> Result<(), GitImportError> {
|
|
import_some_refs(mut_repo, git_repo, git_settings, |_| true)
|
|
}
|
|
|
|
/// Reflect changes made in the underlying Git repo in the Jujutsu repo.
|
|
///
|
|
/// Only branches whose git full reference name pass the filter will be
|
|
/// considered for addition, update, or deletion.
|
|
pub fn import_some_refs(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
git_settings: &GitSettings,
|
|
git_ref_filter: impl Fn(&RefName) -> bool,
|
|
) -> Result<(), GitImportError> {
|
|
let store = mut_repo.store().clone();
|
|
let mut jj_view_git_refs = mut_repo.view().git_refs().clone();
|
|
let mut pinned_git_heads = HashMap::new();
|
|
|
|
// TODO: Should this be a separate function? We may not always want to import
|
|
// the Git HEAD (and add it to our set of heads).
|
|
if let Ok(head_git_commit) = git_repo
|
|
.head()
|
|
.and_then(|head_ref| head_ref.peel_to_commit())
|
|
{
|
|
// Add the current HEAD to `pinned_git_heads` to pin the branch. It's not added
|
|
// to `hidable_git_heads` because HEAD move doesn't automatically mean the old
|
|
// HEAD branch has been rewritten.
|
|
let head_ref_name = RefName::GitRef("HEAD".to_owned());
|
|
let head_commit_id = CommitId::from_bytes(head_git_commit.id().as_bytes());
|
|
pinned_git_heads.insert(head_ref_name, vec![head_commit_id.clone()]);
|
|
if !matches!(mut_repo.git_head().as_normal(), Some(id) if id == &head_commit_id) {
|
|
let head_commit = store.get_commit(&head_commit_id).unwrap();
|
|
prevent_gc(git_repo, &head_commit_id)?;
|
|
mut_repo.add_head(&head_commit);
|
|
mut_repo.set_git_head_target(RefTarget::normal(head_commit_id));
|
|
}
|
|
} else {
|
|
mut_repo.set_git_head_target(RefTarget::absent());
|
|
}
|
|
|
|
let mut changed_git_refs = BTreeMap::new();
|
|
let git_repo_refs = git_repo.references()?;
|
|
for git_repo_ref in git_repo_refs {
|
|
let git_repo_ref = git_repo_ref?;
|
|
let Some(full_name) = git_repo_ref.name() else {
|
|
// Skip non-utf8 refs.
|
|
continue;
|
|
};
|
|
let Some(ref_name) = parse_git_ref(full_name) else {
|
|
// Skip other refs (such as notes) and symbolic refs.
|
|
continue;
|
|
};
|
|
let Some(id) =
|
|
resolve_git_ref_to_commit_id(&git_repo_ref, jj_view_git_refs.get(full_name).flatten())
|
|
else {
|
|
// Skip invalid refs.
|
|
continue;
|
|
};
|
|
pinned_git_heads.insert(ref_name.clone(), vec![id.clone()]);
|
|
if !git_ref_filter(&ref_name) {
|
|
continue;
|
|
}
|
|
// TODO: Make it configurable which remotes are publishing and update public
|
|
// heads here.
|
|
let old_target = jj_view_git_refs.remove(full_name).flatten();
|
|
let new_target = RefTarget::normal(id.clone());
|
|
if new_target != old_target {
|
|
prevent_gc(git_repo, &id)?;
|
|
mut_repo.set_git_ref_target(full_name, RefTarget::normal(id.clone()));
|
|
let commit = store.get_commit(&id).unwrap();
|
|
mut_repo.add_head(&commit);
|
|
changed_git_refs.insert(ref_name, (old_target, new_target));
|
|
}
|
|
}
|
|
for (full_name, target) in jj_view_git_refs {
|
|
// TODO: or clean up invalid ref in case it was stored due to historical bug?
|
|
let ref_name = parse_git_ref(&full_name).expect("stored git ref should be parsable");
|
|
if git_ref_filter(&ref_name) {
|
|
mut_repo.set_git_ref_target(&full_name, RefTarget::absent());
|
|
changed_git_refs.insert(ref_name, (target, RefTarget::absent()));
|
|
} else {
|
|
pinned_git_heads.insert(ref_name, target.added_ids().cloned().collect());
|
|
}
|
|
}
|
|
for (ref_name, (old_git_target, new_git_target)) in &changed_git_refs {
|
|
// Apply the change that happened in git since last time we imported refs
|
|
mut_repo.merge_single_ref(ref_name, old_git_target.as_ref(), new_git_target.as_ref());
|
|
// If a git remote-tracking branch changed, apply the change to the local branch
|
|
// as well
|
|
if !git_settings.auto_local_branch {
|
|
continue;
|
|
}
|
|
if let RefName::RemoteBranch { branch, remote: _ } = ref_name {
|
|
let local_ref_name = RefName::LocalBranch(branch.clone());
|
|
mut_repo.merge_single_ref(
|
|
&local_ref_name,
|
|
old_git_target.as_ref(),
|
|
new_git_target.as_ref(),
|
|
);
|
|
let target = mut_repo.get_local_branch(branch);
|
|
if target.is_absent() {
|
|
pinned_git_heads.remove(&local_ref_name);
|
|
} else {
|
|
// Note that we are mostly *replacing*, not inserting
|
|
pinned_git_heads.insert(local_ref_name, target.added_ids().cloned().collect());
|
|
}
|
|
}
|
|
}
|
|
|
|
// Find commits that are no longer referenced in the git repo and abandon them
|
|
// in jj as well.
|
|
let hidable_git_heads = changed_git_refs
|
|
.values()
|
|
.flat_map(|(old_git_target, _)| old_git_target.added_ids())
|
|
.cloned()
|
|
.collect_vec();
|
|
if hidable_git_heads.is_empty() {
|
|
return Ok(());
|
|
}
|
|
// We must remove non-existing commits from pinned_git_heads, as they could have
|
|
// come from branches which were never fetched.
|
|
let mut pinned_git_heads_set = HashSet::new();
|
|
for heads_for_ref in pinned_git_heads.into_values() {
|
|
pinned_git_heads_set.extend(heads_for_ref);
|
|
}
|
|
pinned_git_heads_set.retain(|id| mut_repo.index().has_id(id));
|
|
// We could use mut_repo.record_rewrites() here but we know we only need to care
|
|
// about abandoned commits for now. We may want to change this if we ever
|
|
// add a way of preserving change IDs across rewrites by `git` (e.g. by
|
|
// putting them in the commit message).
|
|
let abandoned_commits = revset::walk_revs(
|
|
mut_repo,
|
|
&hidable_git_heads,
|
|
&pinned_git_heads_set.into_iter().collect_vec(),
|
|
)
|
|
.unwrap()
|
|
.iter()
|
|
.collect_vec();
|
|
let root_commit_id = mut_repo.store().root_commit_id().clone();
|
|
for abandoned_commit in abandoned_commits {
|
|
if abandoned_commit != root_commit_id {
|
|
mut_repo.record_abandoned_commit(abandoned_commit);
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum GitExportError {
|
|
#[error("Cannot export conflicted branch '{0}'")]
|
|
ConflictedBranch(String),
|
|
#[error("Failed to read export state: {0}")]
|
|
ReadStateError(String),
|
|
#[error("Failed to write export state: {0}")]
|
|
WriteStateError(String),
|
|
#[error("Git error: {0}")]
|
|
InternalGitError(#[from] git2::Error),
|
|
}
|
|
|
|
/// Export changes to branches made in the Jujutsu repo compared to our last
|
|
/// seen view of the Git repo in `mut_repo.view().git_refs()`. Returns a list of
|
|
/// refs that failed to export.
|
|
///
|
|
/// We ignore changed branches that are conflicted (were also changed in the Git
|
|
/// repo compared to our last remembered view of the Git repo). These will be
|
|
/// marked conflicted by the next `jj git import`.
|
|
///
|
|
/// We do not export tags and other refs at the moment, since these aren't
|
|
/// supposed to be modified by JJ. For them, the Git state is considered
|
|
/// authoritative.
|
|
// TODO: Also indicate why we failed to export these branches
|
|
pub fn export_refs(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
) -> Result<Vec<RefName>, GitExportError> {
|
|
export_some_refs(mut_repo, git_repo, |_| true)
|
|
}
|
|
|
|
pub fn export_some_refs(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
git_ref_filter: impl Fn(&RefName) -> bool,
|
|
) -> Result<Vec<RefName>, GitExportError> {
|
|
// First find the changes we want need to make without modifying mut_repo
|
|
let mut branches_to_update = BTreeMap::new();
|
|
let mut branches_to_delete = BTreeMap::new();
|
|
let mut failed_branches = vec![];
|
|
let view = mut_repo.view();
|
|
let jj_repo_iter_all_branches = view.branches().iter().flat_map(|(branch, target)| {
|
|
itertools::chain(
|
|
target
|
|
.local_target
|
|
.is_present()
|
|
.then(|| RefName::LocalBranch(branch.to_owned())),
|
|
target
|
|
.remote_targets
|
|
.keys()
|
|
.map(|remote| RefName::RemoteBranch {
|
|
branch: branch.to_string(),
|
|
remote: remote.to_string(),
|
|
}),
|
|
)
|
|
});
|
|
let jj_known_refs_passing_filter: HashSet<_> = view
|
|
.git_refs()
|
|
.keys()
|
|
.filter_map(|name| parse_git_ref(name))
|
|
.chain(jj_repo_iter_all_branches)
|
|
.filter(git_ref_filter)
|
|
.collect();
|
|
for jj_known_ref in jj_known_refs_passing_filter {
|
|
let new_branch = match &jj_known_ref {
|
|
RefName::LocalBranch(branch) => view.get_local_branch(branch),
|
|
RefName::RemoteBranch { remote, branch } => {
|
|
// Currently, the only situation where this case occurs *and* new_branch !=
|
|
// old_branch is after a `jj branch forget`. So, in practice, for
|
|
// remote-tracking branches either `new_branch == old_branch` or
|
|
// `new_branch == None`.
|
|
view.get_remote_branch(branch, remote)
|
|
}
|
|
_ => continue,
|
|
};
|
|
let old_branch = if let Some(name) = to_git_ref_name(&jj_known_ref) {
|
|
view.get_git_ref(&name)
|
|
} else {
|
|
// Invalid branch name in Git sense
|
|
failed_branches.push(jj_known_ref);
|
|
continue;
|
|
};
|
|
if new_branch == old_branch {
|
|
continue;
|
|
}
|
|
let old_oid = if let Some(id) = old_branch.as_normal() {
|
|
Some(Oid::from_bytes(id.as_bytes()).unwrap())
|
|
} else if old_branch.is_conflict() {
|
|
// The old git ref should only be a conflict if there were concurrent import
|
|
// operations while the value changed. Don't overwrite these values.
|
|
failed_branches.push(jj_known_ref);
|
|
continue;
|
|
} else {
|
|
assert!(old_branch.is_absent());
|
|
None
|
|
};
|
|
if let Some(id) = new_branch.as_normal() {
|
|
let new_oid = Oid::from_bytes(id.as_bytes());
|
|
branches_to_update.insert(jj_known_ref, (old_oid, new_oid.unwrap()));
|
|
} else if new_branch.is_conflict() {
|
|
// Skip conflicts and leave the old value in git_refs
|
|
continue;
|
|
} else {
|
|
assert!(new_branch.is_absent());
|
|
branches_to_delete.insert(jj_known_ref, old_oid.unwrap());
|
|
}
|
|
}
|
|
// TODO: Also check other worktrees' HEAD.
|
|
if let Ok(head_ref) = git_repo.find_reference("HEAD") {
|
|
if let (Some(head_git_ref), Ok(current_git_commit)) =
|
|
(head_ref.symbolic_target(), head_ref.peel_to_commit())
|
|
{
|
|
if let Some(parsed_ref) = parse_git_ref(head_git_ref) {
|
|
let detach_head =
|
|
if let Some((_old_oid, new_oid)) = branches_to_update.get(&parsed_ref) {
|
|
*new_oid != current_git_commit.id()
|
|
} else {
|
|
branches_to_delete.contains_key(&parsed_ref)
|
|
};
|
|
if detach_head {
|
|
git_repo.set_head_detached(current_git_commit.id())?;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (parsed_ref_name, old_oid) in branches_to_delete {
|
|
let git_ref_name = to_git_ref_name(&parsed_ref_name).unwrap();
|
|
let success = if let Ok(mut git_repo_ref) = git_repo.find_reference(&git_ref_name) {
|
|
if git_repo_ref.target() == Some(old_oid) {
|
|
// The branch has not been updated by git, so go ahead and delete it
|
|
git_repo_ref.delete().is_ok()
|
|
} else {
|
|
// The branch was updated by git
|
|
false
|
|
}
|
|
} else {
|
|
// The branch is already deleted
|
|
true
|
|
};
|
|
if success {
|
|
mut_repo.set_git_ref_target(&git_ref_name, RefTarget::absent());
|
|
} else {
|
|
failed_branches.push(parsed_ref_name);
|
|
}
|
|
}
|
|
for (parsed_ref_name, (old_oid, new_oid)) in branches_to_update {
|
|
let git_ref_name = to_git_ref_name(&parsed_ref_name).unwrap();
|
|
let success = match old_oid {
|
|
None => {
|
|
if let Ok(git_repo_ref) = git_repo.find_reference(&git_ref_name) {
|
|
// The branch was added in jj and in git. We're good if and only if git
|
|
// pointed it to our desired target.
|
|
git_repo_ref.target() == Some(new_oid)
|
|
} else {
|
|
// The branch was added in jj but still doesn't exist in git, so add it
|
|
git_repo
|
|
.reference(&git_ref_name, new_oid, true, "export from jj")
|
|
.is_ok()
|
|
}
|
|
}
|
|
Some(old_oid) => {
|
|
// The branch was modified in jj. We can use libgit2's API for updating under a
|
|
// lock.
|
|
if git_repo
|
|
.reference_matching(&git_ref_name, new_oid, true, old_oid, "export from jj")
|
|
.is_ok()
|
|
{
|
|
// Successfully updated from old_oid to new_oid (unchanged in git)
|
|
true
|
|
} else {
|
|
// The reference was probably updated in git
|
|
if let Ok(git_repo_ref) = git_repo.find_reference(&git_ref_name) {
|
|
// We still consider this a success if it was updated to our desired target
|
|
git_repo_ref.target() == Some(new_oid)
|
|
} else {
|
|
// The reference was deleted in git and moved in jj
|
|
false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
if success {
|
|
mut_repo.set_git_ref_target(
|
|
&git_ref_name,
|
|
RefTarget::normal(CommitId::from_bytes(new_oid.as_bytes())),
|
|
);
|
|
} else {
|
|
failed_branches.push(parsed_ref_name);
|
|
}
|
|
}
|
|
Ok(failed_branches)
|
|
}
|
|
|
|
pub fn remove_remote(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
remote_name: &str,
|
|
) -> Result<(), git2::Error> {
|
|
git_repo.remote_delete(remote_name)?;
|
|
let mut branches_to_delete = vec![];
|
|
for (branch, target) in mut_repo.view().branches() {
|
|
if target.remote_targets.contains_key(remote_name) {
|
|
branches_to_delete.push(branch.clone());
|
|
}
|
|
}
|
|
let prefix = format!("refs/remotes/{remote_name}/");
|
|
let git_refs_to_delete = mut_repo
|
|
.view()
|
|
.git_refs()
|
|
.keys()
|
|
.filter_map(|r| r.starts_with(&prefix).then(|| r.clone()))
|
|
.collect_vec();
|
|
for branch in branches_to_delete {
|
|
mut_repo.set_remote_branch_target(&branch, remote_name, RefTarget::absent());
|
|
}
|
|
for git_ref in git_refs_to_delete {
|
|
mut_repo.set_git_ref_target(&git_ref, RefTarget::absent());
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn rename_remote(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
old_remote_name: &str,
|
|
new_remote_name: &str,
|
|
) -> Result<(), git2::Error> {
|
|
git_repo.remote_rename(old_remote_name, new_remote_name)?;
|
|
mut_repo.rename_remote(old_remote_name, new_remote_name);
|
|
let prefix = format!("refs/remotes/{old_remote_name}/");
|
|
let git_refs = mut_repo
|
|
.view()
|
|
.git_refs()
|
|
.iter()
|
|
.filter_map(|(r, target)| {
|
|
r.strip_prefix(&prefix).map(|p| {
|
|
(
|
|
r.clone(),
|
|
format!("refs/remotes/{new_remote_name}/{p}"),
|
|
target.clone(),
|
|
)
|
|
})
|
|
})
|
|
.collect_vec();
|
|
for (old, new, target) in git_refs {
|
|
mut_repo.set_git_ref_target(&old, RefTarget::absent());
|
|
mut_repo.set_git_ref_target(&new, target);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum GitFetchError {
|
|
#[error("No git remote named '{0}'")]
|
|
NoSuchRemote(String),
|
|
#[error("Invalid glob provided. Globs may not contain the characters `:` or `^`.")]
|
|
InvalidGlob,
|
|
// TODO: I'm sure there are other errors possible, such as transport-level errors.
|
|
#[error("Unexpected git error when fetching: {0}")]
|
|
InternalGitError(#[from] git2::Error),
|
|
}
|
|
|
|
#[tracing::instrument(skip(mut_repo, git_repo, callbacks))]
|
|
pub fn fetch(
|
|
mut_repo: &mut MutableRepo,
|
|
git_repo: &git2::Repository,
|
|
remote_name: &str,
|
|
branch_name_globs: Option<&[&str]>,
|
|
callbacks: RemoteCallbacks<'_>,
|
|
git_settings: &GitSettings,
|
|
) -> Result<Option<String>, GitFetchError> {
|
|
let branch_name_filter = {
|
|
let regex = if let Some(globs) = branch_name_globs {
|
|
let result = regex::RegexSet::new(
|
|
globs
|
|
.iter()
|
|
.map(|glob| format!("^{}$", glob.replace('*', ".*"))),
|
|
)
|
|
.map_err(|_| GitFetchError::InvalidGlob)?;
|
|
tracing::debug!(?globs, ?result, "globs as regex");
|
|
Some(result)
|
|
} else {
|
|
None
|
|
};
|
|
move |branch: &str| regex.as_ref().map(|r| r.is_match(branch)).unwrap_or(true)
|
|
};
|
|
|
|
// In non-colocated repositories, it's possible that `jj branch forget` was run
|
|
// at some point and no `jj git export` happened since.
|
|
//
|
|
// This would mean that remote-tracking branches, forgotten in the jj repo,
|
|
// still exist in the git repo. If the branches didn't move on the remote, and
|
|
// we fetched them, jj would think that they are unmodified and wouldn't
|
|
// resurrect them.
|
|
//
|
|
// Export will delete the remote-tracking branches in the git repo, so it's
|
|
// possible to fetch them again.
|
|
//
|
|
// For more details, see the `test_branch_forget_fetched_branch` test, and PRs
|
|
// #1714 and #1771
|
|
//
|
|
// Apart from `jj branch forget`, jj doesn't provide commands to manipulate
|
|
// remote-tracking branches, and local git branches don't affect fetch
|
|
// behaviors. So, it's unnecessary to export anything else.
|
|
//
|
|
// TODO: Create a command the user can use to reset jj's
|
|
// branch state to the git repo's state. In this case, `jj branch forget`
|
|
// doesn't work as it tries to delete the latter. One possible name is `jj
|
|
// git import --reset BRANCH`.
|
|
// TODO: Once the command described above exists, it should be mentioned in `jj
|
|
// help branch forget`.
|
|
let nonempty_branches: HashSet<_> = mut_repo
|
|
.view()
|
|
.branches()
|
|
.iter()
|
|
.filter_map(|(branch, target)| target.local_target.is_present().then(|| branch.to_owned()))
|
|
.collect();
|
|
// TODO: Inform the user if the export failed? In most cases, export is not
|
|
// essential for fetch to work.
|
|
let _ = export_some_refs(mut_repo, git_repo, |ref_name| {
|
|
to_remote_branch(ref_name, remote_name)
|
|
.map(|branch| branch_name_filter(branch) && !nonempty_branches.contains(branch))
|
|
.unwrap_or(false)
|
|
});
|
|
|
|
// Perform a `git fetch` on the local git repo, updating the remote-tracking
|
|
// branches in the git repo.
|
|
let mut remote =
|
|
git_repo
|
|
.find_remote(remote_name)
|
|
.map_err(|err| match (err.class(), err.code()) {
|
|
(git2::ErrorClass::Config, git2::ErrorCode::NotFound) => {
|
|
GitFetchError::NoSuchRemote(remote_name.to_string())
|
|
}
|
|
(git2::ErrorClass::Config, git2::ErrorCode::InvalidSpec) => {
|
|
GitFetchError::NoSuchRemote(remote_name.to_string())
|
|
}
|
|
_ => GitFetchError::InternalGitError(err),
|
|
})?;
|
|
let mut fetch_options = git2::FetchOptions::new();
|
|
let mut proxy_options = git2::ProxyOptions::new();
|
|
proxy_options.auto();
|
|
fetch_options.proxy_options(proxy_options);
|
|
let callbacks = callbacks.into_git();
|
|
fetch_options.remote_callbacks(callbacks);
|
|
let refspecs = {
|
|
// If no globs have been given, import all branches
|
|
let globs = branch_name_globs.unwrap_or(&["*"]);
|
|
if globs.iter().any(|g| g.contains(|c| ":^".contains(c))) {
|
|
return Err(GitFetchError::InvalidGlob);
|
|
}
|
|
// At this point, we are only updating Git's remote tracking branches, not the
|
|
// local branches.
|
|
globs
|
|
.iter()
|
|
.map(|glob| format!("+refs/heads/{glob}:refs/remotes/{remote_name}/{glob}"))
|
|
.collect_vec()
|
|
};
|
|
tracing::debug!("remote.download");
|
|
remote.download(&refspecs, Some(&mut fetch_options))?;
|
|
tracing::debug!("remote.prune");
|
|
remote.prune(None)?;
|
|
tracing::debug!("remote.update_tips");
|
|
remote.update_tips(None, false, git2::AutotagOption::Unspecified, None)?;
|
|
// TODO: We could make it optional to get the default branch since we only care
|
|
// about it on clone.
|
|
let mut default_branch = None;
|
|
if let Ok(default_ref_buf) = remote.default_branch() {
|
|
if let Some(default_ref) = default_ref_buf.as_str() {
|
|
// LocalBranch here is the local branch on the remote, so it's really the remote
|
|
// branch
|
|
if let Some(RefName::LocalBranch(branch_name)) = parse_git_ref(default_ref) {
|
|
tracing::debug!(default_branch = branch_name);
|
|
default_branch = Some(branch_name);
|
|
}
|
|
}
|
|
}
|
|
tracing::debug!("remote.disconnect");
|
|
remote.disconnect()?;
|
|
|
|
// `import_some_refs` will import the remote-tracking branches into the jj repo
|
|
// and update jj's local branches.
|
|
tracing::debug!("import_refs");
|
|
import_some_refs(mut_repo, git_repo, git_settings, |ref_name| {
|
|
to_remote_branch(ref_name, remote_name)
|
|
.map(&branch_name_filter)
|
|
.unwrap_or(false)
|
|
})
|
|
.map_err(|err| match err {
|
|
GitImportError::InternalGitError(source) => GitFetchError::InternalGitError(source),
|
|
})?;
|
|
Ok(default_branch)
|
|
}
|
|
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum GitPushError {
|
|
#[error("No git remote named '{0}'")]
|
|
NoSuchRemote(String),
|
|
#[error("Push is not fast-forwardable")]
|
|
NotFastForward,
|
|
#[error("Remote rejected the update of some refs (do you have permission to push to {0:?}?)")]
|
|
RefUpdateRejected(Vec<String>),
|
|
// TODO: I'm sure there are other errors possible, such as transport-level errors,
|
|
// and errors caused by the remote rejecting the push.
|
|
#[error("Unexpected git error when pushing: {0}")]
|
|
InternalGitError(#[from] git2::Error),
|
|
}
|
|
|
|
pub struct GitRefUpdate {
|
|
pub qualified_name: String,
|
|
// TODO: We want this to be a `current_target: Option<CommitId>` for the expected current
|
|
// commit on the remote. It's a blunt "force" option instead until git2-rs supports the
|
|
// "push negotiation" callback (https://github.com/rust-lang/git2-rs/issues/733).
|
|
pub force: bool,
|
|
pub new_target: Option<CommitId>,
|
|
}
|
|
|
|
pub fn push_updates(
|
|
git_repo: &git2::Repository,
|
|
remote_name: &str,
|
|
updates: &[GitRefUpdate],
|
|
callbacks: RemoteCallbacks<'_>,
|
|
) -> Result<(), GitPushError> {
|
|
let mut temp_refs = vec![];
|
|
let mut qualified_remote_refs = vec![];
|
|
let mut refspecs = vec![];
|
|
for update in updates {
|
|
qualified_remote_refs.push(update.qualified_name.as_str());
|
|
if let Some(new_target) = &update.new_target {
|
|
// Create a temporary ref to work around https://github.com/libgit2/libgit2/issues/3178
|
|
let temp_ref_name = format!("refs/jj/git-push/{}", new_target.hex());
|
|
temp_refs.push(git_repo.reference(
|
|
&temp_ref_name,
|
|
git2::Oid::from_bytes(new_target.as_bytes()).unwrap(),
|
|
true,
|
|
"temporary reference for git push",
|
|
)?);
|
|
refspecs.push(format!(
|
|
"{}{}:{}",
|
|
(if update.force { "+" } else { "" }),
|
|
temp_ref_name,
|
|
update.qualified_name
|
|
));
|
|
} else {
|
|
refspecs.push(format!(":{}", update.qualified_name));
|
|
}
|
|
}
|
|
let result = push_refs(
|
|
git_repo,
|
|
remote_name,
|
|
&qualified_remote_refs,
|
|
&refspecs,
|
|
callbacks,
|
|
);
|
|
for mut temp_ref in temp_refs {
|
|
// TODO: Figure out how to do the equivalent of absl::Cleanup for
|
|
// temp_ref.delete().
|
|
if let Err(err) = temp_ref.delete() {
|
|
// Propagate error only if we don't already have an error to return and it's not
|
|
// NotFound (there may be duplicates if the list if multiple branches moved to
|
|
// the same commit).
|
|
if result.is_ok() && err.code() != git2::ErrorCode::NotFound {
|
|
return Err(GitPushError::InternalGitError(err));
|
|
}
|
|
}
|
|
}
|
|
result
|
|
}
|
|
|
|
fn push_refs(
|
|
git_repo: &git2::Repository,
|
|
remote_name: &str,
|
|
qualified_remote_refs: &[&str],
|
|
refspecs: &[String],
|
|
callbacks: RemoteCallbacks<'_>,
|
|
) -> Result<(), GitPushError> {
|
|
let mut remote =
|
|
git_repo
|
|
.find_remote(remote_name)
|
|
.map_err(|err| match (err.class(), err.code()) {
|
|
(git2::ErrorClass::Config, git2::ErrorCode::NotFound) => {
|
|
GitPushError::NoSuchRemote(remote_name.to_string())
|
|
}
|
|
(git2::ErrorClass::Config, git2::ErrorCode::InvalidSpec) => {
|
|
GitPushError::NoSuchRemote(remote_name.to_string())
|
|
}
|
|
_ => GitPushError::InternalGitError(err),
|
|
})?;
|
|
let mut remaining_remote_refs: HashSet<_> = qualified_remote_refs.iter().copied().collect();
|
|
let mut push_options = git2::PushOptions::new();
|
|
let mut proxy_options = git2::ProxyOptions::new();
|
|
proxy_options.auto();
|
|
push_options.proxy_options(proxy_options);
|
|
let mut callbacks = callbacks.into_git();
|
|
callbacks.push_update_reference(|refname, status| {
|
|
// The status is Some if the ref update was rejected
|
|
if status.is_none() {
|
|
remaining_remote_refs.remove(refname);
|
|
}
|
|
Ok(())
|
|
});
|
|
push_options.remote_callbacks(callbacks);
|
|
remote
|
|
.push(refspecs, Some(&mut push_options))
|
|
.map_err(|err| match (err.class(), err.code()) {
|
|
(git2::ErrorClass::Reference, git2::ErrorCode::NotFastForward) => {
|
|
GitPushError::NotFastForward
|
|
}
|
|
_ => GitPushError::InternalGitError(err),
|
|
})?;
|
|
drop(push_options);
|
|
if remaining_remote_refs.is_empty() {
|
|
Ok(())
|
|
} else {
|
|
Err(GitPushError::RefUpdateRejected(
|
|
remaining_remote_refs
|
|
.iter()
|
|
.sorted()
|
|
.map(|name| name.to_string())
|
|
.collect(),
|
|
))
|
|
}
|
|
}
|
|
|
|
#[non_exhaustive]
|
|
#[derive(Default)]
|
|
#[allow(clippy::type_complexity)]
|
|
pub struct RemoteCallbacks<'a> {
|
|
pub progress: Option<&'a mut dyn FnMut(&Progress)>,
|
|
pub get_ssh_key: Option<&'a mut dyn FnMut(&str) -> Option<PathBuf>>,
|
|
pub get_password: Option<&'a mut dyn FnMut(&str, &str) -> Option<String>>,
|
|
pub get_username_password: Option<&'a mut dyn FnMut(&str) -> Option<(String, String)>>,
|
|
}
|
|
|
|
impl<'a> RemoteCallbacks<'a> {
|
|
fn into_git(mut self) -> git2::RemoteCallbacks<'a> {
|
|
let mut callbacks = git2::RemoteCallbacks::new();
|
|
if let Some(progress_cb) = self.progress {
|
|
callbacks.transfer_progress(move |progress| {
|
|
progress_cb(&Progress {
|
|
bytes_downloaded: (progress.received_objects() < progress.total_objects())
|
|
.then(|| progress.received_bytes() as u64),
|
|
overall: (progress.indexed_objects() + progress.indexed_deltas()) as f32
|
|
/ (progress.total_objects() + progress.total_deltas()) as f32,
|
|
});
|
|
true
|
|
});
|
|
}
|
|
// TODO: We should expose the callbacks to the caller instead -- the library
|
|
// crate shouldn't read environment variables.
|
|
callbacks.credentials(move |url, username_from_url, allowed_types| {
|
|
let span = tracing::debug_span!("RemoteCallbacks.credentials");
|
|
let _ = span.enter();
|
|
|
|
let git_config = git2::Config::open_default();
|
|
let credential_helper = git_config
|
|
.and_then(|conf| git2::Cred::credential_helper(&conf, url, username_from_url));
|
|
if let Ok(creds) = credential_helper {
|
|
tracing::info!("using credential_helper");
|
|
return Ok(creds);
|
|
} else if let Some(username) = username_from_url {
|
|
if allowed_types.contains(git2::CredentialType::SSH_KEY) {
|
|
// Try to get the SSH key from the agent by default, and report an error
|
|
// only if it _seems_ like that's what the user wanted.
|
|
//
|
|
// Note that the env variables read below are **not** the only way to
|
|
// communicate with the agent, which is why we request a key from it no
|
|
// matter what.
|
|
match git2::Cred::ssh_key_from_agent(username) {
|
|
Ok(key) => {
|
|
tracing::info!(username, "using ssh_key_from_agent");
|
|
return Ok(key);
|
|
}
|
|
Err(err) => {
|
|
if std::env::var("SSH_AUTH_SOCK").is_ok()
|
|
|| std::env::var("SSH_AGENT_PID").is_ok()
|
|
{
|
|
tracing::error!(err = %err);
|
|
return Err(err);
|
|
}
|
|
// There is no agent-related env variable so we
|
|
// consider that the user doesn't care about using
|
|
// the agent and proceed.
|
|
}
|
|
}
|
|
|
|
if let Some(ref mut cb) = self.get_ssh_key {
|
|
if let Some(path) = cb(username) {
|
|
tracing::info!(username, path = ?path, "using ssh_key");
|
|
return git2::Cred::ssh_key(username, None, &path, None).map_err(
|
|
|err| {
|
|
tracing::error!(err = %err);
|
|
err
|
|
},
|
|
);
|
|
}
|
|
}
|
|
}
|
|
if allowed_types.contains(git2::CredentialType::USER_PASS_PLAINTEXT) {
|
|
if let Some(ref mut cb) = self.get_password {
|
|
if let Some(pw) = cb(url, username) {
|
|
tracing::info!(
|
|
username,
|
|
"using userpass_plaintext with username from url"
|
|
);
|
|
return git2::Cred::userpass_plaintext(username, &pw).map_err(|err| {
|
|
tracing::error!(err = %err);
|
|
err
|
|
});
|
|
}
|
|
}
|
|
}
|
|
} else if allowed_types.contains(git2::CredentialType::USER_PASS_PLAINTEXT) {
|
|
if let Some(ref mut cb) = self.get_username_password {
|
|
if let Some((username, pw)) = cb(url) {
|
|
tracing::info!(username, "using userpass_plaintext");
|
|
return git2::Cred::userpass_plaintext(&username, &pw).map_err(|err| {
|
|
tracing::error!(err = %err);
|
|
err
|
|
});
|
|
}
|
|
}
|
|
}
|
|
tracing::info!("using default");
|
|
git2::Cred::default()
|
|
});
|
|
callbacks
|
|
}
|
|
}
|
|
|
|
pub struct Progress {
|
|
/// `Some` iff data transfer is currently in progress
|
|
pub bytes_downloaded: Option<u64>,
|
|
pub overall: f32,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct PartialSubmoduleConfig {
|
|
path: Option<String>,
|
|
url: Option<String>,
|
|
}
|
|
|
|
/// Represents configuration from a submodule, e.g. in .gitmodules
|
|
/// This doesn't include all possible fields, only the ones we care about
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
pub struct SubmoduleConfig {
|
|
pub name: String,
|
|
pub path: String,
|
|
pub url: String,
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum GitConfigParseError {
|
|
#[error("Unexpected io error when parsing config: {0}")]
|
|
IoError(#[from] std::io::Error),
|
|
#[error("Unexpected git error when parsing config: {0}")]
|
|
InternalGitError(#[from] git2::Error),
|
|
}
|
|
|
|
pub fn parse_gitmodules(
|
|
config: &mut dyn Read,
|
|
) -> Result<BTreeMap<String, SubmoduleConfig>, GitConfigParseError> {
|
|
// git2 can only read from a path, so set one up
|
|
let mut temp_file = NamedTempFile::new()?;
|
|
std::io::copy(config, &mut temp_file)?;
|
|
let path = temp_file.into_temp_path();
|
|
let git_config = git2::Config::open(&path)?;
|
|
// Partial config value for each submodule name
|
|
let mut partial_configs: BTreeMap<String, PartialSubmoduleConfig> = BTreeMap::new();
|
|
|
|
let entries = git_config.entries(Some(r"submodule\..+\."))?;
|
|
entries.for_each(|entry| {
|
|
let (config_name, config_value) = match (entry.name(), entry.value()) {
|
|
// Reject non-utf8 entries
|
|
(Some(name), Some(value)) => (name, value),
|
|
_ => return,
|
|
};
|
|
|
|
// config_name is of the form submodule.<name>.<variable>
|
|
let (submod_name, submod_var) = config_name
|
|
.strip_prefix("submodule.")
|
|
.unwrap()
|
|
.split_once('.')
|
|
.unwrap();
|
|
|
|
let map_entry = partial_configs.entry(submod_name.to_string()).or_default();
|
|
|
|
match (submod_var.to_ascii_lowercase().as_str(), &map_entry) {
|
|
// TODO Git warns when a duplicate config entry is found, we should
|
|
// consider doing the same.
|
|
("path", PartialSubmoduleConfig { path: None, .. }) => {
|
|
map_entry.path = Some(config_value.to_string())
|
|
}
|
|
("url", PartialSubmoduleConfig { url: None, .. }) => {
|
|
map_entry.url = Some(config_value.to_string())
|
|
}
|
|
_ => (),
|
|
};
|
|
})?;
|
|
|
|
let ret = partial_configs
|
|
.into_iter()
|
|
.filter_map(|(name, val)| {
|
|
Some((
|
|
name.clone(),
|
|
SubmoduleConfig {
|
|
name,
|
|
path: val.path?,
|
|
url: val.url?,
|
|
},
|
|
))
|
|
})
|
|
.collect();
|
|
Ok(ret)
|
|
}
|