blob: 0498094711d1addd40f526f0c76dd8ddb76ef550 [file] [log] [blame]
James Bowes6757ada2007-03-13 21:58:22 -04001/*
2 * git gc builtin command
3 *
4 * Cleanup unreachable files and optimize the repository.
5 *
6 * Copyright (c) 2007 James Bowes
7 *
8 * Based on git-gc.sh, which is
9 *
10 * Copyright (c) 2006 Shawn O. Pearce
11 */
12
Peter Hagervallbaffc0e2007-07-15 01:14:45 +020013#include "builtin.h"
James Bowes6757ada2007-03-13 21:58:22 -040014#include "cache.h"
James Bowes44c637c2007-11-01 21:02:27 -040015#include "parse-options.h"
James Bowes6757ada2007-03-13 21:58:22 -040016#include "run-command.h"
17
18#define FAILED_RUN "failed to run %s"
19
James Bowes44c637c2007-11-01 21:02:27 -040020static const char * const builtin_gc_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020021 "git gc [options]",
James Bowes44c637c2007-11-01 21:02:27 -040022 NULL
23};
James Bowes6757ada2007-03-13 21:58:22 -040024
Linus Torvalds56752392007-05-24 11:41:39 -070025static int pack_refs = 1;
Johannes Schindelin1c192f32007-12-06 12:03:38 +000026static int aggressive_window = 250;
Junio C Hamano2c3c4392007-09-05 13:01:37 -070027static int gc_auto_threshold = 6700;
Junio C Hamano97063972008-03-23 00:04:48 -070028static int gc_auto_pack_limit = 50;
David Brysond3154b42008-09-30 13:28:58 -070029static const char *prune_expire = "2.weeks.ago";
James Bowes6757ada2007-03-13 21:58:22 -040030
Theodore Tso0d7566a2007-05-09 15:48:39 -040031#define MAX_ADD 10
Linus Torvalds56752392007-05-24 11:41:39 -070032static const char *argv_pack_refs[] = {"pack-refs", "--all", "--prune", NULL};
James Bowes6757ada2007-03-13 21:58:22 -040033static const char *argv_reflog[] = {"reflog", "expire", "--all", NULL};
Brandon Caseyedb0e042007-10-10 19:59:19 -050034static const char *argv_repack[MAX_ADD] = {"repack", "-d", "-l", NULL};
Johannes Schindelin25ee9732008-03-12 21:55:47 +010035static const char *argv_prune[] = {"prune", "--expire", NULL, NULL};
James Bowes6757ada2007-03-13 21:58:22 -040036static const char *argv_rerere[] = {"rerere", "gc", NULL};
37
Johannes Schindelinef90d6d2008-05-14 18:46:53 +010038static int gc_config(const char *var, const char *value, void *cb)
James Bowes6757ada2007-03-13 21:58:22 -040039{
40 if (!strcmp(var, "gc.packrefs")) {
Miklos Vajnac5e5a2c2008-02-08 15:26:18 +010041 if (value && !strcmp(value, "notbare"))
James Bowes6757ada2007-03-13 21:58:22 -040042 pack_refs = -1;
43 else
44 pack_refs = git_config_bool(var, value);
45 return 0;
46 }
Theodore Tso0d7566a2007-05-09 15:48:39 -040047 if (!strcmp(var, "gc.aggressivewindow")) {
48 aggressive_window = git_config_int(var, value);
49 return 0;
50 }
Junio C Hamano2c3c4392007-09-05 13:01:37 -070051 if (!strcmp(var, "gc.auto")) {
52 gc_auto_threshold = git_config_int(var, value);
53 return 0;
54 }
Junio C Hamano17815502007-09-17 00:55:13 -070055 if (!strcmp(var, "gc.autopacklimit")) {
56 gc_auto_pack_limit = git_config_int(var, value);
57 return 0;
58 }
Johannes Schindelin25ee9732008-03-12 21:55:47 +010059 if (!strcmp(var, "gc.pruneexpire")) {
David Brysond3154b42008-09-30 13:28:58 -070060 if (value && strcmp(value, "now")) {
Johannes Schindelin25ee9732008-03-12 21:55:47 +010061 unsigned long now = approxidate("now");
62 if (approxidate(value) >= now)
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +000063 return error(_("Invalid %s: '%s'"), var, value);
Johannes Schindelin25ee9732008-03-12 21:55:47 +010064 }
David Brysond3154b42008-09-30 13:28:58 -070065 return git_config_string(&prune_expire, var, value);
Johannes Schindelin25ee9732008-03-12 21:55:47 +010066 }
Johannes Schindelinef90d6d2008-05-14 18:46:53 +010067 return git_default_config(var, value, cb);
James Bowes6757ada2007-03-13 21:58:22 -040068}
69
Theodore Tso0d7566a2007-05-09 15:48:39 -040070static void append_option(const char **cmd, const char *opt, int max_length)
71{
72 int i;
73
74 for (i = 0; cmd[i]; i++)
75 ;
76
77 if (i + 2 >= max_length)
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +000078 die(_("Too many options specified"));
Theodore Tso0d7566a2007-05-09 15:48:39 -040079 cmd[i++] = opt;
80 cmd[i] = NULL;
81}
82
Junio C Hamanoa087cc92007-09-17 00:44:17 -070083static int too_many_loose_objects(void)
Junio C Hamano2c3c4392007-09-05 13:01:37 -070084{
85 /*
86 * Quickly check if a "gc" is needed, by estimating how
87 * many loose objects there are. Because SHA-1 is evenly
88 * distributed, we can check only one and get a reasonable
89 * estimate.
90 */
91 char path[PATH_MAX];
92 const char *objdir = get_object_directory();
93 DIR *dir;
94 struct dirent *ent;
95 int auto_threshold;
96 int num_loose = 0;
97 int needed = 0;
98
Junio C Hamano17815502007-09-17 00:55:13 -070099 if (gc_auto_threshold <= 0)
100 return 0;
101
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700102 if (sizeof(path) <= snprintf(path, sizeof(path), "%s/17", objdir)) {
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +0000103 warning(_("insanely long object directory %.*s"), 50, objdir);
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700104 return 0;
105 }
106 dir = opendir(path);
107 if (!dir)
108 return 0;
109
110 auto_threshold = (gc_auto_threshold + 255) / 256;
111 while ((ent = readdir(dir)) != NULL) {
112 if (strspn(ent->d_name, "0123456789abcdef") != 38 ||
113 ent->d_name[38] != '\0')
114 continue;
115 if (++num_loose > auto_threshold) {
116 needed = 1;
117 break;
118 }
119 }
120 closedir(dir);
121 return needed;
122}
123
Junio C Hamano17815502007-09-17 00:55:13 -0700124static int too_many_packs(void)
125{
126 struct packed_git *p;
127 int cnt;
128
129 if (gc_auto_pack_limit <= 0)
130 return 0;
131
132 prepare_packed_git();
133 for (cnt = 0, p = packed_git; p; p = p->next) {
Junio C Hamano17815502007-09-17 00:55:13 -0700134 if (!p->pack_local)
135 continue;
Brandon Casey01af2492008-11-12 11:59:07 -0600136 if (p->pack_keep)
Junio C Hamano17815502007-09-17 00:55:13 -0700137 continue;
138 /*
139 * Perhaps check the size of the pack and count only
140 * very small ones here?
141 */
142 cnt++;
143 }
144 return gc_auto_pack_limit <= cnt;
145}
146
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700147static int need_to_gc(void)
148{
149 /*
Brandon Caseyb14d2552008-03-19 16:53:20 -0500150 * Setting gc.auto to 0 or negative can disable the
151 * automatic gc.
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700152 */
Brandon Caseyb14d2552008-03-19 16:53:20 -0500153 if (gc_auto_threshold <= 0)
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700154 return 0;
155
Junio C Hamano17815502007-09-17 00:55:13 -0700156 /*
157 * If there are too many loose objects, but not too many
158 * packs, we run "repack -d -l". If there are too many packs,
159 * we run "repack -A -d -l". Otherwise we tell the caller
160 * there is no need.
161 */
Junio C Hamano17815502007-09-17 00:55:13 -0700162 if (too_many_packs())
Nicolas Pitre8e8daf32008-12-30 14:45:11 -0500163 append_option(argv_repack,
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100164 prune_expire && !strcmp(prune_expire, "now") ?
165 "-a" : "-A",
Nicolas Pitre8e8daf32008-12-30 14:45:11 -0500166 MAX_ADD);
Junio C Hamano17815502007-09-17 00:55:13 -0700167 else if (!too_many_loose_objects())
168 return 0;
Miklos Vajnabde30542008-04-02 21:34:38 +0200169
Stephan Beyerae98a002009-01-16 20:09:59 +0100170 if (run_hook(NULL, "pre-auto-gc", NULL))
Miklos Vajnabde30542008-04-02 21:34:38 +0200171 return 0;
Junio C Hamano95143f92007-09-17 00:48:39 -0700172 return 1;
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700173}
174
James Bowes6757ada2007-03-13 21:58:22 -0400175int cmd_gc(int argc, const char **argv, const char *prefix)
176{
James Bowes44c637c2007-11-01 21:02:27 -0400177 int aggressive = 0;
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700178 int auto_gc = 0;
Frank Lichtenhelda0c14cb2008-02-29 22:53:39 +0100179 int quiet = 0;
Theodore Tso0d7566a2007-05-09 15:48:39 -0400180 char buf[80];
James Bowes6757ada2007-03-13 21:58:22 -0400181
James Bowes44c637c2007-11-01 21:02:27 -0400182 struct option builtin_gc_options[] = {
Jonathan Nieder8c839682010-11-08 13:54:48 -0600183 OPT__QUIET(&quiet, "suppress progress reporting"),
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100184 { OPTION_STRING, 0, "prune", &prune_expire, "date",
185 "prune unreferenced objects",
186 PARSE_OPT_OPTARG, NULL, (intptr_t)prune_expire },
James Bowes44c637c2007-11-01 21:02:27 -0400187 OPT_BOOLEAN(0, "aggressive", &aggressive, "be more thorough (increased runtime)"),
188 OPT_BOOLEAN(0, "auto", &auto_gc, "enable auto-gc mode"),
189 OPT_END()
190 };
191
Nguyễn Thái Ngọc Duy0c8151b2010-10-22 01:47:19 -0500192 if (argc == 2 && !strcmp(argv[1], "-h"))
193 usage_with_options(builtin_gc_usage, builtin_gc_options);
194
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100195 git_config(gc_config, NULL);
James Bowes6757ada2007-03-13 21:58:22 -0400196
197 if (pack_refs < 0)
198 pack_refs = !is_bare_repository();
199
Stephen Boyd37782922009-05-23 11:53:12 -0700200 argc = parse_options(argc, argv, prefix, builtin_gc_options,
201 builtin_gc_usage, 0);
James Bowes44c637c2007-11-01 21:02:27 -0400202 if (argc > 0)
203 usage_with_options(builtin_gc_usage, builtin_gc_options);
204
205 if (aggressive) {
206 append_option(argv_repack, "-f", MAX_ADD);
Johannes Schindelin1c192f32007-12-06 12:03:38 +0000207 append_option(argv_repack, "--depth=250", MAX_ADD);
James Bowes44c637c2007-11-01 21:02:27 -0400208 if (aggressive_window > 0) {
209 sprintf(buf, "--window=%d", aggressive_window);
210 append_option(argv_repack, buf, MAX_ADD);
James Bowes6757ada2007-03-13 21:58:22 -0400211 }
James Bowes6757ada2007-03-13 21:58:22 -0400212 }
Frank Lichtenhelda0c14cb2008-02-29 22:53:39 +0100213 if (quiet)
214 append_option(argv_repack, "-q", MAX_ADD);
James Bowes6757ada2007-03-13 21:58:22 -0400215
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700216 if (auto_gc) {
217 /*
218 * Auto-gc should be least intrusive as possible.
219 */
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700220 if (!need_to_gc())
221 return 0;
Ævar Arnfjörð Bjarmasonf6908ae2011-02-22 23:42:25 +0000222 if (quiet)
223 fprintf(stderr, _("Auto packing the repository for optimum performance.\n"));
224 else
225 fprintf(stderr,
226 _("Auto packing the repository for optimum performance. You may also\n"
227 "run \"git gc\" manually. See "
Andreas Schwabdaab4ee2011-06-19 10:03:26 +0200228 "\"git help gc\" for more information.\n"));
Brandon Caseya37cce32008-05-09 23:01:56 -0500229 } else
Nicolas Pitre8e8daf32008-12-30 14:45:11 -0500230 append_option(argv_repack,
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100231 prune_expire && !strcmp(prune_expire, "now")
232 ? "-a" : "-A",
Nicolas Pitre8e8daf32008-12-30 14:45:11 -0500233 MAX_ADD);
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700234
James Bowes6757ada2007-03-13 21:58:22 -0400235 if (pack_refs && run_command_v_opt(argv_pack_refs, RUN_GIT_CMD))
236 return error(FAILED_RUN, argv_pack_refs[0]);
237
238 if (run_command_v_opt(argv_reflog, RUN_GIT_CMD))
239 return error(FAILED_RUN, argv_reflog[0]);
240
241 if (run_command_v_opt(argv_repack, RUN_GIT_CMD))
242 return error(FAILED_RUN, argv_repack[0]);
243
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100244 if (prune_expire) {
245 argv_prune[2] = prune_expire;
246 if (run_command_v_opt(argv_prune, RUN_GIT_CMD))
247 return error(FAILED_RUN, argv_prune[0]);
248 }
James Bowes6757ada2007-03-13 21:58:22 -0400249
250 if (run_command_v_opt(argv_rerere, RUN_GIT_CMD))
251 return error(FAILED_RUN, argv_rerere[0]);
252
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700253 if (auto_gc && too_many_loose_objects())
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +0000254 warning(_("There are too many unreachable loose objects; "
255 "run 'git prune' to remove them."));
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700256
James Bowes6757ada2007-03-13 21:58:22 -0400257 return 0;
258}