2 #include "environment.h"
5 #include "repository.h"
13 #include "pack-revindex.h"
14 #include "csum-file.h"
15 #include "tree-walk.h"
18 #include "list-objects.h"
19 #include "list-objects-filter-options.h"
20 #include "pack-objects.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"
32 #include "object-file.h"
33 #include "object-store-ll.h"
34 #include "replace-object.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
)
57 return &pack
->ext_bases
[e
->delta_idx
- 1];
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
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
)
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
)
96 e
->delta_idx
= (delta
- pack
->objects
) + 1;
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];
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];
119 static inline void oe_set_delta_child(struct packing_data
*pack
,
120 struct object_entry
*e
,
121 struct object_entry
*delta
)
124 e
->delta_child_idx
= (delta
- pack
->objects
) + 1;
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
)
134 e
->delta_sibling_idx
= (delta
- pack
->objects
) + 1;
136 e
->delta_sibling_idx
= 0;
139 static inline void oe_set_size(struct packing_data
*pack
,
140 struct object_entry
*e
,
143 if (size
< pack
->oe_size_limit
) {
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
,
157 if (size
< pack
->oe_delta_size_limit
) {
158 e
->delta_size_
= size
;
159 e
->delta_size_valid
= 1;
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>]"),
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
;
201 static timestamp_t cruft_expiration
;
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
;
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;
233 } allow_pack_reuse
= SINGLE_PACK_REUSE
;
235 WRITE_BITMAP_FALSE
= 0,
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
;
266 static struct oidmap configured_exclusions
;
268 static struct oidset excluded_by_config
;
273 static uint32_t written
, written_delta
;
274 static uint32_t reused
, reused_delta
;
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
,
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
,
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");
323 static unsigned long do_compress(void **pptr
, unsigned long size
)
327 unsigned long maxsize
;
329 git_deflate_init(&stream
, pack_compression_level
);
330 maxsize
= git_deflate_bound(&stream
, size
);
333 out
= xmalloc(maxsize
);
337 stream
.avail_in
= size
;
338 stream
.next_out
= out
;
339 stream
.avail_out
= maxsize
;
340 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
342 git_deflate_end(&stream
);
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
)
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
);
361 readlen
= read_istream(st
, ibuf
, sizeof(ibuf
));
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
;
376 die(_("deflate error (%d)"), zret
);
378 if (zret
!= Z_STREAM_END
)
379 die(_("deflate error (%d)"), zret
);
383 git_deflate_end(&stream
);
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
,
395 unsigned long expect
)
398 unsigned char fakebuf
[4096], *in
;
401 memset(&stream
, 0, sizeof(stream
));
402 git_inflate_init(&stream
);
404 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_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
,
427 in
= use_pack(p
, w_curs
, offset
, &avail
);
429 avail
= (unsigned long)len
;
430 hashwrite(f
, in
, avail
);
436 static inline int oe_size_greater_than(struct packing_data
*pack
,
437 const struct object_entry
*lhs
,
441 return lhs
->size_
> rhs
;
442 if (rhs
< pack
->oe_size_limit
) /* rhs < 2^x <= lhs ? */
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
];
455 enum object_type type
;
457 struct git_istream
*st
= NULL
;
458 const unsigned hashsz
= the_hash_algo
->rawsz
;
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
)
467 buf
= repo_read_object_file(the_repository
,
468 &entry
->idx
.oid
, &type
,
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
;
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 */
495 else if (entry
->z_delta_size
)
496 datalen
= entry
->z_delta_size
;
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
),
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;
517 dheader
[--pos
] = 128 | (--ofs
& 127);
518 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ hashsz
>= limit
) {
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
) {
538 hashwrite(f
, header
, hdrlen
);
539 hashwrite(f
, DELTA(entry
)->idx
.oid
.hash
, hashsz
);
542 if (limit
&& hdrlen
+ datalen
+ hashsz
>= limit
) {
548 hashwrite(f
, header
, hdrlen
);
551 datalen
= write_large_blob_data(st
, f
, &entry
->idx
.oid
);
554 hashwrite(f
, buf
, datalen
);
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
;
569 enum object_type type
= oe_type(entry
);
571 unsigned char header
[MAX_PACK_OBJECT_HEADER
],
572 dheader
[MAX_PACK_OBJECT_HEADER
];
574 const unsigned hashsz
= the_hash_algo
->rawsz
;
575 unsigned long entry_size
= SIZE(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
),
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
,
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
));
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
));
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;
615 dheader
[--pos
] = 128 | (--ofs
& 127);
616 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ hashsz
>= limit
) {
620 hashwrite(f
, header
, hdrlen
);
621 hashwrite(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
622 hdrlen
+= sizeof(dheader
) - pos
;
624 } else if (type
== OBJ_REF_DELTA
) {
625 if (limit
&& hdrlen
+ hashsz
+ datalen
+ hashsz
>= limit
) {
629 hashwrite(f
, header
, hdrlen
);
630 hashwrite(f
, DELTA(entry
)->idx
.oid
.hash
, hashsz
);
634 if (limit
&& hdrlen
+ datalen
+ hashsz
>= limit
) {
638 hashwrite(f
, header
, hdrlen
);
640 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
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
,
653 int usable_delta
, to_reuse
;
658 /* apply size limit if limited packsize and not first object */
659 if (!pack_size_limit
|| !nr_written
)
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).
668 limit
= pack_size_limit
- write_offset
;
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 */
679 usable_delta
= 0; /* base could end up in another pack */
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 */
695 to_reuse
= 1; /* we have it in-pack undeltified,
696 * and we do not need to deltify it.
700 len
= write_no_reuse_object(f
, entry
, limit
, usable_delta
);
702 len
= write_reuse_object(f
, entry
, limit
, usable_delta
);
710 entry
->idx
.crc32
= crc32_end(f
);
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
,
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);
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. */
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 */
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
);
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"));
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
);
782 if (!peel_iterated_oid(oid
, &peeled
)) {
783 entry
= packlist_find(&to_pack
, &peeled
);
790 static inline unsigned char oe_layer(struct packing_data
*pack
,
791 struct object_entry
*e
)
795 return pack
->layer
[e
- pack
->objects
];
798 static inline void add_to_write_order(struct object_entry
**wo
,
800 struct object_entry
*e
)
802 if (e
->filled
|| oe_layer(&to_pack
, e
) != write_layer
)
808 static void add_descendants_to_write_order(struct object_entry
**wo
,
810 struct object_entry
*e
)
812 int add_to_order
= 1;
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
)) {
829 /* our sibling might have some children, it is next */
830 if (DELTA_SIBLING(e
)) {
831 e
= DELTA_SIBLING(e
);
834 /* go back to our parent node */
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 */
842 /* done- we hit our original root node */
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
,
853 struct object_entry
*e
)
855 struct object_entry
*root
;
857 for (root
= e
; DELTA(root
); root
= DELTA(root
))
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
)
870 add_to_write_order(wo
, wo_end
, &objects
[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
)
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
)
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
930 for (i
= to_pack
.nr_objects
; i
> 0;) {
931 struct object_entry
*e
= &objects
[--i
];
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 for_each_tag_ref(mark_tagged
, NULL
);
944 if (use_delta_islands
) {
945 max_layers
= compute_pack_layers(&to_pack
);
949 ALLOC_ARRAY(wo
, to_pack
.nr_objects
);
952 for (; write_layer
< max_layers
; ++write_layer
)
953 compute_layer_order(wo
, &wo_end
);
955 if (wo_end
!= to_pack
.nr_objects
)
956 die(_("ordered %u objects, expected %"PRIu32
),
957 wo_end
, to_pack
.nr_objects
);
964 * A reused set of objects. All objects in a chunk have the same
965 * relative position in the original packfile and the generated
969 static struct reused_chunk
{
970 /* The offset of the first object of this chunk in the original
973 /* The difference for "original" minus the offset of the first object of
974 * this chunk in the generated packfile. */
977 static int reused_chunks_nr
;
978 static int reused_chunks_alloc
;
980 static void record_reused_object(off_t where
, off_t offset
)
982 if (reused_chunks_nr
&& reused_chunks
[reused_chunks_nr
-1].difference
== offset
)
985 ALLOC_GROW(reused_chunks
, reused_chunks_nr
+ 1,
986 reused_chunks_alloc
);
987 reused_chunks
[reused_chunks_nr
].original
= where
;
988 reused_chunks
[reused_chunks_nr
].difference
= offset
;
993 * Binary search to find the chunk that "where" is in. Note
994 * that we're not looking for an exact match, just the first
995 * chunk that contains it (which implicitly ends at the start
998 static off_t
find_reused_offset(off_t where
)
1000 int lo
= 0, hi
= reused_chunks_nr
;
1002 int mi
= lo
+ ((hi
- lo
) / 2);
1003 if (where
== reused_chunks
[mi
].original
)
1004 return reused_chunks
[mi
].difference
;
1005 if (where
< reused_chunks
[mi
].original
)
1012 * The first chunk starts at zero, so we can't have gone below
1016 return reused_chunks
[lo
-1].difference
;
1019 static void write_reused_pack_one(struct packed_git
*reuse_packfile
,
1020 size_t pos
, struct hashfile
*out
,
1022 struct pack_window
**w_curs
)
1024 off_t offset
, next
, cur
;
1025 enum object_type type
;
1028 offset
= pack_pos_to_offset(reuse_packfile
, pos
);
1029 next
= pack_pos_to_offset(reuse_packfile
, pos
+ 1);
1031 record_reused_object(offset
,
1032 offset
- (hashfile_total(out
) - pack_start
));
1035 type
= unpack_object_header(reuse_packfile
, w_curs
, &cur
, &size
);
1038 if (type
== OBJ_OFS_DELTA
) {
1042 unsigned char header
[MAX_PACK_OBJECT_HEADER
];
1045 base_offset
= get_delta_base(reuse_packfile
, w_curs
, &cur
, type
, offset
);
1046 assert(base_offset
!= 0);
1048 /* Convert to REF_DELTA if we must... */
1049 if (!allow_ofs_delta
) {
1051 struct object_id base_oid
;
1053 if (offset_to_pack_pos(reuse_packfile
, base_offset
, &base_pos
) < 0)
1054 die(_("expected object at offset %"PRIuMAX
" "
1056 (uintmax_t)base_offset
,
1057 reuse_packfile
->pack_name
);
1059 nth_packed_object_id(&base_oid
, reuse_packfile
,
1060 pack_pos_to_index(reuse_packfile
, base_pos
));
1062 len
= encode_in_pack_object_header(header
, sizeof(header
),
1063 OBJ_REF_DELTA
, size
);
1064 hashwrite(out
, header
, len
);
1065 hashwrite(out
, base_oid
.hash
, the_hash_algo
->rawsz
);
1066 copy_pack_data(out
, reuse_packfile
, w_curs
, cur
, next
- cur
);
1070 /* Otherwise see if we need to rewrite the offset... */
1071 fixup
= find_reused_offset(offset
) -
1072 find_reused_offset(base_offset
);
1074 unsigned char ofs_header
[10];
1075 unsigned i
, ofs_len
;
1076 off_t ofs
= offset
- base_offset
- fixup
;
1078 len
= encode_in_pack_object_header(header
, sizeof(header
),
1079 OBJ_OFS_DELTA
, size
);
1081 i
= sizeof(ofs_header
) - 1;
1082 ofs_header
[i
] = ofs
& 127;
1084 ofs_header
[--i
] = 128 | (--ofs
& 127);
1086 ofs_len
= sizeof(ofs_header
) - i
;
1088 hashwrite(out
, header
, len
);
1089 hashwrite(out
, ofs_header
+ sizeof(ofs_header
) - ofs_len
, ofs_len
);
1090 copy_pack_data(out
, reuse_packfile
, w_curs
, cur
, next
- cur
);
1094 /* ...otherwise we have no fixup, and can write it verbatim */
1097 copy_pack_data(out
, reuse_packfile
, w_curs
, offset
, next
- offset
);
1100 static size_t write_reused_pack_verbatim(struct bitmapped_pack
*reuse_packfile
,
1101 struct hashfile
*out
,
1103 struct pack_window
**w_curs
)
1105 size_t pos
= reuse_packfile
->bitmap_pos
;
1108 if (pos
% BITS_IN_EWORD
) {
1109 size_t word_pos
= (pos
/ BITS_IN_EWORD
);
1110 size_t offset
= pos
% BITS_IN_EWORD
;
1112 eword_t word
= reuse_packfile_bitmap
->words
[word_pos
];
1114 if (offset
+ reuse_packfile
->bitmap_nr
< BITS_IN_EWORD
)
1115 last
= offset
+ reuse_packfile
->bitmap_nr
;
1117 last
= BITS_IN_EWORD
;
1119 for (; offset
< last
; offset
++) {
1120 if (word
>> offset
== 0)
1122 if (!bitmap_get(reuse_packfile_bitmap
,
1123 word_pos
* BITS_IN_EWORD
+ offset
))
1127 pos
+= BITS_IN_EWORD
- (pos
% BITS_IN_EWORD
);
1131 * Now we're going to copy as many whole eword_t's as possible.
1132 * "end" is the index of the last whole eword_t we copy, but
1133 * there may be additional bits to process. Those are handled
1134 * individually by write_reused_pack().
1136 * Begin by advancing to the first word boundary in range of the
1137 * bit positions occupied by objects in "reuse_packfile". Then
1138 * pick the last word boundary in the same range. If we have at
1139 * least one word's worth of bits to process, continue on.
1141 end
= reuse_packfile
->bitmap_pos
+ reuse_packfile
->bitmap_nr
;
1142 if (end
% BITS_IN_EWORD
)
1143 end
-= end
% BITS_IN_EWORD
;
1145 return reuse_packfile
->bitmap_pos
/ BITS_IN_EWORD
;
1148 reuse_packfile_bitmap
->words
[pos
/ BITS_IN_EWORD
] == (eword_t
)~0)
1149 pos
+= BITS_IN_EWORD
;
1154 if (reuse_packfile
->bitmap_pos
< pos
) {
1155 off_t pack_start_off
= pack_pos_to_offset(reuse_packfile
->p
, 0);
1156 off_t pack_end_off
= pack_pos_to_offset(reuse_packfile
->p
,
1157 pos
- reuse_packfile
->bitmap_pos
);
1159 written
+= pos
- reuse_packfile
->bitmap_pos
;
1161 /* We're recording one chunk, not one object. */
1162 record_reused_object(pack_start_off
,
1163 pack_start_off
- (hashfile_total(out
) - pack_start
));
1165 copy_pack_data(out
, reuse_packfile
->p
, w_curs
,
1166 pack_start_off
, pack_end_off
- pack_start_off
);
1168 display_progress(progress_state
, written
);
1170 if (pos
% BITS_IN_EWORD
)
1171 BUG("attempted to jump past a word boundary to %"PRIuMAX
,
1173 return pos
/ BITS_IN_EWORD
;
1176 static void write_reused_pack(struct bitmapped_pack
*reuse_packfile
,
1179 size_t i
= reuse_packfile
->bitmap_pos
/ BITS_IN_EWORD
;
1181 off_t pack_start
= hashfile_total(f
) - sizeof(struct pack_header
);
1182 struct pack_window
*w_curs
= NULL
;
1184 if (allow_ofs_delta
)
1185 i
= write_reused_pack_verbatim(reuse_packfile
, f
, pack_start
,
1188 for (; i
< reuse_packfile_bitmap
->word_alloc
; ++i
) {
1189 eword_t word
= reuse_packfile_bitmap
->words
[i
];
1190 size_t pos
= (i
* BITS_IN_EWORD
);
1192 for (offset
= 0; offset
< BITS_IN_EWORD
; ++offset
) {
1193 if ((word
>> offset
) == 0)
1196 offset
+= ewah_bit_ctz64(word
>> offset
);
1197 if (pos
+ offset
< reuse_packfile
->bitmap_pos
)
1199 if (pos
+ offset
>= reuse_packfile
->bitmap_pos
+ reuse_packfile
->bitmap_nr
)
1202 * Can use bit positions directly, even for MIDX
1203 * bitmaps. See comment in try_partial_reuse()
1206 write_reused_pack_one(reuse_packfile
->p
,
1207 pos
+ offset
- reuse_packfile
->bitmap_pos
,
1208 f
, pack_start
, &w_curs
);
1209 display_progress(progress_state
, ++written
);
1214 unuse_pack(&w_curs
);
1217 static void write_excluded_by_configs(void)
1219 struct oidset_iter iter
;
1220 const struct object_id
*oid
;
1222 oidset_iter_init(&excluded_by_config
, &iter
);
1223 while ((oid
= oidset_iter_next(&iter
))) {
1224 struct configured_exclusion
*ex
=
1225 oidmap_get(&configured_exclusions
, oid
);
1228 BUG("configured exclusion wasn't configured");
1229 write_in_full(1, ex
->pack_hash_hex
, strlen(ex
->pack_hash_hex
));
1230 write_in_full(1, " ", 1);
1231 write_in_full(1, ex
->uri
, strlen(ex
->uri
));
1232 write_in_full(1, "\n", 1);
1236 static const char no_split_warning
[] = N_(
1237 "disabling bitmap writing, packs are split due to pack.packSizeLimit"
1240 static void write_pack_file(void)
1245 uint32_t nr_remaining
= nr_result
;
1246 time_t last_mtime
= 0;
1247 struct object_entry
**write_order
;
1249 if (progress
> pack_to_stdout
)
1250 progress_state
= start_progress(_("Writing objects"), nr_result
);
1251 ALLOC_ARRAY(written_list
, to_pack
.nr_objects
);
1252 write_order
= compute_write_order();
1255 unsigned char hash
[GIT_MAX_RAWSZ
];
1256 char *pack_tmp_name
= NULL
;
1259 f
= hashfd_throughput(1, "<stdout>", progress_state
);
1261 f
= create_tmp_packfile(&pack_tmp_name
);
1263 offset
= write_pack_header(f
, nr_remaining
);
1265 if (reuse_packfiles_nr
) {
1266 assert(pack_to_stdout
);
1267 for (j
= 0; j
< reuse_packfiles_nr
; j
++) {
1268 reused_chunks_nr
= 0;
1269 write_reused_pack(&reuse_packfiles
[j
], f
);
1270 if (reused_chunks_nr
)
1271 reuse_packfiles_used_nr
++;
1273 offset
= hashfile_total(f
);
1277 for (; i
< to_pack
.nr_objects
; i
++) {
1278 struct object_entry
*e
= write_order
[i
];
1279 if (write_one(f
, e
, &offset
) == WRITE_ONE_BREAK
)
1281 display_progress(progress_state
, written
);
1284 if (pack_to_stdout
) {
1286 * We never fsync when writing to stdout since we may
1287 * not be writing to an actual pack file. For instance,
1288 * the upload-pack code passes a pipe here. Calling
1289 * fsync on a pipe results in unnecessary
1290 * synchronization with the reader on some platforms.
1292 finalize_hashfile(f
, hash
, FSYNC_COMPONENT_NONE
,
1293 CSUM_HASH_IN_STREAM
| CSUM_CLOSE
);
1294 } else if (nr_written
== nr_remaining
) {
1295 finalize_hashfile(f
, hash
, FSYNC_COMPONENT_PACK
,
1296 CSUM_HASH_IN_STREAM
| CSUM_FSYNC
| CSUM_CLOSE
);
1299 * If we wrote the wrong number of entries in the
1300 * header, rewrite it like in fast-import.
1303 int fd
= finalize_hashfile(f
, hash
, FSYNC_COMPONENT_PACK
, 0);
1304 fixup_pack_header_footer(fd
, hash
, pack_tmp_name
,
1305 nr_written
, hash
, offset
);
1307 if (write_bitmap_index
) {
1308 if (write_bitmap_index
!= WRITE_BITMAP_QUIET
)
1309 warning(_(no_split_warning
));
1310 write_bitmap_index
= 0;
1314 if (!pack_to_stdout
) {
1316 struct strbuf tmpname
= STRBUF_INIT
;
1317 char *idx_tmp_name
= NULL
;
1320 * Packs are runtime accessed in their mtime
1321 * order since newer packs are more likely to contain
1322 * younger objects. So if we are creating multiple
1323 * packs then we should modify the mtime of later ones
1324 * to preserve this property.
1326 if (stat(pack_tmp_name
, &st
) < 0) {
1327 warning_errno(_("failed to stat %s"), pack_tmp_name
);
1328 } else if (!last_mtime
) {
1329 last_mtime
= st
.st_mtime
;
1332 utb
.actime
= st
.st_atime
;
1333 utb
.modtime
= --last_mtime
;
1334 if (utime(pack_tmp_name
, &utb
) < 0)
1335 warning_errno(_("failed utime() on %s"), pack_tmp_name
);
1338 strbuf_addf(&tmpname
, "%s-%s.", base_name
,
1341 if (write_bitmap_index
) {
1342 bitmap_writer_set_checksum(hash
);
1343 bitmap_writer_build_type_index(
1344 &to_pack
, written_list
, nr_written
);
1348 pack_idx_opts
.flags
|= WRITE_MTIMES
;
1350 stage_tmp_packfiles(&tmpname
, pack_tmp_name
,
1351 written_list
, nr_written
,
1352 &to_pack
, &pack_idx_opts
, hash
,
1355 if (write_bitmap_index
) {
1356 size_t tmpname_len
= tmpname
.len
;
1358 strbuf_addstr(&tmpname
, "bitmap");
1359 stop_progress(&progress_state
);
1361 bitmap_writer_show_progress(progress
);
1362 bitmap_writer_select_commits(indexed_commits
, indexed_commits_nr
, -1);
1363 if (bitmap_writer_build(&to_pack
) < 0)
1364 die(_("failed to write bitmap index"));
1365 bitmap_writer_finish(written_list
, nr_written
,
1366 tmpname
.buf
, write_bitmap_options
);
1367 write_bitmap_index
= 0;
1368 strbuf_setlen(&tmpname
, tmpname_len
);
1371 rename_tmp_packfile_idx(&tmpname
, &idx_tmp_name
);
1374 strbuf_release(&tmpname
);
1375 free(pack_tmp_name
);
1376 puts(hash_to_hex(hash
));
1379 /* mark written objects as written to previous pack */
1380 for (j
= 0; j
< nr_written
; j
++) {
1381 written_list
[j
]->offset
= (off_t
)-1;
1383 nr_remaining
-= nr_written
;
1384 } while (nr_remaining
&& i
< to_pack
.nr_objects
);
1388 stop_progress(&progress_state
);
1389 if (written
!= nr_result
)
1390 die(_("wrote %"PRIu32
" objects while expecting %"PRIu32
),
1391 written
, nr_result
);
1392 trace2_data_intmax("pack-objects", the_repository
,
1393 "write_pack_file/wrote", nr_result
);
1396 static int no_try_delta(const char *path
)
1398 static struct attr_check
*check
;
1401 check
= attr_check_initl("delta", NULL
);
1402 git_check_attr(the_repository
->index
, path
, check
);
1403 if (ATTR_FALSE(check
->items
[0].value
))
1409 * When adding an object, check whether we have already added it
1410 * to our packing list. If so, we can skip. However, if we are
1411 * being asked to excludei t, but the previous mention was to include
1412 * it, make sure to adjust its flags and tweak our numbers accordingly.
1414 * As an optimization, we pass out the index position where we would have
1415 * found the item, since that saves us from having to look it up again a
1416 * few lines later when we want to add the new entry.
1418 static int have_duplicate_entry(const struct object_id
*oid
,
1421 struct object_entry
*entry
;
1423 if (reuse_packfile_bitmap
&&
1424 bitmap_walk_contains(bitmap_git
, reuse_packfile_bitmap
, oid
))
1427 entry
= packlist_find(&to_pack
, oid
);
1432 if (!entry
->preferred_base
)
1434 entry
->preferred_base
= 1;
1440 static int want_found_object(const struct object_id
*oid
, int exclude
,
1441 struct packed_git
*p
)
1448 if (!is_pack_valid(p
))
1452 * When asked to do --local (do not include an object that appears in a
1453 * pack we borrow from elsewhere) or --honor-pack-keep (do not include
1454 * an object that appears in a pack marked with .keep), finding a pack
1455 * that matches the criteria is sufficient for us to decide to omit it.
1456 * However, even if this pack does not satisfy the criteria, we need to
1457 * make sure no copy of this object appears in _any_ pack that makes us
1458 * to omit the object, so we need to check all the packs.
1460 * We can however first check whether these options can possibly matter;
1461 * if they do not matter we know we want the object in generated pack.
1462 * Otherwise, we signal "-1" at the end to tell the caller that we do
1463 * not know either way, and it needs to check more packs.
1467 * Objects in packs borrowed from elsewhere are discarded regardless of
1468 * if they appear in other packs that weren't borrowed.
1470 if (local
&& !p
->pack_local
)
1474 * Then handle .keep first, as we have a fast(er) path there.
1476 if (ignore_packed_keep_on_disk
|| ignore_packed_keep_in_core
) {
1478 * Set the flags for the kept-pack cache to be the ones we want
1481 * That is, if we are ignoring objects in on-disk keep packs,
1482 * then we want to search through the on-disk keep and ignore
1486 if (ignore_packed_keep_on_disk
)
1487 flags
|= ON_DISK_KEEP_PACKS
;
1488 if (ignore_packed_keep_in_core
)
1489 flags
|= IN_CORE_KEEP_PACKS
;
1491 if (ignore_packed_keep_on_disk
&& p
->pack_keep
)
1493 if (ignore_packed_keep_in_core
&& p
->pack_keep_in_core
)
1495 if (has_object_kept_pack(oid
, flags
))
1500 * At this point we know definitively that either we don't care about
1501 * keep-packs, or the object is not in one. Keep checking other
1504 if (!local
|| !have_non_local_packs
)
1507 /* we don't know yet; keep looking for more packs */
1511 static int want_object_in_pack_one(struct packed_git
*p
,
1512 const struct object_id
*oid
,
1514 struct packed_git
**found_pack
,
1515 off_t
*found_offset
)
1519 if (p
== *found_pack
)
1520 offset
= *found_offset
;
1522 offset
= find_pack_entry_one(oid
->hash
, p
);
1526 if (!is_pack_valid(p
))
1528 *found_offset
= offset
;
1531 return want_found_object(oid
, exclude
, p
);
1537 * Check whether we want the object in the pack (e.g., we do not want
1538 * objects found in non-local stores if the "--local" option was used).
1540 * If the caller already knows an existing pack it wants to take the object
1541 * from, that is passed in *found_pack and *found_offset; otherwise this
1542 * function finds if there is any pack that has the object and returns the pack
1543 * and its offset in these variables.
1545 static int want_object_in_pack(const struct object_id
*oid
,
1547 struct packed_git
**found_pack
,
1548 off_t
*found_offset
)
1551 struct list_head
*pos
;
1552 struct multi_pack_index
*m
;
1554 if (!exclude
&& local
&& has_loose_object_nonlocal(oid
))
1558 * If we already know the pack object lives in, start checks from that
1559 * pack - in the usual case when neither --local was given nor .keep files
1560 * are present we will determine the answer right now.
1563 want
= want_found_object(oid
, exclude
, *found_pack
);
1571 for (m
= get_multi_pack_index(the_repository
); m
; m
= m
->next
) {
1572 struct pack_entry e
;
1573 if (fill_midx_entry(the_repository
, oid
, &e
, m
)) {
1574 want
= want_object_in_pack_one(e
.p
, oid
, exclude
, found_pack
, found_offset
);
1580 list_for_each(pos
, get_packed_git_mru(the_repository
)) {
1581 struct packed_git
*p
= list_entry(pos
, struct packed_git
, mru
);
1582 want
= want_object_in_pack_one(p
, oid
, exclude
, found_pack
, found_offset
);
1583 if (!exclude
&& want
> 0)
1585 get_packed_git_mru(the_repository
));
1590 if (uri_protocols
.nr
) {
1591 struct configured_exclusion
*ex
=
1592 oidmap_get(&configured_exclusions
, oid
);
1597 for (i
= 0; i
< uri_protocols
.nr
; i
++) {
1598 if (skip_prefix(ex
->uri
,
1599 uri_protocols
.items
[i
].string
,
1602 oidset_insert(&excluded_by_config
, oid
);
1612 static struct object_entry
*create_object_entry(const struct object_id
*oid
,
1613 enum object_type type
,
1617 struct packed_git
*found_pack
,
1620 struct object_entry
*entry
;
1622 entry
= packlist_alloc(&to_pack
, oid
);
1624 oe_set_type(entry
, type
);
1626 entry
->preferred_base
= 1;
1630 oe_set_in_pack(&to_pack
, entry
, found_pack
);
1631 entry
->in_pack_offset
= found_offset
;
1634 entry
->no_try_delta
= no_try_delta
;
1639 static const char no_closure_warning
[] = N_(
1640 "disabling bitmap writing, as some objects are not being packed"
1643 static int add_object_entry(const struct object_id
*oid
, enum object_type type
,
1644 const char *name
, int exclude
)
1646 struct packed_git
*found_pack
= NULL
;
1647 off_t found_offset
= 0;
1649 display_progress(progress_state
, ++nr_seen
);
1651 if (have_duplicate_entry(oid
, exclude
))
1654 if (!want_object_in_pack(oid
, exclude
, &found_pack
, &found_offset
)) {
1655 /* The pack is missing an object, so it will not have closure */
1656 if (write_bitmap_index
) {
1657 if (write_bitmap_index
!= WRITE_BITMAP_QUIET
)
1658 warning(_(no_closure_warning
));
1659 write_bitmap_index
= 0;
1664 create_object_entry(oid
, type
, pack_name_hash(name
),
1665 exclude
, name
&& no_try_delta(name
),
1666 found_pack
, found_offset
);
1670 static int add_object_entry_from_bitmap(const struct object_id
*oid
,
1671 enum object_type type
,
1672 int flags UNUSED
, uint32_t name_hash
,
1673 struct packed_git
*pack
, off_t offset
)
1675 display_progress(progress_state
, ++nr_seen
);
1677 if (have_duplicate_entry(oid
, 0))
1680 if (!want_object_in_pack(oid
, 0, &pack
, &offset
))
1683 create_object_entry(oid
, type
, name_hash
, 0, 0, pack
, offset
);
1687 struct pbase_tree_cache
{
1688 struct object_id oid
;
1692 unsigned long tree_size
;
1695 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
1696 static int pbase_tree_cache_ix(const struct object_id
*oid
)
1698 return oid
->hash
[0] % ARRAY_SIZE(pbase_tree_cache
);
1700 static int pbase_tree_cache_ix_incr(int ix
)
1702 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
1705 static struct pbase_tree
{
1706 struct pbase_tree
*next
;
1707 /* This is a phony "cache" entry; we are not
1708 * going to evict it or find it through _get()
1709 * mechanism -- this is for the toplevel node that
1710 * would almost always change with any commit.
1712 struct pbase_tree_cache pcache
;
1715 static struct pbase_tree_cache
*pbase_tree_get(const struct object_id
*oid
)
1717 struct pbase_tree_cache
*ent
, *nent
;
1720 enum object_type type
;
1722 int my_ix
= pbase_tree_cache_ix(oid
);
1723 int available_ix
= -1;
1725 /* pbase-tree-cache acts as a limited hashtable.
1726 * your object will be found at your index or within a few
1727 * slots after that slot if it is cached.
1729 for (neigh
= 0; neigh
< 8; neigh
++) {
1730 ent
= pbase_tree_cache
[my_ix
];
1731 if (ent
&& oideq(&ent
->oid
, oid
)) {
1735 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
1736 ((0 <= available_ix
) &&
1737 (!ent
&& pbase_tree_cache
[available_ix
])))
1738 available_ix
= my_ix
;
1741 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
1744 /* Did not find one. Either we got a bogus request or
1745 * we need to read and perhaps cache.
1747 data
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
1750 if (type
!= OBJ_TREE
) {
1755 /* We need to either cache or return a throwaway copy */
1757 if (available_ix
< 0)
1760 ent
= pbase_tree_cache
[available_ix
];
1761 my_ix
= available_ix
;
1765 nent
= xmalloc(sizeof(*nent
));
1766 nent
->temporary
= (available_ix
< 0);
1769 /* evict and reuse */
1770 free(ent
->tree_data
);
1773 oidcpy(&nent
->oid
, oid
);
1774 nent
->tree_data
= data
;
1775 nent
->tree_size
= size
;
1777 if (!nent
->temporary
)
1778 pbase_tree_cache
[my_ix
] = nent
;
1782 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
1784 if (!cache
->temporary
) {
1788 free(cache
->tree_data
);
1792 static size_t name_cmp_len(const char *name
)
1794 return strcspn(name
, "\n/");
1797 static void add_pbase_object(struct tree_desc
*tree
,
1800 const char *fullname
)
1802 struct name_entry entry
;
1805 while (tree_entry(tree
,&entry
)) {
1806 if (S_ISGITLINK(entry
.mode
))
1808 cmp
= tree_entry_len(&entry
) != cmplen
? 1 :
1809 memcmp(name
, entry
.path
, cmplen
);
1814 if (name
[cmplen
] != '/') {
1815 add_object_entry(&entry
.oid
,
1816 object_type(entry
.mode
),
1820 if (S_ISDIR(entry
.mode
)) {
1821 struct tree_desc sub
;
1822 struct pbase_tree_cache
*tree
;
1823 const char *down
= name
+cmplen
+1;
1824 size_t downlen
= name_cmp_len(down
);
1826 tree
= pbase_tree_get(&entry
.oid
);
1829 init_tree_desc(&sub
, &tree
->oid
,
1830 tree
->tree_data
, tree
->tree_size
);
1832 add_pbase_object(&sub
, down
, downlen
, fullname
);
1833 pbase_tree_put(tree
);
1838 static unsigned *done_pbase_paths
;
1839 static int done_pbase_paths_num
;
1840 static int done_pbase_paths_alloc
;
1841 static int done_pbase_path_pos(unsigned hash
)
1844 int hi
= done_pbase_paths_num
;
1846 int mi
= lo
+ (hi
- lo
) / 2;
1847 if (done_pbase_paths
[mi
] == hash
)
1849 if (done_pbase_paths
[mi
] < hash
)
1857 static int check_pbase_path(unsigned hash
)
1859 int pos
= done_pbase_path_pos(hash
);
1863 ALLOC_GROW(done_pbase_paths
,
1864 done_pbase_paths_num
+ 1,
1865 done_pbase_paths_alloc
);
1866 done_pbase_paths_num
++;
1867 if (pos
< done_pbase_paths_num
)
1868 MOVE_ARRAY(done_pbase_paths
+ pos
+ 1, done_pbase_paths
+ pos
,
1869 done_pbase_paths_num
- pos
- 1);
1870 done_pbase_paths
[pos
] = hash
;
1874 static void add_preferred_base_object(const char *name
)
1876 struct pbase_tree
*it
;
1878 unsigned hash
= pack_name_hash(name
);
1880 if (!num_preferred_base
|| check_pbase_path(hash
))
1883 cmplen
= name_cmp_len(name
);
1884 for (it
= pbase_tree
; it
; it
= it
->next
) {
1886 add_object_entry(&it
->pcache
.oid
, OBJ_TREE
, NULL
, 1);
1889 struct tree_desc tree
;
1890 init_tree_desc(&tree
, &it
->pcache
.oid
,
1891 it
->pcache
.tree_data
, it
->pcache
.tree_size
);
1892 add_pbase_object(&tree
, name
, cmplen
, name
);
1897 static void add_preferred_base(struct object_id
*oid
)
1899 struct pbase_tree
*it
;
1902 struct object_id tree_oid
;
1904 if (window
<= num_preferred_base
++)
1907 data
= read_object_with_reference(the_repository
, oid
,
1908 OBJ_TREE
, &size
, &tree_oid
);
1912 for (it
= pbase_tree
; it
; it
= it
->next
) {
1913 if (oideq(&it
->pcache
.oid
, &tree_oid
)) {
1919 CALLOC_ARRAY(it
, 1);
1920 it
->next
= pbase_tree
;
1923 oidcpy(&it
->pcache
.oid
, &tree_oid
);
1924 it
->pcache
.tree_data
= data
;
1925 it
->pcache
.tree_size
= size
;
1928 static void cleanup_preferred_base(void)
1930 struct pbase_tree
*it
;
1936 struct pbase_tree
*tmp
= it
;
1938 free(tmp
->pcache
.tree_data
);
1942 for (i
= 0; i
< ARRAY_SIZE(pbase_tree_cache
); i
++) {
1943 if (!pbase_tree_cache
[i
])
1945 free(pbase_tree_cache
[i
]->tree_data
);
1946 FREE_AND_NULL(pbase_tree_cache
[i
]);
1949 FREE_AND_NULL(done_pbase_paths
);
1950 done_pbase_paths_num
= done_pbase_paths_alloc
= 0;
1954 * Return 1 iff the object specified by "delta" can be sent
1955 * literally as a delta against the base in "base_sha1". If
1956 * so, then *base_out will point to the entry in our packing
1957 * list, or NULL if we must use the external-base list.
1959 * Depth value does not matter - find_deltas() will
1960 * never consider reused delta as the base object to
1961 * deltify other objects against, in order to avoid
1964 static int can_reuse_delta(const struct object_id
*base_oid
,
1965 struct object_entry
*delta
,
1966 struct object_entry
**base_out
)
1968 struct object_entry
*base
;
1971 * First see if we're already sending the base (or it's explicitly in
1972 * our "excluded" list).
1974 base
= packlist_find(&to_pack
, base_oid
);
1976 if (!in_same_island(&delta
->idx
.oid
, &base
->idx
.oid
))
1983 * Otherwise, reachability bitmaps may tell us if the receiver has it,
1984 * even if it was buried too deep in history to make it into the
1987 if (thin
&& bitmap_has_oid_in_uninteresting(bitmap_git
, base_oid
)) {
1988 if (use_delta_islands
) {
1989 if (!in_same_island(&delta
->idx
.oid
, base_oid
))
1999 static void prefetch_to_pack(uint32_t object_index_start
) {
2000 struct oid_array to_fetch
= OID_ARRAY_INIT
;
2003 for (i
= object_index_start
; i
< to_pack
.nr_objects
; i
++) {
2004 struct object_entry
*entry
= to_pack
.objects
+ i
;
2006 if (!oid_object_info_extended(the_repository
,
2009 OBJECT_INFO_FOR_PREFETCH
))
2011 oid_array_append(&to_fetch
, &entry
->idx
.oid
);
2013 promisor_remote_get_direct(the_repository
,
2014 to_fetch
.oid
, to_fetch
.nr
);
2015 oid_array_clear(&to_fetch
);
2018 static void check_object(struct object_entry
*entry
, uint32_t object_index
)
2020 unsigned long canonical_size
;
2021 enum object_type type
;
2022 struct object_info oi
= {.typep
= &type
, .sizep
= &canonical_size
};
2024 if (IN_PACK(entry
)) {
2025 struct packed_git
*p
= IN_PACK(entry
);
2026 struct pack_window
*w_curs
= NULL
;
2028 struct object_id base_ref
;
2029 struct object_entry
*base_entry
;
2030 unsigned long used
, used_0
;
2031 unsigned long avail
;
2033 unsigned char *buf
, c
;
2034 enum object_type type
;
2035 unsigned long in_pack_size
;
2037 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
2040 * We want in_pack_type even if we do not reuse delta
2041 * since non-delta representations could still be reused.
2043 used
= unpack_object_header_buffer(buf
, avail
,
2050 BUG("invalid type %d", type
);
2051 entry
->in_pack_type
= type
;
2054 * Determine if this is a delta and if so whether we can
2055 * reuse it or not. Otherwise let's find out as cheaply as
2056 * possible what the actual type and size for this object is.
2058 switch (entry
->in_pack_type
) {
2060 /* Not a delta hence we've already got all we need. */
2061 oe_set_type(entry
, entry
->in_pack_type
);
2062 SET_SIZE(entry
, in_pack_size
);
2063 entry
->in_pack_header_size
= used
;
2064 if (oe_type(entry
) < OBJ_COMMIT
|| oe_type(entry
) > OBJ_BLOB
)
2066 unuse_pack(&w_curs
);
2069 if (reuse_delta
&& !entry
->preferred_base
) {
2071 use_pack(p
, &w_curs
,
2072 entry
->in_pack_offset
+ used
,
2076 entry
->in_pack_header_size
= used
+ the_hash_algo
->rawsz
;
2079 buf
= use_pack(p
, &w_curs
,
2080 entry
->in_pack_offset
+ used
, NULL
);
2086 if (!ofs
|| MSB(ofs
, 7)) {
2087 error(_("delta base offset overflow in pack for %s"),
2088 oid_to_hex(&entry
->idx
.oid
));
2092 ofs
= (ofs
<< 7) + (c
& 127);
2094 ofs
= entry
->in_pack_offset
- ofs
;
2095 if (ofs
<= 0 || ofs
>= entry
->in_pack_offset
) {
2096 error(_("delta base offset out of bound for %s"),
2097 oid_to_hex(&entry
->idx
.oid
));
2100 if (reuse_delta
&& !entry
->preferred_base
) {
2102 if (offset_to_pack_pos(p
, ofs
, &pos
) < 0)
2104 if (!nth_packed_object_id(&base_ref
, p
,
2105 pack_pos_to_index(p
, pos
)))
2108 entry
->in_pack_header_size
= used
+ used_0
;
2113 can_reuse_delta(&base_ref
, entry
, &base_entry
)) {
2114 oe_set_type(entry
, entry
->in_pack_type
);
2115 SET_SIZE(entry
, in_pack_size
); /* delta size */
2116 SET_DELTA_SIZE(entry
, in_pack_size
);
2119 SET_DELTA(entry
, base_entry
);
2120 entry
->delta_sibling_idx
= base_entry
->delta_child_idx
;
2121 SET_DELTA_CHILD(base_entry
, entry
);
2123 SET_DELTA_EXT(entry
, &base_ref
);
2126 unuse_pack(&w_curs
);
2130 if (oe_type(entry
)) {
2134 * This must be a delta and we already know what the
2135 * final object type is. Let's extract the actual
2136 * object size from the delta header.
2138 delta_pos
= entry
->in_pack_offset
+ entry
->in_pack_header_size
;
2139 canonical_size
= get_size_from_delta(p
, &w_curs
, delta_pos
);
2140 if (canonical_size
== 0)
2142 SET_SIZE(entry
, canonical_size
);
2143 unuse_pack(&w_curs
);
2148 * No choice but to fall back to the recursive delta walk
2149 * with oid_object_info() to find about the object type
2153 unuse_pack(&w_curs
);
2156 if (oid_object_info_extended(the_repository
, &entry
->idx
.oid
, &oi
,
2157 OBJECT_INFO_SKIP_FETCH_OBJECT
| OBJECT_INFO_LOOKUP_REPLACE
) < 0) {
2158 if (repo_has_promisor_remote(the_repository
)) {
2159 prefetch_to_pack(object_index
);
2160 if (oid_object_info_extended(the_repository
, &entry
->idx
.oid
, &oi
,
2161 OBJECT_INFO_SKIP_FETCH_OBJECT
| OBJECT_INFO_LOOKUP_REPLACE
) < 0)
2167 oe_set_type(entry
, type
);
2168 if (entry
->type_valid
) {
2169 SET_SIZE(entry
, canonical_size
);
2172 * Bad object type is checked in prepare_pack(). This is
2173 * to permit a missing preferred base object to be ignored
2174 * as a preferred base. Doing so can result in a larger
2175 * pack file, but the transfer will still take place.
2180 static int pack_offset_sort(const void *_a
, const void *_b
)
2182 const struct object_entry
*a
= *(struct object_entry
**)_a
;
2183 const struct object_entry
*b
= *(struct object_entry
**)_b
;
2184 const struct packed_git
*a_in_pack
= IN_PACK(a
);
2185 const struct packed_git
*b_in_pack
= IN_PACK(b
);
2187 /* avoid filesystem trashing with loose objects */
2188 if (!a_in_pack
&& !b_in_pack
)
2189 return oidcmp(&a
->idx
.oid
, &b
->idx
.oid
);
2191 if (a_in_pack
< b_in_pack
)
2193 if (a_in_pack
> b_in_pack
)
2195 return a
->in_pack_offset
< b
->in_pack_offset
? -1 :
2196 (a
->in_pack_offset
> b
->in_pack_offset
);
2200 * Drop an on-disk delta we were planning to reuse. Naively, this would
2201 * just involve blanking out the "delta" field, but we have to deal
2202 * with some extra book-keeping:
2204 * 1. Removing ourselves from the delta_sibling linked list.
2206 * 2. Updating our size/type to the non-delta representation. These were
2207 * either not recorded initially (size) or overwritten with the delta type
2208 * (type) when check_object() decided to reuse the delta.
2210 * 3. Resetting our delta depth, as we are now a base object.
2212 static void drop_reused_delta(struct object_entry
*entry
)
2214 unsigned *idx
= &to_pack
.objects
[entry
->delta_idx
- 1].delta_child_idx
;
2215 struct object_info oi
= OBJECT_INFO_INIT
;
2216 enum object_type type
;
2220 struct object_entry
*oe
= &to_pack
.objects
[*idx
- 1];
2223 *idx
= oe
->delta_sibling_idx
;
2225 idx
= &oe
->delta_sibling_idx
;
2227 SET_DELTA(entry
, NULL
);
2232 if (packed_object_info(the_repository
, IN_PACK(entry
), entry
->in_pack_offset
, &oi
) < 0) {
2234 * We failed to get the info from this pack for some reason;
2235 * fall back to oid_object_info, which may find another copy.
2236 * And if that fails, the error will be recorded in oe_type(entry)
2237 * and dealt with in prepare_pack().
2240 oid_object_info(the_repository
, &entry
->idx
.oid
, &size
));
2242 oe_set_type(entry
, type
);
2244 SET_SIZE(entry
, size
);
2248 * Follow the chain of deltas from this entry onward, throwing away any links
2249 * that cause us to hit a cycle (as determined by the DFS state flags in
2252 * We also detect too-long reused chains that would violate our --depth
2255 static void break_delta_chains(struct object_entry
*entry
)
2258 * The actual depth of each object we will write is stored as an int,
2259 * as it cannot exceed our int "depth" limit. But before we break
2260 * changes based no that limit, we may potentially go as deep as the
2261 * number of objects, which is elsewhere bounded to a uint32_t.
2263 uint32_t total_depth
;
2264 struct object_entry
*cur
, *next
;
2266 for (cur
= entry
, total_depth
= 0;
2268 cur
= DELTA(cur
), total_depth
++) {
2269 if (cur
->dfs_state
== DFS_DONE
) {
2271 * We've already seen this object and know it isn't
2272 * part of a cycle. We do need to append its depth
2275 total_depth
+= cur
->depth
;
2280 * We break cycles before looping, so an ACTIVE state (or any
2281 * other cruft which made its way into the state variable)
2284 if (cur
->dfs_state
!= DFS_NONE
)
2285 BUG("confusing delta dfs state in first pass: %d",
2289 * Now we know this is the first time we've seen the object. If
2290 * it's not a delta, we're done traversing, but we'll mark it
2291 * done to save time on future traversals.
2294 cur
->dfs_state
= DFS_DONE
;
2299 * Mark ourselves as active and see if the next step causes
2300 * us to cycle to another active object. It's important to do
2301 * this _before_ we loop, because it impacts where we make the
2302 * cut, and thus how our total_depth counter works.
2303 * E.g., We may see a partial loop like:
2305 * A -> B -> C -> D -> B
2307 * Cutting B->C breaks the cycle. But now the depth of A is
2308 * only 1, and our total_depth counter is at 3. The size of the
2309 * error is always one less than the size of the cycle we
2310 * broke. Commits C and D were "lost" from A's chain.
2312 * If we instead cut D->B, then the depth of A is correct at 3.
2313 * We keep all commits in the chain that we examined.
2315 cur
->dfs_state
= DFS_ACTIVE
;
2316 if (DELTA(cur
)->dfs_state
== DFS_ACTIVE
) {
2317 drop_reused_delta(cur
);
2318 cur
->dfs_state
= DFS_DONE
;
2324 * And now that we've gone all the way to the bottom of the chain, we
2325 * need to clear the active flags and set the depth fields as
2326 * appropriate. Unlike the loop above, which can quit when it drops a
2327 * delta, we need to keep going to look for more depth cuts. So we need
2328 * an extra "next" pointer to keep going after we reset cur->delta.
2330 for (cur
= entry
; cur
; cur
= next
) {
2334 * We should have a chain of zero or more ACTIVE states down to
2335 * a final DONE. We can quit after the DONE, because either it
2336 * has no bases, or we've already handled them in a previous
2339 if (cur
->dfs_state
== DFS_DONE
)
2341 else if (cur
->dfs_state
!= DFS_ACTIVE
)
2342 BUG("confusing delta dfs state in second pass: %d",
2346 * If the total_depth is more than depth, then we need to snip
2347 * the chain into two or more smaller chains that don't exceed
2348 * the maximum depth. Most of the resulting chains will contain
2349 * (depth + 1) entries (i.e., depth deltas plus one base), and
2350 * the last chain (i.e., the one containing entry) will contain
2351 * whatever entries are left over, namely
2352 * (total_depth % (depth + 1)) of them.
2354 * Since we are iterating towards decreasing depth, we need to
2355 * decrement total_depth as we go, and we need to write to the
2356 * entry what its final depth will be after all of the
2357 * snipping. Since we're snipping into chains of length (depth
2358 * + 1) entries, the final depth of an entry will be its
2359 * original depth modulo (depth + 1). Any time we encounter an
2360 * entry whose final depth is supposed to be zero, we snip it
2361 * from its delta base, thereby making it so.
2363 cur
->depth
= (total_depth
--) % (depth
+ 1);
2365 drop_reused_delta(cur
);
2367 cur
->dfs_state
= DFS_DONE
;
2371 static void get_object_details(void)
2374 struct object_entry
**sorted_by_offset
;
2377 progress_state
= start_progress(_("Counting objects"),
2378 to_pack
.nr_objects
);
2380 CALLOC_ARRAY(sorted_by_offset
, to_pack
.nr_objects
);
2381 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
2382 sorted_by_offset
[i
] = to_pack
.objects
+ i
;
2383 QSORT(sorted_by_offset
, to_pack
.nr_objects
, pack_offset_sort
);
2385 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
2386 struct object_entry
*entry
= sorted_by_offset
[i
];
2387 check_object(entry
, i
);
2388 if (entry
->type_valid
&&
2389 oe_size_greater_than(&to_pack
, entry
, big_file_threshold
))
2390 entry
->no_try_delta
= 1;
2391 display_progress(progress_state
, i
+ 1);
2393 stop_progress(&progress_state
);
2396 * This must happen in a second pass, since we rely on the delta
2397 * information for the whole list being completed.
2399 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
2400 break_delta_chains(&to_pack
.objects
[i
]);
2402 free(sorted_by_offset
);
2406 * We search for deltas in a list sorted by type, by filename hash, and then
2407 * by size, so that we see progressively smaller and smaller files.
2408 * That's because we prefer deltas to be from the bigger file
2409 * to the smaller -- deletes are potentially cheaper, but perhaps
2410 * more importantly, the bigger file is likely the more recent
2411 * one. The deepest deltas are therefore the oldest objects which are
2412 * less susceptible to be accessed often.
2414 static int type_size_sort(const void *_a
, const void *_b
)
2416 const struct object_entry
*a
= *(struct object_entry
**)_a
;
2417 const struct object_entry
*b
= *(struct object_entry
**)_b
;
2418 const enum object_type a_type
= oe_type(a
);
2419 const enum object_type b_type
= oe_type(b
);
2420 const unsigned long a_size
= SIZE(a
);
2421 const unsigned long b_size
= SIZE(b
);
2423 if (a_type
> b_type
)
2425 if (a_type
< b_type
)
2427 if (a
->hash
> b
->hash
)
2429 if (a
->hash
< b
->hash
)
2431 if (a
->preferred_base
> b
->preferred_base
)
2433 if (a
->preferred_base
< b
->preferred_base
)
2435 if (use_delta_islands
) {
2436 const int island_cmp
= island_delta_cmp(&a
->idx
.oid
, &b
->idx
.oid
);
2440 if (a_size
> b_size
)
2442 if (a_size
< b_size
)
2444 return a
< b
? -1 : (a
> b
); /* newest first */
2448 struct object_entry
*entry
;
2450 struct delta_index
*index
;
2454 static int delta_cacheable(unsigned long src_size
, unsigned long trg_size
,
2455 unsigned long delta_size
)
2457 if (max_delta_cache_size
&& delta_cache_size
+ delta_size
> max_delta_cache_size
)
2460 if (delta_size
< cache_max_small_delta_size
)
2463 /* cache delta, if objects are large enough compared to delta size */
2464 if ((src_size
>> 20) + (trg_size
>> 21) > (delta_size
>> 10))
2470 /* Protect delta_cache_size */
2471 static pthread_mutex_t cache_mutex
;
2472 #define cache_lock() pthread_mutex_lock(&cache_mutex)
2473 #define cache_unlock() pthread_mutex_unlock(&cache_mutex)
2476 * Protect object list partitioning (e.g. struct thread_param) and
2479 static pthread_mutex_t progress_mutex
;
2480 #define progress_lock() pthread_mutex_lock(&progress_mutex)
2481 #define progress_unlock() pthread_mutex_unlock(&progress_mutex)
2484 * Access to struct object_entry is unprotected since each thread owns
2485 * a portion of the main object list. Just don't access object entries
2486 * ahead in the list because they can be stolen and would need
2487 * progress_mutex for protection.
2490 static inline int oe_size_less_than(struct packing_data
*pack
,
2491 const struct object_entry
*lhs
,
2494 if (lhs
->size_valid
)
2495 return lhs
->size_
< rhs
;
2496 if (rhs
< pack
->oe_size_limit
) /* rhs < 2^x <= lhs ? */
2498 return oe_get_size_slow(pack
, lhs
) < rhs
;
2501 static inline void oe_set_tree_depth(struct packing_data
*pack
,
2502 struct object_entry
*e
,
2503 unsigned int tree_depth
)
2505 if (!pack
->tree_depth
)
2506 CALLOC_ARRAY(pack
->tree_depth
, pack
->nr_alloc
);
2507 pack
->tree_depth
[e
- pack
->objects
] = tree_depth
;
2511 * Return the size of the object without doing any delta
2512 * reconstruction (so non-deltas are true object sizes, but deltas
2513 * return the size of the delta data).
2515 unsigned long oe_get_size_slow(struct packing_data
*pack
,
2516 const struct object_entry
*e
)
2518 struct packed_git
*p
;
2519 struct pack_window
*w_curs
;
2521 enum object_type type
;
2522 unsigned long used
, avail
, size
;
2524 if (e
->type_
!= OBJ_OFS_DELTA
&& e
->type_
!= OBJ_REF_DELTA
) {
2525 packing_data_lock(&to_pack
);
2526 if (oid_object_info(the_repository
, &e
->idx
.oid
, &size
) < 0)
2527 die(_("unable to get size of %s"),
2528 oid_to_hex(&e
->idx
.oid
));
2529 packing_data_unlock(&to_pack
);
2533 p
= oe_in_pack(pack
, e
);
2535 BUG("when e->type is a delta, it must belong to a pack");
2537 packing_data_lock(&to_pack
);
2539 buf
= use_pack(p
, &w_curs
, e
->in_pack_offset
, &avail
);
2540 used
= unpack_object_header_buffer(buf
, avail
, &type
, &size
);
2542 die(_("unable to parse object header of %s"),
2543 oid_to_hex(&e
->idx
.oid
));
2545 unuse_pack(&w_curs
);
2546 packing_data_unlock(&to_pack
);
2550 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
2551 unsigned max_depth
, unsigned long *mem_usage
)
2553 struct object_entry
*trg_entry
= trg
->entry
;
2554 struct object_entry
*src_entry
= src
->entry
;
2555 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
2557 enum object_type type
;
2560 /* Don't bother doing diffs between different types */
2561 if (oe_type(trg_entry
) != oe_type(src_entry
))
2565 * We do not bother to try a delta that we discarded on an
2566 * earlier try, but only when reusing delta data. Note that
2567 * src_entry that is marked as the preferred_base should always
2568 * be considered, as even if we produce a suboptimal delta against
2569 * it, we will still save the transfer cost, as we already know
2570 * the other side has it and we won't send src_entry at all.
2572 if (reuse_delta
&& IN_PACK(trg_entry
) &&
2573 IN_PACK(trg_entry
) == IN_PACK(src_entry
) &&
2574 !src_entry
->preferred_base
&&
2575 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
2576 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
2579 /* Let's not bust the allowed depth. */
2580 if (src
->depth
>= max_depth
)
2583 /* Now some size filtering heuristics. */
2584 trg_size
= SIZE(trg_entry
);
2585 if (!DELTA(trg_entry
)) {
2586 max_size
= trg_size
/2 - the_hash_algo
->rawsz
;
2589 max_size
= DELTA_SIZE(trg_entry
);
2590 ref_depth
= trg
->depth
;
2592 max_size
= (uint64_t)max_size
* (max_depth
- src
->depth
) /
2593 (max_depth
- ref_depth
+ 1);
2596 src_size
= SIZE(src_entry
);
2597 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
2598 if (sizediff
>= max_size
)
2600 if (trg_size
< src_size
/ 32)
2603 if (!in_same_island(&trg
->entry
->idx
.oid
, &src
->entry
->idx
.oid
))
2606 /* Load data if not already done */
2608 packing_data_lock(&to_pack
);
2609 trg
->data
= repo_read_object_file(the_repository
,
2610 &trg_entry
->idx
.oid
, &type
,
2612 packing_data_unlock(&to_pack
);
2614 die(_("object %s cannot be read"),
2615 oid_to_hex(&trg_entry
->idx
.oid
));
2617 die(_("object %s inconsistent object length (%"PRIuMAX
" vs %"PRIuMAX
")"),
2618 oid_to_hex(&trg_entry
->idx
.oid
), (uintmax_t)sz
,
2619 (uintmax_t)trg_size
);
2623 packing_data_lock(&to_pack
);
2624 src
->data
= repo_read_object_file(the_repository
,
2625 &src_entry
->idx
.oid
, &type
,
2627 packing_data_unlock(&to_pack
);
2629 if (src_entry
->preferred_base
) {
2630 static int warned
= 0;
2632 warning(_("object %s cannot be read"),
2633 oid_to_hex(&src_entry
->idx
.oid
));
2635 * Those objects are not included in the
2636 * resulting pack. Be resilient and ignore
2637 * them if they can't be read, in case the
2638 * pack could be created nevertheless.
2642 die(_("object %s cannot be read"),
2643 oid_to_hex(&src_entry
->idx
.oid
));
2646 die(_("object %s inconsistent object length (%"PRIuMAX
" vs %"PRIuMAX
")"),
2647 oid_to_hex(&src_entry
->idx
.oid
), (uintmax_t)sz
,
2648 (uintmax_t)src_size
);
2652 src
->index
= create_delta_index(src
->data
, src_size
);
2654 static int warned
= 0;
2656 warning(_("suboptimal pack - out of memory"));
2659 *mem_usage
+= sizeof_delta_index(src
->index
);
2662 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
2666 if (DELTA(trg_entry
)) {
2667 /* Prefer only shallower same-sized deltas. */
2668 if (delta_size
== DELTA_SIZE(trg_entry
) &&
2669 src
->depth
+ 1 >= trg
->depth
) {
2676 * Handle memory allocation outside of the cache
2677 * accounting lock. Compiler will optimize the strangeness
2678 * away when NO_PTHREADS is defined.
2680 free(trg_entry
->delta_data
);
2682 if (trg_entry
->delta_data
) {
2683 delta_cache_size
-= DELTA_SIZE(trg_entry
);
2684 trg_entry
->delta_data
= NULL
;
2686 if (delta_cacheable(src_size
, trg_size
, delta_size
)) {
2687 delta_cache_size
+= delta_size
;
2689 trg_entry
->delta_data
= xrealloc(delta_buf
, delta_size
);
2695 SET_DELTA(trg_entry
, src_entry
);
2696 SET_DELTA_SIZE(trg_entry
, delta_size
);
2697 trg
->depth
= src
->depth
+ 1;
2702 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
2704 struct object_entry
*child
= DELTA_CHILD(me
);
2707 const unsigned int c
= check_delta_limit(child
, n
+ 1);
2710 child
= DELTA_SIBLING(child
);
2715 static unsigned long free_unpacked(struct unpacked
*n
)
2717 unsigned long freed_mem
= sizeof_delta_index(n
->index
);
2718 free_delta_index(n
->index
);
2721 freed_mem
+= SIZE(n
->entry
);
2722 FREE_AND_NULL(n
->data
);
2729 static void find_deltas(struct object_entry
**list
, unsigned *list_size
,
2730 int window
, int depth
, unsigned *processed
)
2732 uint32_t i
, idx
= 0, count
= 0;
2733 struct unpacked
*array
;
2734 unsigned long mem_usage
= 0;
2736 CALLOC_ARRAY(array
, window
);
2739 struct object_entry
*entry
;
2740 struct unpacked
*n
= array
+ idx
;
2741 int j
, max_depth
, best_base
= -1;
2750 if (!entry
->preferred_base
) {
2752 display_progress(progress_state
, *processed
);
2756 mem_usage
-= free_unpacked(n
);
2759 while (window_memory_limit
&&
2760 mem_usage
> window_memory_limit
&&
2762 const uint32_t tail
= (idx
+ window
- count
) % window
;
2763 mem_usage
-= free_unpacked(array
+ tail
);
2767 /* We do not compute delta to *create* objects we are not
2770 if (entry
->preferred_base
)
2774 * If the current object is at pack edge, take the depth the
2775 * objects that depend on the current object into account
2776 * otherwise they would become too deep.
2779 if (DELTA_CHILD(entry
)) {
2780 max_depth
-= check_delta_limit(entry
, 0);
2788 uint32_t other_idx
= idx
+ j
;
2790 if (other_idx
>= window
)
2791 other_idx
-= window
;
2792 m
= array
+ other_idx
;
2795 ret
= try_delta(n
, m
, max_depth
, &mem_usage
);
2799 best_base
= other_idx
;
2803 * If we decided to cache the delta data, then it is best
2804 * to compress it right away. First because we have to do
2805 * it anyway, and doing it here while we're threaded will
2806 * save a lot of time in the non threaded write phase,
2807 * as well as allow for caching more deltas within
2808 * the same cache size limit.
2810 * But only if not writing to stdout, since in that case
2811 * the network is most likely throttling writes anyway,
2812 * and therefore it is best to go to the write phase ASAP
2813 * instead, as we can afford spending more time compressing
2814 * between writes at that moment.
2816 if (entry
->delta_data
&& !pack_to_stdout
) {
2819 size
= do_compress(&entry
->delta_data
, DELTA_SIZE(entry
));
2820 if (size
< (1U << OE_Z_DELTA_BITS
)) {
2821 entry
->z_delta_size
= size
;
2823 delta_cache_size
-= DELTA_SIZE(entry
);
2824 delta_cache_size
+= entry
->z_delta_size
;
2827 FREE_AND_NULL(entry
->delta_data
);
2828 entry
->z_delta_size
= 0;
2832 /* if we made n a delta, and if n is already at max
2833 * depth, leaving it in the window is pointless. we
2834 * should evict it first.
2836 if (DELTA(entry
) && max_depth
<= n
->depth
)
2840 * Move the best delta base up in the window, after the
2841 * currently deltified object, to keep it longer. It will
2842 * be the first base object to be attempted next.
2845 struct unpacked swap
= array
[best_base
];
2846 int dist
= (window
+ idx
- best_base
) % window
;
2847 int dst
= best_base
;
2849 int src
= (dst
+ 1) % window
;
2850 array
[dst
] = array
[src
];
2858 if (count
+ 1 < window
)
2864 for (i
= 0; i
< window
; ++i
) {
2865 free_delta_index(array
[i
].index
);
2866 free(array
[i
].data
);
2872 * The main object list is split into smaller lists, each is handed to
2875 * The main thread waits on the condition that (at least) one of the workers
2876 * has stopped working (which is indicated in the .working member of
2877 * struct thread_params).
2879 * When a work thread has completed its work, it sets .working to 0 and
2880 * signals the main thread and waits on the condition that .data_ready
2883 * The main thread steals half of the work from the worker that has
2884 * most work left to hand it to the idle worker.
2887 struct thread_params
{
2889 struct object_entry
**list
;
2896 pthread_mutex_t mutex
;
2897 pthread_cond_t cond
;
2898 unsigned *processed
;
2901 static pthread_cond_t progress_cond
;
2904 * Mutex and conditional variable can't be statically-initialized on Windows.
2906 static void init_threaded_search(void)
2908 pthread_mutex_init(&cache_mutex
, NULL
);
2909 pthread_mutex_init(&progress_mutex
, NULL
);
2910 pthread_cond_init(&progress_cond
, NULL
);
2913 static void cleanup_threaded_search(void)
2915 pthread_cond_destroy(&progress_cond
);
2916 pthread_mutex_destroy(&cache_mutex
);
2917 pthread_mutex_destroy(&progress_mutex
);
2920 static void *threaded_find_deltas(void *arg
)
2922 struct thread_params
*me
= arg
;
2925 while (me
->remaining
) {
2928 find_deltas(me
->list
, &me
->remaining
,
2929 me
->window
, me
->depth
, me
->processed
);
2933 pthread_cond_signal(&progress_cond
);
2937 * We must not set ->data_ready before we wait on the
2938 * condition because the main thread may have set it to 1
2939 * before we get here. In order to be sure that new
2940 * work is available if we see 1 in ->data_ready, it
2941 * was initialized to 0 before this thread was spawned
2942 * and we reset it to 0 right away.
2944 pthread_mutex_lock(&me
->mutex
);
2945 while (!me
->data_ready
)
2946 pthread_cond_wait(&me
->cond
, &me
->mutex
);
2948 pthread_mutex_unlock(&me
->mutex
);
2953 /* leave ->working 1 so that this doesn't get more work assigned */
2957 static void ll_find_deltas(struct object_entry
**list
, unsigned list_size
,
2958 int window
, int depth
, unsigned *processed
)
2960 struct thread_params
*p
;
2961 int i
, ret
, active_threads
= 0;
2963 init_threaded_search();
2965 if (delta_search_threads
<= 1) {
2966 find_deltas(list
, &list_size
, window
, depth
, processed
);
2967 cleanup_threaded_search();
2970 if (progress
> pack_to_stdout
)
2971 fprintf_ln(stderr
, _("Delta compression using up to %d threads"),
2972 delta_search_threads
);
2973 CALLOC_ARRAY(p
, delta_search_threads
);
2975 /* Partition the work amongst work threads. */
2976 for (i
= 0; i
< delta_search_threads
; i
++) {
2977 unsigned sub_size
= list_size
/ (delta_search_threads
- i
);
2979 /* don't use too small segments or no deltas will be found */
2980 if (sub_size
< 2*window
&& i
+1 < delta_search_threads
)
2983 p
[i
].window
= window
;
2985 p
[i
].processed
= processed
;
2987 p
[i
].data_ready
= 0;
2989 /* try to split chunks on "path" boundaries */
2990 while (sub_size
&& sub_size
< list_size
&&
2991 list
[sub_size
]->hash
&&
2992 list
[sub_size
]->hash
== list
[sub_size
-1]->hash
)
2996 p
[i
].list_size
= sub_size
;
2997 p
[i
].remaining
= sub_size
;
3000 list_size
-= sub_size
;
3003 /* Start work threads. */
3004 for (i
= 0; i
< delta_search_threads
; i
++) {
3005 if (!p
[i
].list_size
)
3007 pthread_mutex_init(&p
[i
].mutex
, NULL
);
3008 pthread_cond_init(&p
[i
].cond
, NULL
);
3009 ret
= pthread_create(&p
[i
].thread
, NULL
,
3010 threaded_find_deltas
, &p
[i
]);
3012 die(_("unable to create thread: %s"), strerror(ret
));
3017 * Now let's wait for work completion. Each time a thread is done
3018 * with its work, we steal half of the remaining work from the
3019 * thread with the largest number of unprocessed objects and give
3020 * it to that newly idle thread. This ensure good load balancing
3021 * until the remaining object list segments are simply too short
3022 * to be worth splitting anymore.
3024 while (active_threads
) {
3025 struct thread_params
*target
= NULL
;
3026 struct thread_params
*victim
= NULL
;
3027 unsigned sub_size
= 0;
3031 for (i
= 0; !target
&& i
< delta_search_threads
; i
++)
3036 pthread_cond_wait(&progress_cond
, &progress_mutex
);
3039 for (i
= 0; i
< delta_search_threads
; i
++)
3040 if (p
[i
].remaining
> 2*window
&&
3041 (!victim
|| victim
->remaining
< p
[i
].remaining
))
3044 sub_size
= victim
->remaining
/ 2;
3045 list
= victim
->list
+ victim
->list_size
- sub_size
;
3046 while (sub_size
&& list
[0]->hash
&&
3047 list
[0]->hash
== list
[-1]->hash
) {
3053 * It is possible for some "paths" to have
3054 * so many objects that no hash boundary
3055 * might be found. Let's just steal the
3056 * exact half in that case.
3058 sub_size
= victim
->remaining
/ 2;
3061 target
->list
= list
;
3062 victim
->list_size
-= sub_size
;
3063 victim
->remaining
-= sub_size
;
3065 target
->list_size
= sub_size
;
3066 target
->remaining
= sub_size
;
3067 target
->working
= 1;
3070 pthread_mutex_lock(&target
->mutex
);
3071 target
->data_ready
= 1;
3072 pthread_cond_signal(&target
->cond
);
3073 pthread_mutex_unlock(&target
->mutex
);
3076 pthread_join(target
->thread
, NULL
);
3077 pthread_cond_destroy(&target
->cond
);
3078 pthread_mutex_destroy(&target
->mutex
);
3082 cleanup_threaded_search();
3086 static int obj_is_packed(const struct object_id
*oid
)
3088 return packlist_find(&to_pack
, oid
) ||
3089 (reuse_packfile_bitmap
&&
3090 bitmap_walk_contains(bitmap_git
, reuse_packfile_bitmap
, oid
));
3093 static void add_tag_chain(const struct object_id
*oid
)
3098 * We catch duplicates already in add_object_entry(), but we'd
3099 * prefer to do this extra check to avoid having to parse the
3100 * tag at all if we already know that it's being packed (e.g., if
3101 * it was included via bitmaps, we would not have parsed it
3104 if (obj_is_packed(oid
))
3107 tag
= lookup_tag(the_repository
, oid
);
3109 if (!tag
|| parse_tag(tag
) || !tag
->tagged
)
3110 die(_("unable to pack objects reachable from tag %s"),
3113 add_object_entry(&tag
->object
.oid
, OBJ_TAG
, NULL
, 0);
3115 if (tag
->tagged
->type
!= OBJ_TAG
)
3118 tag
= (struct tag
*)tag
->tagged
;
3122 static int add_ref_tag(const char *tag UNUSED
, const struct object_id
*oid
,
3123 int flag UNUSED
, void *cb_data UNUSED
)
3125 struct object_id peeled
;
3127 if (!peel_iterated_oid(oid
, &peeled
) && obj_is_packed(&peeled
))
3132 static void prepare_pack(int window
, int depth
)
3134 struct object_entry
**delta_list
;
3135 uint32_t i
, nr_deltas
;
3138 if (use_delta_islands
)
3139 resolve_tree_islands(the_repository
, progress
, &to_pack
);
3141 get_object_details();
3144 * If we're locally repacking then we need to be doubly careful
3145 * from now on in order to make sure no stealth corruption gets
3146 * propagated to the new pack. Clients receiving streamed packs
3147 * should validate everything they get anyway so no need to incur
3148 * the additional cost here in that case.
3150 if (!pack_to_stdout
)
3151 do_check_packed_object_crc
= 1;
3153 if (!to_pack
.nr_objects
|| !window
|| !depth
)
3156 ALLOC_ARRAY(delta_list
, to_pack
.nr_objects
);
3159 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
3160 struct object_entry
*entry
= to_pack
.objects
+ i
;
3163 /* This happens if we decided to reuse existing
3164 * delta from a pack. "reuse_delta &&" is implied.
3168 if (!entry
->type_valid
||
3169 oe_size_less_than(&to_pack
, entry
, 50))
3172 if (entry
->no_try_delta
)
3175 if (!entry
->preferred_base
) {
3177 if (oe_type(entry
) < 0)
3178 die(_("unable to get type of object %s"),
3179 oid_to_hex(&entry
->idx
.oid
));
3181 if (oe_type(entry
) < 0) {
3183 * This object is not found, but we
3184 * don't have to include it anyway.
3190 delta_list
[n
++] = entry
;
3193 if (nr_deltas
&& n
> 1) {
3194 unsigned nr_done
= 0;
3197 progress_state
= start_progress(_("Compressing objects"),
3199 QSORT(delta_list
, n
, type_size_sort
);
3200 ll_find_deltas(delta_list
, n
, window
+1, depth
, &nr_done
);
3201 stop_progress(&progress_state
);
3202 if (nr_done
!= nr_deltas
)
3203 die(_("inconsistency with delta count"));
3208 static int git_pack_config(const char *k
, const char *v
,
3209 const struct config_context
*ctx
, void *cb
)
3211 if (!strcmp(k
, "pack.window")) {
3212 window
= git_config_int(k
, v
, ctx
->kvi
);
3215 if (!strcmp(k
, "pack.windowmemory")) {
3216 window_memory_limit
= git_config_ulong(k
, v
, ctx
->kvi
);
3219 if (!strcmp(k
, "pack.depth")) {
3220 depth
= git_config_int(k
, v
, ctx
->kvi
);
3223 if (!strcmp(k
, "pack.deltacachesize")) {
3224 max_delta_cache_size
= git_config_int(k
, v
, ctx
->kvi
);
3227 if (!strcmp(k
, "pack.deltacachelimit")) {
3228 cache_max_small_delta_size
= git_config_int(k
, v
, ctx
->kvi
);
3231 if (!strcmp(k
, "pack.writebitmaphashcache")) {
3232 if (git_config_bool(k
, v
))
3233 write_bitmap_options
|= BITMAP_OPT_HASH_CACHE
;
3235 write_bitmap_options
&= ~BITMAP_OPT_HASH_CACHE
;
3238 if (!strcmp(k
, "pack.writebitmaplookuptable")) {
3239 if (git_config_bool(k
, v
))
3240 write_bitmap_options
|= BITMAP_OPT_LOOKUP_TABLE
;
3242 write_bitmap_options
&= ~BITMAP_OPT_LOOKUP_TABLE
;
3245 if (!strcmp(k
, "pack.usebitmaps")) {
3246 use_bitmap_index_default
= git_config_bool(k
, v
);
3249 if (!strcmp(k
, "pack.allowpackreuse")) {
3250 int res
= git_parse_maybe_bool_text(v
);
3252 if (!strcasecmp(v
, "single"))
3253 allow_pack_reuse
= SINGLE_PACK_REUSE
;
3254 else if (!strcasecmp(v
, "multi"))
3255 allow_pack_reuse
= MULTI_PACK_REUSE
;
3257 die(_("invalid pack.allowPackReuse value: '%s'"), v
);
3259 allow_pack_reuse
= SINGLE_PACK_REUSE
;
3261 allow_pack_reuse
= NO_PACK_REUSE
;
3265 if (!strcmp(k
, "pack.threads")) {
3266 delta_search_threads
= git_config_int(k
, v
, ctx
->kvi
);
3267 if (delta_search_threads
< 0)
3268 die(_("invalid number of threads specified (%d)"),
3269 delta_search_threads
);
3270 if (!HAVE_THREADS
&& delta_search_threads
!= 1) {
3271 warning(_("no threads support, ignoring %s"), k
);
3272 delta_search_threads
= 0;
3276 if (!strcmp(k
, "pack.indexversion")) {
3277 pack_idx_opts
.version
= git_config_int(k
, v
, ctx
->kvi
);
3278 if (pack_idx_opts
.version
> 2)
3279 die(_("bad pack.indexVersion=%"PRIu32
),
3280 pack_idx_opts
.version
);
3283 if (!strcmp(k
, "pack.writereverseindex")) {
3284 if (git_config_bool(k
, v
))
3285 pack_idx_opts
.flags
|= WRITE_REV
;
3287 pack_idx_opts
.flags
&= ~WRITE_REV
;
3290 if (!strcmp(k
, "uploadpack.blobpackfileuri")) {
3291 struct configured_exclusion
*ex
;
3292 const char *oid_end
, *pack_end
;
3294 * Stores the pack hash. This is not a true object ID, but is
3297 struct object_id pack_hash
;
3300 return config_error_nonbool(k
);
3302 ex
= xmalloc(sizeof(*ex
));
3303 if (parse_oid_hex(v
, &ex
->e
.oid
, &oid_end
) ||
3305 parse_oid_hex(oid_end
+ 1, &pack_hash
, &pack_end
) ||
3307 die(_("value of uploadpack.blobpackfileuri must be "
3308 "of the form '<object-hash> <pack-hash> <uri>' (got '%s')"), v
);
3309 if (oidmap_get(&configured_exclusions
, &ex
->e
.oid
))
3310 die(_("object already configured in another "
3311 "uploadpack.blobpackfileuri (got '%s')"), v
);
3312 ex
->pack_hash_hex
= xcalloc(1, pack_end
- oid_end
);
3313 memcpy(ex
->pack_hash_hex
, oid_end
+ 1, pack_end
- oid_end
- 1);
3314 ex
->uri
= xstrdup(pack_end
+ 1);
3315 oidmap_put(&configured_exclusions
, ex
);
3317 return git_default_config(k
, v
, ctx
, cb
);
3320 /* Counters for trace2 output when in --stdin-packs mode. */
3321 static int stdin_packs_found_nr
;
3322 static int stdin_packs_hints_nr
;
3324 static int add_object_entry_from_pack(const struct object_id
*oid
,
3325 struct packed_git
*p
,
3330 enum object_type type
= OBJ_NONE
;
3332 display_progress(progress_state
, ++nr_seen
);
3334 if (have_duplicate_entry(oid
, 0))
3337 ofs
= nth_packed_object_offset(p
, pos
);
3338 if (!want_object_in_pack(oid
, 0, &p
, &ofs
))
3342 struct rev_info
*revs
= _data
;
3343 struct object_info oi
= OBJECT_INFO_INIT
;
3346 if (packed_object_info(the_repository
, p
, ofs
, &oi
) < 0) {
3347 die(_("could not get type of object %s in pack %s"),
3348 oid_to_hex(oid
), p
->pack_name
);
3349 } else if (type
== OBJ_COMMIT
) {
3351 * commits in included packs are used as starting points for the
3352 * subsequent revision walk
3354 add_pending_oid(revs
, NULL
, oid
, 0);
3357 stdin_packs_found_nr
++;
3360 create_object_entry(oid
, type
, 0, 0, 0, p
, ofs
);
3365 static void show_commit_pack_hint(struct commit
*commit UNUSED
,
3368 /* nothing to do; commits don't have a namehash */
3371 static void show_object_pack_hint(struct object
*object
, const char *name
,
3374 struct object_entry
*oe
= packlist_find(&to_pack
, &object
->oid
);
3379 * Our 'to_pack' list was constructed by iterating all objects packed in
3380 * included packs, and so doesn't have a non-zero hash field that you
3381 * would typically pick up during a reachability traversal.
3383 * Make a best-effort attempt to fill in the ->hash and ->no_try_delta
3384 * here using a now in order to perhaps improve the delta selection
3387 oe
->hash
= pack_name_hash(name
);
3388 oe
->no_try_delta
= name
&& no_try_delta(name
);
3390 stdin_packs_hints_nr
++;
3393 static int pack_mtime_cmp(const void *_a
, const void *_b
)
3395 struct packed_git
*a
= ((const struct string_list_item
*)_a
)->util
;
3396 struct packed_git
*b
= ((const struct string_list_item
*)_b
)->util
;
3399 * order packs by descending mtime so that objects are laid out
3400 * roughly as newest-to-oldest
3402 if (a
->mtime
< b
->mtime
)
3404 else if (b
->mtime
< a
->mtime
)
3410 static void read_packs_list_from_stdin(void)
3412 struct strbuf buf
= STRBUF_INIT
;
3413 struct string_list include_packs
= STRING_LIST_INIT_DUP
;
3414 struct string_list exclude_packs
= STRING_LIST_INIT_DUP
;
3415 struct string_list_item
*item
= NULL
;
3417 struct packed_git
*p
;
3418 struct rev_info revs
;
3420 repo_init_revisions(the_repository
, &revs
, NULL
);
3422 * Use a revision walk to fill in the namehash of objects in the include
3423 * packs. To save time, we'll avoid traversing through objects that are
3424 * in excluded packs.
3426 * That may cause us to avoid populating all of the namehash fields of
3427 * all included objects, but our goal is best-effort, since this is only
3428 * an optimization during delta selection.
3430 revs
.no_kept_objects
= 1;
3431 revs
.keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
3432 revs
.blob_objects
= 1;
3433 revs
.tree_objects
= 1;
3434 revs
.tag_objects
= 1;
3435 revs
.ignore_missing_links
= 1;
3437 while (strbuf_getline(&buf
, stdin
) != EOF
) {
3441 if (*buf
.buf
== '^')
3442 string_list_append(&exclude_packs
, buf
.buf
+ 1);
3444 string_list_append(&include_packs
, buf
.buf
);
3449 string_list_sort(&include_packs
);
3450 string_list_remove_duplicates(&include_packs
, 0);
3451 string_list_sort(&exclude_packs
);
3452 string_list_remove_duplicates(&exclude_packs
, 0);
3454 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
3455 const char *pack_name
= pack_basename(p
);
3457 if ((item
= string_list_lookup(&include_packs
, pack_name
)))
3459 if ((item
= string_list_lookup(&exclude_packs
, pack_name
)))
3464 * Arguments we got on stdin may not even be packs. First
3465 * check that to avoid segfaulting later on in
3466 * e.g. pack_mtime_cmp(), excluded packs are handled below.
3468 * Since we first parsed our STDIN and then sorted the input
3469 * lines the pack we error on will be whatever line happens to
3470 * sort first. This is lazy, it's enough that we report one
3471 * bad case here, we don't need to report the first/last one,
3474 for_each_string_list_item(item
, &include_packs
) {
3475 struct packed_git
*p
= item
->util
;
3477 die(_("could not find pack '%s'"), item
->string
);
3478 if (!is_pack_valid(p
))
3479 die(_("packfile %s cannot be accessed"), p
->pack_name
);
3483 * Then, handle all of the excluded packs, marking them as
3484 * kept in-core so that later calls to add_object_entry()
3485 * discards any objects that are also found in excluded packs.
3487 for_each_string_list_item(item
, &exclude_packs
) {
3488 struct packed_git
*p
= item
->util
;
3490 die(_("could not find pack '%s'"), item
->string
);
3491 p
->pack_keep_in_core
= 1;
3495 * Order packs by ascending mtime; use QSORT directly to access the
3496 * string_list_item's ->util pointer, which string_list_sort() does not
3499 QSORT(include_packs
.items
, include_packs
.nr
, pack_mtime_cmp
);
3501 for_each_string_list_item(item
, &include_packs
) {
3502 struct packed_git
*p
= item
->util
;
3503 for_each_object_in_pack(p
,
3504 add_object_entry_from_pack
,
3506 FOR_EACH_OBJECT_PACK_ORDER
);
3509 if (prepare_revision_walk(&revs
))
3510 die(_("revision walk setup failed"));
3511 traverse_commit_list(&revs
,
3512 show_commit_pack_hint
,
3513 show_object_pack_hint
,
3516 trace2_data_intmax("pack-objects", the_repository
, "stdin_packs_found",
3517 stdin_packs_found_nr
);
3518 trace2_data_intmax("pack-objects", the_repository
, "stdin_packs_hints",
3519 stdin_packs_hints_nr
);
3521 strbuf_release(&buf
);
3522 string_list_clear(&include_packs
, 0);
3523 string_list_clear(&exclude_packs
, 0);
3526 static void add_cruft_object_entry(const struct object_id
*oid
, enum object_type type
,
3527 struct packed_git
*pack
, off_t offset
,
3528 const char *name
, uint32_t mtime
)
3530 struct object_entry
*entry
;
3532 display_progress(progress_state
, ++nr_seen
);
3534 entry
= packlist_find(&to_pack
, oid
);
3537 entry
->hash
= pack_name_hash(name
);
3538 entry
->no_try_delta
= no_try_delta(name
);
3541 if (!want_object_in_pack(oid
, 0, &pack
, &offset
))
3543 if (!pack
&& type
== OBJ_BLOB
&& !has_loose_object(oid
)) {
3545 * If a traversed tree has a missing blob then we want
3546 * to avoid adding that missing object to our pack.
3548 * This only applies to missing blobs, not trees,
3549 * because the traversal needs to parse sub-trees but
3552 * Note we only perform this check when we couldn't
3553 * already find the object in a pack, so we're really
3554 * limited to "ensure non-tip blobs which don't exist in
3555 * packs do exist via loose objects". Confused?
3560 entry
= create_object_entry(oid
, type
, pack_name_hash(name
),
3561 0, name
&& no_try_delta(name
),
3565 if (mtime
> oe_cruft_mtime(&to_pack
, entry
))
3566 oe_set_cruft_mtime(&to_pack
, entry
, mtime
);
3570 static void show_cruft_object(struct object
*obj
, const char *name
, void *data UNUSED
)
3573 * if we did not record it earlier, it's at least as old as our
3574 * expiration value. Rather than find it exactly, just use that
3575 * value. This may bump it forward from its real mtime, but it
3576 * will still be "too old" next time we run with the same
3579 * if obj does appear in the packing list, this call is a noop (or may
3580 * set the namehash).
3582 add_cruft_object_entry(&obj
->oid
, obj
->type
, NULL
, 0, name
, cruft_expiration
);
3585 static void show_cruft_commit(struct commit
*commit
, void *data
)
3587 show_cruft_object((struct object
*)commit
, NULL
, data
);
3590 static int cruft_include_check_obj(struct object
*obj
, void *data UNUSED
)
3592 return !has_object_kept_pack(&obj
->oid
, IN_CORE_KEEP_PACKS
);
3595 static int cruft_include_check(struct commit
*commit
, void *data
)
3597 return cruft_include_check_obj((struct object
*)commit
, data
);
3600 static void set_cruft_mtime(const struct object
*object
,
3601 struct packed_git
*pack
,
3602 off_t offset
, time_t mtime
)
3604 add_cruft_object_entry(&object
->oid
, object
->type
, pack
, offset
, NULL
,
3608 static void mark_pack_kept_in_core(struct string_list
*packs
, unsigned keep
)
3610 struct string_list_item
*item
= NULL
;
3611 for_each_string_list_item(item
, packs
) {
3612 struct packed_git
*p
= item
->util
;
3614 die(_("could not find pack '%s'"), item
->string
);
3615 p
->pack_keep_in_core
= keep
;
3619 static void add_unreachable_loose_objects(void);
3620 static void add_objects_in_unpacked_packs(void);
3622 static void enumerate_cruft_objects(void)
3625 progress_state
= start_progress(_("Enumerating cruft objects"), 0);
3627 add_objects_in_unpacked_packs();
3628 add_unreachable_loose_objects();
3630 stop_progress(&progress_state
);
3633 static void enumerate_and_traverse_cruft_objects(struct string_list
*fresh_packs
)
3635 struct packed_git
*p
;
3636 struct rev_info revs
;
3639 repo_init_revisions(the_repository
, &revs
, NULL
);
3641 revs
.tag_objects
= 1;
3642 revs
.tree_objects
= 1;
3643 revs
.blob_objects
= 1;
3645 revs
.include_check
= cruft_include_check
;
3646 revs
.include_check_obj
= cruft_include_check_obj
;
3648 revs
.ignore_missing_links
= 1;
3651 progress_state
= start_progress(_("Enumerating cruft objects"), 0);
3652 ret
= add_unseen_recent_objects_to_traversal(&revs
, cruft_expiration
,
3653 set_cruft_mtime
, 1);
3654 stop_progress(&progress_state
);
3657 die(_("unable to add cruft objects"));
3660 * Re-mark only the fresh packs as kept so that objects in
3661 * unknown packs do not halt the reachability traversal early.
3663 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
)
3664 p
->pack_keep_in_core
= 0;
3665 mark_pack_kept_in_core(fresh_packs
, 1);
3667 if (prepare_revision_walk(&revs
))
3668 die(_("revision walk setup failed"));
3670 progress_state
= start_progress(_("Traversing cruft objects"), 0);
3672 traverse_commit_list(&revs
, show_cruft_commit
, show_cruft_object
, NULL
);
3674 stop_progress(&progress_state
);
3677 static void read_cruft_objects(void)
3679 struct strbuf buf
= STRBUF_INIT
;
3680 struct string_list discard_packs
= STRING_LIST_INIT_DUP
;
3681 struct string_list fresh_packs
= STRING_LIST_INIT_DUP
;
3682 struct packed_git
*p
;
3684 ignore_packed_keep_in_core
= 1;
3686 while (strbuf_getline(&buf
, stdin
) != EOF
) {
3690 if (*buf
.buf
== '-')
3691 string_list_append(&discard_packs
, buf
.buf
+ 1);
3693 string_list_append(&fresh_packs
, buf
.buf
);
3696 string_list_sort(&discard_packs
);
3697 string_list_sort(&fresh_packs
);
3699 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
3700 const char *pack_name
= pack_basename(p
);
3701 struct string_list_item
*item
;
3703 item
= string_list_lookup(&fresh_packs
, pack_name
);
3705 item
= string_list_lookup(&discard_packs
, pack_name
);
3711 * This pack wasn't mentioned in either the "fresh" or
3712 * "discard" list, so the caller didn't know about it.
3714 * Mark it as kept so that its objects are ignored by
3715 * add_unseen_recent_objects_to_traversal(). We'll
3716 * unmark it before starting the traversal so it doesn't
3717 * halt the traversal early.
3719 p
->pack_keep_in_core
= 1;
3723 mark_pack_kept_in_core(&fresh_packs
, 1);
3724 mark_pack_kept_in_core(&discard_packs
, 0);
3726 if (cruft_expiration
)
3727 enumerate_and_traverse_cruft_objects(&fresh_packs
);
3729 enumerate_cruft_objects();
3731 strbuf_release(&buf
);
3732 string_list_clear(&discard_packs
, 0);
3733 string_list_clear(&fresh_packs
, 0);
3736 static void read_object_list_from_stdin(void)
3738 char line
[GIT_MAX_HEXSZ
+ 1 + PATH_MAX
+ 2];
3739 struct object_id oid
;
3743 if (!fgets(line
, sizeof(line
), stdin
)) {
3747 BUG("fgets returned NULL, not EOF, not error!");
3753 if (line
[0] == '-') {
3754 if (get_oid_hex(line
+1, &oid
))
3755 die(_("expected edge object ID, got garbage:\n %s"),
3757 add_preferred_base(&oid
);
3760 if (parse_oid_hex(line
, &oid
, &p
))
3761 die(_("expected object ID, got garbage:\n %s"), line
);
3763 add_preferred_base_object(p
+ 1);
3764 add_object_entry(&oid
, OBJ_NONE
, p
+ 1, 0);
3768 static void show_commit(struct commit
*commit
, void *data UNUSED
)
3770 add_object_entry(&commit
->object
.oid
, OBJ_COMMIT
, NULL
, 0);
3772 if (write_bitmap_index
)
3773 index_commit_for_bitmap(commit
);
3775 if (use_delta_islands
)
3776 propagate_island_marks(commit
);
3779 static void show_object(struct object
*obj
, const char *name
,
3782 add_preferred_base_object(name
);
3783 add_object_entry(&obj
->oid
, obj
->type
, name
, 0);
3785 if (use_delta_islands
) {
3788 struct object_entry
*ent
;
3790 /* the empty string is a root tree, which is depth 0 */
3791 depth
= *name
? 1 : 0;
3792 for (p
= strchr(name
, '/'); p
; p
= strchr(p
+ 1, '/'))
3795 ent
= packlist_find(&to_pack
, &obj
->oid
);
3796 if (ent
&& depth
> oe_tree_depth(&to_pack
, ent
))
3797 oe_set_tree_depth(&to_pack
, ent
, depth
);
3801 static void show_object__ma_allow_any(struct object
*obj
, const char *name
, void *data
)
3803 assert(arg_missing_action
== MA_ALLOW_ANY
);
3806 * Quietly ignore ALL missing objects. This avoids problems with
3807 * staging them now and getting an odd error later.
3809 if (!has_object(the_repository
, &obj
->oid
, 0))
3812 show_object(obj
, name
, data
);
3815 static void show_object__ma_allow_promisor(struct object
*obj
, const char *name
, void *data
)
3817 assert(arg_missing_action
== MA_ALLOW_PROMISOR
);
3820 * Quietly ignore EXPECTED missing objects. This avoids problems with
3821 * staging them now and getting an odd error later.
3823 if (!has_object(the_repository
, &obj
->oid
, 0) && is_promisor_object(&obj
->oid
))
3826 show_object(obj
, name
, data
);
3829 static int option_parse_missing_action(const struct option
*opt UNUSED
,
3830 const char *arg
, int unset
)
3835 if (!strcmp(arg
, "error")) {
3836 arg_missing_action
= MA_ERROR
;
3837 fn_show_object
= show_object
;
3841 if (!strcmp(arg
, "allow-any")) {
3842 arg_missing_action
= MA_ALLOW_ANY
;
3843 fetch_if_missing
= 0;
3844 fn_show_object
= show_object__ma_allow_any
;
3848 if (!strcmp(arg
, "allow-promisor")) {
3849 arg_missing_action
= MA_ALLOW_PROMISOR
;
3850 fetch_if_missing
= 0;
3851 fn_show_object
= show_object__ma_allow_promisor
;
3855 die(_("invalid value for '%s': '%s'"), "--missing", arg
);
3859 static void show_edge(struct commit
*commit
)
3861 add_preferred_base(&commit
->object
.oid
);
3864 static int add_object_in_unpacked_pack(const struct object_id
*oid
,
3865 struct packed_git
*pack
,
3873 if (pack
->is_cruft
) {
3874 if (load_pack_mtimes(pack
) < 0)
3875 die(_("could not load cruft pack .mtimes"));
3876 mtime
= nth_packed_mtime(pack
, pos
);
3878 mtime
= pack
->mtime
;
3880 offset
= nth_packed_object_offset(pack
, pos
);
3882 add_cruft_object_entry(oid
, OBJ_NONE
, pack
, offset
,
3885 add_object_entry(oid
, OBJ_NONE
, "", 0);
3890 static void add_objects_in_unpacked_packs(void)
3892 if (for_each_packed_object(add_object_in_unpacked_pack
, NULL
,
3893 FOR_EACH_OBJECT_PACK_ORDER
|
3894 FOR_EACH_OBJECT_LOCAL_ONLY
|
3895 FOR_EACH_OBJECT_SKIP_IN_CORE_KEPT_PACKS
|
3896 FOR_EACH_OBJECT_SKIP_ON_DISK_KEPT_PACKS
))
3897 die(_("cannot open pack index"));
3900 static int add_loose_object(const struct object_id
*oid
, const char *path
,
3903 enum object_type type
= oid_object_info(the_repository
, oid
, NULL
);
3906 warning(_("loose object at %s could not be examined"), path
);
3912 if (stat(path
, &st
) < 0) {
3913 if (errno
== ENOENT
)
3915 return error_errno("unable to stat %s", oid_to_hex(oid
));
3918 add_cruft_object_entry(oid
, type
, NULL
, 0, NULL
,
3921 add_object_entry(oid
, type
, "", 0);
3927 * We actually don't even have to worry about reachability here.
3928 * add_object_entry will weed out duplicates, so we just add every
3929 * loose object we find.
3931 static void add_unreachable_loose_objects(void)
3933 for_each_loose_file_in_objdir(get_object_directory(),
3938 static int has_sha1_pack_kept_or_nonlocal(const struct object_id
*oid
)
3940 static struct packed_git
*last_found
= (void *)1;
3941 struct packed_git
*p
;
3943 p
= (last_found
!= (void *)1) ? last_found
:
3944 get_all_packs(the_repository
);
3947 if ((!p
->pack_local
|| p
->pack_keep
||
3948 p
->pack_keep_in_core
) &&
3949 find_pack_entry_one(oid
->hash
, p
)) {
3953 if (p
== last_found
)
3954 p
= get_all_packs(the_repository
);
3957 if (p
== last_found
)
3964 * Store a list of sha1s that are should not be discarded
3965 * because they are either written too recently, or are
3966 * reachable from another object that was.
3968 * This is filled by get_object_list.
3970 static struct oid_array recent_objects
;
3972 static int loosened_object_can_be_discarded(const struct object_id
*oid
,
3975 if (!unpack_unreachable_expiration
)
3977 if (mtime
> unpack_unreachable_expiration
)
3979 if (oid_array_lookup(&recent_objects
, oid
) >= 0)
3984 static void loosen_unused_packed_objects(void)
3986 struct packed_git
*p
;
3988 uint32_t loosened_objects_nr
= 0;
3989 struct object_id oid
;
3991 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
3992 if (!p
->pack_local
|| p
->pack_keep
|| p
->pack_keep_in_core
)
3995 if (open_pack_index(p
))
3996 die(_("cannot open pack index"));
3998 for (i
= 0; i
< p
->num_objects
; i
++) {
3999 nth_packed_object_id(&oid
, p
, i
);
4000 if (!packlist_find(&to_pack
, &oid
) &&
4001 !has_sha1_pack_kept_or_nonlocal(&oid
) &&
4002 !loosened_object_can_be_discarded(&oid
, p
->mtime
)) {
4003 if (force_object_loose(&oid
, p
->mtime
))
4004 die(_("unable to force loose object"));
4005 loosened_objects_nr
++;
4010 trace2_data_intmax("pack-objects", the_repository
,
4011 "loosen_unused_packed_objects/loosened", loosened_objects_nr
);
4015 * This tracks any options which pack-reuse code expects to be on, or which a
4016 * reader of the pack might not understand, and which would therefore prevent
4017 * blind reuse of what we have on disk.
4019 static int pack_options_allow_reuse(void)
4021 return allow_pack_reuse
!= NO_PACK_REUSE
&&
4023 !ignore_packed_keep_on_disk
&&
4024 !ignore_packed_keep_in_core
&&
4025 (!local
|| !have_non_local_packs
) &&
4029 static int get_object_list_from_bitmap(struct rev_info
*revs
)
4031 if (!(bitmap_git
= prepare_bitmap_walk(revs
, 0)))
4034 if (pack_options_allow_reuse())
4035 reuse_partial_packfile_from_bitmap(bitmap_git
,
4037 &reuse_packfiles_nr
,
4038 &reuse_packfile_bitmap
,
4039 allow_pack_reuse
== MULTI_PACK_REUSE
);
4041 if (reuse_packfiles
) {
4042 reuse_packfile_objects
= bitmap_popcount(reuse_packfile_bitmap
);
4043 if (!reuse_packfile_objects
)
4044 BUG("expected non-empty reuse bitmap");
4046 nr_result
+= reuse_packfile_objects
;
4047 nr_seen
+= reuse_packfile_objects
;
4048 display_progress(progress_state
, nr_seen
);
4051 traverse_bitmap_commit_list(bitmap_git
, revs
,
4052 &add_object_entry_from_bitmap
);
4056 static void record_recent_object(struct object
*obj
,
4057 const char *name UNUSED
,
4060 oid_array_append(&recent_objects
, &obj
->oid
);
4063 static void record_recent_commit(struct commit
*commit
, void *data UNUSED
)
4065 oid_array_append(&recent_objects
, &commit
->object
.oid
);
4068 static int mark_bitmap_preferred_tip(const char *refname
,
4069 const struct object_id
*oid
,
4073 struct object_id peeled
;
4074 struct object
*object
;
4076 if (!peel_iterated_oid(oid
, &peeled
))
4079 object
= parse_object_or_die(oid
, refname
);
4080 if (object
->type
== OBJ_COMMIT
)
4081 object
->flags
|= NEEDS_BITMAP
;
4086 static void mark_bitmap_preferred_tips(void)
4088 struct string_list_item
*item
;
4089 const struct string_list
*preferred_tips
;
4091 preferred_tips
= bitmap_preferred_tips(the_repository
);
4092 if (!preferred_tips
)
4095 for_each_string_list_item(item
, preferred_tips
) {
4096 for_each_ref_in(item
->string
, mark_bitmap_preferred_tip
, NULL
);
4100 static void get_object_list(struct rev_info
*revs
, int ac
, const char **av
)
4102 struct setup_revision_opt s_r_opt
= {
4103 .allow_exclude_promisor_objects
= 1,
4109 save_commit_buffer
= 0;
4110 setup_revisions(ac
, av
, revs
, &s_r_opt
);
4112 /* make sure shallows are read */
4113 is_repository_shallow(the_repository
);
4115 save_warning
= warn_on_object_refname_ambiguity
;
4116 warn_on_object_refname_ambiguity
= 0;
4118 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
4119 int len
= strlen(line
);
4120 if (len
&& line
[len
- 1] == '\n')
4125 if (!strcmp(line
, "--not")) {
4126 flags
^= UNINTERESTING
;
4127 write_bitmap_index
= 0;
4130 if (starts_with(line
, "--shallow ")) {
4131 struct object_id oid
;
4132 if (get_oid_hex(line
+ 10, &oid
))
4133 die("not an object name '%s'", line
+ 10);
4134 register_shallow(the_repository
, &oid
);
4135 use_bitmap_index
= 0;
4138 die(_("not a rev '%s'"), line
);
4140 if (handle_revision_arg(line
, revs
, flags
, REVARG_CANNOT_BE_FILENAME
))
4141 die(_("bad revision '%s'"), line
);
4144 warn_on_object_refname_ambiguity
= save_warning
;
4146 if (use_bitmap_index
&& !get_object_list_from_bitmap(revs
))
4149 if (use_delta_islands
)
4150 load_delta_islands(the_repository
, progress
);
4152 if (write_bitmap_index
)
4153 mark_bitmap_preferred_tips();
4155 if (prepare_revision_walk(revs
))
4156 die(_("revision walk setup failed"));
4157 mark_edges_uninteresting(revs
, show_edge
, sparse
);
4159 if (!fn_show_object
)
4160 fn_show_object
= show_object
;
4161 traverse_commit_list(revs
,
4162 show_commit
, fn_show_object
,
4165 if (unpack_unreachable_expiration
) {
4166 revs
->ignore_missing_links
= 1;
4167 if (add_unseen_recent_objects_to_traversal(revs
,
4168 unpack_unreachable_expiration
, NULL
, 0))
4169 die(_("unable to add recent objects"));
4170 if (prepare_revision_walk(revs
))
4171 die(_("revision walk setup failed"));
4172 traverse_commit_list(revs
, record_recent_commit
,
4173 record_recent_object
, NULL
);
4176 if (keep_unreachable
)
4177 add_objects_in_unpacked_packs();
4178 if (pack_loose_unreachable
)
4179 add_unreachable_loose_objects();
4180 if (unpack_unreachable
)
4181 loosen_unused_packed_objects();
4183 oid_array_clear(&recent_objects
);
4186 static void add_extra_kept_packs(const struct string_list
*names
)
4188 struct packed_git
*p
;
4193 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
4194 const char *name
= basename(p
->pack_name
);
4200 for (i
= 0; i
< names
->nr
; i
++)
4201 if (!fspathcmp(name
, names
->items
[i
].string
))
4204 if (i
< names
->nr
) {
4205 p
->pack_keep_in_core
= 1;
4206 ignore_packed_keep_in_core
= 1;
4212 static int option_parse_quiet(const struct option
*opt
, const char *arg
,
4215 int *val
= opt
->value
;
4217 BUG_ON_OPT_ARG(arg
);
4226 static int option_parse_index_version(const struct option
*opt
,
4227 const char *arg
, int unset
)
4229 struct pack_idx_option
*popts
= opt
->value
;
4231 const char *val
= arg
;
4233 BUG_ON_OPT_NEG(unset
);
4235 popts
->version
= strtoul(val
, &c
, 10);
4236 if (popts
->version
> 2)
4237 die(_("unsupported index version %s"), val
);
4238 if (*c
== ',' && c
[1])
4239 popts
->off32_limit
= strtoul(c
+1, &c
, 0);
4240 if (*c
|| popts
->off32_limit
& 0x80000000)
4241 die(_("bad index version '%s'"), val
);
4245 static int option_parse_unpack_unreachable(const struct option
*opt UNUSED
,
4246 const char *arg
, int unset
)
4249 unpack_unreachable
= 0;
4250 unpack_unreachable_expiration
= 0;
4253 unpack_unreachable
= 1;
4255 unpack_unreachable_expiration
= approxidate(arg
);
4260 static int option_parse_cruft_expiration(const struct option
*opt UNUSED
,
4261 const char *arg
, int unset
)
4265 cruft_expiration
= 0;
4269 cruft_expiration
= approxidate(arg
);
4274 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
4276 int use_internal_rev_list
= 0;
4278 int all_progress_implied
= 0;
4279 struct strvec rp
= STRVEC_INIT
;
4280 int rev_list_unpacked
= 0, rev_list_all
= 0, rev_list_reflog
= 0;
4281 int rev_list_index
= 0;
4282 int stdin_packs
= 0;
4283 struct string_list keep_pack_list
= STRING_LIST_INIT_NODUP
;
4284 struct list_objects_filter_options filter_options
=
4285 LIST_OBJECTS_FILTER_INIT
;
4287 struct option pack_objects_options
[] = {
4288 OPT_CALLBACK_F('q', "quiet", &progress
, NULL
,
4289 N_("do not show progress meter"),
4290 PARSE_OPT_NOARG
, option_parse_quiet
),
4291 OPT_SET_INT(0, "progress", &progress
,
4292 N_("show progress meter"), 1),
4293 OPT_SET_INT(0, "all-progress", &progress
,
4294 N_("show progress meter during object writing phase"), 2),
4295 OPT_BOOL(0, "all-progress-implied",
4296 &all_progress_implied
,
4297 N_("similar to --all-progress when progress meter is shown")),
4298 OPT_CALLBACK_F(0, "index-version", &pack_idx_opts
, N_("<version>[,<offset>]"),
4299 N_("write the pack index file in the specified idx format version"),
4300 PARSE_OPT_NONEG
, option_parse_index_version
),
4301 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit
,
4302 N_("maximum size of each output pack file")),
4303 OPT_BOOL(0, "local", &local
,
4304 N_("ignore borrowed objects from alternate object store")),
4305 OPT_BOOL(0, "incremental", &incremental
,
4306 N_("ignore packed objects")),
4307 OPT_INTEGER(0, "window", &window
,
4308 N_("limit pack window by objects")),
4309 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit
,
4310 N_("limit pack window by memory in addition to object limit")),
4311 OPT_INTEGER(0, "depth", &depth
,
4312 N_("maximum length of delta chain allowed in the resulting pack")),
4313 OPT_BOOL(0, "reuse-delta", &reuse_delta
,
4314 N_("reuse existing deltas")),
4315 OPT_BOOL(0, "reuse-object", &reuse_object
,
4316 N_("reuse existing objects")),
4317 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta
,
4318 N_("use OFS_DELTA objects")),
4319 OPT_INTEGER(0, "threads", &delta_search_threads
,
4320 N_("use threads when searching for best delta matches")),
4321 OPT_BOOL(0, "non-empty", &non_empty
,
4322 N_("do not create an empty pack output")),
4323 OPT_BOOL(0, "revs", &use_internal_rev_list
,
4324 N_("read revision arguments from standard input")),
4325 OPT_SET_INT_F(0, "unpacked", &rev_list_unpacked
,
4326 N_("limit the objects to those that are not yet packed"),
4327 1, PARSE_OPT_NONEG
),
4328 OPT_SET_INT_F(0, "all", &rev_list_all
,
4329 N_("include objects reachable from any reference"),
4330 1, PARSE_OPT_NONEG
),
4331 OPT_SET_INT_F(0, "reflog", &rev_list_reflog
,
4332 N_("include objects referred by reflog entries"),
4333 1, PARSE_OPT_NONEG
),
4334 OPT_SET_INT_F(0, "indexed-objects", &rev_list_index
,
4335 N_("include objects referred to by the index"),
4336 1, PARSE_OPT_NONEG
),
4337 OPT_BOOL(0, "stdin-packs", &stdin_packs
,
4338 N_("read packs from stdin")),
4339 OPT_BOOL(0, "stdout", &pack_to_stdout
,
4340 N_("output pack to stdout")),
4341 OPT_BOOL(0, "include-tag", &include_tag
,
4342 N_("include tag objects that refer to objects to be packed")),
4343 OPT_BOOL(0, "keep-unreachable", &keep_unreachable
,
4344 N_("keep unreachable objects")),
4345 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable
,
4346 N_("pack loose unreachable objects")),
4347 OPT_CALLBACK_F(0, "unpack-unreachable", NULL
, N_("time"),
4348 N_("unpack unreachable objects newer than <time>"),
4349 PARSE_OPT_OPTARG
, option_parse_unpack_unreachable
),
4350 OPT_BOOL(0, "cruft", &cruft
, N_("create a cruft pack")),
4351 OPT_CALLBACK_F(0, "cruft-expiration", NULL
, N_("time"),
4352 N_("expire cruft objects older than <time>"),
4353 PARSE_OPT_OPTARG
, option_parse_cruft_expiration
),
4354 OPT_BOOL(0, "sparse", &sparse
,
4355 N_("use the sparse reachability algorithm")),
4356 OPT_BOOL(0, "thin", &thin
,
4357 N_("create thin packs")),
4358 OPT_BOOL(0, "shallow", &shallow
,
4359 N_("create packs suitable for shallow fetches")),
4360 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep_on_disk
,
4361 N_("ignore packs that have companion .keep file")),
4362 OPT_STRING_LIST(0, "keep-pack", &keep_pack_list
, N_("name"),
4363 N_("ignore this pack")),
4364 OPT_INTEGER(0, "compression", &pack_compression_level
,
4365 N_("pack compression level")),
4366 OPT_BOOL(0, "keep-true-parents", &grafts_keep_true_parents
,
4367 N_("do not hide commits by grafts")),
4368 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index
,
4369 N_("use a bitmap index if available to speed up counting objects")),
4370 OPT_SET_INT(0, "write-bitmap-index", &write_bitmap_index
,
4371 N_("write a bitmap index together with the pack index"),
4373 OPT_SET_INT_F(0, "write-bitmap-index-quiet",
4374 &write_bitmap_index
,
4375 N_("write a bitmap index if possible"),
4376 WRITE_BITMAP_QUIET
, PARSE_OPT_HIDDEN
),
4377 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
4378 OPT_CALLBACK_F(0, "missing", NULL
, N_("action"),
4379 N_("handling for missing objects"), PARSE_OPT_NONEG
,
4380 option_parse_missing_action
),
4381 OPT_BOOL(0, "exclude-promisor-objects", &exclude_promisor_objects
,
4382 N_("do not pack objects in promisor packfiles")),
4383 OPT_BOOL(0, "delta-islands", &use_delta_islands
,
4384 N_("respect islands during delta compression")),
4385 OPT_STRING_LIST(0, "uri-protocol", &uri_protocols
,
4387 N_("exclude any configured uploadpack.blobpackfileuri with this protocol")),
4391 if (DFS_NUM_STATES
> (1 << OE_DFS_STATE_BITS
))
4392 BUG("too many dfs states, increase OE_DFS_STATE_BITS");
4394 disable_replace_refs();
4396 sparse
= git_env_bool("GIT_TEST_PACK_SPARSE", -1);
4397 if (the_repository
->gitdir
) {
4398 prepare_repo_settings(the_repository
);
4400 sparse
= the_repository
->settings
.pack_use_sparse
;
4401 if (the_repository
->settings
.pack_use_multi_pack_reuse
)
4402 allow_pack_reuse
= MULTI_PACK_REUSE
;
4405 reset_pack_idx_option(&pack_idx_opts
);
4406 pack_idx_opts
.flags
|= WRITE_REV
;
4407 git_config(git_pack_config
, NULL
);
4408 if (git_env_bool(GIT_TEST_NO_WRITE_REV_INDEX
, 0))
4409 pack_idx_opts
.flags
&= ~WRITE_REV
;
4411 progress
= isatty(2);
4412 argc
= parse_options(argc
, argv
, prefix
, pack_objects_options
,
4416 base_name
= argv
[0];
4419 if (pack_to_stdout
!= !base_name
|| argc
)
4420 usage_with_options(pack_usage
, pack_objects_options
);
4424 if (depth
>= (1 << OE_DEPTH_BITS
)) {
4425 warning(_("delta chain depth %d is too deep, forcing %d"),
4426 depth
, (1 << OE_DEPTH_BITS
) - 1);
4427 depth
= (1 << OE_DEPTH_BITS
) - 1;
4429 if (cache_max_small_delta_size
>= (1U << OE_Z_DELTA_BITS
)) {
4430 warning(_("pack.deltaCacheLimit is too high, forcing %d"),
4431 (1U << OE_Z_DELTA_BITS
) - 1);
4432 cache_max_small_delta_size
= (1U << OE_Z_DELTA_BITS
) - 1;
4437 strvec_push(&rp
, "pack-objects");
4439 use_internal_rev_list
= 1;
4440 strvec_push(&rp
, shallow
4441 ? "--objects-edge-aggressive"
4442 : "--objects-edge");
4444 strvec_push(&rp
, "--objects");
4447 use_internal_rev_list
= 1;
4448 strvec_push(&rp
, "--all");
4450 if (rev_list_reflog
) {
4451 use_internal_rev_list
= 1;
4452 strvec_push(&rp
, "--reflog");
4454 if (rev_list_index
) {
4455 use_internal_rev_list
= 1;
4456 strvec_push(&rp
, "--indexed-objects");
4458 if (rev_list_unpacked
&& !stdin_packs
) {
4459 use_internal_rev_list
= 1;
4460 strvec_push(&rp
, "--unpacked");
4463 if (exclude_promisor_objects
) {
4464 use_internal_rev_list
= 1;
4465 fetch_if_missing
= 0;
4466 strvec_push(&rp
, "--exclude-promisor-objects");
4468 if (unpack_unreachable
|| keep_unreachable
|| pack_loose_unreachable
)
4469 use_internal_rev_list
= 1;
4473 if (pack_compression_level
== -1)
4474 pack_compression_level
= Z_DEFAULT_COMPRESSION
;
4475 else if (pack_compression_level
< 0 || pack_compression_level
> Z_BEST_COMPRESSION
)
4476 die(_("bad pack compression level %d"), pack_compression_level
);
4478 if (!delta_search_threads
) /* --threads=0 means autodetect */
4479 delta_search_threads
= online_cpus();
4481 if (!HAVE_THREADS
&& delta_search_threads
!= 1)
4482 warning(_("no threads support, ignoring --threads"));
4483 if (!pack_to_stdout
&& !pack_size_limit
)
4484 pack_size_limit
= pack_size_limit_cfg
;
4485 if (pack_to_stdout
&& pack_size_limit
)
4486 die(_("--max-pack-size cannot be used to build a pack for transfer"));
4487 if (pack_size_limit
&& pack_size_limit
< 1024*1024) {
4488 warning(_("minimum pack size limit is 1 MiB"));
4489 pack_size_limit
= 1024*1024;
4492 if (!pack_to_stdout
&& thin
)
4493 die(_("--thin cannot be used to build an indexable pack"));
4495 if (keep_unreachable
&& unpack_unreachable
)
4496 die(_("options '%s' and '%s' cannot be used together"), "--keep-unreachable", "--unpack-unreachable");
4497 if (!rev_list_all
|| !rev_list_reflog
|| !rev_list_index
)
4498 unpack_unreachable_expiration
= 0;
4500 if (stdin_packs
&& filter_options
.choice
)
4501 die(_("cannot use --filter with --stdin-packs"));
4503 if (stdin_packs
&& use_internal_rev_list
)
4504 die(_("cannot use internal rev list with --stdin-packs"));
4507 if (use_internal_rev_list
)
4508 die(_("cannot use internal rev list with --cruft"));
4510 die(_("cannot use --stdin-packs with --cruft"));
4514 * "soft" reasons not to use bitmaps - for on-disk repack by default we want
4516 * - to produce good pack (with bitmap index not-yet-packed objects are
4517 * packed in suboptimal order).
4519 * - to use more robust pack-generation codepath (avoiding possible
4520 * bugs in bitmap code and possible bitmap index corruption).
4522 if (!pack_to_stdout
)
4523 use_bitmap_index_default
= 0;
4525 if (use_bitmap_index
< 0)
4526 use_bitmap_index
= use_bitmap_index_default
;
4528 /* "hard" reasons not to use bitmaps; these just won't work at all */
4529 if (!use_internal_rev_list
|| (!pack_to_stdout
&& write_bitmap_index
) || is_repository_shallow(the_repository
))
4530 use_bitmap_index
= 0;
4532 if (pack_to_stdout
|| !rev_list_all
)
4533 write_bitmap_index
= 0;
4535 if (use_delta_islands
)
4536 strvec_push(&rp
, "--topo-order");
4538 if (progress
&& all_progress_implied
)
4541 add_extra_kept_packs(&keep_pack_list
);
4542 if (ignore_packed_keep_on_disk
) {
4543 struct packed_git
*p
;
4544 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
)
4545 if (p
->pack_local
&& p
->pack_keep
)
4547 if (!p
) /* no keep-able packs found */
4548 ignore_packed_keep_on_disk
= 0;
4552 * unlike ignore_packed_keep_on_disk above, we do not
4553 * want to unset "local" based on looking at packs, as
4554 * it also covers non-local objects
4556 struct packed_git
*p
;
4557 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
4558 if (!p
->pack_local
) {
4559 have_non_local_packs
= 1;
4565 trace2_region_enter("pack-objects", "enumerate-objects",
4567 prepare_packing_data(the_repository
, &to_pack
);
4569 if (progress
&& !cruft
)
4570 progress_state
= start_progress(_("Enumerating objects"), 0);
4572 /* avoids adding objects in excluded packs */
4573 ignore_packed_keep_in_core
= 1;
4574 read_packs_list_from_stdin();
4575 if (rev_list_unpacked
)
4576 add_unreachable_loose_objects();
4578 read_cruft_objects();
4579 } else if (!use_internal_rev_list
) {
4580 read_object_list_from_stdin();
4582 struct rev_info revs
;
4584 repo_init_revisions(the_repository
, &revs
, NULL
);
4585 list_objects_filter_copy(&revs
.filter
, &filter_options
);
4586 get_object_list(&revs
, rp
.nr
, rp
.v
);
4587 release_revisions(&revs
);
4589 cleanup_preferred_base();
4590 if (include_tag
&& nr_result
)
4591 for_each_tag_ref(add_ref_tag
, NULL
);
4592 stop_progress(&progress_state
);
4593 trace2_region_leave("pack-objects", "enumerate-objects",
4596 if (non_empty
&& !nr_result
)
4599 trace2_region_enter("pack-objects", "prepare-pack",
4601 prepare_pack(window
, depth
);
4602 trace2_region_leave("pack-objects", "prepare-pack",
4606 trace2_region_enter("pack-objects", "write-pack-file", the_repository
);
4607 write_excluded_by_configs();
4609 trace2_region_leave("pack-objects", "write-pack-file", the_repository
);
4613 _("Total %"PRIu32
" (delta %"PRIu32
"),"
4614 " reused %"PRIu32
" (delta %"PRIu32
"),"
4615 " pack-reused %"PRIu32
" (from %"PRIuMAX
")"),
4616 written
, written_delta
, reused
, reused_delta
,
4617 reuse_packfile_objects
,
4618 (uintmax_t)reuse_packfiles_used_nr
);
4620 trace2_data_intmax("pack-objects", the_repository
, "written", written
);
4621 trace2_data_intmax("pack-objects", the_repository
, "written/delta", written_delta
);
4622 trace2_data_intmax("pack-objects", the_repository
, "reused", reused
);
4623 trace2_data_intmax("pack-objects", the_repository
, "reused/delta", reused_delta
);
4624 trace2_data_intmax("pack-objects", the_repository
, "pack-reused", reuse_packfile_objects
);
4625 trace2_data_intmax("pack-objects", the_repository
, "packs-reused", reuse_packfiles_used_nr
);
4628 clear_packing_data(&to_pack
);
4629 list_objects_filter_release(&filter_options
);