5 #include "parse-options.h"
6 #include "run-command.h"
9 #include "string-list.h"
10 #include "argv-array.h"
13 static int delta_base_offset = 1;
14 static int pack_kept_objects = -1;
15 static int write_bitmaps;
16 static char *packdir, *packtmp;
18 static const char *const git_repack_usage[] = {
19 N_("git repack [<options>]"),
23 static const char incremental_bitmap_conflict_error[] = N_(
24 "Incremental repacks are incompatible with bitmap indexes. Use\n"
25 "--no-write-bitmap-index or disable the pack.writebitmaps configuration."
29 static int repack_config(const char *var, const char *value, void *cb)
31 if (!strcmp(var, "repack.usedeltabaseoffset")) {
32 delta_base_offset = git_config_bool(var, value);
35 if (!strcmp(var, "repack.packkeptobjects")) {
36 pack_kept_objects = git_config_bool(var, value);
39 if (!strcmp(var, "repack.writebitmaps") ||
40 !strcmp(var, "pack.writebitmaps")) {
41 write_bitmaps = git_config_bool(var, value);
44 return git_default_config(var, value, cb);
48 * Remove temporary $GIT_OBJECT_DIRECTORY/pack/.tmp-$$-pack-* files.
50 static void remove_temporary_files(void)
52 struct strbuf buf = STRBUF_INIT;
53 size_t dirlen, prefixlen;
57 dir = opendir(packdir);
61 /* Point at the slash at the end of ".../objects/pack/" */
62 dirlen = strlen(packdir) + 1;
63 strbuf_addstr(&buf, packtmp);
64 /* Hold the length of ".tmp-%d-pack-" */
65 prefixlen = buf.len - dirlen;
67 while ((e = readdir(dir))) {
68 if (strncmp(e->d_name, buf.buf + dirlen, prefixlen))
70 strbuf_setlen(&buf, dirlen);
71 strbuf_addstr(&buf, e->d_name);
78 static void remove_pack_on_signal(int signo)
80 remove_temporary_files();
86 * Adds all packs hex strings to the fname list, which do not
87 * have a corresponding .keep or .promisor file. These packs are not to
88 * be kept if we are going to pack everything into one file.
90 static void get_non_kept_pack_filenames(struct string_list *fname_list,
91 const struct string_list *extra_keep)
97 if (!(dir = opendir(packdir)))
100 while ((e = readdir(dir)) != NULL) {
104 for (i = 0; i < extra_keep->nr; i++)
105 if (!fspathcmp(e->d_name, extra_keep->items[i].string))
107 if (extra_keep->nr > 0 && i < extra_keep->nr)
110 if (!strip_suffix(e->d_name, ".pack", &len))
113 fname = xmemdupz(e->d_name, len);
115 if (!file_exists(mkpath("%s/%s.keep", packdir, fname)) &&
116 !file_exists(mkpath("%s/%s.promisor", packdir, fname)))
117 string_list_append_nodup(fname_list, fname);
124 static void remove_redundant_pack(const char *dir_name, const char *base_name)
126 const char *exts[] = {".pack", ".idx", ".keep", ".bitmap"};
128 struct strbuf buf = STRBUF_INIT;
131 strbuf_addf(&buf, "%s/%s", dir_name, base_name);
134 for (i = 0; i < ARRAY_SIZE(exts); i++) {
135 strbuf_setlen(&buf, plen);
136 strbuf_addstr(&buf, exts[i]);
139 strbuf_release(&buf);
142 #define ALL_INTO_ONE 1
143 #define LOOSEN_UNREACHABLE 2
145 int cmd_repack(int argc, const char **argv, const char *prefix)
155 struct child_process cmd = CHILD_PROCESS_INIT;
156 struct string_list_item *item;
157 struct string_list names = STRING_LIST_INIT_DUP;
158 struct string_list rollback = STRING_LIST_INIT_NODUP;
159 struct string_list existing_packs = STRING_LIST_INIT_DUP;
160 struct strbuf line = STRBUF_INIT;
161 int i, ext, ret, failed;
164 /* variables to be filled by option parsing */
165 int pack_everything = 0;
166 int delete_redundant = 0;
167 const char *unpack_unreachable = NULL;
168 int keep_unreachable = 0;
169 const char *window = NULL, *window_memory = NULL;
170 const char *depth = NULL;
171 const char *threads = NULL;
172 const char *max_pack_size = NULL;
173 struct string_list keep_pack_list = STRING_LIST_INIT_NODUP;
174 int no_reuse_delta = 0, no_reuse_object = 0;
175 int no_update_server_info = 0;
178 int midx_cleared = 0;
180 struct option builtin_repack_options[] = {
181 OPT_BIT('a', NULL, &pack_everything,
182 N_("pack everything in a single pack"), ALL_INTO_ONE),
183 OPT_BIT('A', NULL, &pack_everything,
184 N_("same as -a, and turn unreachable objects loose"),
185 LOOSEN_UNREACHABLE | ALL_INTO_ONE),
186 OPT_BOOL('d', NULL, &delete_redundant,
187 N_("remove redundant packs, and run git-prune-packed")),
188 OPT_BOOL('f', NULL, &no_reuse_delta,
189 N_("pass --no-reuse-delta to git-pack-objects")),
190 OPT_BOOL('F', NULL, &no_reuse_object,
191 N_("pass --no-reuse-object to git-pack-objects")),
192 OPT_BOOL('n', NULL, &no_update_server_info,
193 N_("do not run git-update-server-info")),
194 OPT__QUIET(&quiet, N_("be quiet")),
195 OPT_BOOL('l', "local", &local,
196 N_("pass --local to git-pack-objects")),
197 OPT_BOOL('b', "write-bitmap-index", &write_bitmaps,
198 N_("write bitmap index")),
199 OPT_STRING(0, "unpack-unreachable", &unpack_unreachable, N_("approxidate"),
200 N_("with -A, do not loosen objects older than this")),
201 OPT_BOOL('k', "keep-unreachable", &keep_unreachable,
202 N_("with -a, repack unreachable objects")),
203 OPT_STRING(0, "window", &window, N_("n"),
204 N_("size of the window used for delta compression")),
205 OPT_STRING(0, "window-memory", &window_memory, N_("bytes"),
206 N_("same as the above, but limit memory size instead of entries count")),
207 OPT_STRING(0, "depth", &depth, N_("n"),
208 N_("limits the maximum delta depth")),
209 OPT_STRING(0, "threads", &threads, N_("n"),
210 N_("limits the maximum number of threads")),
211 OPT_STRING(0, "max-pack-size", &max_pack_size, N_("bytes"),
212 N_("maximum size of each packfile")),
213 OPT_BOOL(0, "pack-kept-objects", &pack_kept_objects,
214 N_("repack objects in packs marked with .keep")),
215 OPT_STRING_LIST(0, "keep-pack", &keep_pack_list, N_("name"),
216 N_("do not repack this pack")),
220 git_config(repack_config, NULL);
222 argc = parse_options(argc, argv, prefix, builtin_repack_options,
223 git_repack_usage, 0);
225 if (delete_redundant && repository_format_precious_objects)
226 die(_("cannot delete packs in a precious-objects repo"));
228 if (keep_unreachable &&
229 (unpack_unreachable || (pack_everything & LOOSEN_UNREACHABLE)))
230 die(_("--keep-unreachable and -A are incompatible"));
232 if (pack_kept_objects < 0)
233 pack_kept_objects = write_bitmaps;
235 if (write_bitmaps && !(pack_everything & ALL_INTO_ONE))
236 die(_(incremental_bitmap_conflict_error));
238 packdir = mkpathdup("%s/pack", get_object_directory());
239 packtmp = mkpathdup("%s/.tmp-%d-pack", packdir, (int)getpid());
241 sigchain_push_common(remove_pack_on_signal);
243 argv_array_push(&cmd.args, "pack-objects");
244 argv_array_push(&cmd.args, "--keep-true-parents");
245 if (!pack_kept_objects)
246 argv_array_push(&cmd.args, "--honor-pack-keep");
247 for (i = 0; i < keep_pack_list.nr; i++)
248 argv_array_pushf(&cmd.args, "--keep-pack=%s",
249 keep_pack_list.items[i].string);
250 argv_array_push(&cmd.args, "--non-empty");
251 argv_array_push(&cmd.args, "--all");
252 argv_array_push(&cmd.args, "--reflog");
253 argv_array_push(&cmd.args, "--indexed-objects");
254 if (repository_format_partial_clone)
255 argv_array_push(&cmd.args, "--exclude-promisor-objects");
257 argv_array_pushf(&cmd.args, "--window=%s", window);
259 argv_array_pushf(&cmd.args, "--window-memory=%s", window_memory);
261 argv_array_pushf(&cmd.args, "--depth=%s", depth);
263 argv_array_pushf(&cmd.args, "--threads=%s", threads);
265 argv_array_pushf(&cmd.args, "--max-pack-size=%s", max_pack_size);
267 argv_array_pushf(&cmd.args, "--no-reuse-delta");
269 argv_array_pushf(&cmd.args, "--no-reuse-object");
271 argv_array_push(&cmd.args, "--write-bitmap-index");
273 if (pack_everything & ALL_INTO_ONE) {
274 get_non_kept_pack_filenames(&existing_packs, &keep_pack_list);
276 if (existing_packs.nr && delete_redundant) {
277 if (unpack_unreachable) {
278 argv_array_pushf(&cmd.args,
279 "--unpack-unreachable=%s",
281 argv_array_push(&cmd.env_array, "GIT_REF_PARANOIA=1");
282 } else if (pack_everything & LOOSEN_UNREACHABLE) {
283 argv_array_push(&cmd.args,
284 "--unpack-unreachable");
285 } else if (keep_unreachable) {
286 argv_array_push(&cmd.args, "--keep-unreachable");
287 argv_array_push(&cmd.args, "--pack-loose-unreachable");
289 argv_array_push(&cmd.env_array, "GIT_REF_PARANOIA=1");
293 argv_array_push(&cmd.args, "--unpacked");
294 argv_array_push(&cmd.args, "--incremental");
298 argv_array_push(&cmd.args, "--local");
300 argv_array_push(&cmd.args, "--quiet");
301 if (delta_base_offset)
302 argv_array_push(&cmd.args, "--delta-base-offset");
304 argv_array_push(&cmd.args, packtmp);
310 ret = start_command(&cmd);
314 out = xfdopen(cmd.out, "r");
315 while (strbuf_getline_lf(&line, out) != EOF) {
317 die("repack: Expecting 40 character sha1 lines only from pack-objects.");
318 string_list_append(&names, line.buf);
321 ret = finish_command(&cmd);
325 if (!names.nr && !quiet)
326 printf("Nothing new to pack.\n");
329 * Ok we have prepared all new packfiles.
330 * First see if there are packs of the same name and if so
331 * if we can move them out of the way (this can happen if we
332 * repacked immediately after packing fully.
335 for_each_string_list_item(item, &names) {
336 for (ext = 0; ext < ARRAY_SIZE(exts); ext++) {
337 char *fname, *fname_old;
340 /* if we move a packfile, it will invalidated the midx */
341 clear_midx_file(get_object_directory());
345 fname = mkpathdup("%s/pack-%s%s", packdir,
346 item->string, exts[ext].name);
347 if (!file_exists(fname)) {
352 fname_old = mkpathdup("%s/old-%s%s", packdir,
353 item->string, exts[ext].name);
354 if (file_exists(fname_old))
355 if (unlink(fname_old))
358 if (!failed && rename(fname, fname_old)) {
364 string_list_append(&rollback, fname);
372 struct string_list rollback_failure = STRING_LIST_INIT_DUP;
373 for_each_string_list_item(item, &rollback) {
374 char *fname, *fname_old;
375 fname = mkpathdup("%s/%s", packdir, item->string);
376 fname_old = mkpathdup("%s/old-%s", packdir, item->string);
377 if (rename(fname_old, fname))
378 string_list_append(&rollback_failure, fname);
383 if (rollback_failure.nr) {
386 "WARNING: Some packs in use have been renamed by\n"
387 "WARNING: prefixing old- to their name, in order to\n"
388 "WARNING: replace them with the new version of the\n"
389 "WARNING: file. But the operation failed, and the\n"
390 "WARNING: attempt to rename them back to their\n"
391 "WARNING: original names also failed.\n"
392 "WARNING: Please rename them in %s manually:\n", packdir);
393 for (i = 0; i < rollback_failure.nr; i++)
394 fprintf(stderr, "WARNING: old-%s -> %s\n",
395 rollback_failure.items[i].string,
396 rollback_failure.items[i].string);
401 /* Now the ones with the same name are out of the way... */
402 for_each_string_list_item(item, &names) {
403 for (ext = 0; ext < ARRAY_SIZE(exts); ext++) {
404 char *fname, *fname_old;
405 struct stat statbuffer;
407 fname = mkpathdup("%s/pack-%s%s",
408 packdir, item->string, exts[ext].name);
409 fname_old = mkpathdup("%s-%s%s",
410 packtmp, item->string, exts[ext].name);
411 if (!stat(fname_old, &statbuffer)) {
412 statbuffer.st_mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH);
413 chmod(fname_old, statbuffer.st_mode);
416 if (exists || !exts[ext].optional) {
417 if (rename(fname_old, fname))
418 die_errno(_("renaming '%s' failed"), fname_old);
425 /* Remove the "old-" files */
426 for_each_string_list_item(item, &names) {
427 for (ext = 0; ext < ARRAY_SIZE(exts); ext++) {
429 fname = mkpathdup("%s/old-%s%s",
433 if (remove_path(fname))
434 warning(_("failed to remove '%s'"), fname);
439 /* End of pack replacement. */
441 if (delete_redundant) {
443 string_list_sort(&names);
444 for_each_string_list_item(item, &existing_packs) {
446 size_t len = strlen(item->string);
449 sha1 = item->string + len - 40;
450 if (!string_list_has_string(&names, sha1))
451 remove_redundant_pack(packdir, item->string);
453 if (!quiet && isatty(2))
454 opts |= PRUNE_PACKED_VERBOSE;
455 prune_packed_objects(opts);
458 if (!no_update_server_info)
459 update_server_info(0);
460 remove_temporary_files();
461 string_list_clear(&names, 0);
462 string_list_clear(&rollback, 0);
463 string_list_clear(&existing_packs, 0);
464 strbuf_release(&line);