The sixth batch
[alt-git.git] / builtin / pack-objects.c
blobcd2396896dd6ed327aae06d323f992fd538a3281
1 #include "builtin.h"
2 #include "environment.h"
3 #include "gettext.h"
4 #include "hex.h"
5 #include "repository.h"
6 #include "config.h"
7 #include "attr.h"
8 #include "object.h"
9 #include "commit.h"
10 #include "tag.h"
11 #include "delta.h"
12 #include "pack.h"
13 #include "pack-revindex.h"
14 #include "csum-file.h"
15 #include "tree-walk.h"
16 #include "diff.h"
17 #include "revision.h"
18 #include "list-objects.h"
19 #include "list-objects-filter-options.h"
20 #include "pack-objects.h"
21 #include "progress.h"
22 #include "refs.h"
23 #include "streaming.h"
24 #include "thread-utils.h"
25 #include "pack-bitmap.h"
26 #include "delta-islands.h"
27 #include "reachable.h"
28 #include "oid-array.h"
29 #include "strvec.h"
30 #include "list.h"
31 #include "packfile.h"
32 #include "object-file.h"
33 #include "object-store-ll.h"
34 #include "replace-object.h"
35 #include "dir.h"
36 #include "midx.h"
37 #include "trace2.h"
38 #include "shallow.h"
39 #include "promisor-remote.h"
40 #include "pack-mtimes.h"
41 #include "parse-options.h"
44 * Objects we are going to pack are collected in the `to_pack` structure.
45 * It contains an array (dynamically expanded) of the object data, and a map
46 * that can resolve SHA1s to their position in the array.
48 static struct packing_data to_pack;
50 static inline struct object_entry *oe_delta(
51 const struct packing_data *pack,
52 const struct object_entry *e)
54 if (!e->delta_idx)
55 return NULL;
56 if (e->ext_base)
57 return &pack->ext_bases[e->delta_idx - 1];
58 else
59 return &pack->objects[e->delta_idx - 1];
62 static inline unsigned long oe_delta_size(struct packing_data *pack,
63 const struct object_entry *e)
65 if (e->delta_size_valid)
66 return e->delta_size_;
69 * pack->delta_size[] can't be NULL because oe_set_delta_size()
70 * must have been called when a new delta is saved with
71 * oe_set_delta().
72 * If oe_delta() returns NULL (i.e. default state, which means
73 * delta_size_valid is also false), then the caller must never
74 * call oe_delta_size().
76 return pack->delta_size[e - pack->objects];
79 unsigned long oe_get_size_slow(struct packing_data *pack,
80 const struct object_entry *e);
82 static inline unsigned long oe_size(struct packing_data *pack,
83 const struct object_entry *e)
85 if (e->size_valid)
86 return e->size_;
88 return oe_get_size_slow(pack, e);
91 static inline void oe_set_delta(struct packing_data *pack,
92 struct object_entry *e,
93 struct object_entry *delta)
95 if (delta)
96 e->delta_idx = (delta - pack->objects) + 1;
97 else
98 e->delta_idx = 0;
101 static inline struct object_entry *oe_delta_sibling(
102 const struct packing_data *pack,
103 const struct object_entry *e)
105 if (e->delta_sibling_idx)
106 return &pack->objects[e->delta_sibling_idx - 1];
107 return NULL;
110 static inline struct object_entry *oe_delta_child(
111 const struct packing_data *pack,
112 const struct object_entry *e)
114 if (e->delta_child_idx)
115 return &pack->objects[e->delta_child_idx - 1];
116 return NULL;
119 static inline void oe_set_delta_child(struct packing_data *pack,
120 struct object_entry *e,
121 struct object_entry *delta)
123 if (delta)
124 e->delta_child_idx = (delta - pack->objects) + 1;
125 else
126 e->delta_child_idx = 0;
129 static inline void oe_set_delta_sibling(struct packing_data *pack,
130 struct object_entry *e,
131 struct object_entry *delta)
133 if (delta)
134 e->delta_sibling_idx = (delta - pack->objects) + 1;
135 else
136 e->delta_sibling_idx = 0;
139 static inline void oe_set_size(struct packing_data *pack,
140 struct object_entry *e,
141 unsigned long size)
143 if (size < pack->oe_size_limit) {
144 e->size_ = size;
145 e->size_valid = 1;
146 } else {
147 e->size_valid = 0;
148 if (oe_get_size_slow(pack, e) != size)
149 BUG("'size' is supposed to be the object size!");
153 static inline void oe_set_delta_size(struct packing_data *pack,
154 struct object_entry *e,
155 unsigned long size)
157 if (size < pack->oe_delta_size_limit) {
158 e->delta_size_ = size;
159 e->delta_size_valid = 1;
160 } else {
161 packing_data_lock(pack);
162 if (!pack->delta_size)
163 ALLOC_ARRAY(pack->delta_size, pack->nr_alloc);
164 packing_data_unlock(pack);
166 pack->delta_size[e - pack->objects] = size;
167 e->delta_size_valid = 0;
171 #define IN_PACK(obj) oe_in_pack(&to_pack, obj)
172 #define SIZE(obj) oe_size(&to_pack, obj)
173 #define SET_SIZE(obj,size) oe_set_size(&to_pack, obj, size)
174 #define DELTA_SIZE(obj) oe_delta_size(&to_pack, obj)
175 #define DELTA(obj) oe_delta(&to_pack, obj)
176 #define DELTA_CHILD(obj) oe_delta_child(&to_pack, obj)
177 #define DELTA_SIBLING(obj) oe_delta_sibling(&to_pack, obj)
178 #define SET_DELTA(obj, val) oe_set_delta(&to_pack, obj, val)
179 #define SET_DELTA_EXT(obj, oid) oe_set_delta_ext(&to_pack, obj, oid)
180 #define SET_DELTA_SIZE(obj, val) oe_set_delta_size(&to_pack, obj, val)
181 #define SET_DELTA_CHILD(obj, val) oe_set_delta_child(&to_pack, obj, val)
182 #define SET_DELTA_SIBLING(obj, val) oe_set_delta_sibling(&to_pack, obj, val)
184 static const char *pack_usage[] = {
185 N_("git pack-objects --stdout [<options>] [< <ref-list> | < <object-list>]"),
186 N_("git pack-objects [<options>] <base-name> [< <ref-list> | < <object-list>]"),
187 NULL
190 static struct pack_idx_entry **written_list;
191 static uint32_t nr_result, nr_written, nr_seen;
192 static struct bitmap_index *bitmap_git;
193 static uint32_t write_layer;
195 static int non_empty;
196 static int reuse_delta = 1, reuse_object = 1;
197 static int keep_unreachable, unpack_unreachable, include_tag;
198 static timestamp_t unpack_unreachable_expiration;
199 static int pack_loose_unreachable;
200 static int cruft;
201 static timestamp_t cruft_expiration;
202 static int local;
203 static int have_non_local_packs;
204 static int incremental;
205 static int ignore_packed_keep_on_disk;
206 static int ignore_packed_keep_in_core;
207 static int allow_ofs_delta;
208 static struct pack_idx_option pack_idx_opts;
209 static const char *base_name;
210 static int progress = 1;
211 static int window = 10;
212 static unsigned long pack_size_limit;
213 static int depth = 50;
214 static int delta_search_threads;
215 static int pack_to_stdout;
216 static int sparse;
217 static int thin;
218 static int num_preferred_base;
219 static struct progress *progress_state;
221 static struct bitmapped_pack *reuse_packfiles;
222 static size_t reuse_packfiles_nr;
223 static size_t reuse_packfiles_used_nr;
224 static uint32_t reuse_packfile_objects;
225 static struct bitmap *reuse_packfile_bitmap;
227 static int use_bitmap_index_default = 1;
228 static int use_bitmap_index = -1;
229 static enum {
230 NO_PACK_REUSE = 0,
231 SINGLE_PACK_REUSE,
232 MULTI_PACK_REUSE,
233 } allow_pack_reuse = SINGLE_PACK_REUSE;
234 static enum {
235 WRITE_BITMAP_FALSE = 0,
236 WRITE_BITMAP_QUIET,
237 WRITE_BITMAP_TRUE,
238 } write_bitmap_index;
239 static uint16_t write_bitmap_options = BITMAP_OPT_HASH_CACHE;
241 static int exclude_promisor_objects;
243 static int use_delta_islands;
245 static unsigned long delta_cache_size = 0;
246 static unsigned long max_delta_cache_size = DEFAULT_DELTA_CACHE_SIZE;
247 static unsigned long cache_max_small_delta_size = 1000;
249 static unsigned long window_memory_limit = 0;
251 static struct string_list uri_protocols = STRING_LIST_INIT_NODUP;
253 enum missing_action {
254 MA_ERROR = 0, /* fail if any missing objects are encountered */
255 MA_ALLOW_ANY, /* silently allow ALL missing objects */
256 MA_ALLOW_PROMISOR, /* silently allow all missing PROMISOR objects */
258 static enum missing_action arg_missing_action;
259 static show_object_fn fn_show_object;
261 struct configured_exclusion {
262 struct oidmap_entry e;
263 char *pack_hash_hex;
264 char *uri;
266 static struct oidmap configured_exclusions;
268 static struct oidset excluded_by_config;
271 * stats
273 static uint32_t written, written_delta;
274 static uint32_t reused, reused_delta;
277 * Indexed commits
279 static struct commit **indexed_commits;
280 static unsigned int indexed_commits_nr;
281 static unsigned int indexed_commits_alloc;
283 static void index_commit_for_bitmap(struct commit *commit)
285 if (indexed_commits_nr >= indexed_commits_alloc) {
286 indexed_commits_alloc = (indexed_commits_alloc + 32) * 2;
287 REALLOC_ARRAY(indexed_commits, indexed_commits_alloc);
290 indexed_commits[indexed_commits_nr++] = commit;
293 static void *get_delta(struct object_entry *entry)
295 unsigned long size, base_size, delta_size;
296 void *buf, *base_buf, *delta_buf;
297 enum object_type type;
299 buf = repo_read_object_file(the_repository, &entry->idx.oid, &type,
300 &size);
301 if (!buf)
302 die(_("unable to read %s"), oid_to_hex(&entry->idx.oid));
303 base_buf = repo_read_object_file(the_repository,
304 &DELTA(entry)->idx.oid, &type,
305 &base_size);
306 if (!base_buf)
307 die("unable to read %s",
308 oid_to_hex(&DELTA(entry)->idx.oid));
309 delta_buf = diff_delta(base_buf, base_size,
310 buf, size, &delta_size, 0);
312 * We successfully computed this delta once but dropped it for
313 * memory reasons. Something is very wrong if this time we
314 * recompute and create a different delta.
316 if (!delta_buf || delta_size != DELTA_SIZE(entry))
317 BUG("delta size changed");
318 free(buf);
319 free(base_buf);
320 return delta_buf;
323 static unsigned long do_compress(void **pptr, unsigned long size)
325 git_zstream stream;
326 void *in, *out;
327 unsigned long maxsize;
329 git_deflate_init(&stream, pack_compression_level);
330 maxsize = git_deflate_bound(&stream, size);
332 in = *pptr;
333 out = xmalloc(maxsize);
334 *pptr = out;
336 stream.next_in = in;
337 stream.avail_in = size;
338 stream.next_out = out;
339 stream.avail_out = maxsize;
340 while (git_deflate(&stream, Z_FINISH) == Z_OK)
341 ; /* nothing */
342 git_deflate_end(&stream);
344 free(in);
345 return stream.total_out;
348 static unsigned long write_large_blob_data(struct git_istream *st, struct hashfile *f,
349 const struct object_id *oid)
351 git_zstream stream;
352 unsigned char ibuf[1024 * 16];
353 unsigned char obuf[1024 * 16];
354 unsigned long olen = 0;
356 git_deflate_init(&stream, pack_compression_level);
358 for (;;) {
359 ssize_t readlen;
360 int zret = Z_OK;
361 readlen = read_istream(st, ibuf, sizeof(ibuf));
362 if (readlen == -1)
363 die(_("unable to read %s"), oid_to_hex(oid));
365 stream.next_in = ibuf;
366 stream.avail_in = readlen;
367 while ((stream.avail_in || readlen == 0) &&
368 (zret == Z_OK || zret == Z_BUF_ERROR)) {
369 stream.next_out = obuf;
370 stream.avail_out = sizeof(obuf);
371 zret = git_deflate(&stream, readlen ? 0 : Z_FINISH);
372 hashwrite(f, obuf, stream.next_out - obuf);
373 olen += stream.next_out - obuf;
375 if (stream.avail_in)
376 die(_("deflate error (%d)"), zret);
377 if (readlen == 0) {
378 if (zret != Z_STREAM_END)
379 die(_("deflate error (%d)"), zret);
380 break;
383 git_deflate_end(&stream);
384 return olen;
388 * we are going to reuse the existing object data as is. make
389 * sure it is not corrupt.
391 static int check_pack_inflate(struct packed_git *p,
392 struct pack_window **w_curs,
393 off_t offset,
394 off_t len,
395 unsigned long expect)
397 git_zstream stream;
398 unsigned char fakebuf[4096], *in;
399 int st;
401 memset(&stream, 0, sizeof(stream));
402 git_inflate_init(&stream);
403 do {
404 in = use_pack(p, w_curs, offset, &stream.avail_in);
405 stream.next_in = in;
406 stream.next_out = fakebuf;
407 stream.avail_out = sizeof(fakebuf);
408 st = git_inflate(&stream, Z_FINISH);
409 offset += stream.next_in - in;
410 } while (st == Z_OK || st == Z_BUF_ERROR);
411 git_inflate_end(&stream);
412 return (st == Z_STREAM_END &&
413 stream.total_out == expect &&
414 stream.total_in == len) ? 0 : -1;
417 static void copy_pack_data(struct hashfile *f,
418 struct packed_git *p,
419 struct pack_window **w_curs,
420 off_t offset,
421 off_t len)
423 unsigned char *in;
424 unsigned long avail;
426 while (len) {
427 in = use_pack(p, w_curs, offset, &avail);
428 if (avail > len)
429 avail = (unsigned long)len;
430 hashwrite(f, in, avail);
431 offset += avail;
432 len -= avail;
436 static inline int oe_size_greater_than(struct packing_data *pack,
437 const struct object_entry *lhs,
438 unsigned long rhs)
440 if (lhs->size_valid)
441 return lhs->size_ > rhs;
442 if (rhs < pack->oe_size_limit) /* rhs < 2^x <= lhs ? */
443 return 1;
444 return oe_get_size_slow(pack, lhs) > rhs;
447 /* Return 0 if we will bust the pack-size limit */
448 static unsigned long write_no_reuse_object(struct hashfile *f, struct object_entry *entry,
449 unsigned long limit, int usable_delta)
451 unsigned long size, datalen;
452 unsigned char header[MAX_PACK_OBJECT_HEADER],
453 dheader[MAX_PACK_OBJECT_HEADER];
454 unsigned hdrlen;
455 enum object_type type;
456 void *buf;
457 struct git_istream *st = NULL;
458 const unsigned hashsz = the_hash_algo->rawsz;
460 if (!usable_delta) {
461 if (oe_type(entry) == OBJ_BLOB &&
462 oe_size_greater_than(&to_pack, entry, big_file_threshold) &&
463 (st = open_istream(the_repository, &entry->idx.oid, &type,
464 &size, NULL)) != NULL)
465 buf = NULL;
466 else {
467 buf = repo_read_object_file(the_repository,
468 &entry->idx.oid, &type,
469 &size);
470 if (!buf)
471 die(_("unable to read %s"),
472 oid_to_hex(&entry->idx.oid));
475 * make sure no cached delta data remains from a
476 * previous attempt before a pack split occurred.
478 FREE_AND_NULL(entry->delta_data);
479 entry->z_delta_size = 0;
480 } else if (entry->delta_data) {
481 size = DELTA_SIZE(entry);
482 buf = entry->delta_data;
483 entry->delta_data = NULL;
484 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
485 OBJ_OFS_DELTA : OBJ_REF_DELTA;
486 } else {
487 buf = get_delta(entry);
488 size = DELTA_SIZE(entry);
489 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
490 OBJ_OFS_DELTA : OBJ_REF_DELTA;
493 if (st) /* large blob case, just assume we don't compress well */
494 datalen = size;
495 else if (entry->z_delta_size)
496 datalen = entry->z_delta_size;
497 else
498 datalen = do_compress(&buf, size);
501 * The object header is a byte of 'type' followed by zero or
502 * more bytes of length.
504 hdrlen = encode_in_pack_object_header(header, sizeof(header),
505 type, size);
507 if (type == OBJ_OFS_DELTA) {
509 * Deltas with relative base contain an additional
510 * encoding of the relative offset for the delta
511 * base from this object's position in the pack.
513 off_t ofs = entry->idx.offset - DELTA(entry)->idx.offset;
514 unsigned pos = sizeof(dheader) - 1;
515 dheader[pos] = ofs & 127;
516 while (ofs >>= 7)
517 dheader[--pos] = 128 | (--ofs & 127);
518 if (limit && hdrlen + sizeof(dheader) - pos + datalen + hashsz >= limit) {
519 if (st)
520 close_istream(st);
521 free(buf);
522 return 0;
524 hashwrite(f, header, hdrlen);
525 hashwrite(f, dheader + pos, sizeof(dheader) - pos);
526 hdrlen += sizeof(dheader) - pos;
527 } else if (type == OBJ_REF_DELTA) {
529 * Deltas with a base reference contain
530 * additional bytes for the base object ID.
532 if (limit && hdrlen + hashsz + datalen + hashsz >= limit) {
533 if (st)
534 close_istream(st);
535 free(buf);
536 return 0;
538 hashwrite(f, header, hdrlen);
539 hashwrite(f, DELTA(entry)->idx.oid.hash, hashsz);
540 hdrlen += hashsz;
541 } else {
542 if (limit && hdrlen + datalen + hashsz >= limit) {
543 if (st)
544 close_istream(st);
545 free(buf);
546 return 0;
548 hashwrite(f, header, hdrlen);
550 if (st) {
551 datalen = write_large_blob_data(st, f, &entry->idx.oid);
552 close_istream(st);
553 } else {
554 hashwrite(f, buf, datalen);
555 free(buf);
558 return hdrlen + datalen;
561 /* Return 0 if we will bust the pack-size limit */
562 static off_t write_reuse_object(struct hashfile *f, struct object_entry *entry,
563 unsigned long limit, int usable_delta)
565 struct packed_git *p = IN_PACK(entry);
566 struct pack_window *w_curs = NULL;
567 uint32_t pos;
568 off_t offset;
569 enum object_type type = oe_type(entry);
570 off_t datalen;
571 unsigned char header[MAX_PACK_OBJECT_HEADER],
572 dheader[MAX_PACK_OBJECT_HEADER];
573 unsigned hdrlen;
574 const unsigned hashsz = the_hash_algo->rawsz;
575 unsigned long entry_size = SIZE(entry);
577 if (DELTA(entry))
578 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
579 OBJ_OFS_DELTA : OBJ_REF_DELTA;
580 hdrlen = encode_in_pack_object_header(header, sizeof(header),
581 type, entry_size);
583 offset = entry->in_pack_offset;
584 if (offset_to_pack_pos(p, offset, &pos) < 0)
585 die(_("write_reuse_object: could not locate %s, expected at "
586 "offset %"PRIuMAX" in pack %s"),
587 oid_to_hex(&entry->idx.oid), (uintmax_t)offset,
588 p->pack_name);
589 datalen = pack_pos_to_offset(p, pos + 1) - offset;
590 if (!pack_to_stdout && p->index_version > 1 &&
591 check_pack_crc(p, &w_curs, offset, datalen,
592 pack_pos_to_index(p, pos))) {
593 error(_("bad packed object CRC for %s"),
594 oid_to_hex(&entry->idx.oid));
595 unuse_pack(&w_curs);
596 return write_no_reuse_object(f, entry, limit, usable_delta);
599 offset += entry->in_pack_header_size;
600 datalen -= entry->in_pack_header_size;
602 if (!pack_to_stdout && p->index_version == 1 &&
603 check_pack_inflate(p, &w_curs, offset, datalen, entry_size)) {
604 error(_("corrupt packed object for %s"),
605 oid_to_hex(&entry->idx.oid));
606 unuse_pack(&w_curs);
607 return write_no_reuse_object(f, entry, limit, usable_delta);
610 if (type == OBJ_OFS_DELTA) {
611 off_t ofs = entry->idx.offset - DELTA(entry)->idx.offset;
612 unsigned pos = sizeof(dheader) - 1;
613 dheader[pos] = ofs & 127;
614 while (ofs >>= 7)
615 dheader[--pos] = 128 | (--ofs & 127);
616 if (limit && hdrlen + sizeof(dheader) - pos + datalen + hashsz >= limit) {
617 unuse_pack(&w_curs);
618 return 0;
620 hashwrite(f, header, hdrlen);
621 hashwrite(f, dheader + pos, sizeof(dheader) - pos);
622 hdrlen += sizeof(dheader) - pos;
623 reused_delta++;
624 } else if (type == OBJ_REF_DELTA) {
625 if (limit && hdrlen + hashsz + datalen + hashsz >= limit) {
626 unuse_pack(&w_curs);
627 return 0;
629 hashwrite(f, header, hdrlen);
630 hashwrite(f, DELTA(entry)->idx.oid.hash, hashsz);
631 hdrlen += hashsz;
632 reused_delta++;
633 } else {
634 if (limit && hdrlen + datalen + hashsz >= limit) {
635 unuse_pack(&w_curs);
636 return 0;
638 hashwrite(f, header, hdrlen);
640 copy_pack_data(f, p, &w_curs, offset, datalen);
641 unuse_pack(&w_curs);
642 reused++;
643 return hdrlen + datalen;
646 /* Return 0 if we will bust the pack-size limit */
647 static off_t write_object(struct hashfile *f,
648 struct object_entry *entry,
649 off_t write_offset)
651 unsigned long limit;
652 off_t len;
653 int usable_delta, to_reuse;
655 if (!pack_to_stdout)
656 crc32_begin(f);
658 /* apply size limit if limited packsize and not first object */
659 if (!pack_size_limit || !nr_written)
660 limit = 0;
661 else if (pack_size_limit <= write_offset)
663 * the earlier object did not fit the limit; avoid
664 * mistaking this with unlimited (i.e. limit = 0).
666 limit = 1;
667 else
668 limit = pack_size_limit - write_offset;
670 if (!DELTA(entry))
671 usable_delta = 0; /* no delta */
672 else if (!pack_size_limit)
673 usable_delta = 1; /* unlimited packfile */
674 else if (DELTA(entry)->idx.offset == (off_t)-1)
675 usable_delta = 0; /* base was written to another pack */
676 else if (DELTA(entry)->idx.offset)
677 usable_delta = 1; /* base already exists in this pack */
678 else
679 usable_delta = 0; /* base could end up in another pack */
681 if (!reuse_object)
682 to_reuse = 0; /* explicit */
683 else if (!IN_PACK(entry))
684 to_reuse = 0; /* can't reuse what we don't have */
685 else if (oe_type(entry) == OBJ_REF_DELTA ||
686 oe_type(entry) == OBJ_OFS_DELTA)
687 /* check_object() decided it for us ... */
688 to_reuse = usable_delta;
689 /* ... but pack split may override that */
690 else if (oe_type(entry) != entry->in_pack_type)
691 to_reuse = 0; /* pack has delta which is unusable */
692 else if (DELTA(entry))
693 to_reuse = 0; /* we want to pack afresh */
694 else
695 to_reuse = 1; /* we have it in-pack undeltified,
696 * and we do not need to deltify it.
699 if (!to_reuse)
700 len = write_no_reuse_object(f, entry, limit, usable_delta);
701 else
702 len = write_reuse_object(f, entry, limit, usable_delta);
703 if (!len)
704 return 0;
706 if (usable_delta)
707 written_delta++;
708 written++;
709 if (!pack_to_stdout)
710 entry->idx.crc32 = crc32_end(f);
711 return len;
714 enum write_one_status {
715 WRITE_ONE_SKIP = -1, /* already written */
716 WRITE_ONE_BREAK = 0, /* writing this will bust the limit; not written */
717 WRITE_ONE_WRITTEN = 1, /* normal */
718 WRITE_ONE_RECURSIVE = 2 /* already scheduled to be written */
721 static enum write_one_status write_one(struct hashfile *f,
722 struct object_entry *e,
723 off_t *offset)
725 off_t size;
726 int recursing;
729 * we set offset to 1 (which is an impossible value) to mark
730 * the fact that this object is involved in "write its base
731 * first before writing a deltified object" recursion.
733 recursing = (e->idx.offset == 1);
734 if (recursing) {
735 warning(_("recursive delta detected for object %s"),
736 oid_to_hex(&e->idx.oid));
737 return WRITE_ONE_RECURSIVE;
738 } else if (e->idx.offset || e->preferred_base) {
739 /* offset is non zero if object is written already. */
740 return WRITE_ONE_SKIP;
743 /* if we are deltified, write out base object first. */
744 if (DELTA(e)) {
745 e->idx.offset = 1; /* now recurse */
746 switch (write_one(f, DELTA(e), offset)) {
747 case WRITE_ONE_RECURSIVE:
748 /* we cannot depend on this one */
749 SET_DELTA(e, NULL);
750 break;
751 default:
752 break;
753 case WRITE_ONE_BREAK:
754 e->idx.offset = recursing;
755 return WRITE_ONE_BREAK;
759 e->idx.offset = *offset;
760 size = write_object(f, e, *offset);
761 if (!size) {
762 e->idx.offset = recursing;
763 return WRITE_ONE_BREAK;
765 written_list[nr_written++] = &e->idx;
767 /* make sure off_t is sufficiently large not to wrap */
768 if (signed_add_overflows(*offset, size))
769 die(_("pack too large for current definition of off_t"));
770 *offset += size;
771 return WRITE_ONE_WRITTEN;
774 static int mark_tagged(const char *path UNUSED, const struct object_id *oid,
775 int flag UNUSED, void *cb_data UNUSED)
777 struct object_id peeled;
778 struct object_entry *entry = packlist_find(&to_pack, oid);
780 if (entry)
781 entry->tagged = 1;
782 if (!peel_iterated_oid(oid, &peeled)) {
783 entry = packlist_find(&to_pack, &peeled);
784 if (entry)
785 entry->tagged = 1;
787 return 0;
790 static inline unsigned char oe_layer(struct packing_data *pack,
791 struct object_entry *e)
793 if (!pack->layer)
794 return 0;
795 return pack->layer[e - pack->objects];
798 static inline void add_to_write_order(struct object_entry **wo,
799 unsigned int *endp,
800 struct object_entry *e)
802 if (e->filled || oe_layer(&to_pack, e) != write_layer)
803 return;
804 wo[(*endp)++] = e;
805 e->filled = 1;
808 static void add_descendants_to_write_order(struct object_entry **wo,
809 unsigned int *endp,
810 struct object_entry *e)
812 int add_to_order = 1;
813 while (e) {
814 if (add_to_order) {
815 struct object_entry *s;
816 /* add this node... */
817 add_to_write_order(wo, endp, e);
818 /* all its siblings... */
819 for (s = DELTA_SIBLING(e); s; s = DELTA_SIBLING(s)) {
820 add_to_write_order(wo, endp, s);
823 /* drop down a level to add left subtree nodes if possible */
824 if (DELTA_CHILD(e)) {
825 add_to_order = 1;
826 e = DELTA_CHILD(e);
827 } else {
828 add_to_order = 0;
829 /* our sibling might have some children, it is next */
830 if (DELTA_SIBLING(e)) {
831 e = DELTA_SIBLING(e);
832 continue;
834 /* go back to our parent node */
835 e = DELTA(e);
836 while (e && !DELTA_SIBLING(e)) {
837 /* we're on the right side of a subtree, keep
838 * going up until we can go right again */
839 e = DELTA(e);
841 if (!e) {
842 /* done- we hit our original root node */
843 return;
845 /* pass it off to sibling at this level */
846 e = DELTA_SIBLING(e);
851 static void add_family_to_write_order(struct object_entry **wo,
852 unsigned int *endp,
853 struct object_entry *e)
855 struct object_entry *root;
857 for (root = e; DELTA(root); root = DELTA(root))
858 ; /* nothing */
859 add_descendants_to_write_order(wo, endp, root);
862 static void compute_layer_order(struct object_entry **wo, unsigned int *wo_end)
864 unsigned int i, last_untagged;
865 struct object_entry *objects = to_pack.objects;
867 for (i = 0; i < to_pack.nr_objects; i++) {
868 if (objects[i].tagged)
869 break;
870 add_to_write_order(wo, wo_end, &objects[i]);
872 last_untagged = i;
875 * Then fill all the tagged tips.
877 for (; i < to_pack.nr_objects; i++) {
878 if (objects[i].tagged)
879 add_to_write_order(wo, wo_end, &objects[i]);
883 * And then all remaining commits and tags.
885 for (i = last_untagged; i < to_pack.nr_objects; i++) {
886 if (oe_type(&objects[i]) != OBJ_COMMIT &&
887 oe_type(&objects[i]) != OBJ_TAG)
888 continue;
889 add_to_write_order(wo, wo_end, &objects[i]);
893 * And then all the trees.
895 for (i = last_untagged; i < to_pack.nr_objects; i++) {
896 if (oe_type(&objects[i]) != OBJ_TREE)
897 continue;
898 add_to_write_order(wo, wo_end, &objects[i]);
902 * Finally all the rest in really tight order
904 for (i = last_untagged; i < to_pack.nr_objects; i++) {
905 if (!objects[i].filled && oe_layer(&to_pack, &objects[i]) == write_layer)
906 add_family_to_write_order(wo, wo_end, &objects[i]);
910 static struct object_entry **compute_write_order(void)
912 uint32_t max_layers = 1;
913 unsigned int i, wo_end;
915 struct object_entry **wo;
916 struct object_entry *objects = to_pack.objects;
918 for (i = 0; i < to_pack.nr_objects; i++) {
919 objects[i].tagged = 0;
920 objects[i].filled = 0;
921 SET_DELTA_CHILD(&objects[i], NULL);
922 SET_DELTA_SIBLING(&objects[i], NULL);
926 * Fully connect delta_child/delta_sibling network.
927 * Make sure delta_sibling is sorted in the original
928 * recency order.
930 for (i = to_pack.nr_objects; i > 0;) {
931 struct object_entry *e = &objects[--i];
932 if (!DELTA(e))
933 continue;
934 /* Mark me as the first child */
935 e->delta_sibling_idx = DELTA(e)->delta_child_idx;
936 SET_DELTA_CHILD(DELTA(e), e);
940 * Mark objects that are at the tip of tags.
942 refs_for_each_tag_ref(get_main_ref_store(the_repository), mark_tagged,
943 NULL);
945 if (use_delta_islands) {
946 max_layers = compute_pack_layers(&to_pack);
947 free_island_marks();
950 ALLOC_ARRAY(wo, to_pack.nr_objects);
951 wo_end = 0;
953 for (; write_layer < max_layers; ++write_layer)
954 compute_layer_order(wo, &wo_end);
956 if (wo_end != to_pack.nr_objects)
957 die(_("ordered %u objects, expected %"PRIu32),
958 wo_end, to_pack.nr_objects);
960 return wo;
965 * A reused set of objects. All objects in a chunk have the same
966 * relative position in the original packfile and the generated
967 * packfile.
970 static struct reused_chunk {
971 /* The offset of the first object of this chunk in the original
972 * packfile. */
973 off_t original;
974 /* The difference for "original" minus the offset of the first object of
975 * this chunk in the generated packfile. */
976 off_t difference;
977 } *reused_chunks;
978 static int reused_chunks_nr;
979 static int reused_chunks_alloc;
981 static void record_reused_object(off_t where, off_t offset)
983 if (reused_chunks_nr && reused_chunks[reused_chunks_nr-1].difference == offset)
984 return;
986 ALLOC_GROW(reused_chunks, reused_chunks_nr + 1,
987 reused_chunks_alloc);
988 reused_chunks[reused_chunks_nr].original = where;
989 reused_chunks[reused_chunks_nr].difference = offset;
990 reused_chunks_nr++;
994 * Binary search to find the chunk that "where" is in. Note
995 * that we're not looking for an exact match, just the first
996 * chunk that contains it (which implicitly ends at the start
997 * of the next chunk.
999 static off_t find_reused_offset(off_t where)
1001 int lo = 0, hi = reused_chunks_nr;
1002 while (lo < hi) {
1003 int mi = lo + ((hi - lo) / 2);
1004 if (where == reused_chunks[mi].original)
1005 return reused_chunks[mi].difference;
1006 if (where < reused_chunks[mi].original)
1007 hi = mi;
1008 else
1009 lo = mi + 1;
1013 * The first chunk starts at zero, so we can't have gone below
1014 * there.
1016 assert(lo);
1017 return reused_chunks[lo-1].difference;
1020 static void write_reused_pack_one(struct packed_git *reuse_packfile,
1021 size_t pos, struct hashfile *out,
1022 off_t pack_start,
1023 struct pack_window **w_curs)
1025 off_t offset, next, cur;
1026 enum object_type type;
1027 unsigned long size;
1029 offset = pack_pos_to_offset(reuse_packfile, pos);
1030 next = pack_pos_to_offset(reuse_packfile, pos + 1);
1032 record_reused_object(offset,
1033 offset - (hashfile_total(out) - pack_start));
1035 cur = offset;
1036 type = unpack_object_header(reuse_packfile, w_curs, &cur, &size);
1037 assert(type >= 0);
1039 if (type == OBJ_OFS_DELTA) {
1040 off_t base_offset;
1041 off_t fixup;
1043 unsigned char header[MAX_PACK_OBJECT_HEADER];
1044 unsigned len;
1046 base_offset = get_delta_base(reuse_packfile, w_curs, &cur, type, offset);
1047 assert(base_offset != 0);
1049 /* Convert to REF_DELTA if we must... */
1050 if (!allow_ofs_delta) {
1051 uint32_t base_pos;
1052 struct object_id base_oid;
1054 if (offset_to_pack_pos(reuse_packfile, base_offset, &base_pos) < 0)
1055 die(_("expected object at offset %"PRIuMAX" "
1056 "in pack %s"),
1057 (uintmax_t)base_offset,
1058 reuse_packfile->pack_name);
1060 nth_packed_object_id(&base_oid, reuse_packfile,
1061 pack_pos_to_index(reuse_packfile, base_pos));
1063 len = encode_in_pack_object_header(header, sizeof(header),
1064 OBJ_REF_DELTA, size);
1065 hashwrite(out, header, len);
1066 hashwrite(out, base_oid.hash, the_hash_algo->rawsz);
1067 copy_pack_data(out, reuse_packfile, w_curs, cur, next - cur);
1068 return;
1071 /* Otherwise see if we need to rewrite the offset... */
1072 fixup = find_reused_offset(offset) -
1073 find_reused_offset(base_offset);
1074 if (fixup) {
1075 unsigned char ofs_header[10];
1076 unsigned i, ofs_len;
1077 off_t ofs = offset - base_offset - fixup;
1079 len = encode_in_pack_object_header(header, sizeof(header),
1080 OBJ_OFS_DELTA, size);
1082 i = sizeof(ofs_header) - 1;
1083 ofs_header[i] = ofs & 127;
1084 while (ofs >>= 7)
1085 ofs_header[--i] = 128 | (--ofs & 127);
1087 ofs_len = sizeof(ofs_header) - i;
1089 hashwrite(out, header, len);
1090 hashwrite(out, ofs_header + sizeof(ofs_header) - ofs_len, ofs_len);
1091 copy_pack_data(out, reuse_packfile, w_curs, cur, next - cur);
1092 return;
1095 /* ...otherwise we have no fixup, and can write it verbatim */
1098 copy_pack_data(out, reuse_packfile, w_curs, offset, next - offset);
1101 static size_t write_reused_pack_verbatim(struct bitmapped_pack *reuse_packfile,
1102 struct hashfile *out,
1103 off_t pack_start,
1104 struct pack_window **w_curs)
1106 size_t pos = reuse_packfile->bitmap_pos;
1107 size_t end;
1109 if (pos % BITS_IN_EWORD) {
1110 size_t word_pos = (pos / BITS_IN_EWORD);
1111 size_t offset = pos % BITS_IN_EWORD;
1112 size_t last;
1113 eword_t word = reuse_packfile_bitmap->words[word_pos];
1115 if (offset + reuse_packfile->bitmap_nr < BITS_IN_EWORD)
1116 last = offset + reuse_packfile->bitmap_nr;
1117 else
1118 last = BITS_IN_EWORD;
1120 for (; offset < last; offset++) {
1121 if (word >> offset == 0)
1122 return word_pos;
1123 if (!bitmap_get(reuse_packfile_bitmap,
1124 word_pos * BITS_IN_EWORD + offset))
1125 return word_pos;
1128 pos += BITS_IN_EWORD - (pos % BITS_IN_EWORD);
1132 * Now we're going to copy as many whole eword_t's as possible.
1133 * "end" is the index of the last whole eword_t we copy, but
1134 * there may be additional bits to process. Those are handled
1135 * individually by write_reused_pack().
1137 * Begin by advancing to the first word boundary in range of the
1138 * bit positions occupied by objects in "reuse_packfile". Then
1139 * pick the last word boundary in the same range. If we have at
1140 * least one word's worth of bits to process, continue on.
1142 end = reuse_packfile->bitmap_pos + reuse_packfile->bitmap_nr;
1143 if (end % BITS_IN_EWORD)
1144 end -= end % BITS_IN_EWORD;
1145 if (pos >= end)
1146 return reuse_packfile->bitmap_pos / BITS_IN_EWORD;
1148 while (pos < end &&
1149 reuse_packfile_bitmap->words[pos / BITS_IN_EWORD] == (eword_t)~0)
1150 pos += BITS_IN_EWORD;
1152 if (pos > end)
1153 pos = end;
1155 if (reuse_packfile->bitmap_pos < pos) {
1156 off_t pack_start_off = pack_pos_to_offset(reuse_packfile->p, 0);
1157 off_t pack_end_off = pack_pos_to_offset(reuse_packfile->p,
1158 pos - reuse_packfile->bitmap_pos);
1160 written += pos - reuse_packfile->bitmap_pos;
1162 /* We're recording one chunk, not one object. */
1163 record_reused_object(pack_start_off,
1164 pack_start_off - (hashfile_total(out) - pack_start));
1165 hashflush(out);
1166 copy_pack_data(out, reuse_packfile->p, w_curs,
1167 pack_start_off, pack_end_off - pack_start_off);
1169 display_progress(progress_state, written);
1171 if (pos % BITS_IN_EWORD)
1172 BUG("attempted to jump past a word boundary to %"PRIuMAX,
1173 (uintmax_t)pos);
1174 return pos / BITS_IN_EWORD;
1177 static void write_reused_pack(struct bitmapped_pack *reuse_packfile,
1178 struct hashfile *f)
1180 size_t i = reuse_packfile->bitmap_pos / BITS_IN_EWORD;
1181 uint32_t offset;
1182 off_t pack_start = hashfile_total(f) - sizeof(struct pack_header);
1183 struct pack_window *w_curs = NULL;
1185 if (allow_ofs_delta)
1186 i = write_reused_pack_verbatim(reuse_packfile, f, pack_start,
1187 &w_curs);
1189 for (; i < reuse_packfile_bitmap->word_alloc; ++i) {
1190 eword_t word = reuse_packfile_bitmap->words[i];
1191 size_t pos = (i * BITS_IN_EWORD);
1193 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1194 if ((word >> offset) == 0)
1195 break;
1197 offset += ewah_bit_ctz64(word >> offset);
1198 if (pos + offset < reuse_packfile->bitmap_pos)
1199 continue;
1200 if (pos + offset >= reuse_packfile->bitmap_pos + reuse_packfile->bitmap_nr)
1201 goto done;
1203 * Can use bit positions directly, even for MIDX
1204 * bitmaps. See comment in try_partial_reuse()
1205 * for why.
1207 write_reused_pack_one(reuse_packfile->p,
1208 pos + offset - reuse_packfile->bitmap_pos,
1209 f, pack_start, &w_curs);
1210 display_progress(progress_state, ++written);
1214 done:
1215 unuse_pack(&w_curs);
1218 static void write_excluded_by_configs(void)
1220 struct oidset_iter iter;
1221 const struct object_id *oid;
1223 oidset_iter_init(&excluded_by_config, &iter);
1224 while ((oid = oidset_iter_next(&iter))) {
1225 struct configured_exclusion *ex =
1226 oidmap_get(&configured_exclusions, oid);
1228 if (!ex)
1229 BUG("configured exclusion wasn't configured");
1230 write_in_full(1, ex->pack_hash_hex, strlen(ex->pack_hash_hex));
1231 write_in_full(1, " ", 1);
1232 write_in_full(1, ex->uri, strlen(ex->uri));
1233 write_in_full(1, "\n", 1);
1237 static const char no_split_warning[] = N_(
1238 "disabling bitmap writing, packs are split due to pack.packSizeLimit"
1241 static void write_pack_file(void)
1243 uint32_t i = 0, j;
1244 struct hashfile *f;
1245 off_t offset;
1246 uint32_t nr_remaining = nr_result;
1247 time_t last_mtime = 0;
1248 struct object_entry **write_order;
1250 if (progress > pack_to_stdout)
1251 progress_state = start_progress(_("Writing objects"), nr_result);
1252 ALLOC_ARRAY(written_list, to_pack.nr_objects);
1253 write_order = compute_write_order();
1255 do {
1256 unsigned char hash[GIT_MAX_RAWSZ];
1257 char *pack_tmp_name = NULL;
1259 if (pack_to_stdout)
1260 f = hashfd_throughput(1, "<stdout>", progress_state);
1261 else
1262 f = create_tmp_packfile(&pack_tmp_name);
1264 offset = write_pack_header(f, nr_remaining);
1266 if (reuse_packfiles_nr) {
1267 assert(pack_to_stdout);
1268 for (j = 0; j < reuse_packfiles_nr; j++) {
1269 reused_chunks_nr = 0;
1270 write_reused_pack(&reuse_packfiles[j], f);
1271 if (reused_chunks_nr)
1272 reuse_packfiles_used_nr++;
1274 offset = hashfile_total(f);
1277 nr_written = 0;
1278 for (; i < to_pack.nr_objects; i++) {
1279 struct object_entry *e = write_order[i];
1280 if (write_one(f, e, &offset) == WRITE_ONE_BREAK)
1281 break;
1282 display_progress(progress_state, written);
1285 if (pack_to_stdout) {
1287 * We never fsync when writing to stdout since we may
1288 * not be writing to an actual pack file. For instance,
1289 * the upload-pack code passes a pipe here. Calling
1290 * fsync on a pipe results in unnecessary
1291 * synchronization with the reader on some platforms.
1293 finalize_hashfile(f, hash, FSYNC_COMPONENT_NONE,
1294 CSUM_HASH_IN_STREAM | CSUM_CLOSE);
1295 } else if (nr_written == nr_remaining) {
1296 finalize_hashfile(f, hash, FSYNC_COMPONENT_PACK,
1297 CSUM_HASH_IN_STREAM | CSUM_FSYNC | CSUM_CLOSE);
1298 } else {
1300 * If we wrote the wrong number of entries in the
1301 * header, rewrite it like in fast-import.
1304 int fd = finalize_hashfile(f, hash, FSYNC_COMPONENT_PACK, 0);
1305 fixup_pack_header_footer(fd, hash, pack_tmp_name,
1306 nr_written, hash, offset);
1307 close(fd);
1308 if (write_bitmap_index) {
1309 if (write_bitmap_index != WRITE_BITMAP_QUIET)
1310 warning(_(no_split_warning));
1311 write_bitmap_index = 0;
1315 if (!pack_to_stdout) {
1316 struct stat st;
1317 struct strbuf tmpname = STRBUF_INIT;
1318 char *idx_tmp_name = NULL;
1321 * Packs are runtime accessed in their mtime
1322 * order since newer packs are more likely to contain
1323 * younger objects. So if we are creating multiple
1324 * packs then we should modify the mtime of later ones
1325 * to preserve this property.
1327 if (stat(pack_tmp_name, &st) < 0) {
1328 warning_errno(_("failed to stat %s"), pack_tmp_name);
1329 } else if (!last_mtime) {
1330 last_mtime = st.st_mtime;
1331 } else {
1332 struct utimbuf utb;
1333 utb.actime = st.st_atime;
1334 utb.modtime = --last_mtime;
1335 if (utime(pack_tmp_name, &utb) < 0)
1336 warning_errno(_("failed utime() on %s"), pack_tmp_name);
1339 strbuf_addf(&tmpname, "%s-%s.", base_name,
1340 hash_to_hex(hash));
1342 if (write_bitmap_index) {
1343 bitmap_writer_set_checksum(hash);
1344 bitmap_writer_build_type_index(
1345 &to_pack, written_list, nr_written);
1348 if (cruft)
1349 pack_idx_opts.flags |= WRITE_MTIMES;
1351 stage_tmp_packfiles(&tmpname, pack_tmp_name,
1352 written_list, nr_written,
1353 &to_pack, &pack_idx_opts, hash,
1354 &idx_tmp_name);
1356 if (write_bitmap_index) {
1357 size_t tmpname_len = tmpname.len;
1359 strbuf_addstr(&tmpname, "bitmap");
1360 stop_progress(&progress_state);
1362 bitmap_writer_show_progress(progress);
1363 bitmap_writer_select_commits(indexed_commits, indexed_commits_nr, -1);
1364 if (bitmap_writer_build(&to_pack) < 0)
1365 die(_("failed to write bitmap index"));
1366 bitmap_writer_finish(written_list, nr_written,
1367 tmpname.buf, write_bitmap_options);
1368 write_bitmap_index = 0;
1369 strbuf_setlen(&tmpname, tmpname_len);
1372 rename_tmp_packfile_idx(&tmpname, &idx_tmp_name);
1374 free(idx_tmp_name);
1375 strbuf_release(&tmpname);
1376 free(pack_tmp_name);
1377 puts(hash_to_hex(hash));
1380 /* mark written objects as written to previous pack */
1381 for (j = 0; j < nr_written; j++) {
1382 written_list[j]->offset = (off_t)-1;
1384 nr_remaining -= nr_written;
1385 } while (nr_remaining && i < to_pack.nr_objects);
1387 free(written_list);
1388 free(write_order);
1389 stop_progress(&progress_state);
1390 if (written != nr_result)
1391 die(_("wrote %"PRIu32" objects while expecting %"PRIu32),
1392 written, nr_result);
1393 trace2_data_intmax("pack-objects", the_repository,
1394 "write_pack_file/wrote", nr_result);
1397 static int no_try_delta(const char *path)
1399 static struct attr_check *check;
1401 if (!check)
1402 check = attr_check_initl("delta", NULL);
1403 git_check_attr(the_repository->index, path, check);
1404 if (ATTR_FALSE(check->items[0].value))
1405 return 1;
1406 return 0;
1410 * When adding an object, check whether we have already added it
1411 * to our packing list. If so, we can skip. However, if we are
1412 * being asked to excludei t, but the previous mention was to include
1413 * it, make sure to adjust its flags and tweak our numbers accordingly.
1415 * As an optimization, we pass out the index position where we would have
1416 * found the item, since that saves us from having to look it up again a
1417 * few lines later when we want to add the new entry.
1419 static int have_duplicate_entry(const struct object_id *oid,
1420 int exclude)
1422 struct object_entry *entry;
1424 if (reuse_packfile_bitmap &&
1425 bitmap_walk_contains(bitmap_git, reuse_packfile_bitmap, oid))
1426 return 1;
1428 entry = packlist_find(&to_pack, oid);
1429 if (!entry)
1430 return 0;
1432 if (exclude) {
1433 if (!entry->preferred_base)
1434 nr_result--;
1435 entry->preferred_base = 1;
1438 return 1;
1441 static int want_found_object(const struct object_id *oid, int exclude,
1442 struct packed_git *p)
1444 if (exclude)
1445 return 1;
1446 if (incremental)
1447 return 0;
1449 if (!is_pack_valid(p))
1450 return -1;
1453 * When asked to do --local (do not include an object that appears in a
1454 * pack we borrow from elsewhere) or --honor-pack-keep (do not include
1455 * an object that appears in a pack marked with .keep), finding a pack
1456 * that matches the criteria is sufficient for us to decide to omit it.
1457 * However, even if this pack does not satisfy the criteria, we need to
1458 * make sure no copy of this object appears in _any_ pack that makes us
1459 * to omit the object, so we need to check all the packs.
1461 * We can however first check whether these options can possibly matter;
1462 * if they do not matter we know we want the object in generated pack.
1463 * Otherwise, we signal "-1" at the end to tell the caller that we do
1464 * not know either way, and it needs to check more packs.
1468 * Objects in packs borrowed from elsewhere are discarded regardless of
1469 * if they appear in other packs that weren't borrowed.
1471 if (local && !p->pack_local)
1472 return 0;
1475 * Then handle .keep first, as we have a fast(er) path there.
1477 if (ignore_packed_keep_on_disk || ignore_packed_keep_in_core) {
1479 * Set the flags for the kept-pack cache to be the ones we want
1480 * to ignore.
1482 * That is, if we are ignoring objects in on-disk keep packs,
1483 * then we want to search through the on-disk keep and ignore
1484 * the in-core ones.
1486 unsigned flags = 0;
1487 if (ignore_packed_keep_on_disk)
1488 flags |= ON_DISK_KEEP_PACKS;
1489 if (ignore_packed_keep_in_core)
1490 flags |= IN_CORE_KEEP_PACKS;
1492 if (ignore_packed_keep_on_disk && p->pack_keep)
1493 return 0;
1494 if (ignore_packed_keep_in_core && p->pack_keep_in_core)
1495 return 0;
1496 if (has_object_kept_pack(oid, flags))
1497 return 0;
1501 * At this point we know definitively that either we don't care about
1502 * keep-packs, or the object is not in one. Keep checking other
1503 * conditions...
1505 if (!local || !have_non_local_packs)
1506 return 1;
1508 /* we don't know yet; keep looking for more packs */
1509 return -1;
1512 static int want_object_in_pack_one(struct packed_git *p,
1513 const struct object_id *oid,
1514 int exclude,
1515 struct packed_git **found_pack,
1516 off_t *found_offset)
1518 off_t offset;
1520 if (p == *found_pack)
1521 offset = *found_offset;
1522 else
1523 offset = find_pack_entry_one(oid->hash, p);
1525 if (offset) {
1526 if (!*found_pack) {
1527 if (!is_pack_valid(p))
1528 return -1;
1529 *found_offset = offset;
1530 *found_pack = p;
1532 return want_found_object(oid, exclude, p);
1534 return -1;
1538 * Check whether we want the object in the pack (e.g., we do not want
1539 * objects found in non-local stores if the "--local" option was used).
1541 * If the caller already knows an existing pack it wants to take the object
1542 * from, that is passed in *found_pack and *found_offset; otherwise this
1543 * function finds if there is any pack that has the object and returns the pack
1544 * and its offset in these variables.
1546 static int want_object_in_pack(const struct object_id *oid,
1547 int exclude,
1548 struct packed_git **found_pack,
1549 off_t *found_offset)
1551 int want;
1552 struct list_head *pos;
1553 struct multi_pack_index *m;
1555 if (!exclude && local && has_loose_object_nonlocal(oid))
1556 return 0;
1559 * If we already know the pack object lives in, start checks from that
1560 * pack - in the usual case when neither --local was given nor .keep files
1561 * are present we will determine the answer right now.
1563 if (*found_pack) {
1564 want = want_found_object(oid, exclude, *found_pack);
1565 if (want != -1)
1566 return want;
1568 *found_pack = NULL;
1569 *found_offset = 0;
1572 for (m = get_multi_pack_index(the_repository); m; m = m->next) {
1573 struct pack_entry e;
1574 if (fill_midx_entry(the_repository, oid, &e, m)) {
1575 want = want_object_in_pack_one(e.p, oid, exclude, found_pack, found_offset);
1576 if (want != -1)
1577 return want;
1581 list_for_each(pos, get_packed_git_mru(the_repository)) {
1582 struct packed_git *p = list_entry(pos, struct packed_git, mru);
1583 want = want_object_in_pack_one(p, oid, exclude, found_pack, found_offset);
1584 if (!exclude && want > 0)
1585 list_move(&p->mru,
1586 get_packed_git_mru(the_repository));
1587 if (want != -1)
1588 return want;
1591 if (uri_protocols.nr) {
1592 struct configured_exclusion *ex =
1593 oidmap_get(&configured_exclusions, oid);
1594 int i;
1595 const char *p;
1597 if (ex) {
1598 for (i = 0; i < uri_protocols.nr; i++) {
1599 if (skip_prefix(ex->uri,
1600 uri_protocols.items[i].string,
1601 &p) &&
1602 *p == ':') {
1603 oidset_insert(&excluded_by_config, oid);
1604 return 0;
1610 return 1;
1613 static struct object_entry *create_object_entry(const struct object_id *oid,
1614 enum object_type type,
1615 uint32_t hash,
1616 int exclude,
1617 int no_try_delta,
1618 struct packed_git *found_pack,
1619 off_t found_offset)
1621 struct object_entry *entry;
1623 entry = packlist_alloc(&to_pack, oid);
1624 entry->hash = hash;
1625 oe_set_type(entry, type);
1626 if (exclude)
1627 entry->preferred_base = 1;
1628 else
1629 nr_result++;
1630 if (found_pack) {
1631 oe_set_in_pack(&to_pack, entry, found_pack);
1632 entry->in_pack_offset = found_offset;
1635 entry->no_try_delta = no_try_delta;
1637 return entry;
1640 static const char no_closure_warning[] = N_(
1641 "disabling bitmap writing, as some objects are not being packed"
1644 static int add_object_entry(const struct object_id *oid, enum object_type type,
1645 const char *name, int exclude)
1647 struct packed_git *found_pack = NULL;
1648 off_t found_offset = 0;
1650 display_progress(progress_state, ++nr_seen);
1652 if (have_duplicate_entry(oid, exclude))
1653 return 0;
1655 if (!want_object_in_pack(oid, exclude, &found_pack, &found_offset)) {
1656 /* The pack is missing an object, so it will not have closure */
1657 if (write_bitmap_index) {
1658 if (write_bitmap_index != WRITE_BITMAP_QUIET)
1659 warning(_(no_closure_warning));
1660 write_bitmap_index = 0;
1662 return 0;
1665 create_object_entry(oid, type, pack_name_hash(name),
1666 exclude, name && no_try_delta(name),
1667 found_pack, found_offset);
1668 return 1;
1671 static int add_object_entry_from_bitmap(const struct object_id *oid,
1672 enum object_type type,
1673 int flags UNUSED, uint32_t name_hash,
1674 struct packed_git *pack, off_t offset)
1676 display_progress(progress_state, ++nr_seen);
1678 if (have_duplicate_entry(oid, 0))
1679 return 0;
1681 if (!want_object_in_pack(oid, 0, &pack, &offset))
1682 return 0;
1684 create_object_entry(oid, type, name_hash, 0, 0, pack, offset);
1685 return 1;
1688 struct pbase_tree_cache {
1689 struct object_id oid;
1690 int ref;
1691 int temporary;
1692 void *tree_data;
1693 unsigned long tree_size;
1696 static struct pbase_tree_cache *(pbase_tree_cache[256]);
1697 static int pbase_tree_cache_ix(const struct object_id *oid)
1699 return oid->hash[0] % ARRAY_SIZE(pbase_tree_cache);
1701 static int pbase_tree_cache_ix_incr(int ix)
1703 return (ix+1) % ARRAY_SIZE(pbase_tree_cache);
1706 static struct pbase_tree {
1707 struct pbase_tree *next;
1708 /* This is a phony "cache" entry; we are not
1709 * going to evict it or find it through _get()
1710 * mechanism -- this is for the toplevel node that
1711 * would almost always change with any commit.
1713 struct pbase_tree_cache pcache;
1714 } *pbase_tree;
1716 static struct pbase_tree_cache *pbase_tree_get(const struct object_id *oid)
1718 struct pbase_tree_cache *ent, *nent;
1719 void *data;
1720 unsigned long size;
1721 enum object_type type;
1722 int neigh;
1723 int my_ix = pbase_tree_cache_ix(oid);
1724 int available_ix = -1;
1726 /* pbase-tree-cache acts as a limited hashtable.
1727 * your object will be found at your index or within a few
1728 * slots after that slot if it is cached.
1730 for (neigh = 0; neigh < 8; neigh++) {
1731 ent = pbase_tree_cache[my_ix];
1732 if (ent && oideq(&ent->oid, oid)) {
1733 ent->ref++;
1734 return ent;
1736 else if (((available_ix < 0) && (!ent || !ent->ref)) ||
1737 ((0 <= available_ix) &&
1738 (!ent && pbase_tree_cache[available_ix])))
1739 available_ix = my_ix;
1740 if (!ent)
1741 break;
1742 my_ix = pbase_tree_cache_ix_incr(my_ix);
1745 /* Did not find one. Either we got a bogus request or
1746 * we need to read and perhaps cache.
1748 data = repo_read_object_file(the_repository, oid, &type, &size);
1749 if (!data)
1750 return NULL;
1751 if (type != OBJ_TREE) {
1752 free(data);
1753 return NULL;
1756 /* We need to either cache or return a throwaway copy */
1758 if (available_ix < 0)
1759 ent = NULL;
1760 else {
1761 ent = pbase_tree_cache[available_ix];
1762 my_ix = available_ix;
1765 if (!ent) {
1766 nent = xmalloc(sizeof(*nent));
1767 nent->temporary = (available_ix < 0);
1769 else {
1770 /* evict and reuse */
1771 free(ent->tree_data);
1772 nent = ent;
1774 oidcpy(&nent->oid, oid);
1775 nent->tree_data = data;
1776 nent->tree_size = size;
1777 nent->ref = 1;
1778 if (!nent->temporary)
1779 pbase_tree_cache[my_ix] = nent;
1780 return nent;
1783 static void pbase_tree_put(struct pbase_tree_cache *cache)
1785 if (!cache->temporary) {
1786 cache->ref--;
1787 return;
1789 free(cache->tree_data);
1790 free(cache);
1793 static size_t name_cmp_len(const char *name)
1795 return strcspn(name, "\n/");
1798 static void add_pbase_object(struct tree_desc *tree,
1799 const char *name,
1800 size_t cmplen,
1801 const char *fullname)
1803 struct name_entry entry;
1804 int cmp;
1806 while (tree_entry(tree,&entry)) {
1807 if (S_ISGITLINK(entry.mode))
1808 continue;
1809 cmp = tree_entry_len(&entry) != cmplen ? 1 :
1810 memcmp(name, entry.path, cmplen);
1811 if (cmp > 0)
1812 continue;
1813 if (cmp < 0)
1814 return;
1815 if (name[cmplen] != '/') {
1816 add_object_entry(&entry.oid,
1817 object_type(entry.mode),
1818 fullname, 1);
1819 return;
1821 if (S_ISDIR(entry.mode)) {
1822 struct tree_desc sub;
1823 struct pbase_tree_cache *tree;
1824 const char *down = name+cmplen+1;
1825 size_t downlen = name_cmp_len(down);
1827 tree = pbase_tree_get(&entry.oid);
1828 if (!tree)
1829 return;
1830 init_tree_desc(&sub, &tree->oid,
1831 tree->tree_data, tree->tree_size);
1833 add_pbase_object(&sub, down, downlen, fullname);
1834 pbase_tree_put(tree);
1839 static unsigned *done_pbase_paths;
1840 static int done_pbase_paths_num;
1841 static int done_pbase_paths_alloc;
1842 static int done_pbase_path_pos(unsigned hash)
1844 int lo = 0;
1845 int hi = done_pbase_paths_num;
1846 while (lo < hi) {
1847 int mi = lo + (hi - lo) / 2;
1848 if (done_pbase_paths[mi] == hash)
1849 return mi;
1850 if (done_pbase_paths[mi] < hash)
1851 hi = mi;
1852 else
1853 lo = mi + 1;
1855 return -lo-1;
1858 static int check_pbase_path(unsigned hash)
1860 int pos = done_pbase_path_pos(hash);
1861 if (0 <= pos)
1862 return 1;
1863 pos = -pos - 1;
1864 ALLOC_GROW(done_pbase_paths,
1865 done_pbase_paths_num + 1,
1866 done_pbase_paths_alloc);
1867 done_pbase_paths_num++;
1868 if (pos < done_pbase_paths_num)
1869 MOVE_ARRAY(done_pbase_paths + pos + 1, done_pbase_paths + pos,
1870 done_pbase_paths_num - pos - 1);
1871 done_pbase_paths[pos] = hash;
1872 return 0;
1875 static void add_preferred_base_object(const char *name)
1877 struct pbase_tree *it;
1878 size_t cmplen;
1879 unsigned hash = pack_name_hash(name);
1881 if (!num_preferred_base || check_pbase_path(hash))
1882 return;
1884 cmplen = name_cmp_len(name);
1885 for (it = pbase_tree; it; it = it->next) {
1886 if (cmplen == 0) {
1887 add_object_entry(&it->pcache.oid, OBJ_TREE, NULL, 1);
1889 else {
1890 struct tree_desc tree;
1891 init_tree_desc(&tree, &it->pcache.oid,
1892 it->pcache.tree_data, it->pcache.tree_size);
1893 add_pbase_object(&tree, name, cmplen, name);
1898 static void add_preferred_base(struct object_id *oid)
1900 struct pbase_tree *it;
1901 void *data;
1902 unsigned long size;
1903 struct object_id tree_oid;
1905 if (window <= num_preferred_base++)
1906 return;
1908 data = read_object_with_reference(the_repository, oid,
1909 OBJ_TREE, &size, &tree_oid);
1910 if (!data)
1911 return;
1913 for (it = pbase_tree; it; it = it->next) {
1914 if (oideq(&it->pcache.oid, &tree_oid)) {
1915 free(data);
1916 return;
1920 CALLOC_ARRAY(it, 1);
1921 it->next = pbase_tree;
1922 pbase_tree = it;
1924 oidcpy(&it->pcache.oid, &tree_oid);
1925 it->pcache.tree_data = data;
1926 it->pcache.tree_size = size;
1929 static void cleanup_preferred_base(void)
1931 struct pbase_tree *it;
1932 unsigned i;
1934 it = pbase_tree;
1935 pbase_tree = NULL;
1936 while (it) {
1937 struct pbase_tree *tmp = it;
1938 it = tmp->next;
1939 free(tmp->pcache.tree_data);
1940 free(tmp);
1943 for (i = 0; i < ARRAY_SIZE(pbase_tree_cache); i++) {
1944 if (!pbase_tree_cache[i])
1945 continue;
1946 free(pbase_tree_cache[i]->tree_data);
1947 FREE_AND_NULL(pbase_tree_cache[i]);
1950 FREE_AND_NULL(done_pbase_paths);
1951 done_pbase_paths_num = done_pbase_paths_alloc = 0;
1955 * Return 1 iff the object specified by "delta" can be sent
1956 * literally as a delta against the base in "base_sha1". If
1957 * so, then *base_out will point to the entry in our packing
1958 * list, or NULL if we must use the external-base list.
1960 * Depth value does not matter - find_deltas() will
1961 * never consider reused delta as the base object to
1962 * deltify other objects against, in order to avoid
1963 * circular deltas.
1965 static int can_reuse_delta(const struct object_id *base_oid,
1966 struct object_entry *delta,
1967 struct object_entry **base_out)
1969 struct object_entry *base;
1972 * First see if we're already sending the base (or it's explicitly in
1973 * our "excluded" list).
1975 base = packlist_find(&to_pack, base_oid);
1976 if (base) {
1977 if (!in_same_island(&delta->idx.oid, &base->idx.oid))
1978 return 0;
1979 *base_out = base;
1980 return 1;
1984 * Otherwise, reachability bitmaps may tell us if the receiver has it,
1985 * even if it was buried too deep in history to make it into the
1986 * packing list.
1988 if (thin && bitmap_has_oid_in_uninteresting(bitmap_git, base_oid)) {
1989 if (use_delta_islands) {
1990 if (!in_same_island(&delta->idx.oid, base_oid))
1991 return 0;
1993 *base_out = NULL;
1994 return 1;
1997 return 0;
2000 static void prefetch_to_pack(uint32_t object_index_start) {
2001 struct oid_array to_fetch = OID_ARRAY_INIT;
2002 uint32_t i;
2004 for (i = object_index_start; i < to_pack.nr_objects; i++) {
2005 struct object_entry *entry = to_pack.objects + i;
2007 if (!oid_object_info_extended(the_repository,
2008 &entry->idx.oid,
2009 NULL,
2010 OBJECT_INFO_FOR_PREFETCH))
2011 continue;
2012 oid_array_append(&to_fetch, &entry->idx.oid);
2014 promisor_remote_get_direct(the_repository,
2015 to_fetch.oid, to_fetch.nr);
2016 oid_array_clear(&to_fetch);
2019 static void check_object(struct object_entry *entry, uint32_t object_index)
2021 unsigned long canonical_size;
2022 enum object_type type;
2023 struct object_info oi = {.typep = &type, .sizep = &canonical_size};
2025 if (IN_PACK(entry)) {
2026 struct packed_git *p = IN_PACK(entry);
2027 struct pack_window *w_curs = NULL;
2028 int have_base = 0;
2029 struct object_id base_ref;
2030 struct object_entry *base_entry;
2031 unsigned long used, used_0;
2032 unsigned long avail;
2033 off_t ofs;
2034 unsigned char *buf, c;
2035 enum object_type type;
2036 unsigned long in_pack_size;
2038 buf = use_pack(p, &w_curs, entry->in_pack_offset, &avail);
2041 * We want in_pack_type even if we do not reuse delta
2042 * since non-delta representations could still be reused.
2044 used = unpack_object_header_buffer(buf, avail,
2045 &type,
2046 &in_pack_size);
2047 if (used == 0)
2048 goto give_up;
2050 if (type < 0)
2051 BUG("invalid type %d", type);
2052 entry->in_pack_type = type;
2055 * Determine if this is a delta and if so whether we can
2056 * reuse it or not. Otherwise let's find out as cheaply as
2057 * possible what the actual type and size for this object is.
2059 switch (entry->in_pack_type) {
2060 default:
2061 /* Not a delta hence we've already got all we need. */
2062 oe_set_type(entry, entry->in_pack_type);
2063 SET_SIZE(entry, in_pack_size);
2064 entry->in_pack_header_size = used;
2065 if (oe_type(entry) < OBJ_COMMIT || oe_type(entry) > OBJ_BLOB)
2066 goto give_up;
2067 unuse_pack(&w_curs);
2068 return;
2069 case OBJ_REF_DELTA:
2070 if (reuse_delta && !entry->preferred_base) {
2071 oidread(&base_ref,
2072 use_pack(p, &w_curs,
2073 entry->in_pack_offset + used,
2074 NULL));
2075 have_base = 1;
2077 entry->in_pack_header_size = used + the_hash_algo->rawsz;
2078 break;
2079 case OBJ_OFS_DELTA:
2080 buf = use_pack(p, &w_curs,
2081 entry->in_pack_offset + used, NULL);
2082 used_0 = 0;
2083 c = buf[used_0++];
2084 ofs = c & 127;
2085 while (c & 128) {
2086 ofs += 1;
2087 if (!ofs || MSB(ofs, 7)) {
2088 error(_("delta base offset overflow in pack for %s"),
2089 oid_to_hex(&entry->idx.oid));
2090 goto give_up;
2092 c = buf[used_0++];
2093 ofs = (ofs << 7) + (c & 127);
2095 ofs = entry->in_pack_offset - ofs;
2096 if (ofs <= 0 || ofs >= entry->in_pack_offset) {
2097 error(_("delta base offset out of bound for %s"),
2098 oid_to_hex(&entry->idx.oid));
2099 goto give_up;
2101 if (reuse_delta && !entry->preferred_base) {
2102 uint32_t pos;
2103 if (offset_to_pack_pos(p, ofs, &pos) < 0)
2104 goto give_up;
2105 if (!nth_packed_object_id(&base_ref, p,
2106 pack_pos_to_index(p, pos)))
2107 have_base = 1;
2109 entry->in_pack_header_size = used + used_0;
2110 break;
2113 if (have_base &&
2114 can_reuse_delta(&base_ref, entry, &base_entry)) {
2115 oe_set_type(entry, entry->in_pack_type);
2116 SET_SIZE(entry, in_pack_size); /* delta size */
2117 SET_DELTA_SIZE(entry, in_pack_size);
2119 if (base_entry) {
2120 SET_DELTA(entry, base_entry);
2121 entry->delta_sibling_idx = base_entry->delta_child_idx;
2122 SET_DELTA_CHILD(base_entry, entry);
2123 } else {
2124 SET_DELTA_EXT(entry, &base_ref);
2127 unuse_pack(&w_curs);
2128 return;
2131 if (oe_type(entry)) {
2132 off_t delta_pos;
2135 * This must be a delta and we already know what the
2136 * final object type is. Let's extract the actual
2137 * object size from the delta header.
2139 delta_pos = entry->in_pack_offset + entry->in_pack_header_size;
2140 canonical_size = get_size_from_delta(p, &w_curs, delta_pos);
2141 if (canonical_size == 0)
2142 goto give_up;
2143 SET_SIZE(entry, canonical_size);
2144 unuse_pack(&w_curs);
2145 return;
2149 * No choice but to fall back to the recursive delta walk
2150 * with oid_object_info() to find about the object type
2151 * at this point...
2153 give_up:
2154 unuse_pack(&w_curs);
2157 if (oid_object_info_extended(the_repository, &entry->idx.oid, &oi,
2158 OBJECT_INFO_SKIP_FETCH_OBJECT | OBJECT_INFO_LOOKUP_REPLACE) < 0) {
2159 if (repo_has_promisor_remote(the_repository)) {
2160 prefetch_to_pack(object_index);
2161 if (oid_object_info_extended(the_repository, &entry->idx.oid, &oi,
2162 OBJECT_INFO_SKIP_FETCH_OBJECT | OBJECT_INFO_LOOKUP_REPLACE) < 0)
2163 type = -1;
2164 } else {
2165 type = -1;
2168 oe_set_type(entry, type);
2169 if (entry->type_valid) {
2170 SET_SIZE(entry, canonical_size);
2171 } else {
2173 * Bad object type is checked in prepare_pack(). This is
2174 * to permit a missing preferred base object to be ignored
2175 * as a preferred base. Doing so can result in a larger
2176 * pack file, but the transfer will still take place.
2181 static int pack_offset_sort(const void *_a, const void *_b)
2183 const struct object_entry *a = *(struct object_entry **)_a;
2184 const struct object_entry *b = *(struct object_entry **)_b;
2185 const struct packed_git *a_in_pack = IN_PACK(a);
2186 const struct packed_git *b_in_pack = IN_PACK(b);
2188 /* avoid filesystem trashing with loose objects */
2189 if (!a_in_pack && !b_in_pack)
2190 return oidcmp(&a->idx.oid, &b->idx.oid);
2192 if (a_in_pack < b_in_pack)
2193 return -1;
2194 if (a_in_pack > b_in_pack)
2195 return 1;
2196 return a->in_pack_offset < b->in_pack_offset ? -1 :
2197 (a->in_pack_offset > b->in_pack_offset);
2201 * Drop an on-disk delta we were planning to reuse. Naively, this would
2202 * just involve blanking out the "delta" field, but we have to deal
2203 * with some extra book-keeping:
2205 * 1. Removing ourselves from the delta_sibling linked list.
2207 * 2. Updating our size/type to the non-delta representation. These were
2208 * either not recorded initially (size) or overwritten with the delta type
2209 * (type) when check_object() decided to reuse the delta.
2211 * 3. Resetting our delta depth, as we are now a base object.
2213 static void drop_reused_delta(struct object_entry *entry)
2215 unsigned *idx = &to_pack.objects[entry->delta_idx - 1].delta_child_idx;
2216 struct object_info oi = OBJECT_INFO_INIT;
2217 enum object_type type;
2218 unsigned long size;
2220 while (*idx) {
2221 struct object_entry *oe = &to_pack.objects[*idx - 1];
2223 if (oe == entry)
2224 *idx = oe->delta_sibling_idx;
2225 else
2226 idx = &oe->delta_sibling_idx;
2228 SET_DELTA(entry, NULL);
2229 entry->depth = 0;
2231 oi.sizep = &size;
2232 oi.typep = &type;
2233 if (packed_object_info(the_repository, IN_PACK(entry), entry->in_pack_offset, &oi) < 0) {
2235 * We failed to get the info from this pack for some reason;
2236 * fall back to oid_object_info, which may find another copy.
2237 * And if that fails, the error will be recorded in oe_type(entry)
2238 * and dealt with in prepare_pack().
2240 oe_set_type(entry,
2241 oid_object_info(the_repository, &entry->idx.oid, &size));
2242 } else {
2243 oe_set_type(entry, type);
2245 SET_SIZE(entry, size);
2249 * Follow the chain of deltas from this entry onward, throwing away any links
2250 * that cause us to hit a cycle (as determined by the DFS state flags in
2251 * the entries).
2253 * We also detect too-long reused chains that would violate our --depth
2254 * limit.
2256 static void break_delta_chains(struct object_entry *entry)
2259 * The actual depth of each object we will write is stored as an int,
2260 * as it cannot exceed our int "depth" limit. But before we break
2261 * changes based no that limit, we may potentially go as deep as the
2262 * number of objects, which is elsewhere bounded to a uint32_t.
2264 uint32_t total_depth;
2265 struct object_entry *cur, *next;
2267 for (cur = entry, total_depth = 0;
2268 cur;
2269 cur = DELTA(cur), total_depth++) {
2270 if (cur->dfs_state == DFS_DONE) {
2272 * We've already seen this object and know it isn't
2273 * part of a cycle. We do need to append its depth
2274 * to our count.
2276 total_depth += cur->depth;
2277 break;
2281 * We break cycles before looping, so an ACTIVE state (or any
2282 * other cruft which made its way into the state variable)
2283 * is a bug.
2285 if (cur->dfs_state != DFS_NONE)
2286 BUG("confusing delta dfs state in first pass: %d",
2287 cur->dfs_state);
2290 * Now we know this is the first time we've seen the object. If
2291 * it's not a delta, we're done traversing, but we'll mark it
2292 * done to save time on future traversals.
2294 if (!DELTA(cur)) {
2295 cur->dfs_state = DFS_DONE;
2296 break;
2300 * Mark ourselves as active and see if the next step causes
2301 * us to cycle to another active object. It's important to do
2302 * this _before_ we loop, because it impacts where we make the
2303 * cut, and thus how our total_depth counter works.
2304 * E.g., We may see a partial loop like:
2306 * A -> B -> C -> D -> B
2308 * Cutting B->C breaks the cycle. But now the depth of A is
2309 * only 1, and our total_depth counter is at 3. The size of the
2310 * error is always one less than the size of the cycle we
2311 * broke. Commits C and D were "lost" from A's chain.
2313 * If we instead cut D->B, then the depth of A is correct at 3.
2314 * We keep all commits in the chain that we examined.
2316 cur->dfs_state = DFS_ACTIVE;
2317 if (DELTA(cur)->dfs_state == DFS_ACTIVE) {
2318 drop_reused_delta(cur);
2319 cur->dfs_state = DFS_DONE;
2320 break;
2325 * And now that we've gone all the way to the bottom of the chain, we
2326 * need to clear the active flags and set the depth fields as
2327 * appropriate. Unlike the loop above, which can quit when it drops a
2328 * delta, we need to keep going to look for more depth cuts. So we need
2329 * an extra "next" pointer to keep going after we reset cur->delta.
2331 for (cur = entry; cur; cur = next) {
2332 next = DELTA(cur);
2335 * We should have a chain of zero or more ACTIVE states down to
2336 * a final DONE. We can quit after the DONE, because either it
2337 * has no bases, or we've already handled them in a previous
2338 * call.
2340 if (cur->dfs_state == DFS_DONE)
2341 break;
2342 else if (cur->dfs_state != DFS_ACTIVE)
2343 BUG("confusing delta dfs state in second pass: %d",
2344 cur->dfs_state);
2347 * If the total_depth is more than depth, then we need to snip
2348 * the chain into two or more smaller chains that don't exceed
2349 * the maximum depth. Most of the resulting chains will contain
2350 * (depth + 1) entries (i.e., depth deltas plus one base), and
2351 * the last chain (i.e., the one containing entry) will contain
2352 * whatever entries are left over, namely
2353 * (total_depth % (depth + 1)) of them.
2355 * Since we are iterating towards decreasing depth, we need to
2356 * decrement total_depth as we go, and we need to write to the
2357 * entry what its final depth will be after all of the
2358 * snipping. Since we're snipping into chains of length (depth
2359 * + 1) entries, the final depth of an entry will be its
2360 * original depth modulo (depth + 1). Any time we encounter an
2361 * entry whose final depth is supposed to be zero, we snip it
2362 * from its delta base, thereby making it so.
2364 cur->depth = (total_depth--) % (depth + 1);
2365 if (!cur->depth)
2366 drop_reused_delta(cur);
2368 cur->dfs_state = DFS_DONE;
2372 static void get_object_details(void)
2374 uint32_t i;
2375 struct object_entry **sorted_by_offset;
2377 if (progress)
2378 progress_state = start_progress(_("Counting objects"),
2379 to_pack.nr_objects);
2381 CALLOC_ARRAY(sorted_by_offset, to_pack.nr_objects);
2382 for (i = 0; i < to_pack.nr_objects; i++)
2383 sorted_by_offset[i] = to_pack.objects + i;
2384 QSORT(sorted_by_offset, to_pack.nr_objects, pack_offset_sort);
2386 for (i = 0; i < to_pack.nr_objects; i++) {
2387 struct object_entry *entry = sorted_by_offset[i];
2388 check_object(entry, i);
2389 if (entry->type_valid &&
2390 oe_size_greater_than(&to_pack, entry, big_file_threshold))
2391 entry->no_try_delta = 1;
2392 display_progress(progress_state, i + 1);
2394 stop_progress(&progress_state);
2397 * This must happen in a second pass, since we rely on the delta
2398 * information for the whole list being completed.
2400 for (i = 0; i < to_pack.nr_objects; i++)
2401 break_delta_chains(&to_pack.objects[i]);
2403 free(sorted_by_offset);
2407 * We search for deltas in a list sorted by type, by filename hash, and then
2408 * by size, so that we see progressively smaller and smaller files.
2409 * That's because we prefer deltas to be from the bigger file
2410 * to the smaller -- deletes are potentially cheaper, but perhaps
2411 * more importantly, the bigger file is likely the more recent
2412 * one. The deepest deltas are therefore the oldest objects which are
2413 * less susceptible to be accessed often.
2415 static int type_size_sort(const void *_a, const void *_b)
2417 const struct object_entry *a = *(struct object_entry **)_a;
2418 const struct object_entry *b = *(struct object_entry **)_b;
2419 const enum object_type a_type = oe_type(a);
2420 const enum object_type b_type = oe_type(b);
2421 const unsigned long a_size = SIZE(a);
2422 const unsigned long b_size = SIZE(b);
2424 if (a_type > b_type)
2425 return -1;
2426 if (a_type < b_type)
2427 return 1;
2428 if (a->hash > b->hash)
2429 return -1;
2430 if (a->hash < b->hash)
2431 return 1;
2432 if (a->preferred_base > b->preferred_base)
2433 return -1;
2434 if (a->preferred_base < b->preferred_base)
2435 return 1;
2436 if (use_delta_islands) {
2437 const int island_cmp = island_delta_cmp(&a->idx.oid, &b->idx.oid);
2438 if (island_cmp)
2439 return island_cmp;
2441 if (a_size > b_size)
2442 return -1;
2443 if (a_size < b_size)
2444 return 1;
2445 return a < b ? -1 : (a > b); /* newest first */
2448 struct unpacked {
2449 struct object_entry *entry;
2450 void *data;
2451 struct delta_index *index;
2452 unsigned depth;
2455 static int delta_cacheable(unsigned long src_size, unsigned long trg_size,
2456 unsigned long delta_size)
2458 if (max_delta_cache_size && delta_cache_size + delta_size > max_delta_cache_size)
2459 return 0;
2461 if (delta_size < cache_max_small_delta_size)
2462 return 1;
2464 /* cache delta, if objects are large enough compared to delta size */
2465 if ((src_size >> 20) + (trg_size >> 21) > (delta_size >> 10))
2466 return 1;
2468 return 0;
2471 /* Protect delta_cache_size */
2472 static pthread_mutex_t cache_mutex;
2473 #define cache_lock() pthread_mutex_lock(&cache_mutex)
2474 #define cache_unlock() pthread_mutex_unlock(&cache_mutex)
2477 * Protect object list partitioning (e.g. struct thread_param) and
2478 * progress_state
2480 static pthread_mutex_t progress_mutex;
2481 #define progress_lock() pthread_mutex_lock(&progress_mutex)
2482 #define progress_unlock() pthread_mutex_unlock(&progress_mutex)
2485 * Access to struct object_entry is unprotected since each thread owns
2486 * a portion of the main object list. Just don't access object entries
2487 * ahead in the list because they can be stolen and would need
2488 * progress_mutex for protection.
2491 static inline int oe_size_less_than(struct packing_data *pack,
2492 const struct object_entry *lhs,
2493 unsigned long rhs)
2495 if (lhs->size_valid)
2496 return lhs->size_ < rhs;
2497 if (rhs < pack->oe_size_limit) /* rhs < 2^x <= lhs ? */
2498 return 0;
2499 return oe_get_size_slow(pack, lhs) < rhs;
2502 static inline void oe_set_tree_depth(struct packing_data *pack,
2503 struct object_entry *e,
2504 unsigned int tree_depth)
2506 if (!pack->tree_depth)
2507 CALLOC_ARRAY(pack->tree_depth, pack->nr_alloc);
2508 pack->tree_depth[e - pack->objects] = tree_depth;
2512 * Return the size of the object without doing any delta
2513 * reconstruction (so non-deltas are true object sizes, but deltas
2514 * return the size of the delta data).
2516 unsigned long oe_get_size_slow(struct packing_data *pack,
2517 const struct object_entry *e)
2519 struct packed_git *p;
2520 struct pack_window *w_curs;
2521 unsigned char *buf;
2522 enum object_type type;
2523 unsigned long used, avail, size;
2525 if (e->type_ != OBJ_OFS_DELTA && e->type_ != OBJ_REF_DELTA) {
2526 packing_data_lock(&to_pack);
2527 if (oid_object_info(the_repository, &e->idx.oid, &size) < 0)
2528 die(_("unable to get size of %s"),
2529 oid_to_hex(&e->idx.oid));
2530 packing_data_unlock(&to_pack);
2531 return size;
2534 p = oe_in_pack(pack, e);
2535 if (!p)
2536 BUG("when e->type is a delta, it must belong to a pack");
2538 packing_data_lock(&to_pack);
2539 w_curs = NULL;
2540 buf = use_pack(p, &w_curs, e->in_pack_offset, &avail);
2541 used = unpack_object_header_buffer(buf, avail, &type, &size);
2542 if (used == 0)
2543 die(_("unable to parse object header of %s"),
2544 oid_to_hex(&e->idx.oid));
2546 unuse_pack(&w_curs);
2547 packing_data_unlock(&to_pack);
2548 return size;
2551 static int try_delta(struct unpacked *trg, struct unpacked *src,
2552 unsigned max_depth, unsigned long *mem_usage)
2554 struct object_entry *trg_entry = trg->entry;
2555 struct object_entry *src_entry = src->entry;
2556 unsigned long trg_size, src_size, delta_size, sizediff, max_size, sz;
2557 unsigned ref_depth;
2558 enum object_type type;
2559 void *delta_buf;
2561 /* Don't bother doing diffs between different types */
2562 if (oe_type(trg_entry) != oe_type(src_entry))
2563 return -1;
2566 * We do not bother to try a delta that we discarded on an
2567 * earlier try, but only when reusing delta data. Note that
2568 * src_entry that is marked as the preferred_base should always
2569 * be considered, as even if we produce a suboptimal delta against
2570 * it, we will still save the transfer cost, as we already know
2571 * the other side has it and we won't send src_entry at all.
2573 if (reuse_delta && IN_PACK(trg_entry) &&
2574 IN_PACK(trg_entry) == IN_PACK(src_entry) &&
2575 !src_entry->preferred_base &&
2576 trg_entry->in_pack_type != OBJ_REF_DELTA &&
2577 trg_entry->in_pack_type != OBJ_OFS_DELTA)
2578 return 0;
2580 /* Let's not bust the allowed depth. */
2581 if (src->depth >= max_depth)
2582 return 0;
2584 /* Now some size filtering heuristics. */
2585 trg_size = SIZE(trg_entry);
2586 if (!DELTA(trg_entry)) {
2587 max_size = trg_size/2 - the_hash_algo->rawsz;
2588 ref_depth = 1;
2589 } else {
2590 max_size = DELTA_SIZE(trg_entry);
2591 ref_depth = trg->depth;
2593 max_size = (uint64_t)max_size * (max_depth - src->depth) /
2594 (max_depth - ref_depth + 1);
2595 if (max_size == 0)
2596 return 0;
2597 src_size = SIZE(src_entry);
2598 sizediff = src_size < trg_size ? trg_size - src_size : 0;
2599 if (sizediff >= max_size)
2600 return 0;
2601 if (trg_size < src_size / 32)
2602 return 0;
2604 if (!in_same_island(&trg->entry->idx.oid, &src->entry->idx.oid))
2605 return 0;
2607 /* Load data if not already done */
2608 if (!trg->data) {
2609 packing_data_lock(&to_pack);
2610 trg->data = repo_read_object_file(the_repository,
2611 &trg_entry->idx.oid, &type,
2612 &sz);
2613 packing_data_unlock(&to_pack);
2614 if (!trg->data)
2615 die(_("object %s cannot be read"),
2616 oid_to_hex(&trg_entry->idx.oid));
2617 if (sz != trg_size)
2618 die(_("object %s inconsistent object length (%"PRIuMAX" vs %"PRIuMAX")"),
2619 oid_to_hex(&trg_entry->idx.oid), (uintmax_t)sz,
2620 (uintmax_t)trg_size);
2621 *mem_usage += sz;
2623 if (!src->data) {
2624 packing_data_lock(&to_pack);
2625 src->data = repo_read_object_file(the_repository,
2626 &src_entry->idx.oid, &type,
2627 &sz);
2628 packing_data_unlock(&to_pack);
2629 if (!src->data) {
2630 if (src_entry->preferred_base) {
2631 static int warned = 0;
2632 if (!warned++)
2633 warning(_("object %s cannot be read"),
2634 oid_to_hex(&src_entry->idx.oid));
2636 * Those objects are not included in the
2637 * resulting pack. Be resilient and ignore
2638 * them if they can't be read, in case the
2639 * pack could be created nevertheless.
2641 return 0;
2643 die(_("object %s cannot be read"),
2644 oid_to_hex(&src_entry->idx.oid));
2646 if (sz != src_size)
2647 die(_("object %s inconsistent object length (%"PRIuMAX" vs %"PRIuMAX")"),
2648 oid_to_hex(&src_entry->idx.oid), (uintmax_t)sz,
2649 (uintmax_t)src_size);
2650 *mem_usage += sz;
2652 if (!src->index) {
2653 src->index = create_delta_index(src->data, src_size);
2654 if (!src->index) {
2655 static int warned = 0;
2656 if (!warned++)
2657 warning(_("suboptimal pack - out of memory"));
2658 return 0;
2660 *mem_usage += sizeof_delta_index(src->index);
2663 delta_buf = create_delta(src->index, trg->data, trg_size, &delta_size, max_size);
2664 if (!delta_buf)
2665 return 0;
2667 if (DELTA(trg_entry)) {
2668 /* Prefer only shallower same-sized deltas. */
2669 if (delta_size == DELTA_SIZE(trg_entry) &&
2670 src->depth + 1 >= trg->depth) {
2671 free(delta_buf);
2672 return 0;
2677 * Handle memory allocation outside of the cache
2678 * accounting lock. Compiler will optimize the strangeness
2679 * away when NO_PTHREADS is defined.
2681 free(trg_entry->delta_data);
2682 cache_lock();
2683 if (trg_entry->delta_data) {
2684 delta_cache_size -= DELTA_SIZE(trg_entry);
2685 trg_entry->delta_data = NULL;
2687 if (delta_cacheable(src_size, trg_size, delta_size)) {
2688 delta_cache_size += delta_size;
2689 cache_unlock();
2690 trg_entry->delta_data = xrealloc(delta_buf, delta_size);
2691 } else {
2692 cache_unlock();
2693 free(delta_buf);
2696 SET_DELTA(trg_entry, src_entry);
2697 SET_DELTA_SIZE(trg_entry, delta_size);
2698 trg->depth = src->depth + 1;
2700 return 1;
2703 static unsigned int check_delta_limit(struct object_entry *me, unsigned int n)
2705 struct object_entry *child = DELTA_CHILD(me);
2706 unsigned int m = n;
2707 while (child) {
2708 const unsigned int c = check_delta_limit(child, n + 1);
2709 if (m < c)
2710 m = c;
2711 child = DELTA_SIBLING(child);
2713 return m;
2716 static unsigned long free_unpacked(struct unpacked *n)
2718 unsigned long freed_mem = sizeof_delta_index(n->index);
2719 free_delta_index(n->index);
2720 n->index = NULL;
2721 if (n->data) {
2722 freed_mem += SIZE(n->entry);
2723 FREE_AND_NULL(n->data);
2725 n->entry = NULL;
2726 n->depth = 0;
2727 return freed_mem;
2730 static void find_deltas(struct object_entry **list, unsigned *list_size,
2731 int window, int depth, unsigned *processed)
2733 uint32_t i, idx = 0, count = 0;
2734 struct unpacked *array;
2735 unsigned long mem_usage = 0;
2737 CALLOC_ARRAY(array, window);
2739 for (;;) {
2740 struct object_entry *entry;
2741 struct unpacked *n = array + idx;
2742 int j, max_depth, best_base = -1;
2744 progress_lock();
2745 if (!*list_size) {
2746 progress_unlock();
2747 break;
2749 entry = *list++;
2750 (*list_size)--;
2751 if (!entry->preferred_base) {
2752 (*processed)++;
2753 display_progress(progress_state, *processed);
2755 progress_unlock();
2757 mem_usage -= free_unpacked(n);
2758 n->entry = entry;
2760 while (window_memory_limit &&
2761 mem_usage > window_memory_limit &&
2762 count > 1) {
2763 const uint32_t tail = (idx + window - count) % window;
2764 mem_usage -= free_unpacked(array + tail);
2765 count--;
2768 /* We do not compute delta to *create* objects we are not
2769 * going to pack.
2771 if (entry->preferred_base)
2772 goto next;
2775 * If the current object is at pack edge, take the depth the
2776 * objects that depend on the current object into account
2777 * otherwise they would become too deep.
2779 max_depth = depth;
2780 if (DELTA_CHILD(entry)) {
2781 max_depth -= check_delta_limit(entry, 0);
2782 if (max_depth <= 0)
2783 goto next;
2786 j = window;
2787 while (--j > 0) {
2788 int ret;
2789 uint32_t other_idx = idx + j;
2790 struct unpacked *m;
2791 if (other_idx >= window)
2792 other_idx -= window;
2793 m = array + other_idx;
2794 if (!m->entry)
2795 break;
2796 ret = try_delta(n, m, max_depth, &mem_usage);
2797 if (ret < 0)
2798 break;
2799 else if (ret > 0)
2800 best_base = other_idx;
2804 * If we decided to cache the delta data, then it is best
2805 * to compress it right away. First because we have to do
2806 * it anyway, and doing it here while we're threaded will
2807 * save a lot of time in the non threaded write phase,
2808 * as well as allow for caching more deltas within
2809 * the same cache size limit.
2810 * ...
2811 * But only if not writing to stdout, since in that case
2812 * the network is most likely throttling writes anyway,
2813 * and therefore it is best to go to the write phase ASAP
2814 * instead, as we can afford spending more time compressing
2815 * between writes at that moment.
2817 if (entry->delta_data && !pack_to_stdout) {
2818 unsigned long size;
2820 size = do_compress(&entry->delta_data, DELTA_SIZE(entry));
2821 if (size < (1U << OE_Z_DELTA_BITS)) {
2822 entry->z_delta_size = size;
2823 cache_lock();
2824 delta_cache_size -= DELTA_SIZE(entry);
2825 delta_cache_size += entry->z_delta_size;
2826 cache_unlock();
2827 } else {
2828 FREE_AND_NULL(entry->delta_data);
2829 entry->z_delta_size = 0;
2833 /* if we made n a delta, and if n is already at max
2834 * depth, leaving it in the window is pointless. we
2835 * should evict it first.
2837 if (DELTA(entry) && max_depth <= n->depth)
2838 continue;
2841 * Move the best delta base up in the window, after the
2842 * currently deltified object, to keep it longer. It will
2843 * be the first base object to be attempted next.
2845 if (DELTA(entry)) {
2846 struct unpacked swap = array[best_base];
2847 int dist = (window + idx - best_base) % window;
2848 int dst = best_base;
2849 while (dist--) {
2850 int src = (dst + 1) % window;
2851 array[dst] = array[src];
2852 dst = src;
2854 array[dst] = swap;
2857 next:
2858 idx++;
2859 if (count + 1 < window)
2860 count++;
2861 if (idx >= window)
2862 idx = 0;
2865 for (i = 0; i < window; ++i) {
2866 free_delta_index(array[i].index);
2867 free(array[i].data);
2869 free(array);
2873 * The main object list is split into smaller lists, each is handed to
2874 * one worker.
2876 * The main thread waits on the condition that (at least) one of the workers
2877 * has stopped working (which is indicated in the .working member of
2878 * struct thread_params).
2880 * When a work thread has completed its work, it sets .working to 0 and
2881 * signals the main thread and waits on the condition that .data_ready
2882 * becomes 1.
2884 * The main thread steals half of the work from the worker that has
2885 * most work left to hand it to the idle worker.
2888 struct thread_params {
2889 pthread_t thread;
2890 struct object_entry **list;
2891 unsigned list_size;
2892 unsigned remaining;
2893 int window;
2894 int depth;
2895 int working;
2896 int data_ready;
2897 pthread_mutex_t mutex;
2898 pthread_cond_t cond;
2899 unsigned *processed;
2902 static pthread_cond_t progress_cond;
2905 * Mutex and conditional variable can't be statically-initialized on Windows.
2907 static void init_threaded_search(void)
2909 pthread_mutex_init(&cache_mutex, NULL);
2910 pthread_mutex_init(&progress_mutex, NULL);
2911 pthread_cond_init(&progress_cond, NULL);
2914 static void cleanup_threaded_search(void)
2916 pthread_cond_destroy(&progress_cond);
2917 pthread_mutex_destroy(&cache_mutex);
2918 pthread_mutex_destroy(&progress_mutex);
2921 static void *threaded_find_deltas(void *arg)
2923 struct thread_params *me = arg;
2925 progress_lock();
2926 while (me->remaining) {
2927 progress_unlock();
2929 find_deltas(me->list, &me->remaining,
2930 me->window, me->depth, me->processed);
2932 progress_lock();
2933 me->working = 0;
2934 pthread_cond_signal(&progress_cond);
2935 progress_unlock();
2938 * We must not set ->data_ready before we wait on the
2939 * condition because the main thread may have set it to 1
2940 * before we get here. In order to be sure that new
2941 * work is available if we see 1 in ->data_ready, it
2942 * was initialized to 0 before this thread was spawned
2943 * and we reset it to 0 right away.
2945 pthread_mutex_lock(&me->mutex);
2946 while (!me->data_ready)
2947 pthread_cond_wait(&me->cond, &me->mutex);
2948 me->data_ready = 0;
2949 pthread_mutex_unlock(&me->mutex);
2951 progress_lock();
2953 progress_unlock();
2954 /* leave ->working 1 so that this doesn't get more work assigned */
2955 return NULL;
2958 static void ll_find_deltas(struct object_entry **list, unsigned list_size,
2959 int window, int depth, unsigned *processed)
2961 struct thread_params *p;
2962 int i, ret, active_threads = 0;
2964 init_threaded_search();
2966 if (delta_search_threads <= 1) {
2967 find_deltas(list, &list_size, window, depth, processed);
2968 cleanup_threaded_search();
2969 return;
2971 if (progress > pack_to_stdout)
2972 fprintf_ln(stderr, _("Delta compression using up to %d threads"),
2973 delta_search_threads);
2974 CALLOC_ARRAY(p, delta_search_threads);
2976 /* Partition the work amongst work threads. */
2977 for (i = 0; i < delta_search_threads; i++) {
2978 unsigned sub_size = list_size / (delta_search_threads - i);
2980 /* don't use too small segments or no deltas will be found */
2981 if (sub_size < 2*window && i+1 < delta_search_threads)
2982 sub_size = 0;
2984 p[i].window = window;
2985 p[i].depth = depth;
2986 p[i].processed = processed;
2987 p[i].working = 1;
2988 p[i].data_ready = 0;
2990 /* try to split chunks on "path" boundaries */
2991 while (sub_size && sub_size < list_size &&
2992 list[sub_size]->hash &&
2993 list[sub_size]->hash == list[sub_size-1]->hash)
2994 sub_size++;
2996 p[i].list = list;
2997 p[i].list_size = sub_size;
2998 p[i].remaining = sub_size;
3000 list += sub_size;
3001 list_size -= sub_size;
3004 /* Start work threads. */
3005 for (i = 0; i < delta_search_threads; i++) {
3006 if (!p[i].list_size)
3007 continue;
3008 pthread_mutex_init(&p[i].mutex, NULL);
3009 pthread_cond_init(&p[i].cond, NULL);
3010 ret = pthread_create(&p[i].thread, NULL,
3011 threaded_find_deltas, &p[i]);
3012 if (ret)
3013 die(_("unable to create thread: %s"), strerror(ret));
3014 active_threads++;
3018 * Now let's wait for work completion. Each time a thread is done
3019 * with its work, we steal half of the remaining work from the
3020 * thread with the largest number of unprocessed objects and give
3021 * it to that newly idle thread. This ensure good load balancing
3022 * until the remaining object list segments are simply too short
3023 * to be worth splitting anymore.
3025 while (active_threads) {
3026 struct thread_params *target = NULL;
3027 struct thread_params *victim = NULL;
3028 unsigned sub_size = 0;
3030 progress_lock();
3031 for (;;) {
3032 for (i = 0; !target && i < delta_search_threads; i++)
3033 if (!p[i].working)
3034 target = &p[i];
3035 if (target)
3036 break;
3037 pthread_cond_wait(&progress_cond, &progress_mutex);
3040 for (i = 0; i < delta_search_threads; i++)
3041 if (p[i].remaining > 2*window &&
3042 (!victim || victim->remaining < p[i].remaining))
3043 victim = &p[i];
3044 if (victim) {
3045 sub_size = victim->remaining / 2;
3046 list = victim->list + victim->list_size - sub_size;
3047 while (sub_size && list[0]->hash &&
3048 list[0]->hash == list[-1]->hash) {
3049 list++;
3050 sub_size--;
3052 if (!sub_size) {
3054 * It is possible for some "paths" to have
3055 * so many objects that no hash boundary
3056 * might be found. Let's just steal the
3057 * exact half in that case.
3059 sub_size = victim->remaining / 2;
3060 list -= sub_size;
3062 target->list = list;
3063 victim->list_size -= sub_size;
3064 victim->remaining -= sub_size;
3066 target->list_size = sub_size;
3067 target->remaining = sub_size;
3068 target->working = 1;
3069 progress_unlock();
3071 pthread_mutex_lock(&target->mutex);
3072 target->data_ready = 1;
3073 pthread_cond_signal(&target->cond);
3074 pthread_mutex_unlock(&target->mutex);
3076 if (!sub_size) {
3077 pthread_join(target->thread, NULL);
3078 pthread_cond_destroy(&target->cond);
3079 pthread_mutex_destroy(&target->mutex);
3080 active_threads--;
3083 cleanup_threaded_search();
3084 free(p);
3087 static int obj_is_packed(const struct object_id *oid)
3089 return packlist_find(&to_pack, oid) ||
3090 (reuse_packfile_bitmap &&
3091 bitmap_walk_contains(bitmap_git, reuse_packfile_bitmap, oid));
3094 static void add_tag_chain(const struct object_id *oid)
3096 struct tag *tag;
3099 * We catch duplicates already in add_object_entry(), but we'd
3100 * prefer to do this extra check to avoid having to parse the
3101 * tag at all if we already know that it's being packed (e.g., if
3102 * it was included via bitmaps, we would not have parsed it
3103 * previously).
3105 if (obj_is_packed(oid))
3106 return;
3108 tag = lookup_tag(the_repository, oid);
3109 while (1) {
3110 if (!tag || parse_tag(tag) || !tag->tagged)
3111 die(_("unable to pack objects reachable from tag %s"),
3112 oid_to_hex(oid));
3114 add_object_entry(&tag->object.oid, OBJ_TAG, NULL, 0);
3116 if (tag->tagged->type != OBJ_TAG)
3117 return;
3119 tag = (struct tag *)tag->tagged;
3123 static int add_ref_tag(const char *tag UNUSED, const struct object_id *oid,
3124 int flag UNUSED, void *cb_data UNUSED)
3126 struct object_id peeled;
3128 if (!peel_iterated_oid(oid, &peeled) && obj_is_packed(&peeled))
3129 add_tag_chain(oid);
3130 return 0;
3133 static void prepare_pack(int window, int depth)
3135 struct object_entry **delta_list;
3136 uint32_t i, nr_deltas;
3137 unsigned n;
3139 if (use_delta_islands)
3140 resolve_tree_islands(the_repository, progress, &to_pack);
3142 get_object_details();
3145 * If we're locally repacking then we need to be doubly careful
3146 * from now on in order to make sure no stealth corruption gets
3147 * propagated to the new pack. Clients receiving streamed packs
3148 * should validate everything they get anyway so no need to incur
3149 * the additional cost here in that case.
3151 if (!pack_to_stdout)
3152 do_check_packed_object_crc = 1;
3154 if (!to_pack.nr_objects || !window || !depth)
3155 return;
3157 ALLOC_ARRAY(delta_list, to_pack.nr_objects);
3158 nr_deltas = n = 0;
3160 for (i = 0; i < to_pack.nr_objects; i++) {
3161 struct object_entry *entry = to_pack.objects + i;
3163 if (DELTA(entry))
3164 /* This happens if we decided to reuse existing
3165 * delta from a pack. "reuse_delta &&" is implied.
3167 continue;
3169 if (!entry->type_valid ||
3170 oe_size_less_than(&to_pack, entry, 50))
3171 continue;
3173 if (entry->no_try_delta)
3174 continue;
3176 if (!entry->preferred_base) {
3177 nr_deltas++;
3178 if (oe_type(entry) < 0)
3179 die(_("unable to get type of object %s"),
3180 oid_to_hex(&entry->idx.oid));
3181 } else {
3182 if (oe_type(entry) < 0) {
3184 * This object is not found, but we
3185 * don't have to include it anyway.
3187 continue;
3191 delta_list[n++] = entry;
3194 if (nr_deltas && n > 1) {
3195 unsigned nr_done = 0;
3197 if (progress)
3198 progress_state = start_progress(_("Compressing objects"),
3199 nr_deltas);
3200 QSORT(delta_list, n, type_size_sort);
3201 ll_find_deltas(delta_list, n, window+1, depth, &nr_done);
3202 stop_progress(&progress_state);
3203 if (nr_done != nr_deltas)
3204 die(_("inconsistency with delta count"));
3206 free(delta_list);
3209 static int git_pack_config(const char *k, const char *v,
3210 const struct config_context *ctx, void *cb)
3212 if (!strcmp(k, "pack.window")) {
3213 window = git_config_int(k, v, ctx->kvi);
3214 return 0;
3216 if (!strcmp(k, "pack.windowmemory")) {
3217 window_memory_limit = git_config_ulong(k, v, ctx->kvi);
3218 return 0;
3220 if (!strcmp(k, "pack.depth")) {
3221 depth = git_config_int(k, v, ctx->kvi);
3222 return 0;
3224 if (!strcmp(k, "pack.deltacachesize")) {
3225 max_delta_cache_size = git_config_int(k, v, ctx->kvi);
3226 return 0;
3228 if (!strcmp(k, "pack.deltacachelimit")) {
3229 cache_max_small_delta_size = git_config_int(k, v, ctx->kvi);
3230 return 0;
3232 if (!strcmp(k, "pack.writebitmaphashcache")) {
3233 if (git_config_bool(k, v))
3234 write_bitmap_options |= BITMAP_OPT_HASH_CACHE;
3235 else
3236 write_bitmap_options &= ~BITMAP_OPT_HASH_CACHE;
3239 if (!strcmp(k, "pack.writebitmaplookuptable")) {
3240 if (git_config_bool(k, v))
3241 write_bitmap_options |= BITMAP_OPT_LOOKUP_TABLE;
3242 else
3243 write_bitmap_options &= ~BITMAP_OPT_LOOKUP_TABLE;
3246 if (!strcmp(k, "pack.usebitmaps")) {
3247 use_bitmap_index_default = git_config_bool(k, v);
3248 return 0;
3250 if (!strcmp(k, "pack.allowpackreuse")) {
3251 int res = git_parse_maybe_bool_text(v);
3252 if (res < 0) {
3253 if (!strcasecmp(v, "single"))
3254 allow_pack_reuse = SINGLE_PACK_REUSE;
3255 else if (!strcasecmp(v, "multi"))
3256 allow_pack_reuse = MULTI_PACK_REUSE;
3257 else
3258 die(_("invalid pack.allowPackReuse value: '%s'"), v);
3259 } else if (res) {
3260 allow_pack_reuse = SINGLE_PACK_REUSE;
3261 } else {
3262 allow_pack_reuse = NO_PACK_REUSE;
3264 return 0;
3266 if (!strcmp(k, "pack.threads")) {
3267 delta_search_threads = git_config_int(k, v, ctx->kvi);
3268 if (delta_search_threads < 0)
3269 die(_("invalid number of threads specified (%d)"),
3270 delta_search_threads);
3271 if (!HAVE_THREADS && delta_search_threads != 1) {
3272 warning(_("no threads support, ignoring %s"), k);
3273 delta_search_threads = 0;
3275 return 0;
3277 if (!strcmp(k, "pack.indexversion")) {
3278 pack_idx_opts.version = git_config_int(k, v, ctx->kvi);
3279 if (pack_idx_opts.version > 2)
3280 die(_("bad pack.indexVersion=%"PRIu32),
3281 pack_idx_opts.version);
3282 return 0;
3284 if (!strcmp(k, "pack.writereverseindex")) {
3285 if (git_config_bool(k, v))
3286 pack_idx_opts.flags |= WRITE_REV;
3287 else
3288 pack_idx_opts.flags &= ~WRITE_REV;
3289 return 0;
3291 if (!strcmp(k, "uploadpack.blobpackfileuri")) {
3292 struct configured_exclusion *ex;
3293 const char *oid_end, *pack_end;
3295 * Stores the pack hash. This is not a true object ID, but is
3296 * of the same form.
3298 struct object_id pack_hash;
3300 if (!v)
3301 return config_error_nonbool(k);
3303 ex = xmalloc(sizeof(*ex));
3304 if (parse_oid_hex(v, &ex->e.oid, &oid_end) ||
3305 *oid_end != ' ' ||
3306 parse_oid_hex(oid_end + 1, &pack_hash, &pack_end) ||
3307 *pack_end != ' ')
3308 die(_("value of uploadpack.blobpackfileuri must be "
3309 "of the form '<object-hash> <pack-hash> <uri>' (got '%s')"), v);
3310 if (oidmap_get(&configured_exclusions, &ex->e.oid))
3311 die(_("object already configured in another "
3312 "uploadpack.blobpackfileuri (got '%s')"), v);
3313 ex->pack_hash_hex = xcalloc(1, pack_end - oid_end);
3314 memcpy(ex->pack_hash_hex, oid_end + 1, pack_end - oid_end - 1);
3315 ex->uri = xstrdup(pack_end + 1);
3316 oidmap_put(&configured_exclusions, ex);
3318 return git_default_config(k, v, ctx, cb);
3321 /* Counters for trace2 output when in --stdin-packs mode. */
3322 static int stdin_packs_found_nr;
3323 static int stdin_packs_hints_nr;
3325 static int add_object_entry_from_pack(const struct object_id *oid,
3326 struct packed_git *p,
3327 uint32_t pos,
3328 void *_data)
3330 off_t ofs;
3331 enum object_type type = OBJ_NONE;
3333 display_progress(progress_state, ++nr_seen);
3335 if (have_duplicate_entry(oid, 0))
3336 return 0;
3338 ofs = nth_packed_object_offset(p, pos);
3339 if (!want_object_in_pack(oid, 0, &p, &ofs))
3340 return 0;
3342 if (p) {
3343 struct rev_info *revs = _data;
3344 struct object_info oi = OBJECT_INFO_INIT;
3346 oi.typep = &type;
3347 if (packed_object_info(the_repository, p, ofs, &oi) < 0) {
3348 die(_("could not get type of object %s in pack %s"),
3349 oid_to_hex(oid), p->pack_name);
3350 } else if (type == OBJ_COMMIT) {
3352 * commits in included packs are used as starting points for the
3353 * subsequent revision walk
3355 add_pending_oid(revs, NULL, oid, 0);
3358 stdin_packs_found_nr++;
3361 create_object_entry(oid, type, 0, 0, 0, p, ofs);
3363 return 0;
3366 static void show_commit_pack_hint(struct commit *commit UNUSED,
3367 void *data UNUSED)
3369 /* nothing to do; commits don't have a namehash */
3372 static void show_object_pack_hint(struct object *object, const char *name,
3373 void *data UNUSED)
3375 struct object_entry *oe = packlist_find(&to_pack, &object->oid);
3376 if (!oe)
3377 return;
3380 * Our 'to_pack' list was constructed by iterating all objects packed in
3381 * included packs, and so doesn't have a non-zero hash field that you
3382 * would typically pick up during a reachability traversal.
3384 * Make a best-effort attempt to fill in the ->hash and ->no_try_delta
3385 * here using a now in order to perhaps improve the delta selection
3386 * process.
3388 oe->hash = pack_name_hash(name);
3389 oe->no_try_delta = name && no_try_delta(name);
3391 stdin_packs_hints_nr++;
3394 static int pack_mtime_cmp(const void *_a, const void *_b)
3396 struct packed_git *a = ((const struct string_list_item*)_a)->util;
3397 struct packed_git *b = ((const struct string_list_item*)_b)->util;
3400 * order packs by descending mtime so that objects are laid out
3401 * roughly as newest-to-oldest
3403 if (a->mtime < b->mtime)
3404 return 1;
3405 else if (b->mtime < a->mtime)
3406 return -1;
3407 else
3408 return 0;
3411 static void read_packs_list_from_stdin(void)
3413 struct strbuf buf = STRBUF_INIT;
3414 struct string_list include_packs = STRING_LIST_INIT_DUP;
3415 struct string_list exclude_packs = STRING_LIST_INIT_DUP;
3416 struct string_list_item *item = NULL;
3418 struct packed_git *p;
3419 struct rev_info revs;
3421 repo_init_revisions(the_repository, &revs, NULL);
3423 * Use a revision walk to fill in the namehash of objects in the include
3424 * packs. To save time, we'll avoid traversing through objects that are
3425 * in excluded packs.
3427 * That may cause us to avoid populating all of the namehash fields of
3428 * all included objects, but our goal is best-effort, since this is only
3429 * an optimization during delta selection.
3431 revs.no_kept_objects = 1;
3432 revs.keep_pack_cache_flags |= IN_CORE_KEEP_PACKS;
3433 revs.blob_objects = 1;
3434 revs.tree_objects = 1;
3435 revs.tag_objects = 1;
3436 revs.ignore_missing_links = 1;
3438 while (strbuf_getline(&buf, stdin) != EOF) {
3439 if (!buf.len)
3440 continue;
3442 if (*buf.buf == '^')
3443 string_list_append(&exclude_packs, buf.buf + 1);
3444 else
3445 string_list_append(&include_packs, buf.buf);
3447 strbuf_reset(&buf);
3450 string_list_sort(&include_packs);
3451 string_list_remove_duplicates(&include_packs, 0);
3452 string_list_sort(&exclude_packs);
3453 string_list_remove_duplicates(&exclude_packs, 0);
3455 for (p = get_all_packs(the_repository); p; p = p->next) {
3456 const char *pack_name = pack_basename(p);
3458 if ((item = string_list_lookup(&include_packs, pack_name)))
3459 item->util = p;
3460 if ((item = string_list_lookup(&exclude_packs, pack_name)))
3461 item->util = p;
3465 * Arguments we got on stdin may not even be packs. First
3466 * check that to avoid segfaulting later on in
3467 * e.g. pack_mtime_cmp(), excluded packs are handled below.
3469 * Since we first parsed our STDIN and then sorted the input
3470 * lines the pack we error on will be whatever line happens to
3471 * sort first. This is lazy, it's enough that we report one
3472 * bad case here, we don't need to report the first/last one,
3473 * or all of them.
3475 for_each_string_list_item(item, &include_packs) {
3476 struct packed_git *p = item->util;
3477 if (!p)
3478 die(_("could not find pack '%s'"), item->string);
3479 if (!is_pack_valid(p))
3480 die(_("packfile %s cannot be accessed"), p->pack_name);
3484 * Then, handle all of the excluded packs, marking them as
3485 * kept in-core so that later calls to add_object_entry()
3486 * discards any objects that are also found in excluded packs.
3488 for_each_string_list_item(item, &exclude_packs) {
3489 struct packed_git *p = item->util;
3490 if (!p)
3491 die(_("could not find pack '%s'"), item->string);
3492 p->pack_keep_in_core = 1;
3496 * Order packs by ascending mtime; use QSORT directly to access the
3497 * string_list_item's ->util pointer, which string_list_sort() does not
3498 * provide.
3500 QSORT(include_packs.items, include_packs.nr, pack_mtime_cmp);
3502 for_each_string_list_item(item, &include_packs) {
3503 struct packed_git *p = item->util;
3504 for_each_object_in_pack(p,
3505 add_object_entry_from_pack,
3506 &revs,
3507 FOR_EACH_OBJECT_PACK_ORDER);
3510 if (prepare_revision_walk(&revs))
3511 die(_("revision walk setup failed"));
3512 traverse_commit_list(&revs,
3513 show_commit_pack_hint,
3514 show_object_pack_hint,
3515 NULL);
3517 trace2_data_intmax("pack-objects", the_repository, "stdin_packs_found",
3518 stdin_packs_found_nr);
3519 trace2_data_intmax("pack-objects", the_repository, "stdin_packs_hints",
3520 stdin_packs_hints_nr);
3522 strbuf_release(&buf);
3523 string_list_clear(&include_packs, 0);
3524 string_list_clear(&exclude_packs, 0);
3527 static void add_cruft_object_entry(const struct object_id *oid, enum object_type type,
3528 struct packed_git *pack, off_t offset,
3529 const char *name, uint32_t mtime)
3531 struct object_entry *entry;
3533 display_progress(progress_state, ++nr_seen);
3535 entry = packlist_find(&to_pack, oid);
3536 if (entry) {
3537 if (name) {
3538 entry->hash = pack_name_hash(name);
3539 entry->no_try_delta = no_try_delta(name);
3541 } else {
3542 if (!want_object_in_pack(oid, 0, &pack, &offset))
3543 return;
3544 if (!pack && type == OBJ_BLOB && !has_loose_object(oid)) {
3546 * If a traversed tree has a missing blob then we want
3547 * to avoid adding that missing object to our pack.
3549 * This only applies to missing blobs, not trees,
3550 * because the traversal needs to parse sub-trees but
3551 * not blobs.
3553 * Note we only perform this check when we couldn't
3554 * already find the object in a pack, so we're really
3555 * limited to "ensure non-tip blobs which don't exist in
3556 * packs do exist via loose objects". Confused?
3558 return;
3561 entry = create_object_entry(oid, type, pack_name_hash(name),
3562 0, name && no_try_delta(name),
3563 pack, offset);
3566 if (mtime > oe_cruft_mtime(&to_pack, entry))
3567 oe_set_cruft_mtime(&to_pack, entry, mtime);
3568 return;
3571 static void show_cruft_object(struct object *obj, const char *name, void *data UNUSED)
3574 * if we did not record it earlier, it's at least as old as our
3575 * expiration value. Rather than find it exactly, just use that
3576 * value. This may bump it forward from its real mtime, but it
3577 * will still be "too old" next time we run with the same
3578 * expiration.
3580 * if obj does appear in the packing list, this call is a noop (or may
3581 * set the namehash).
3583 add_cruft_object_entry(&obj->oid, obj->type, NULL, 0, name, cruft_expiration);
3586 static void show_cruft_commit(struct commit *commit, void *data)
3588 show_cruft_object((struct object*)commit, NULL, data);
3591 static int cruft_include_check_obj(struct object *obj, void *data UNUSED)
3593 return !has_object_kept_pack(&obj->oid, IN_CORE_KEEP_PACKS);
3596 static int cruft_include_check(struct commit *commit, void *data)
3598 return cruft_include_check_obj((struct object*)commit, data);
3601 static void set_cruft_mtime(const struct object *object,
3602 struct packed_git *pack,
3603 off_t offset, time_t mtime)
3605 add_cruft_object_entry(&object->oid, object->type, pack, offset, NULL,
3606 mtime);
3609 static void mark_pack_kept_in_core(struct string_list *packs, unsigned keep)
3611 struct string_list_item *item = NULL;
3612 for_each_string_list_item(item, packs) {
3613 struct packed_git *p = item->util;
3614 if (!p)
3615 die(_("could not find pack '%s'"), item->string);
3616 p->pack_keep_in_core = keep;
3620 static void add_unreachable_loose_objects(void);
3621 static void add_objects_in_unpacked_packs(void);
3623 static void enumerate_cruft_objects(void)
3625 if (progress)
3626 progress_state = start_progress(_("Enumerating cruft objects"), 0);
3628 add_objects_in_unpacked_packs();
3629 add_unreachable_loose_objects();
3631 stop_progress(&progress_state);
3634 static void enumerate_and_traverse_cruft_objects(struct string_list *fresh_packs)
3636 struct packed_git *p;
3637 struct rev_info revs;
3638 int ret;
3640 repo_init_revisions(the_repository, &revs, NULL);
3642 revs.tag_objects = 1;
3643 revs.tree_objects = 1;
3644 revs.blob_objects = 1;
3646 revs.include_check = cruft_include_check;
3647 revs.include_check_obj = cruft_include_check_obj;
3649 revs.ignore_missing_links = 1;
3651 if (progress)
3652 progress_state = start_progress(_("Enumerating cruft objects"), 0);
3653 ret = add_unseen_recent_objects_to_traversal(&revs, cruft_expiration,
3654 set_cruft_mtime, 1);
3655 stop_progress(&progress_state);
3657 if (ret)
3658 die(_("unable to add cruft objects"));
3661 * Re-mark only the fresh packs as kept so that objects in
3662 * unknown packs do not halt the reachability traversal early.
3664 for (p = get_all_packs(the_repository); p; p = p->next)
3665 p->pack_keep_in_core = 0;
3666 mark_pack_kept_in_core(fresh_packs, 1);
3668 if (prepare_revision_walk(&revs))
3669 die(_("revision walk setup failed"));
3670 if (progress)
3671 progress_state = start_progress(_("Traversing cruft objects"), 0);
3672 nr_seen = 0;
3673 traverse_commit_list(&revs, show_cruft_commit, show_cruft_object, NULL);
3675 stop_progress(&progress_state);
3678 static void read_cruft_objects(void)
3680 struct strbuf buf = STRBUF_INIT;
3681 struct string_list discard_packs = STRING_LIST_INIT_DUP;
3682 struct string_list fresh_packs = STRING_LIST_INIT_DUP;
3683 struct packed_git *p;
3685 ignore_packed_keep_in_core = 1;
3687 while (strbuf_getline(&buf, stdin) != EOF) {
3688 if (!buf.len)
3689 continue;
3691 if (*buf.buf == '-')
3692 string_list_append(&discard_packs, buf.buf + 1);
3693 else
3694 string_list_append(&fresh_packs, buf.buf);
3697 string_list_sort(&discard_packs);
3698 string_list_sort(&fresh_packs);
3700 for (p = get_all_packs(the_repository); p; p = p->next) {
3701 const char *pack_name = pack_basename(p);
3702 struct string_list_item *item;
3704 item = string_list_lookup(&fresh_packs, pack_name);
3705 if (!item)
3706 item = string_list_lookup(&discard_packs, pack_name);
3708 if (item) {
3709 item->util = p;
3710 } else {
3712 * This pack wasn't mentioned in either the "fresh" or
3713 * "discard" list, so the caller didn't know about it.
3715 * Mark it as kept so that its objects are ignored by
3716 * add_unseen_recent_objects_to_traversal(). We'll
3717 * unmark it before starting the traversal so it doesn't
3718 * halt the traversal early.
3720 p->pack_keep_in_core = 1;
3724 mark_pack_kept_in_core(&fresh_packs, 1);
3725 mark_pack_kept_in_core(&discard_packs, 0);
3727 if (cruft_expiration)
3728 enumerate_and_traverse_cruft_objects(&fresh_packs);
3729 else
3730 enumerate_cruft_objects();
3732 strbuf_release(&buf);
3733 string_list_clear(&discard_packs, 0);
3734 string_list_clear(&fresh_packs, 0);
3737 static void read_object_list_from_stdin(void)
3739 char line[GIT_MAX_HEXSZ + 1 + PATH_MAX + 2];
3740 struct object_id oid;
3741 const char *p;
3743 for (;;) {
3744 if (!fgets(line, sizeof(line), stdin)) {
3745 if (feof(stdin))
3746 break;
3747 if (!ferror(stdin))
3748 BUG("fgets returned NULL, not EOF, not error!");
3749 if (errno != EINTR)
3750 die_errno("fgets");
3751 clearerr(stdin);
3752 continue;
3754 if (line[0] == '-') {
3755 if (get_oid_hex(line+1, &oid))
3756 die(_("expected edge object ID, got garbage:\n %s"),
3757 line);
3758 add_preferred_base(&oid);
3759 continue;
3761 if (parse_oid_hex(line, &oid, &p))
3762 die(_("expected object ID, got garbage:\n %s"), line);
3764 add_preferred_base_object(p + 1);
3765 add_object_entry(&oid, OBJ_NONE, p + 1, 0);
3769 static void show_commit(struct commit *commit, void *data UNUSED)
3771 add_object_entry(&commit->object.oid, OBJ_COMMIT, NULL, 0);
3773 if (write_bitmap_index)
3774 index_commit_for_bitmap(commit);
3776 if (use_delta_islands)
3777 propagate_island_marks(commit);
3780 static void show_object(struct object *obj, const char *name,
3781 void *data UNUSED)
3783 add_preferred_base_object(name);
3784 add_object_entry(&obj->oid, obj->type, name, 0);
3786 if (use_delta_islands) {
3787 const char *p;
3788 unsigned depth;
3789 struct object_entry *ent;
3791 /* the empty string is a root tree, which is depth 0 */
3792 depth = *name ? 1 : 0;
3793 for (p = strchr(name, '/'); p; p = strchr(p + 1, '/'))
3794 depth++;
3796 ent = packlist_find(&to_pack, &obj->oid);
3797 if (ent && depth > oe_tree_depth(&to_pack, ent))
3798 oe_set_tree_depth(&to_pack, ent, depth);
3802 static void show_object__ma_allow_any(struct object *obj, const char *name, void *data)
3804 assert(arg_missing_action == MA_ALLOW_ANY);
3807 * Quietly ignore ALL missing objects. This avoids problems with
3808 * staging them now and getting an odd error later.
3810 if (!has_object(the_repository, &obj->oid, 0))
3811 return;
3813 show_object(obj, name, data);
3816 static void show_object__ma_allow_promisor(struct object *obj, const char *name, void *data)
3818 assert(arg_missing_action == MA_ALLOW_PROMISOR);
3821 * Quietly ignore EXPECTED missing objects. This avoids problems with
3822 * staging them now and getting an odd error later.
3824 if (!has_object(the_repository, &obj->oid, 0) && is_promisor_object(&obj->oid))
3825 return;
3827 show_object(obj, name, data);
3830 static int option_parse_missing_action(const struct option *opt UNUSED,
3831 const char *arg, int unset)
3833 assert(arg);
3834 assert(!unset);
3836 if (!strcmp(arg, "error")) {
3837 arg_missing_action = MA_ERROR;
3838 fn_show_object = show_object;
3839 return 0;
3842 if (!strcmp(arg, "allow-any")) {
3843 arg_missing_action = MA_ALLOW_ANY;
3844 fetch_if_missing = 0;
3845 fn_show_object = show_object__ma_allow_any;
3846 return 0;
3849 if (!strcmp(arg, "allow-promisor")) {
3850 arg_missing_action = MA_ALLOW_PROMISOR;
3851 fetch_if_missing = 0;
3852 fn_show_object = show_object__ma_allow_promisor;
3853 return 0;
3856 die(_("invalid value for '%s': '%s'"), "--missing", arg);
3857 return 0;
3860 static void show_edge(struct commit *commit)
3862 add_preferred_base(&commit->object.oid);
3865 static int add_object_in_unpacked_pack(const struct object_id *oid,
3866 struct packed_git *pack,
3867 uint32_t pos,
3868 void *data UNUSED)
3870 if (cruft) {
3871 off_t offset;
3872 time_t mtime;
3874 if (pack->is_cruft) {
3875 if (load_pack_mtimes(pack) < 0)
3876 die(_("could not load cruft pack .mtimes"));
3877 mtime = nth_packed_mtime(pack, pos);
3878 } else {
3879 mtime = pack->mtime;
3881 offset = nth_packed_object_offset(pack, pos);
3883 add_cruft_object_entry(oid, OBJ_NONE, pack, offset,
3884 NULL, mtime);
3885 } else {
3886 add_object_entry(oid, OBJ_NONE, "", 0);
3888 return 0;
3891 static void add_objects_in_unpacked_packs(void)
3893 if (for_each_packed_object(add_object_in_unpacked_pack, NULL,
3894 FOR_EACH_OBJECT_PACK_ORDER |
3895 FOR_EACH_OBJECT_LOCAL_ONLY |
3896 FOR_EACH_OBJECT_SKIP_IN_CORE_KEPT_PACKS |
3897 FOR_EACH_OBJECT_SKIP_ON_DISK_KEPT_PACKS))
3898 die(_("cannot open pack index"));
3901 static int add_loose_object(const struct object_id *oid, const char *path,
3902 void *data UNUSED)
3904 enum object_type type = oid_object_info(the_repository, oid, NULL);
3906 if (type < 0) {
3907 warning(_("loose object at %s could not be examined"), path);
3908 return 0;
3911 if (cruft) {
3912 struct stat st;
3913 if (stat(path, &st) < 0) {
3914 if (errno == ENOENT)
3915 return 0;
3916 return error_errno("unable to stat %s", oid_to_hex(oid));
3919 add_cruft_object_entry(oid, type, NULL, 0, NULL,
3920 st.st_mtime);
3921 } else {
3922 add_object_entry(oid, type, "", 0);
3924 return 0;
3928 * We actually don't even have to worry about reachability here.
3929 * add_object_entry will weed out duplicates, so we just add every
3930 * loose object we find.
3932 static void add_unreachable_loose_objects(void)
3934 for_each_loose_file_in_objdir(get_object_directory(),
3935 add_loose_object,
3936 NULL, NULL, NULL);
3939 static int has_sha1_pack_kept_or_nonlocal(const struct object_id *oid)
3941 static struct packed_git *last_found = (void *)1;
3942 struct packed_git *p;
3944 p = (last_found != (void *)1) ? last_found :
3945 get_all_packs(the_repository);
3947 while (p) {
3948 if ((!p->pack_local || p->pack_keep ||
3949 p->pack_keep_in_core) &&
3950 find_pack_entry_one(oid->hash, p)) {
3951 last_found = p;
3952 return 1;
3954 if (p == last_found)
3955 p = get_all_packs(the_repository);
3956 else
3957 p = p->next;
3958 if (p == last_found)
3959 p = p->next;
3961 return 0;
3965 * Store a list of sha1s that are should not be discarded
3966 * because they are either written too recently, or are
3967 * reachable from another object that was.
3969 * This is filled by get_object_list.
3971 static struct oid_array recent_objects;
3973 static int loosened_object_can_be_discarded(const struct object_id *oid,
3974 timestamp_t mtime)
3976 if (!unpack_unreachable_expiration)
3977 return 0;
3978 if (mtime > unpack_unreachable_expiration)
3979 return 0;
3980 if (oid_array_lookup(&recent_objects, oid) >= 0)
3981 return 0;
3982 return 1;
3985 static void loosen_unused_packed_objects(void)
3987 struct packed_git *p;
3988 uint32_t i;
3989 uint32_t loosened_objects_nr = 0;
3990 struct object_id oid;
3992 for (p = get_all_packs(the_repository); p; p = p->next) {
3993 if (!p->pack_local || p->pack_keep || p->pack_keep_in_core)
3994 continue;
3996 if (open_pack_index(p))
3997 die(_("cannot open pack index"));
3999 for (i = 0; i < p->num_objects; i++) {
4000 nth_packed_object_id(&oid, p, i);
4001 if (!packlist_find(&to_pack, &oid) &&
4002 !has_sha1_pack_kept_or_nonlocal(&oid) &&
4003 !loosened_object_can_be_discarded(&oid, p->mtime)) {
4004 if (force_object_loose(&oid, p->mtime))
4005 die(_("unable to force loose object"));
4006 loosened_objects_nr++;
4011 trace2_data_intmax("pack-objects", the_repository,
4012 "loosen_unused_packed_objects/loosened", loosened_objects_nr);
4016 * This tracks any options which pack-reuse code expects to be on, or which a
4017 * reader of the pack might not understand, and which would therefore prevent
4018 * blind reuse of what we have on disk.
4020 static int pack_options_allow_reuse(void)
4022 return allow_pack_reuse != NO_PACK_REUSE &&
4023 pack_to_stdout &&
4024 !ignore_packed_keep_on_disk &&
4025 !ignore_packed_keep_in_core &&
4026 (!local || !have_non_local_packs) &&
4027 !incremental;
4030 static int get_object_list_from_bitmap(struct rev_info *revs)
4032 if (!(bitmap_git = prepare_bitmap_walk(revs, 0)))
4033 return -1;
4035 if (pack_options_allow_reuse())
4036 reuse_partial_packfile_from_bitmap(bitmap_git,
4037 &reuse_packfiles,
4038 &reuse_packfiles_nr,
4039 &reuse_packfile_bitmap,
4040 allow_pack_reuse == MULTI_PACK_REUSE);
4042 if (reuse_packfiles) {
4043 reuse_packfile_objects = bitmap_popcount(reuse_packfile_bitmap);
4044 if (!reuse_packfile_objects)
4045 BUG("expected non-empty reuse bitmap");
4047 nr_result += reuse_packfile_objects;
4048 nr_seen += reuse_packfile_objects;
4049 display_progress(progress_state, nr_seen);
4052 traverse_bitmap_commit_list(bitmap_git, revs,
4053 &add_object_entry_from_bitmap);
4054 return 0;
4057 static void record_recent_object(struct object *obj,
4058 const char *name UNUSED,
4059 void *data UNUSED)
4061 oid_array_append(&recent_objects, &obj->oid);
4064 static void record_recent_commit(struct commit *commit, void *data UNUSED)
4066 oid_array_append(&recent_objects, &commit->object.oid);
4069 static int mark_bitmap_preferred_tip(const char *refname,
4070 const struct object_id *oid,
4071 int flags UNUSED,
4072 void *data UNUSED)
4074 struct object_id peeled;
4075 struct object *object;
4077 if (!peel_iterated_oid(oid, &peeled))
4078 oid = &peeled;
4080 object = parse_object_or_die(oid, refname);
4081 if (object->type == OBJ_COMMIT)
4082 object->flags |= NEEDS_BITMAP;
4084 return 0;
4087 static void mark_bitmap_preferred_tips(void)
4089 struct string_list_item *item;
4090 const struct string_list *preferred_tips;
4092 preferred_tips = bitmap_preferred_tips(the_repository);
4093 if (!preferred_tips)
4094 return;
4096 for_each_string_list_item(item, preferred_tips) {
4097 refs_for_each_ref_in(get_main_ref_store(the_repository),
4098 item->string, mark_bitmap_preferred_tip,
4099 NULL);
4103 static void get_object_list(struct rev_info *revs, int ac, const char **av)
4105 struct setup_revision_opt s_r_opt = {
4106 .allow_exclude_promisor_objects = 1,
4108 char line[1000];
4109 int flags = 0;
4110 int save_warning;
4112 save_commit_buffer = 0;
4113 setup_revisions(ac, av, revs, &s_r_opt);
4115 /* make sure shallows are read */
4116 is_repository_shallow(the_repository);
4118 save_warning = warn_on_object_refname_ambiguity;
4119 warn_on_object_refname_ambiguity = 0;
4121 while (fgets(line, sizeof(line), stdin) != NULL) {
4122 int len = strlen(line);
4123 if (len && line[len - 1] == '\n')
4124 line[--len] = 0;
4125 if (!len)
4126 break;
4127 if (*line == '-') {
4128 if (!strcmp(line, "--not")) {
4129 flags ^= UNINTERESTING;
4130 write_bitmap_index = 0;
4131 continue;
4133 if (starts_with(line, "--shallow ")) {
4134 struct object_id oid;
4135 if (get_oid_hex(line + 10, &oid))
4136 die("not an object name '%s'", line + 10);
4137 register_shallow(the_repository, &oid);
4138 use_bitmap_index = 0;
4139 continue;
4141 die(_("not a rev '%s'"), line);
4143 if (handle_revision_arg(line, revs, flags, REVARG_CANNOT_BE_FILENAME))
4144 die(_("bad revision '%s'"), line);
4147 warn_on_object_refname_ambiguity = save_warning;
4149 if (use_bitmap_index && !get_object_list_from_bitmap(revs))
4150 return;
4152 if (use_delta_islands)
4153 load_delta_islands(the_repository, progress);
4155 if (write_bitmap_index)
4156 mark_bitmap_preferred_tips();
4158 if (prepare_revision_walk(revs))
4159 die(_("revision walk setup failed"));
4160 mark_edges_uninteresting(revs, show_edge, sparse);
4162 if (!fn_show_object)
4163 fn_show_object = show_object;
4164 traverse_commit_list(revs,
4165 show_commit, fn_show_object,
4166 NULL);
4168 if (unpack_unreachable_expiration) {
4169 revs->ignore_missing_links = 1;
4170 if (add_unseen_recent_objects_to_traversal(revs,
4171 unpack_unreachable_expiration, NULL, 0))
4172 die(_("unable to add recent objects"));
4173 if (prepare_revision_walk(revs))
4174 die(_("revision walk setup failed"));
4175 traverse_commit_list(revs, record_recent_commit,
4176 record_recent_object, NULL);
4179 if (keep_unreachable)
4180 add_objects_in_unpacked_packs();
4181 if (pack_loose_unreachable)
4182 add_unreachable_loose_objects();
4183 if (unpack_unreachable)
4184 loosen_unused_packed_objects();
4186 oid_array_clear(&recent_objects);
4189 static void add_extra_kept_packs(const struct string_list *names)
4191 struct packed_git *p;
4193 if (!names->nr)
4194 return;
4196 for (p = get_all_packs(the_repository); p; p = p->next) {
4197 const char *name = basename(p->pack_name);
4198 int i;
4200 if (!p->pack_local)
4201 continue;
4203 for (i = 0; i < names->nr; i++)
4204 if (!fspathcmp(name, names->items[i].string))
4205 break;
4207 if (i < names->nr) {
4208 p->pack_keep_in_core = 1;
4209 ignore_packed_keep_in_core = 1;
4210 continue;
4215 static int option_parse_quiet(const struct option *opt, const char *arg,
4216 int unset)
4218 int *val = opt->value;
4220 BUG_ON_OPT_ARG(arg);
4222 if (!unset)
4223 *val = 0;
4224 else if (!*val)
4225 *val = 1;
4226 return 0;
4229 static int option_parse_index_version(const struct option *opt,
4230 const char *arg, int unset)
4232 struct pack_idx_option *popts = opt->value;
4233 char *c;
4234 const char *val = arg;
4236 BUG_ON_OPT_NEG(unset);
4238 popts->version = strtoul(val, &c, 10);
4239 if (popts->version > 2)
4240 die(_("unsupported index version %s"), val);
4241 if (*c == ',' && c[1])
4242 popts->off32_limit = strtoul(c+1, &c, 0);
4243 if (*c || popts->off32_limit & 0x80000000)
4244 die(_("bad index version '%s'"), val);
4245 return 0;
4248 static int option_parse_unpack_unreachable(const struct option *opt UNUSED,
4249 const char *arg, int unset)
4251 if (unset) {
4252 unpack_unreachable = 0;
4253 unpack_unreachable_expiration = 0;
4255 else {
4256 unpack_unreachable = 1;
4257 if (arg)
4258 unpack_unreachable_expiration = approxidate(arg);
4260 return 0;
4263 static int option_parse_cruft_expiration(const struct option *opt UNUSED,
4264 const char *arg, int unset)
4266 if (unset) {
4267 cruft = 0;
4268 cruft_expiration = 0;
4269 } else {
4270 cruft = 1;
4271 if (arg)
4272 cruft_expiration = approxidate(arg);
4274 return 0;
4277 int cmd_pack_objects(int argc, const char **argv, const char *prefix)
4279 int use_internal_rev_list = 0;
4280 int shallow = 0;
4281 int all_progress_implied = 0;
4282 struct strvec rp = STRVEC_INIT;
4283 int rev_list_unpacked = 0, rev_list_all = 0, rev_list_reflog = 0;
4284 int rev_list_index = 0;
4285 int stdin_packs = 0;
4286 struct string_list keep_pack_list = STRING_LIST_INIT_NODUP;
4287 struct list_objects_filter_options filter_options =
4288 LIST_OBJECTS_FILTER_INIT;
4290 struct option pack_objects_options[] = {
4291 OPT_CALLBACK_F('q', "quiet", &progress, NULL,
4292 N_("do not show progress meter"),
4293 PARSE_OPT_NOARG, option_parse_quiet),
4294 OPT_SET_INT(0, "progress", &progress,
4295 N_("show progress meter"), 1),
4296 OPT_SET_INT(0, "all-progress", &progress,
4297 N_("show progress meter during object writing phase"), 2),
4298 OPT_BOOL(0, "all-progress-implied",
4299 &all_progress_implied,
4300 N_("similar to --all-progress when progress meter is shown")),
4301 OPT_CALLBACK_F(0, "index-version", &pack_idx_opts, N_("<version>[,<offset>]"),
4302 N_("write the pack index file in the specified idx format version"),
4303 PARSE_OPT_NONEG, option_parse_index_version),
4304 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit,
4305 N_("maximum size of each output pack file")),
4306 OPT_BOOL(0, "local", &local,
4307 N_("ignore borrowed objects from alternate object store")),
4308 OPT_BOOL(0, "incremental", &incremental,
4309 N_("ignore packed objects")),
4310 OPT_INTEGER(0, "window", &window,
4311 N_("limit pack window by objects")),
4312 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit,
4313 N_("limit pack window by memory in addition to object limit")),
4314 OPT_INTEGER(0, "depth", &depth,
4315 N_("maximum length of delta chain allowed in the resulting pack")),
4316 OPT_BOOL(0, "reuse-delta", &reuse_delta,
4317 N_("reuse existing deltas")),
4318 OPT_BOOL(0, "reuse-object", &reuse_object,
4319 N_("reuse existing objects")),
4320 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta,
4321 N_("use OFS_DELTA objects")),
4322 OPT_INTEGER(0, "threads", &delta_search_threads,
4323 N_("use threads when searching for best delta matches")),
4324 OPT_BOOL(0, "non-empty", &non_empty,
4325 N_("do not create an empty pack output")),
4326 OPT_BOOL(0, "revs", &use_internal_rev_list,
4327 N_("read revision arguments from standard input")),
4328 OPT_SET_INT_F(0, "unpacked", &rev_list_unpacked,
4329 N_("limit the objects to those that are not yet packed"),
4330 1, PARSE_OPT_NONEG),
4331 OPT_SET_INT_F(0, "all", &rev_list_all,
4332 N_("include objects reachable from any reference"),
4333 1, PARSE_OPT_NONEG),
4334 OPT_SET_INT_F(0, "reflog", &rev_list_reflog,
4335 N_("include objects referred by reflog entries"),
4336 1, PARSE_OPT_NONEG),
4337 OPT_SET_INT_F(0, "indexed-objects", &rev_list_index,
4338 N_("include objects referred to by the index"),
4339 1, PARSE_OPT_NONEG),
4340 OPT_BOOL(0, "stdin-packs", &stdin_packs,
4341 N_("read packs from stdin")),
4342 OPT_BOOL(0, "stdout", &pack_to_stdout,
4343 N_("output pack to stdout")),
4344 OPT_BOOL(0, "include-tag", &include_tag,
4345 N_("include tag objects that refer to objects to be packed")),
4346 OPT_BOOL(0, "keep-unreachable", &keep_unreachable,
4347 N_("keep unreachable objects")),
4348 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable,
4349 N_("pack loose unreachable objects")),
4350 OPT_CALLBACK_F(0, "unpack-unreachable", NULL, N_("time"),
4351 N_("unpack unreachable objects newer than <time>"),
4352 PARSE_OPT_OPTARG, option_parse_unpack_unreachable),
4353 OPT_BOOL(0, "cruft", &cruft, N_("create a cruft pack")),
4354 OPT_CALLBACK_F(0, "cruft-expiration", NULL, N_("time"),
4355 N_("expire cruft objects older than <time>"),
4356 PARSE_OPT_OPTARG, option_parse_cruft_expiration),
4357 OPT_BOOL(0, "sparse", &sparse,
4358 N_("use the sparse reachability algorithm")),
4359 OPT_BOOL(0, "thin", &thin,
4360 N_("create thin packs")),
4361 OPT_BOOL(0, "shallow", &shallow,
4362 N_("create packs suitable for shallow fetches")),
4363 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep_on_disk,
4364 N_("ignore packs that have companion .keep file")),
4365 OPT_STRING_LIST(0, "keep-pack", &keep_pack_list, N_("name"),
4366 N_("ignore this pack")),
4367 OPT_INTEGER(0, "compression", &pack_compression_level,
4368 N_("pack compression level")),
4369 OPT_BOOL(0, "keep-true-parents", &grafts_keep_true_parents,
4370 N_("do not hide commits by grafts")),
4371 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index,
4372 N_("use a bitmap index if available to speed up counting objects")),
4373 OPT_SET_INT(0, "write-bitmap-index", &write_bitmap_index,
4374 N_("write a bitmap index together with the pack index"),
4375 WRITE_BITMAP_TRUE),
4376 OPT_SET_INT_F(0, "write-bitmap-index-quiet",
4377 &write_bitmap_index,
4378 N_("write a bitmap index if possible"),
4379 WRITE_BITMAP_QUIET, PARSE_OPT_HIDDEN),
4380 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
4381 OPT_CALLBACK_F(0, "missing", NULL, N_("action"),
4382 N_("handling for missing objects"), PARSE_OPT_NONEG,
4383 option_parse_missing_action),
4384 OPT_BOOL(0, "exclude-promisor-objects", &exclude_promisor_objects,
4385 N_("do not pack objects in promisor packfiles")),
4386 OPT_BOOL(0, "delta-islands", &use_delta_islands,
4387 N_("respect islands during delta compression")),
4388 OPT_STRING_LIST(0, "uri-protocol", &uri_protocols,
4389 N_("protocol"),
4390 N_("exclude any configured uploadpack.blobpackfileuri with this protocol")),
4391 OPT_END(),
4394 if (DFS_NUM_STATES > (1 << OE_DFS_STATE_BITS))
4395 BUG("too many dfs states, increase OE_DFS_STATE_BITS");
4397 disable_replace_refs();
4399 sparse = git_env_bool("GIT_TEST_PACK_SPARSE", -1);
4400 if (the_repository->gitdir) {
4401 prepare_repo_settings(the_repository);
4402 if (sparse < 0)
4403 sparse = the_repository->settings.pack_use_sparse;
4404 if (the_repository->settings.pack_use_multi_pack_reuse)
4405 allow_pack_reuse = MULTI_PACK_REUSE;
4408 reset_pack_idx_option(&pack_idx_opts);
4409 pack_idx_opts.flags |= WRITE_REV;
4410 git_config(git_pack_config, NULL);
4411 if (git_env_bool(GIT_TEST_NO_WRITE_REV_INDEX, 0))
4412 pack_idx_opts.flags &= ~WRITE_REV;
4414 progress = isatty(2);
4415 argc = parse_options(argc, argv, prefix, pack_objects_options,
4416 pack_usage, 0);
4418 if (argc) {
4419 base_name = argv[0];
4420 argc--;
4422 if (pack_to_stdout != !base_name || argc)
4423 usage_with_options(pack_usage, pack_objects_options);
4425 if (depth < 0)
4426 depth = 0;
4427 if (depth >= (1 << OE_DEPTH_BITS)) {
4428 warning(_("delta chain depth %d is too deep, forcing %d"),
4429 depth, (1 << OE_DEPTH_BITS) - 1);
4430 depth = (1 << OE_DEPTH_BITS) - 1;
4432 if (cache_max_small_delta_size >= (1U << OE_Z_DELTA_BITS)) {
4433 warning(_("pack.deltaCacheLimit is too high, forcing %d"),
4434 (1U << OE_Z_DELTA_BITS) - 1);
4435 cache_max_small_delta_size = (1U << OE_Z_DELTA_BITS) - 1;
4437 if (window < 0)
4438 window = 0;
4440 strvec_push(&rp, "pack-objects");
4441 if (thin) {
4442 use_internal_rev_list = 1;
4443 strvec_push(&rp, shallow
4444 ? "--objects-edge-aggressive"
4445 : "--objects-edge");
4446 } else
4447 strvec_push(&rp, "--objects");
4449 if (rev_list_all) {
4450 use_internal_rev_list = 1;
4451 strvec_push(&rp, "--all");
4453 if (rev_list_reflog) {
4454 use_internal_rev_list = 1;
4455 strvec_push(&rp, "--reflog");
4457 if (rev_list_index) {
4458 use_internal_rev_list = 1;
4459 strvec_push(&rp, "--indexed-objects");
4461 if (rev_list_unpacked && !stdin_packs) {
4462 use_internal_rev_list = 1;
4463 strvec_push(&rp, "--unpacked");
4466 if (exclude_promisor_objects) {
4467 use_internal_rev_list = 1;
4468 fetch_if_missing = 0;
4469 strvec_push(&rp, "--exclude-promisor-objects");
4471 if (unpack_unreachable || keep_unreachable || pack_loose_unreachable)
4472 use_internal_rev_list = 1;
4474 if (!reuse_object)
4475 reuse_delta = 0;
4476 if (pack_compression_level == -1)
4477 pack_compression_level = Z_DEFAULT_COMPRESSION;
4478 else if (pack_compression_level < 0 || pack_compression_level > Z_BEST_COMPRESSION)
4479 die(_("bad pack compression level %d"), pack_compression_level);
4481 if (!delta_search_threads) /* --threads=0 means autodetect */
4482 delta_search_threads = online_cpus();
4484 if (!HAVE_THREADS && delta_search_threads != 1)
4485 warning(_("no threads support, ignoring --threads"));
4486 if (!pack_to_stdout && !pack_size_limit)
4487 pack_size_limit = pack_size_limit_cfg;
4488 if (pack_to_stdout && pack_size_limit)
4489 die(_("--max-pack-size cannot be used to build a pack for transfer"));
4490 if (pack_size_limit && pack_size_limit < 1024*1024) {
4491 warning(_("minimum pack size limit is 1 MiB"));
4492 pack_size_limit = 1024*1024;
4495 if (!pack_to_stdout && thin)
4496 die(_("--thin cannot be used to build an indexable pack"));
4498 if (keep_unreachable && unpack_unreachable)
4499 die(_("options '%s' and '%s' cannot be used together"), "--keep-unreachable", "--unpack-unreachable");
4500 if (!rev_list_all || !rev_list_reflog || !rev_list_index)
4501 unpack_unreachable_expiration = 0;
4503 if (stdin_packs && filter_options.choice)
4504 die(_("cannot use --filter with --stdin-packs"));
4506 if (stdin_packs && use_internal_rev_list)
4507 die(_("cannot use internal rev list with --stdin-packs"));
4509 if (cruft) {
4510 if (use_internal_rev_list)
4511 die(_("cannot use internal rev list with --cruft"));
4512 if (stdin_packs)
4513 die(_("cannot use --stdin-packs with --cruft"));
4517 * "soft" reasons not to use bitmaps - for on-disk repack by default we want
4519 * - to produce good pack (with bitmap index not-yet-packed objects are
4520 * packed in suboptimal order).
4522 * - to use more robust pack-generation codepath (avoiding possible
4523 * bugs in bitmap code and possible bitmap index corruption).
4525 if (!pack_to_stdout)
4526 use_bitmap_index_default = 0;
4528 if (use_bitmap_index < 0)
4529 use_bitmap_index = use_bitmap_index_default;
4531 /* "hard" reasons not to use bitmaps; these just won't work at all */
4532 if (!use_internal_rev_list || (!pack_to_stdout && write_bitmap_index) || is_repository_shallow(the_repository))
4533 use_bitmap_index = 0;
4535 if (pack_to_stdout || !rev_list_all)
4536 write_bitmap_index = 0;
4538 if (use_delta_islands)
4539 strvec_push(&rp, "--topo-order");
4541 if (progress && all_progress_implied)
4542 progress = 2;
4544 add_extra_kept_packs(&keep_pack_list);
4545 if (ignore_packed_keep_on_disk) {
4546 struct packed_git *p;
4547 for (p = get_all_packs(the_repository); p; p = p->next)
4548 if (p->pack_local && p->pack_keep)
4549 break;
4550 if (!p) /* no keep-able packs found */
4551 ignore_packed_keep_on_disk = 0;
4553 if (local) {
4555 * unlike ignore_packed_keep_on_disk above, we do not
4556 * want to unset "local" based on looking at packs, as
4557 * it also covers non-local objects
4559 struct packed_git *p;
4560 for (p = get_all_packs(the_repository); p; p = p->next) {
4561 if (!p->pack_local) {
4562 have_non_local_packs = 1;
4563 break;
4568 trace2_region_enter("pack-objects", "enumerate-objects",
4569 the_repository);
4570 prepare_packing_data(the_repository, &to_pack);
4572 if (progress && !cruft)
4573 progress_state = start_progress(_("Enumerating objects"), 0);
4574 if (stdin_packs) {
4575 /* avoids adding objects in excluded packs */
4576 ignore_packed_keep_in_core = 1;
4577 read_packs_list_from_stdin();
4578 if (rev_list_unpacked)
4579 add_unreachable_loose_objects();
4580 } else if (cruft) {
4581 read_cruft_objects();
4582 } else if (!use_internal_rev_list) {
4583 read_object_list_from_stdin();
4584 } else {
4585 struct rev_info revs;
4587 repo_init_revisions(the_repository, &revs, NULL);
4588 list_objects_filter_copy(&revs.filter, &filter_options);
4589 get_object_list(&revs, rp.nr, rp.v);
4590 release_revisions(&revs);
4592 cleanup_preferred_base();
4593 if (include_tag && nr_result)
4594 refs_for_each_tag_ref(get_main_ref_store(the_repository),
4595 add_ref_tag, NULL);
4596 stop_progress(&progress_state);
4597 trace2_region_leave("pack-objects", "enumerate-objects",
4598 the_repository);
4600 if (non_empty && !nr_result)
4601 goto cleanup;
4602 if (nr_result) {
4603 trace2_region_enter("pack-objects", "prepare-pack",
4604 the_repository);
4605 prepare_pack(window, depth);
4606 trace2_region_leave("pack-objects", "prepare-pack",
4607 the_repository);
4610 trace2_region_enter("pack-objects", "write-pack-file", the_repository);
4611 write_excluded_by_configs();
4612 write_pack_file();
4613 trace2_region_leave("pack-objects", "write-pack-file", the_repository);
4615 if (progress)
4616 fprintf_ln(stderr,
4617 _("Total %"PRIu32" (delta %"PRIu32"),"
4618 " reused %"PRIu32" (delta %"PRIu32"),"
4619 " pack-reused %"PRIu32" (from %"PRIuMAX")"),
4620 written, written_delta, reused, reused_delta,
4621 reuse_packfile_objects,
4622 (uintmax_t)reuse_packfiles_used_nr);
4624 trace2_data_intmax("pack-objects", the_repository, "written", written);
4625 trace2_data_intmax("pack-objects", the_repository, "written/delta", written_delta);
4626 trace2_data_intmax("pack-objects", the_repository, "reused", reused);
4627 trace2_data_intmax("pack-objects", the_repository, "reused/delta", reused_delta);
4628 trace2_data_intmax("pack-objects", the_repository, "pack-reused", reuse_packfile_objects);
4629 trace2_data_intmax("pack-objects", the_repository, "packs-reused", reuse_packfiles_used_nr);
4631 cleanup:
4632 clear_packing_data(&to_pack);
4633 list_objects_filter_release(&filter_options);
4634 strvec_clear(&rp);
4636 return 0;