diff --git a/CHANGELOG.md b/CHANGELOG.md index e73d6966af..4fd8c0d327 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `jj rebase` now takes the flag `--skip-empty`, which doesn't copy over commits that would become empty after a rebase. +* There is a new `jj util gc` command for cleaning up the repository storage. + For now, it simply runs `git gc` on the backing Git repo (when using the Git + backend). + ### Fixed bugs diff --git a/cli/examples/custom-backend/main.rs b/cli/examples/custom-backend/main.rs index 6cf0a0f254..2b111fc7c1 100644 --- a/cli/examples/custom-backend/main.rs +++ b/cli/examples/custom-backend/main.rs @@ -170,4 +170,8 @@ impl Backend for JitBackend { ) -> BackendResult<(CommitId, Commit)> { self.inner.write_commit(contents, sign_with) } + + fn gc(&self) -> Result<(), Box> { + self.inner.gc() + } } diff --git a/cli/src/commands/util.rs b/cli/src/commands/util.rs index a6cca04f87..9c146382ae 100644 --- a/cli/src/commands/util.rs +++ b/cli/src/commands/util.rs @@ -15,15 +15,17 @@ use std::io::Write; use clap::Subcommand; +use jj_lib::repo::Repo; use tracing::instrument; -use crate::cli_util::{CommandError, CommandHelper}; +use crate::cli_util::{user_error, CommandError, CommandHelper}; use crate::ui::Ui; /// Infrequently used commands such as for generating shell completions #[derive(Subcommand, Clone, Debug)] pub(crate) enum UtilCommands { Completion(UtilCompletionArgs), + Gc(UtilGcArgs), Mangen(UtilMangenArgs), ConfigSchema(UtilConfigSchemaArgs), } @@ -56,6 +58,10 @@ pub(crate) struct UtilCompletionArgs { zsh: bool, } +/// Run backend-dependent garbage collection. +#[derive(clap::Args, Clone, Debug)] +pub(crate) struct UtilGcArgs {} + /// Print a ROFF (manpage) #[derive(clap::Args, Clone, Debug)] pub(crate) struct UtilMangenArgs {} @@ -84,6 +90,15 @@ pub(crate) fn cmd_util( clap_complete::generate(shell, &mut app, "jj", &mut buf); ui.stdout_formatter().write_all(&buf)?; } + UtilCommands::Gc(_gc_args) => { + let workspace_command = command.workspace_helper(ui)?; + workspace_command + .repo() + .store() + .backend() + .gc() + .map_err(|err| user_error(err.to_string()))?; + } UtilCommands::Mangen(_mangen_matches) => { let mut buf = vec![]; let man = clap_mangen::Man::new(command.app().clone()); diff --git a/lib/src/backend.rs b/lib/src/backend.rs index a81c183eaf..f0b2bf8cd4 100644 --- a/lib/src/backend.rs +++ b/lib/src/backend.rs @@ -533,4 +533,8 @@ pub trait Backend: Send + Sync + Debug { contents: Commit, sign_with: Option<&mut SigningFn>, ) -> BackendResult<(CommitId, Commit)>; + + /// Perform garbage collection. + // TODO: pass in the set of commits to keep here + fn gc(&self) -> Result<(), Box>; } diff --git a/lib/src/git_backend.rs b/lib/src/git_backend.rs index e0126a93a8..24ba5ef800 100644 --- a/lib/src/git_backend.rs +++ b/lib/src/git_backend.rs @@ -94,6 +94,12 @@ impl From for BackendError { } } +#[derive(Debug, Error)] +pub enum GitGcError { + #[error("Failed to run git gc command: {0}")] + GcCommand(std::io::Error), +} + pub struct GitBackend { // While gix::Repository can be created from gix::ThreadSafeRepository, it's // cheaper to cache the thread-local instance behind a mutex than creating @@ -1007,6 +1013,16 @@ impl Backend for GitBackend { self.save_extra_metadata_table(mut_table, &table_lock)?; Ok((id, contents)) } + + fn gc(&self) -> Result<(), Box> { + let mut git = std::process::Command::new("git"); + git.env("GIT_DIR", self.git_repo_path()); + git.args(["gc"]); + // TODO: pass output to UI layer instead of printing directly here + let mut git_gc = git.spawn().map_err(GitGcError::GcCommand)?; + git_gc.wait()?; + Ok(()) + } } /// Write a tree conflict as a special tree with `.jjconflict-base-N` and diff --git a/lib/src/local_backend.rs b/lib/src/local_backend.rs index 09574b5924..c704d23e44 100644 --- a/lib/src/local_backend.rs +++ b/lib/src/local_backend.rs @@ -297,6 +297,10 @@ impl Backend for LocalBackend { .map_err(to_other_err)?; Ok((id, commit)) } + + fn gc(&self) -> Result<(), Box> { + Ok(()) + } } pub fn commit_to_proto(commit: &Commit) -> crate::protos::local_store::Commit { diff --git a/lib/src/store.rs b/lib/src/store.rs index f4810bd364..01840bb445 100644 --- a/lib/src/store.rs +++ b/lib/src/store.rs @@ -67,6 +67,10 @@ impl Store { }) } + pub fn backend(&self) -> &dyn Backend { + self.backend.as_ref() + } + pub fn backend_impl(&self) -> &dyn Any { self.backend.as_any() } diff --git a/lib/testutils/src/test_backend.rs b/lib/testutils/src/test_backend.rs index 59ab5037dc..c0657194e2 100644 --- a/lib/testutils/src/test_backend.rs +++ b/lib/testutils/src/test_backend.rs @@ -292,4 +292,8 @@ impl Backend for TestBackend { .insert(id.clone(), contents.clone()); Ok((id, contents)) } + + fn gc(&self) -> Result<(), Box> { + Ok(()) + } }