mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-24 06:19:42 +00:00
cli: Refactor out get_fetch_remotes
into git_util.rs
Some checks are pending
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with latest Python and uv (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Some checks are pending
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with latest Python and uv (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Similarly to `git_fetch`, this will be used in `jj git sync`, so moving this out to maintain the same behaviour across `fetch` command and `sync`. * Refactor out `get_fetch_remotes` to `git_util.rs`. * inline the different `get_*_remote*` functions into `get_fetch_remotes`; The resulting function is still small enough to be easily readable. * Move `get_single_remote` into `git_util.rs` and update call sites. * Use common FetchArgs to pass arguments both to `get_fetch_remotes` and `git_fetch` * Update use references All tests still pass. Issue: #1039
This commit is contained in:
parent
10c90a5099
commit
2e1e36bbde
4 changed files with 82 additions and 63 deletions
|
@ -15,16 +15,15 @@
|
|||
use clap_complete::ArgValueCandidates;
|
||||
use itertools::Itertools;
|
||||
use jj_lib::repo::Repo;
|
||||
use jj_lib::settings::ConfigResultExt as _;
|
||||
use jj_lib::settings::UserSettings;
|
||||
use jj_lib::str_util::StringPattern;
|
||||
|
||||
use crate::cli_util::CommandHelper;
|
||||
use crate::command_error::CommandError;
|
||||
use crate::commands::git::get_single_remote;
|
||||
use crate::complete;
|
||||
use crate::git_util::get_fetch_remotes;
|
||||
use crate::git_util::get_git_repo;
|
||||
use crate::git_util::git_fetch;
|
||||
use crate::git_util::FetchArgs;
|
||||
use crate::ui::Ui;
|
||||
|
||||
/// Fetch from a Git remote
|
||||
|
@ -69,52 +68,27 @@ pub fn cmd_git_fetch(
|
|||
) -> Result<(), CommandError> {
|
||||
let mut workspace_command = command.workspace_helper(ui)?;
|
||||
let git_repo = get_git_repo(workspace_command.repo().store())?;
|
||||
let remotes = if args.all_remotes {
|
||||
get_all_remotes(&git_repo)?
|
||||
} else if args.remotes.is_empty() {
|
||||
get_default_fetch_remotes(ui, command.settings(), &git_repo)?
|
||||
} else {
|
||||
args.remotes.clone()
|
||||
};
|
||||
|
||||
let remotes = get_fetch_remotes(
|
||||
ui,
|
||||
command.settings(),
|
||||
&git_repo,
|
||||
&args.remotes,
|
||||
args.all_remotes,
|
||||
)?;
|
||||
let mut tx = workspace_command.start_transaction();
|
||||
git_fetch(ui, &mut tx, &git_repo, &remotes, &args.branch)?;
|
||||
git_fetch(
|
||||
ui,
|
||||
&mut tx,
|
||||
&git_repo,
|
||||
&FetchArgs {
|
||||
branch: &args.branch,
|
||||
remotes: &remotes,
|
||||
},
|
||||
)?;
|
||||
tx.finish(
|
||||
ui,
|
||||
format!("fetch from git remote(s) {}", remotes.iter().join(",")),
|
||||
)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
const DEFAULT_REMOTE: &str = "origin";
|
||||
|
||||
fn get_default_fetch_remotes(
|
||||
ui: &Ui,
|
||||
settings: &UserSettings,
|
||||
git_repo: &git2::Repository,
|
||||
) -> Result<Vec<String>, CommandError> {
|
||||
const KEY: &str = "git.fetch";
|
||||
if let Ok(remotes) = settings.get(KEY) {
|
||||
Ok(remotes)
|
||||
} else if let Some(remote) = settings.get_string(KEY).optional()? {
|
||||
Ok(vec![remote])
|
||||
} else if let Some(remote) = get_single_remote(git_repo)? {
|
||||
// if nothing was explicitly configured, try to guess
|
||||
if remote != DEFAULT_REMOTE {
|
||||
writeln!(
|
||||
ui.hint_default(),
|
||||
"Fetching from the only existing remote: {remote}"
|
||||
)?;
|
||||
}
|
||||
Ok(vec![remote])
|
||||
} else {
|
||||
Ok(vec![DEFAULT_REMOTE.to_owned()])
|
||||
}
|
||||
}
|
||||
|
||||
fn get_all_remotes(git_repo: &git2::Repository) -> Result<Vec<String>, CommandError> {
|
||||
let git_remotes = git_repo.remotes()?;
|
||||
Ok(git_remotes
|
||||
.iter()
|
||||
.filter_map(|x| x.map(ToOwned::to_owned))
|
||||
.collect())
|
||||
}
|
||||
|
|
|
@ -94,11 +94,3 @@ pub fn maybe_add_gitignore(workspace_command: &WorkspaceCommandHelper) -> Result
|
|||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
fn get_single_remote(git_repo: &git2::Repository) -> Result<Option<String>, CommandError> {
|
||||
let git_remotes = git_repo.remotes()?;
|
||||
Ok(match git_remotes.len() {
|
||||
1 => git_remotes.get(0).map(ToOwned::to_owned),
|
||||
_ => None,
|
||||
})
|
||||
}
|
||||
|
|
|
@ -46,10 +46,10 @@ use crate::cli_util::WorkspaceCommandTransaction;
|
|||
use crate::command_error::user_error;
|
||||
use crate::command_error::user_error_with_hint;
|
||||
use crate::command_error::CommandError;
|
||||
use crate::commands::git::get_single_remote;
|
||||
use crate::complete;
|
||||
use crate::formatter::Formatter;
|
||||
use crate::git_util::get_git_repo;
|
||||
use crate::git_util::get_single_remote;
|
||||
use crate::git_util::map_git_error;
|
||||
use crate::git_util::with_remote_git_callbacks;
|
||||
use crate::git_util::GitSidebandProgressMessageWriter;
|
||||
|
|
|
@ -35,6 +35,8 @@ use jj_lib::op_store::RefTarget;
|
|||
use jj_lib::op_store::RemoteRef;
|
||||
use jj_lib::repo::ReadonlyRepo;
|
||||
use jj_lib::repo::Repo;
|
||||
use jj_lib::settings::ConfigResultExt as _;
|
||||
use jj_lib::settings::UserSettings;
|
||||
use jj_lib::store::Store;
|
||||
use jj_lib::str_util::StringPattern;
|
||||
use jj_lib::workspace::Workspace;
|
||||
|
@ -66,6 +68,14 @@ pub fn map_git_error(err: git2::Error) -> CommandError {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn get_single_remote(git_repo: &git2::Repository) -> Result<Option<String>, CommandError> {
|
||||
let git_remotes = git_repo.remotes()?;
|
||||
Ok(match git_remotes.len() {
|
||||
1 => git_remotes.get(0).map(ToOwned::to_owned),
|
||||
_ => None,
|
||||
})
|
||||
}
|
||||
|
||||
pub fn get_git_repo(store: &Store) -> Result<git2::Repository, CommandError> {
|
||||
match store.backend_impl().downcast_ref::<GitBackend>() {
|
||||
None => Err(user_error("The repo is not backed by a git repo")),
|
||||
|
@ -456,22 +466,26 @@ export or their "parent" bookmarks."#,
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub struct FetchArgs<'a> {
|
||||
pub branch: &'a [StringPattern],
|
||||
pub remotes: &'a [String],
|
||||
}
|
||||
|
||||
pub fn git_fetch(
|
||||
ui: &mut Ui,
|
||||
tx: &mut WorkspaceCommandTransaction,
|
||||
git_repo: &git2::Repository,
|
||||
remotes: &[String],
|
||||
branch: &[StringPattern],
|
||||
repo: &git2::Repository,
|
||||
args: &FetchArgs,
|
||||
) -> Result<(), CommandError> {
|
||||
let git_settings = tx.settings().git_settings();
|
||||
|
||||
for remote in remotes {
|
||||
for remote in args.remotes {
|
||||
let stats = with_remote_git_callbacks(ui, None, |cb| {
|
||||
git::fetch(
|
||||
tx.repo_mut(),
|
||||
git_repo,
|
||||
repo,
|
||||
remote,
|
||||
branch,
|
||||
args.branch,
|
||||
cb,
|
||||
&git_settings,
|
||||
None,
|
||||
|
@ -479,7 +493,8 @@ pub fn git_fetch(
|
|||
})
|
||||
.map_err(|err| match err {
|
||||
GitFetchError::InvalidBranchPattern => {
|
||||
if branch
|
||||
if args
|
||||
.branch
|
||||
.iter()
|
||||
.any(|pattern| pattern.as_exact().is_some_and(|s| s.contains('*')))
|
||||
{
|
||||
|
@ -500,8 +515,8 @@ pub fn git_fetch(
|
|||
warn_if_branches_not_found(
|
||||
ui,
|
||||
tx,
|
||||
branch,
|
||||
&remotes.iter().map(StringPattern::exact).collect_vec(),
|
||||
args.branch,
|
||||
&args.remotes.iter().map(StringPattern::exact).collect_vec(),
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -535,3 +550,41 @@ fn warn_if_branches_not_found(
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
const DEFAULT_REMOTE: &str = "origin";
|
||||
|
||||
pub fn get_fetch_remotes(
|
||||
ui: &Ui,
|
||||
settings: &UserSettings,
|
||||
repo: &git2::Repository,
|
||||
remotes: &[String],
|
||||
use_all_remotes: bool,
|
||||
) -> Result<Vec<String>, CommandError> {
|
||||
if use_all_remotes {
|
||||
Ok(repo
|
||||
.remotes()?
|
||||
.iter()
|
||||
.filter_map(|x| x.map(ToOwned::to_owned))
|
||||
.collect())
|
||||
} else if !remotes.is_empty() {
|
||||
Ok(remotes.to_vec())
|
||||
} else {
|
||||
const KEY: &str = "git.fetch";
|
||||
if let Ok(remotes) = settings.get(KEY) {
|
||||
Ok(remotes)
|
||||
} else if let Some(remote) = settings.get_string(KEY).optional()? {
|
||||
Ok(vec![remote])
|
||||
} else if let Some(remote) = get_single_remote(repo)? {
|
||||
// if nothing was explicitly configured, try to guess
|
||||
if remote != DEFAULT_REMOTE {
|
||||
writeln!(
|
||||
ui.hint_default(),
|
||||
"Fetching from the only existing remote: {remote}"
|
||||
)?;
|
||||
}
|
||||
Ok(vec![remote])
|
||||
} else {
|
||||
Ok(vec![DEFAULT_REMOTE.to_owned()])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue