12 #include "pack-revindex.h"
13 #include "csum-file.h"
14 #include "tree-walk.h"
17 #include "list-objects.h"
18 #include "list-objects-filter.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 "reachable.h"
27 #include "sha1-array.h"
28 #include "argv-array.h"
32 static const char *pack_usage
[] = {
33 N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
34 N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
39 * Objects we are going to pack are collected in the `to_pack` structure.
40 * It contains an array (dynamically expanded) of the object data, and a map
41 * that can resolve SHA1s to their position in the array.
43 static struct packing_data to_pack
;
45 static struct pack_idx_entry
**written_list
;
46 static uint32_t nr_result
, nr_written
;
49 static int reuse_delta
= 1, reuse_object
= 1;
50 static int keep_unreachable
, unpack_unreachable
, include_tag
;
51 static timestamp_t unpack_unreachable_expiration
;
52 static int pack_loose_unreachable
;
54 static int have_non_local_packs
;
55 static int incremental
;
56 static int ignore_packed_keep
;
57 static int allow_ofs_delta
;
58 static struct pack_idx_option pack_idx_opts
;
59 static const char *base_name
;
60 static int progress
= 1;
61 static int window
= 10;
62 static unsigned long pack_size_limit
;
63 static int depth
= 50;
64 static int delta_search_threads
;
65 static int pack_to_stdout
;
66 static int num_preferred_base
;
67 static struct progress
*progress_state
;
69 static struct packed_git
*reuse_packfile
;
70 static uint32_t reuse_packfile_objects
;
71 static off_t reuse_packfile_offset
;
73 static int use_bitmap_index_default
= 1;
74 static int use_bitmap_index
= -1;
75 static int write_bitmap_index
;
76 static uint16_t write_bitmap_options
;
78 static unsigned long delta_cache_size
= 0;
79 static unsigned long max_delta_cache_size
= 256 * 1024 * 1024;
80 static unsigned long cache_max_small_delta_size
= 1000;
82 static unsigned long window_memory_limit
= 0;
84 static struct list_objects_filter_options filter_options
;
87 MA_ERROR
= 0, /* fail if any missing objects are encountered */
88 MA_ALLOW_ANY
, /* silently allow ALL missing objects */
90 static enum missing_action arg_missing_action
;
91 static show_object_fn fn_show_object
;
96 static uint32_t written
, written_delta
;
97 static uint32_t reused
, reused_delta
;
102 static struct commit
**indexed_commits
;
103 static unsigned int indexed_commits_nr
;
104 static unsigned int indexed_commits_alloc
;
106 static void index_commit_for_bitmap(struct commit
*commit
)
108 if (indexed_commits_nr
>= indexed_commits_alloc
) {
109 indexed_commits_alloc
= (indexed_commits_alloc
+ 32) * 2;
110 REALLOC_ARRAY(indexed_commits
, indexed_commits_alloc
);
113 indexed_commits
[indexed_commits_nr
++] = commit
;
116 static void *get_delta(struct object_entry
*entry
)
118 unsigned long size
, base_size
, delta_size
;
119 void *buf
, *base_buf
, *delta_buf
;
120 enum object_type type
;
122 buf
= read_sha1_file(entry
->idx
.oid
.hash
, &type
, &size
);
124 die("unable to read %s", oid_to_hex(&entry
->idx
.oid
));
125 base_buf
= read_sha1_file(entry
->delta
->idx
.oid
.hash
, &type
,
128 die("unable to read %s",
129 oid_to_hex(&entry
->delta
->idx
.oid
));
130 delta_buf
= diff_delta(base_buf
, base_size
,
131 buf
, size
, &delta_size
, 0);
132 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
133 die("delta size changed");
139 static unsigned long do_compress(void **pptr
, unsigned long size
)
143 unsigned long maxsize
;
145 git_deflate_init(&stream
, pack_compression_level
);
146 maxsize
= git_deflate_bound(&stream
, size
);
149 out
= xmalloc(maxsize
);
153 stream
.avail_in
= size
;
154 stream
.next_out
= out
;
155 stream
.avail_out
= maxsize
;
156 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
158 git_deflate_end(&stream
);
161 return stream
.total_out
;
164 static unsigned long write_large_blob_data(struct git_istream
*st
, struct sha1file
*f
,
165 const struct object_id
*oid
)
168 unsigned char ibuf
[1024 * 16];
169 unsigned char obuf
[1024 * 16];
170 unsigned long olen
= 0;
172 git_deflate_init(&stream
, pack_compression_level
);
177 readlen
= read_istream(st
, ibuf
, sizeof(ibuf
));
179 die(_("unable to read %s"), oid_to_hex(oid
));
181 stream
.next_in
= ibuf
;
182 stream
.avail_in
= readlen
;
183 while ((stream
.avail_in
|| readlen
== 0) &&
184 (zret
== Z_OK
|| zret
== Z_BUF_ERROR
)) {
185 stream
.next_out
= obuf
;
186 stream
.avail_out
= sizeof(obuf
);
187 zret
= git_deflate(&stream
, readlen
? 0 : Z_FINISH
);
188 sha1write(f
, obuf
, stream
.next_out
- obuf
);
189 olen
+= stream
.next_out
- obuf
;
192 die(_("deflate error (%d)"), zret
);
194 if (zret
!= Z_STREAM_END
)
195 die(_("deflate error (%d)"), zret
);
199 git_deflate_end(&stream
);
204 * we are going to reuse the existing object data as is. make
205 * sure it is not corrupt.
207 static int check_pack_inflate(struct packed_git
*p
,
208 struct pack_window
**w_curs
,
211 unsigned long expect
)
214 unsigned char fakebuf
[4096], *in
;
217 memset(&stream
, 0, sizeof(stream
));
218 git_inflate_init(&stream
);
220 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_in
);
222 stream
.next_out
= fakebuf
;
223 stream
.avail_out
= sizeof(fakebuf
);
224 st
= git_inflate(&stream
, Z_FINISH
);
225 offset
+= stream
.next_in
- in
;
226 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
227 git_inflate_end(&stream
);
228 return (st
== Z_STREAM_END
&&
229 stream
.total_out
== expect
&&
230 stream
.total_in
== len
) ? 0 : -1;
233 static void copy_pack_data(struct sha1file
*f
,
234 struct packed_git
*p
,
235 struct pack_window
**w_curs
,
243 in
= use_pack(p
, w_curs
, offset
, &avail
);
245 avail
= (unsigned long)len
;
246 sha1write(f
, in
, avail
);
252 /* Return 0 if we will bust the pack-size limit */
253 static unsigned long write_no_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
254 unsigned long limit
, int usable_delta
)
256 unsigned long size
, datalen
;
257 unsigned char header
[MAX_PACK_OBJECT_HEADER
],
258 dheader
[MAX_PACK_OBJECT_HEADER
];
260 enum object_type type
;
262 struct git_istream
*st
= NULL
;
265 if (entry
->type
== OBJ_BLOB
&&
266 entry
->size
> big_file_threshold
&&
267 (st
= open_istream(entry
->idx
.oid
.hash
, &type
, &size
, NULL
)) != NULL
)
270 buf
= read_sha1_file(entry
->idx
.oid
.hash
, &type
,
273 die(_("unable to read %s"),
274 oid_to_hex(&entry
->idx
.oid
));
277 * make sure no cached delta data remains from a
278 * previous attempt before a pack split occurred.
280 FREE_AND_NULL(entry
->delta_data
);
281 entry
->z_delta_size
= 0;
282 } else if (entry
->delta_data
) {
283 size
= entry
->delta_size
;
284 buf
= entry
->delta_data
;
285 entry
->delta_data
= NULL
;
286 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
287 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
289 buf
= get_delta(entry
);
290 size
= entry
->delta_size
;
291 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
292 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
295 if (st
) /* large blob case, just assume we don't compress well */
297 else if (entry
->z_delta_size
)
298 datalen
= entry
->z_delta_size
;
300 datalen
= do_compress(&buf
, size
);
303 * The object header is a byte of 'type' followed by zero or
304 * more bytes of length.
306 hdrlen
= encode_in_pack_object_header(header
, sizeof(header
),
309 if (type
== OBJ_OFS_DELTA
) {
311 * Deltas with relative base contain an additional
312 * encoding of the relative offset for the delta
313 * base from this object's position in the pack.
315 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
316 unsigned pos
= sizeof(dheader
) - 1;
317 dheader
[pos
] = ofs
& 127;
319 dheader
[--pos
] = 128 | (--ofs
& 127);
320 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
326 sha1write(f
, header
, hdrlen
);
327 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
328 hdrlen
+= sizeof(dheader
) - pos
;
329 } else if (type
== OBJ_REF_DELTA
) {
331 * Deltas with a base reference contain
332 * an additional 20 bytes for the base sha1.
334 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
340 sha1write(f
, header
, hdrlen
);
341 sha1write(f
, entry
->delta
->idx
.oid
.hash
, 20);
344 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
350 sha1write(f
, header
, hdrlen
);
353 datalen
= write_large_blob_data(st
, f
, &entry
->idx
.oid
);
356 sha1write(f
, buf
, datalen
);
360 return hdrlen
+ datalen
;
363 /* Return 0 if we will bust the pack-size limit */
364 static off_t
write_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
365 unsigned long limit
, int usable_delta
)
367 struct packed_git
*p
= entry
->in_pack
;
368 struct pack_window
*w_curs
= NULL
;
369 struct revindex_entry
*revidx
;
371 enum object_type type
= entry
->type
;
373 unsigned char header
[MAX_PACK_OBJECT_HEADER
],
374 dheader
[MAX_PACK_OBJECT_HEADER
];
378 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
379 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
380 hdrlen
= encode_in_pack_object_header(header
, sizeof(header
),
383 offset
= entry
->in_pack_offset
;
384 revidx
= find_pack_revindex(p
, offset
);
385 datalen
= revidx
[1].offset
- offset
;
386 if (!pack_to_stdout
&& p
->index_version
> 1 &&
387 check_pack_crc(p
, &w_curs
, offset
, datalen
, revidx
->nr
)) {
388 error("bad packed object CRC for %s",
389 oid_to_hex(&entry
->idx
.oid
));
391 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
394 offset
+= entry
->in_pack_header_size
;
395 datalen
-= entry
->in_pack_header_size
;
397 if (!pack_to_stdout
&& p
->index_version
== 1 &&
398 check_pack_inflate(p
, &w_curs
, offset
, datalen
, entry
->size
)) {
399 error("corrupt packed object for %s",
400 oid_to_hex(&entry
->idx
.oid
));
402 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
405 if (type
== OBJ_OFS_DELTA
) {
406 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
407 unsigned pos
= sizeof(dheader
) - 1;
408 dheader
[pos
] = ofs
& 127;
410 dheader
[--pos
] = 128 | (--ofs
& 127);
411 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
415 sha1write(f
, header
, hdrlen
);
416 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
417 hdrlen
+= sizeof(dheader
) - pos
;
419 } else if (type
== OBJ_REF_DELTA
) {
420 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
424 sha1write(f
, header
, hdrlen
);
425 sha1write(f
, entry
->delta
->idx
.oid
.hash
, 20);
429 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
433 sha1write(f
, header
, hdrlen
);
435 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
438 return hdrlen
+ datalen
;
441 /* Return 0 if we will bust the pack-size limit */
442 static off_t
write_object(struct sha1file
*f
,
443 struct object_entry
*entry
,
448 int usable_delta
, to_reuse
;
453 /* apply size limit if limited packsize and not first object */
454 if (!pack_size_limit
|| !nr_written
)
456 else if (pack_size_limit
<= write_offset
)
458 * the earlier object did not fit the limit; avoid
459 * mistaking this with unlimited (i.e. limit = 0).
463 limit
= pack_size_limit
- write_offset
;
466 usable_delta
= 0; /* no delta */
467 else if (!pack_size_limit
)
468 usable_delta
= 1; /* unlimited packfile */
469 else if (entry
->delta
->idx
.offset
== (off_t
)-1)
470 usable_delta
= 0; /* base was written to another pack */
471 else if (entry
->delta
->idx
.offset
)
472 usable_delta
= 1; /* base already exists in this pack */
474 usable_delta
= 0; /* base could end up in another pack */
477 to_reuse
= 0; /* explicit */
478 else if (!entry
->in_pack
)
479 to_reuse
= 0; /* can't reuse what we don't have */
480 else if (entry
->type
== OBJ_REF_DELTA
|| entry
->type
== OBJ_OFS_DELTA
)
481 /* check_object() decided it for us ... */
482 to_reuse
= usable_delta
;
483 /* ... but pack split may override that */
484 else if (entry
->type
!= entry
->in_pack_type
)
485 to_reuse
= 0; /* pack has delta which is unusable */
486 else if (entry
->delta
)
487 to_reuse
= 0; /* we want to pack afresh */
489 to_reuse
= 1; /* we have it in-pack undeltified,
490 * and we do not need to deltify it.
494 len
= write_no_reuse_object(f
, entry
, limit
, usable_delta
);
496 len
= write_reuse_object(f
, entry
, limit
, usable_delta
);
504 entry
->idx
.crc32
= crc32_end(f
);
508 enum write_one_status
{
509 WRITE_ONE_SKIP
= -1, /* already written */
510 WRITE_ONE_BREAK
= 0, /* writing this will bust the limit; not written */
511 WRITE_ONE_WRITTEN
= 1, /* normal */
512 WRITE_ONE_RECURSIVE
= 2 /* already scheduled to be written */
515 static enum write_one_status
write_one(struct sha1file
*f
,
516 struct object_entry
*e
,
523 * we set offset to 1 (which is an impossible value) to mark
524 * the fact that this object is involved in "write its base
525 * first before writing a deltified object" recursion.
527 recursing
= (e
->idx
.offset
== 1);
529 warning("recursive delta detected for object %s",
530 oid_to_hex(&e
->idx
.oid
));
531 return WRITE_ONE_RECURSIVE
;
532 } else if (e
->idx
.offset
|| e
->preferred_base
) {
533 /* offset is non zero if object is written already. */
534 return WRITE_ONE_SKIP
;
537 /* if we are deltified, write out base object first. */
539 e
->idx
.offset
= 1; /* now recurse */
540 switch (write_one(f
, e
->delta
, offset
)) {
541 case WRITE_ONE_RECURSIVE
:
542 /* we cannot depend on this one */
547 case WRITE_ONE_BREAK
:
548 e
->idx
.offset
= recursing
;
549 return WRITE_ONE_BREAK
;
553 e
->idx
.offset
= *offset
;
554 size
= write_object(f
, e
, *offset
);
556 e
->idx
.offset
= recursing
;
557 return WRITE_ONE_BREAK
;
559 written_list
[nr_written
++] = &e
->idx
;
561 /* make sure off_t is sufficiently large not to wrap */
562 if (signed_add_overflows(*offset
, size
))
563 die("pack too large for current definition of off_t");
565 return WRITE_ONE_WRITTEN
;
568 static int mark_tagged(const char *path
, const struct object_id
*oid
, int flag
,
571 struct object_id peeled
;
572 struct object_entry
*entry
= packlist_find(&to_pack
, oid
->hash
, NULL
);
576 if (!peel_ref(path
, &peeled
)) {
577 entry
= packlist_find(&to_pack
, peeled
.hash
, NULL
);
584 static inline void add_to_write_order(struct object_entry
**wo
,
586 struct object_entry
*e
)
594 static void add_descendants_to_write_order(struct object_entry
**wo
,
596 struct object_entry
*e
)
598 int add_to_order
= 1;
601 struct object_entry
*s
;
602 /* add this node... */
603 add_to_write_order(wo
, endp
, e
);
604 /* all its siblings... */
605 for (s
= e
->delta_sibling
; s
; s
= s
->delta_sibling
) {
606 add_to_write_order(wo
, endp
, s
);
609 /* drop down a level to add left subtree nodes if possible */
610 if (e
->delta_child
) {
615 /* our sibling might have some children, it is next */
616 if (e
->delta_sibling
) {
617 e
= e
->delta_sibling
;
620 /* go back to our parent node */
622 while (e
&& !e
->delta_sibling
) {
623 /* we're on the right side of a subtree, keep
624 * going up until we can go right again */
628 /* done- we hit our original root node */
631 /* pass it off to sibling at this level */
632 e
= e
->delta_sibling
;
637 static void add_family_to_write_order(struct object_entry
**wo
,
639 struct object_entry
*e
)
641 struct object_entry
*root
;
643 for (root
= e
; root
->delta
; root
= root
->delta
)
645 add_descendants_to_write_order(wo
, endp
, root
);
648 static struct object_entry
**compute_write_order(void)
650 unsigned int i
, wo_end
, last_untagged
;
652 struct object_entry
**wo
;
653 struct object_entry
*objects
= to_pack
.objects
;
655 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
656 objects
[i
].tagged
= 0;
657 objects
[i
].filled
= 0;
658 objects
[i
].delta_child
= NULL
;
659 objects
[i
].delta_sibling
= NULL
;
663 * Fully connect delta_child/delta_sibling network.
664 * Make sure delta_sibling is sorted in the original
667 for (i
= to_pack
.nr_objects
; i
> 0;) {
668 struct object_entry
*e
= &objects
[--i
];
671 /* Mark me as the first child */
672 e
->delta_sibling
= e
->delta
->delta_child
;
673 e
->delta
->delta_child
= e
;
677 * Mark objects that are at the tip of tags.
679 for_each_tag_ref(mark_tagged
, NULL
);
682 * Give the objects in the original recency order until
683 * we see a tagged tip.
685 ALLOC_ARRAY(wo
, to_pack
.nr_objects
);
686 for (i
= wo_end
= 0; i
< to_pack
.nr_objects
; i
++) {
687 if (objects
[i
].tagged
)
689 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
694 * Then fill all the tagged tips.
696 for (; i
< to_pack
.nr_objects
; i
++) {
697 if (objects
[i
].tagged
)
698 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
702 * And then all remaining commits and tags.
704 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
705 if (objects
[i
].type
!= OBJ_COMMIT
&&
706 objects
[i
].type
!= OBJ_TAG
)
708 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
712 * And then all the trees.
714 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
715 if (objects
[i
].type
!= OBJ_TREE
)
717 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
721 * Finally all the rest in really tight order
723 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
724 if (!objects
[i
].filled
)
725 add_family_to_write_order(wo
, &wo_end
, &objects
[i
]);
728 if (wo_end
!= to_pack
.nr_objects
)
729 die("ordered %u objects, expected %"PRIu32
, wo_end
, to_pack
.nr_objects
);
734 static off_t
write_reused_pack(struct sha1file
*f
)
736 unsigned char buffer
[8192];
737 off_t to_write
, total
;
740 if (!is_pack_valid(reuse_packfile
))
741 die("packfile is invalid: %s", reuse_packfile
->pack_name
);
743 fd
= git_open(reuse_packfile
->pack_name
);
745 die_errno("unable to open packfile for reuse: %s",
746 reuse_packfile
->pack_name
);
748 if (lseek(fd
, sizeof(struct pack_header
), SEEK_SET
) == -1)
749 die_errno("unable to seek in reused packfile");
751 if (reuse_packfile_offset
< 0)
752 reuse_packfile_offset
= reuse_packfile
->pack_size
- 20;
754 total
= to_write
= reuse_packfile_offset
- sizeof(struct pack_header
);
757 int read_pack
= xread(fd
, buffer
, sizeof(buffer
));
760 die_errno("unable to read from reused packfile");
762 if (read_pack
> to_write
)
763 read_pack
= to_write
;
765 sha1write(f
, buffer
, read_pack
);
766 to_write
-= read_pack
;
769 * We don't know the actual number of objects written,
770 * only how many bytes written, how many bytes total, and
771 * how many objects total. So we can fake it by pretending all
772 * objects we are writing are the same size. This gives us a
773 * smooth progress meter, and at the end it matches the true
776 written
= reuse_packfile_objects
*
777 (((double)(total
- to_write
)) / total
);
778 display_progress(progress_state
, written
);
782 written
= reuse_packfile_objects
;
783 display_progress(progress_state
, written
);
784 return reuse_packfile_offset
- sizeof(struct pack_header
);
787 static const char no_split_warning
[] = N_(
788 "disabling bitmap writing, packs are split due to pack.packSizeLimit"
791 static void write_pack_file(void)
796 uint32_t nr_remaining
= nr_result
;
797 time_t last_mtime
= 0;
798 struct object_entry
**write_order
;
800 if (progress
> pack_to_stdout
)
801 progress_state
= start_progress(_("Writing objects"), nr_result
);
802 ALLOC_ARRAY(written_list
, to_pack
.nr_objects
);
803 write_order
= compute_write_order();
806 struct object_id oid
;
807 char *pack_tmp_name
= NULL
;
810 f
= sha1fd_throughput(1, "<stdout>", progress_state
);
812 f
= create_tmp_packfile(&pack_tmp_name
);
814 offset
= write_pack_header(f
, nr_remaining
);
816 if (reuse_packfile
) {
818 assert(pack_to_stdout
);
820 packfile_size
= write_reused_pack(f
);
821 offset
+= packfile_size
;
825 for (; i
< to_pack
.nr_objects
; i
++) {
826 struct object_entry
*e
= write_order
[i
];
827 if (write_one(f
, e
, &offset
) == WRITE_ONE_BREAK
)
829 display_progress(progress_state
, written
);
833 * Did we write the wrong # entries in the header?
834 * If so, rewrite it like in fast-import
836 if (pack_to_stdout
) {
837 sha1close(f
, oid
.hash
, CSUM_CLOSE
);
838 } else if (nr_written
== nr_remaining
) {
839 sha1close(f
, oid
.hash
, CSUM_FSYNC
);
841 int fd
= sha1close(f
, oid
.hash
, 0);
842 fixup_pack_header_footer(fd
, oid
.hash
, pack_tmp_name
,
843 nr_written
, oid
.hash
, offset
);
845 if (write_bitmap_index
) {
846 warning(_(no_split_warning
));
847 write_bitmap_index
= 0;
851 if (!pack_to_stdout
) {
853 struct strbuf tmpname
= STRBUF_INIT
;
856 * Packs are runtime accessed in their mtime
857 * order since newer packs are more likely to contain
858 * younger objects. So if we are creating multiple
859 * packs then we should modify the mtime of later ones
860 * to preserve this property.
862 if (stat(pack_tmp_name
, &st
) < 0) {
863 warning_errno("failed to stat %s", pack_tmp_name
);
864 } else if (!last_mtime
) {
865 last_mtime
= st
.st_mtime
;
868 utb
.actime
= st
.st_atime
;
869 utb
.modtime
= --last_mtime
;
870 if (utime(pack_tmp_name
, &utb
) < 0)
871 warning_errno("failed utime() on %s", pack_tmp_name
);
874 strbuf_addf(&tmpname
, "%s-", base_name
);
876 if (write_bitmap_index
) {
877 bitmap_writer_set_checksum(oid
.hash
);
878 bitmap_writer_build_type_index(written_list
, nr_written
);
881 finish_tmp_packfile(&tmpname
, pack_tmp_name
,
882 written_list
, nr_written
,
883 &pack_idx_opts
, oid
.hash
);
885 if (write_bitmap_index
) {
886 strbuf_addf(&tmpname
, "%s.bitmap", oid_to_hex(&oid
));
888 stop_progress(&progress_state
);
890 bitmap_writer_show_progress(progress
);
891 bitmap_writer_reuse_bitmaps(&to_pack
);
892 bitmap_writer_select_commits(indexed_commits
, indexed_commits_nr
, -1);
893 bitmap_writer_build(&to_pack
);
894 bitmap_writer_finish(written_list
, nr_written
,
895 tmpname
.buf
, write_bitmap_options
);
896 write_bitmap_index
= 0;
899 strbuf_release(&tmpname
);
901 puts(oid_to_hex(&oid
));
904 /* mark written objects as written to previous pack */
905 for (j
= 0; j
< nr_written
; j
++) {
906 written_list
[j
]->offset
= (off_t
)-1;
908 nr_remaining
-= nr_written
;
909 } while (nr_remaining
&& i
< to_pack
.nr_objects
);
913 stop_progress(&progress_state
);
914 if (written
!= nr_result
)
915 die("wrote %"PRIu32
" objects while expecting %"PRIu32
,
919 static int no_try_delta(const char *path
)
921 static struct attr_check
*check
;
924 check
= attr_check_initl("delta", NULL
);
925 if (git_check_attr(path
, check
))
927 if (ATTR_FALSE(check
->items
[0].value
))
933 * When adding an object, check whether we have already added it
934 * to our packing list. If so, we can skip. However, if we are
935 * being asked to excludei t, but the previous mention was to include
936 * it, make sure to adjust its flags and tweak our numbers accordingly.
938 * As an optimization, we pass out the index position where we would have
939 * found the item, since that saves us from having to look it up again a
940 * few lines later when we want to add the new entry.
942 static int have_duplicate_entry(const struct object_id
*oid
,
946 struct object_entry
*entry
;
948 entry
= packlist_find(&to_pack
, oid
->hash
, index_pos
);
953 if (!entry
->preferred_base
)
955 entry
->preferred_base
= 1;
961 static int want_found_object(int exclude
, struct packed_git
*p
)
969 * When asked to do --local (do not include an object that appears in a
970 * pack we borrow from elsewhere) or --honor-pack-keep (do not include
971 * an object that appears in a pack marked with .keep), finding a pack
972 * that matches the criteria is sufficient for us to decide to omit it.
973 * However, even if this pack does not satisfy the criteria, we need to
974 * make sure no copy of this object appears in _any_ pack that makes us
975 * to omit the object, so we need to check all the packs.
977 * We can however first check whether these options can possible matter;
978 * if they do not matter we know we want the object in generated pack.
979 * Otherwise, we signal "-1" at the end to tell the caller that we do
980 * not know either way, and it needs to check more packs.
982 if (!ignore_packed_keep
&&
983 (!local
|| !have_non_local_packs
))
986 if (local
&& !p
->pack_local
)
988 if (ignore_packed_keep
&& p
->pack_local
&& p
->pack_keep
)
991 /* we don't know yet; keep looking for more packs */
996 * Check whether we want the object in the pack (e.g., we do not want
997 * objects found in non-local stores if the "--local" option was used).
999 * If the caller already knows an existing pack it wants to take the object
1000 * from, that is passed in *found_pack and *found_offset; otherwise this
1001 * function finds if there is any pack that has the object and returns the pack
1002 * and its offset in these variables.
1004 static int want_object_in_pack(const struct object_id
*oid
,
1006 struct packed_git
**found_pack
,
1007 off_t
*found_offset
)
1009 struct mru_entry
*entry
;
1012 if (!exclude
&& local
&& has_loose_object_nonlocal(oid
->hash
))
1016 * If we already know the pack object lives in, start checks from that
1017 * pack - in the usual case when neither --local was given nor .keep files
1018 * are present we will determine the answer right now.
1021 want
= want_found_object(exclude
, *found_pack
);
1026 for (entry
= packed_git_mru
.head
; entry
; entry
= entry
->next
) {
1027 struct packed_git
*p
= entry
->item
;
1030 if (p
== *found_pack
)
1031 offset
= *found_offset
;
1033 offset
= find_pack_entry_one(oid
->hash
, p
);
1037 if (!is_pack_valid(p
))
1039 *found_offset
= offset
;
1042 want
= want_found_object(exclude
, p
);
1043 if (!exclude
&& want
> 0)
1044 mru_mark(&packed_git_mru
, entry
);
1053 static void create_object_entry(const struct object_id
*oid
,
1054 enum object_type type
,
1059 struct packed_git
*found_pack
,
1062 struct object_entry
*entry
;
1064 entry
= packlist_alloc(&to_pack
, oid
->hash
, index_pos
);
1069 entry
->preferred_base
= 1;
1073 entry
->in_pack
= found_pack
;
1074 entry
->in_pack_offset
= found_offset
;
1077 entry
->no_try_delta
= no_try_delta
;
1080 static const char no_closure_warning
[] = N_(
1081 "disabling bitmap writing, as some objects are not being packed"
1084 static int add_object_entry(const struct object_id
*oid
, enum object_type type
,
1085 const char *name
, int exclude
)
1087 struct packed_git
*found_pack
= NULL
;
1088 off_t found_offset
= 0;
1091 if (have_duplicate_entry(oid
, exclude
, &index_pos
))
1094 if (!want_object_in_pack(oid
, exclude
, &found_pack
, &found_offset
)) {
1095 /* The pack is missing an object, so it will not have closure */
1096 if (write_bitmap_index
) {
1097 warning(_(no_closure_warning
));
1098 write_bitmap_index
= 0;
1103 create_object_entry(oid
, type
, pack_name_hash(name
),
1104 exclude
, name
&& no_try_delta(name
),
1105 index_pos
, found_pack
, found_offset
);
1107 display_progress(progress_state
, nr_result
);
1111 static int add_object_entry_from_bitmap(const struct object_id
*oid
,
1112 enum object_type type
,
1113 int flags
, uint32_t name_hash
,
1114 struct packed_git
*pack
, off_t offset
)
1118 if (have_duplicate_entry(oid
, 0, &index_pos
))
1121 if (!want_object_in_pack(oid
, 0, &pack
, &offset
))
1124 create_object_entry(oid
, type
, name_hash
, 0, 0, index_pos
, pack
, offset
);
1126 display_progress(progress_state
, nr_result
);
1130 struct pbase_tree_cache
{
1131 struct object_id oid
;
1135 unsigned long tree_size
;
1138 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
1139 static int pbase_tree_cache_ix(const struct object_id
*oid
)
1141 return oid
->hash
[0] % ARRAY_SIZE(pbase_tree_cache
);
1143 static int pbase_tree_cache_ix_incr(int ix
)
1145 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
1148 static struct pbase_tree
{
1149 struct pbase_tree
*next
;
1150 /* This is a phony "cache" entry; we are not
1151 * going to evict it or find it through _get()
1152 * mechanism -- this is for the toplevel node that
1153 * would almost always change with any commit.
1155 struct pbase_tree_cache pcache
;
1158 static struct pbase_tree_cache
*pbase_tree_get(const struct object_id
*oid
)
1160 struct pbase_tree_cache
*ent
, *nent
;
1163 enum object_type type
;
1165 int my_ix
= pbase_tree_cache_ix(oid
);
1166 int available_ix
= -1;
1168 /* pbase-tree-cache acts as a limited hashtable.
1169 * your object will be found at your index or within a few
1170 * slots after that slot if it is cached.
1172 for (neigh
= 0; neigh
< 8; neigh
++) {
1173 ent
= pbase_tree_cache
[my_ix
];
1174 if (ent
&& !oidcmp(&ent
->oid
, oid
)) {
1178 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
1179 ((0 <= available_ix
) &&
1180 (!ent
&& pbase_tree_cache
[available_ix
])))
1181 available_ix
= my_ix
;
1184 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
1187 /* Did not find one. Either we got a bogus request or
1188 * we need to read and perhaps cache.
1190 data
= read_sha1_file(oid
->hash
, &type
, &size
);
1193 if (type
!= OBJ_TREE
) {
1198 /* We need to either cache or return a throwaway copy */
1200 if (available_ix
< 0)
1203 ent
= pbase_tree_cache
[available_ix
];
1204 my_ix
= available_ix
;
1208 nent
= xmalloc(sizeof(*nent
));
1209 nent
->temporary
= (available_ix
< 0);
1212 /* evict and reuse */
1213 free(ent
->tree_data
);
1216 oidcpy(&nent
->oid
, oid
);
1217 nent
->tree_data
= data
;
1218 nent
->tree_size
= size
;
1220 if (!nent
->temporary
)
1221 pbase_tree_cache
[my_ix
] = nent
;
1225 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
1227 if (!cache
->temporary
) {
1231 free(cache
->tree_data
);
1235 static int name_cmp_len(const char *name
)
1238 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
1243 static void add_pbase_object(struct tree_desc
*tree
,
1246 const char *fullname
)
1248 struct name_entry entry
;
1251 while (tree_entry(tree
,&entry
)) {
1252 if (S_ISGITLINK(entry
.mode
))
1254 cmp
= tree_entry_len(&entry
) != cmplen
? 1 :
1255 memcmp(name
, entry
.path
, cmplen
);
1260 if (name
[cmplen
] != '/') {
1261 add_object_entry(entry
.oid
,
1262 object_type(entry
.mode
),
1266 if (S_ISDIR(entry
.mode
)) {
1267 struct tree_desc sub
;
1268 struct pbase_tree_cache
*tree
;
1269 const char *down
= name
+cmplen
+1;
1270 int downlen
= name_cmp_len(down
);
1272 tree
= pbase_tree_get(entry
.oid
);
1275 init_tree_desc(&sub
, tree
->tree_data
, tree
->tree_size
);
1277 add_pbase_object(&sub
, down
, downlen
, fullname
);
1278 pbase_tree_put(tree
);
1283 static unsigned *done_pbase_paths
;
1284 static int done_pbase_paths_num
;
1285 static int done_pbase_paths_alloc
;
1286 static int done_pbase_path_pos(unsigned hash
)
1289 int hi
= done_pbase_paths_num
;
1291 int mi
= lo
+ (hi
- lo
) / 2;
1292 if (done_pbase_paths
[mi
] == hash
)
1294 if (done_pbase_paths
[mi
] < hash
)
1302 static int check_pbase_path(unsigned hash
)
1304 int pos
= done_pbase_path_pos(hash
);
1308 ALLOC_GROW(done_pbase_paths
,
1309 done_pbase_paths_num
+ 1,
1310 done_pbase_paths_alloc
);
1311 done_pbase_paths_num
++;
1312 if (pos
< done_pbase_paths_num
)
1313 MOVE_ARRAY(done_pbase_paths
+ pos
+ 1, done_pbase_paths
+ pos
,
1314 done_pbase_paths_num
- pos
- 1);
1315 done_pbase_paths
[pos
] = hash
;
1319 static void add_preferred_base_object(const char *name
)
1321 struct pbase_tree
*it
;
1323 unsigned hash
= pack_name_hash(name
);
1325 if (!num_preferred_base
|| check_pbase_path(hash
))
1328 cmplen
= name_cmp_len(name
);
1329 for (it
= pbase_tree
; it
; it
= it
->next
) {
1331 add_object_entry(&it
->pcache
.oid
, OBJ_TREE
, NULL
, 1);
1334 struct tree_desc tree
;
1335 init_tree_desc(&tree
, it
->pcache
.tree_data
, it
->pcache
.tree_size
);
1336 add_pbase_object(&tree
, name
, cmplen
, name
);
1341 static void add_preferred_base(struct object_id
*oid
)
1343 struct pbase_tree
*it
;
1346 struct object_id tree_oid
;
1348 if (window
<= num_preferred_base
++)
1351 data
= read_object_with_reference(oid
->hash
, tree_type
, &size
, tree_oid
.hash
);
1355 for (it
= pbase_tree
; it
; it
= it
->next
) {
1356 if (!oidcmp(&it
->pcache
.oid
, &tree_oid
)) {
1362 it
= xcalloc(1, sizeof(*it
));
1363 it
->next
= pbase_tree
;
1366 oidcpy(&it
->pcache
.oid
, &tree_oid
);
1367 it
->pcache
.tree_data
= data
;
1368 it
->pcache
.tree_size
= size
;
1371 static void cleanup_preferred_base(void)
1373 struct pbase_tree
*it
;
1379 struct pbase_tree
*this = it
;
1381 free(this->pcache
.tree_data
);
1385 for (i
= 0; i
< ARRAY_SIZE(pbase_tree_cache
); i
++) {
1386 if (!pbase_tree_cache
[i
])
1388 free(pbase_tree_cache
[i
]->tree_data
);
1389 FREE_AND_NULL(pbase_tree_cache
[i
]);
1392 FREE_AND_NULL(done_pbase_paths
);
1393 done_pbase_paths_num
= done_pbase_paths_alloc
= 0;
1396 static void check_object(struct object_entry
*entry
)
1398 if (entry
->in_pack
) {
1399 struct packed_git
*p
= entry
->in_pack
;
1400 struct pack_window
*w_curs
= NULL
;
1401 const unsigned char *base_ref
= NULL
;
1402 struct object_entry
*base_entry
;
1403 unsigned long used
, used_0
;
1404 unsigned long avail
;
1406 unsigned char *buf
, c
;
1408 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
1411 * We want in_pack_type even if we do not reuse delta
1412 * since non-delta representations could still be reused.
1414 used
= unpack_object_header_buffer(buf
, avail
,
1415 &entry
->in_pack_type
,
1421 * Determine if this is a delta and if so whether we can
1422 * reuse it or not. Otherwise let's find out as cheaply as
1423 * possible what the actual type and size for this object is.
1425 switch (entry
->in_pack_type
) {
1427 /* Not a delta hence we've already got all we need. */
1428 entry
->type
= entry
->in_pack_type
;
1429 entry
->in_pack_header_size
= used
;
1430 if (entry
->type
< OBJ_COMMIT
|| entry
->type
> OBJ_BLOB
)
1432 unuse_pack(&w_curs
);
1435 if (reuse_delta
&& !entry
->preferred_base
)
1436 base_ref
= use_pack(p
, &w_curs
,
1437 entry
->in_pack_offset
+ used
, NULL
);
1438 entry
->in_pack_header_size
= used
+ 20;
1441 buf
= use_pack(p
, &w_curs
,
1442 entry
->in_pack_offset
+ used
, NULL
);
1448 if (!ofs
|| MSB(ofs
, 7)) {
1449 error("delta base offset overflow in pack for %s",
1450 oid_to_hex(&entry
->idx
.oid
));
1454 ofs
= (ofs
<< 7) + (c
& 127);
1456 ofs
= entry
->in_pack_offset
- ofs
;
1457 if (ofs
<= 0 || ofs
>= entry
->in_pack_offset
) {
1458 error("delta base offset out of bound for %s",
1459 oid_to_hex(&entry
->idx
.oid
));
1462 if (reuse_delta
&& !entry
->preferred_base
) {
1463 struct revindex_entry
*revidx
;
1464 revidx
= find_pack_revindex(p
, ofs
);
1467 base_ref
= nth_packed_object_sha1(p
, revidx
->nr
);
1469 entry
->in_pack_header_size
= used
+ used_0
;
1473 if (base_ref
&& (base_entry
= packlist_find(&to_pack
, base_ref
, NULL
))) {
1475 * If base_ref was set above that means we wish to
1476 * reuse delta data, and we even found that base
1477 * in the list of objects we want to pack. Goodie!
1479 * Depth value does not matter - find_deltas() will
1480 * never consider reused delta as the base object to
1481 * deltify other objects against, in order to avoid
1484 entry
->type
= entry
->in_pack_type
;
1485 entry
->delta
= base_entry
;
1486 entry
->delta_size
= entry
->size
;
1487 entry
->delta_sibling
= base_entry
->delta_child
;
1488 base_entry
->delta_child
= entry
;
1489 unuse_pack(&w_curs
);
1495 * This must be a delta and we already know what the
1496 * final object type is. Let's extract the actual
1497 * object size from the delta header.
1499 entry
->size
= get_size_from_delta(p
, &w_curs
,
1500 entry
->in_pack_offset
+ entry
->in_pack_header_size
);
1501 if (entry
->size
== 0)
1503 unuse_pack(&w_curs
);
1508 * No choice but to fall back to the recursive delta walk
1509 * with sha1_object_info() to find about the object type
1513 unuse_pack(&w_curs
);
1516 entry
->type
= sha1_object_info(entry
->idx
.oid
.hash
, &entry
->size
);
1518 * The error condition is checked in prepare_pack(). This is
1519 * to permit a missing preferred base object to be ignored
1520 * as a preferred base. Doing so can result in a larger
1521 * pack file, but the transfer will still take place.
1525 static int pack_offset_sort(const void *_a
, const void *_b
)
1527 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1528 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1530 /* avoid filesystem trashing with loose objects */
1531 if (!a
->in_pack
&& !b
->in_pack
)
1532 return oidcmp(&a
->idx
.oid
, &b
->idx
.oid
);
1534 if (a
->in_pack
< b
->in_pack
)
1536 if (a
->in_pack
> b
->in_pack
)
1538 return a
->in_pack_offset
< b
->in_pack_offset
? -1 :
1539 (a
->in_pack_offset
> b
->in_pack_offset
);
1543 * Drop an on-disk delta we were planning to reuse. Naively, this would
1544 * just involve blanking out the "delta" field, but we have to deal
1545 * with some extra book-keeping:
1547 * 1. Removing ourselves from the delta_sibling linked list.
1549 * 2. Updating our size/type to the non-delta representation. These were
1550 * either not recorded initially (size) or overwritten with the delta type
1551 * (type) when check_object() decided to reuse the delta.
1553 * 3. Resetting our delta depth, as we are now a base object.
1555 static void drop_reused_delta(struct object_entry
*entry
)
1557 struct object_entry
**p
= &entry
->delta
->delta_child
;
1558 struct object_info oi
= OBJECT_INFO_INIT
;
1562 *p
= (*p
)->delta_sibling
;
1564 p
= &(*p
)->delta_sibling
;
1566 entry
->delta
= NULL
;
1569 oi
.sizep
= &entry
->size
;
1570 oi
.typep
= &entry
->type
;
1571 if (packed_object_info(entry
->in_pack
, entry
->in_pack_offset
, &oi
) < 0) {
1573 * We failed to get the info from this pack for some reason;
1574 * fall back to sha1_object_info, which may find another copy.
1575 * And if that fails, the error will be recorded in entry->type
1576 * and dealt with in prepare_pack().
1578 entry
->type
= sha1_object_info(entry
->idx
.oid
.hash
,
1584 * Follow the chain of deltas from this entry onward, throwing away any links
1585 * that cause us to hit a cycle (as determined by the DFS state flags in
1588 * We also detect too-long reused chains that would violate our --depth
1591 static void break_delta_chains(struct object_entry
*entry
)
1594 * The actual depth of each object we will write is stored as an int,
1595 * as it cannot exceed our int "depth" limit. But before we break
1596 * changes based no that limit, we may potentially go as deep as the
1597 * number of objects, which is elsewhere bounded to a uint32_t.
1599 uint32_t total_depth
;
1600 struct object_entry
*cur
, *next
;
1602 for (cur
= entry
, total_depth
= 0;
1604 cur
= cur
->delta
, total_depth
++) {
1605 if (cur
->dfs_state
== DFS_DONE
) {
1607 * We've already seen this object and know it isn't
1608 * part of a cycle. We do need to append its depth
1611 total_depth
+= cur
->depth
;
1616 * We break cycles before looping, so an ACTIVE state (or any
1617 * other cruft which made its way into the state variable)
1620 if (cur
->dfs_state
!= DFS_NONE
)
1621 die("BUG: confusing delta dfs state in first pass: %d",
1625 * Now we know this is the first time we've seen the object. If
1626 * it's not a delta, we're done traversing, but we'll mark it
1627 * done to save time on future traversals.
1630 cur
->dfs_state
= DFS_DONE
;
1635 * Mark ourselves as active and see if the next step causes
1636 * us to cycle to another active object. It's important to do
1637 * this _before_ we loop, because it impacts where we make the
1638 * cut, and thus how our total_depth counter works.
1639 * E.g., We may see a partial loop like:
1641 * A -> B -> C -> D -> B
1643 * Cutting B->C breaks the cycle. But now the depth of A is
1644 * only 1, and our total_depth counter is at 3. The size of the
1645 * error is always one less than the size of the cycle we
1646 * broke. Commits C and D were "lost" from A's chain.
1648 * If we instead cut D->B, then the depth of A is correct at 3.
1649 * We keep all commits in the chain that we examined.
1651 cur
->dfs_state
= DFS_ACTIVE
;
1652 if (cur
->delta
->dfs_state
== DFS_ACTIVE
) {
1653 drop_reused_delta(cur
);
1654 cur
->dfs_state
= DFS_DONE
;
1660 * And now that we've gone all the way to the bottom of the chain, we
1661 * need to clear the active flags and set the depth fields as
1662 * appropriate. Unlike the loop above, which can quit when it drops a
1663 * delta, we need to keep going to look for more depth cuts. So we need
1664 * an extra "next" pointer to keep going after we reset cur->delta.
1666 for (cur
= entry
; cur
; cur
= next
) {
1670 * We should have a chain of zero or more ACTIVE states down to
1671 * a final DONE. We can quit after the DONE, because either it
1672 * has no bases, or we've already handled them in a previous
1675 if (cur
->dfs_state
== DFS_DONE
)
1677 else if (cur
->dfs_state
!= DFS_ACTIVE
)
1678 die("BUG: confusing delta dfs state in second pass: %d",
1682 * If the total_depth is more than depth, then we need to snip
1683 * the chain into two or more smaller chains that don't exceed
1684 * the maximum depth. Most of the resulting chains will contain
1685 * (depth + 1) entries (i.e., depth deltas plus one base), and
1686 * the last chain (i.e., the one containing entry) will contain
1687 * whatever entries are left over, namely
1688 * (total_depth % (depth + 1)) of them.
1690 * Since we are iterating towards decreasing depth, we need to
1691 * decrement total_depth as we go, and we need to write to the
1692 * entry what its final depth will be after all of the
1693 * snipping. Since we're snipping into chains of length (depth
1694 * + 1) entries, the final depth of an entry will be its
1695 * original depth modulo (depth + 1). Any time we encounter an
1696 * entry whose final depth is supposed to be zero, we snip it
1697 * from its delta base, thereby making it so.
1699 cur
->depth
= (total_depth
--) % (depth
+ 1);
1701 drop_reused_delta(cur
);
1703 cur
->dfs_state
= DFS_DONE
;
1707 static void get_object_details(void)
1710 struct object_entry
**sorted_by_offset
;
1712 sorted_by_offset
= xcalloc(to_pack
.nr_objects
, sizeof(struct object_entry
*));
1713 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
1714 sorted_by_offset
[i
] = to_pack
.objects
+ i
;
1715 QSORT(sorted_by_offset
, to_pack
.nr_objects
, pack_offset_sort
);
1717 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
1718 struct object_entry
*entry
= sorted_by_offset
[i
];
1719 check_object(entry
);
1720 if (big_file_threshold
< entry
->size
)
1721 entry
->no_try_delta
= 1;
1725 * This must happen in a second pass, since we rely on the delta
1726 * information for the whole list being completed.
1728 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
1729 break_delta_chains(&to_pack
.objects
[i
]);
1731 free(sorted_by_offset
);
1735 * We search for deltas in a list sorted by type, by filename hash, and then
1736 * by size, so that we see progressively smaller and smaller files.
1737 * That's because we prefer deltas to be from the bigger file
1738 * to the smaller -- deletes are potentially cheaper, but perhaps
1739 * more importantly, the bigger file is likely the more recent
1740 * one. The deepest deltas are therefore the oldest objects which are
1741 * less susceptible to be accessed often.
1743 static int type_size_sort(const void *_a
, const void *_b
)
1745 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1746 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1748 if (a
->type
> b
->type
)
1750 if (a
->type
< b
->type
)
1752 if (a
->hash
> b
->hash
)
1754 if (a
->hash
< b
->hash
)
1756 if (a
->preferred_base
> b
->preferred_base
)
1758 if (a
->preferred_base
< b
->preferred_base
)
1760 if (a
->size
> b
->size
)
1762 if (a
->size
< b
->size
)
1764 return a
< b
? -1 : (a
> b
); /* newest first */
1768 struct object_entry
*entry
;
1770 struct delta_index
*index
;
1774 static int delta_cacheable(unsigned long src_size
, unsigned long trg_size
,
1775 unsigned long delta_size
)
1777 if (max_delta_cache_size
&& delta_cache_size
+ delta_size
> max_delta_cache_size
)
1780 if (delta_size
< cache_max_small_delta_size
)
1783 /* cache delta, if objects are large enough compared to delta size */
1784 if ((src_size
>> 20) + (trg_size
>> 21) > (delta_size
>> 10))
1792 static pthread_mutex_t read_mutex
;
1793 #define read_lock() pthread_mutex_lock(&read_mutex)
1794 #define read_unlock() pthread_mutex_unlock(&read_mutex)
1796 static pthread_mutex_t cache_mutex
;
1797 #define cache_lock() pthread_mutex_lock(&cache_mutex)
1798 #define cache_unlock() pthread_mutex_unlock(&cache_mutex)
1800 static pthread_mutex_t progress_mutex
;
1801 #define progress_lock() pthread_mutex_lock(&progress_mutex)
1802 #define progress_unlock() pthread_mutex_unlock(&progress_mutex)
1806 #define read_lock() (void)0
1807 #define read_unlock() (void)0
1808 #define cache_lock() (void)0
1809 #define cache_unlock() (void)0
1810 #define progress_lock() (void)0
1811 #define progress_unlock() (void)0
1815 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
1816 unsigned max_depth
, unsigned long *mem_usage
)
1818 struct object_entry
*trg_entry
= trg
->entry
;
1819 struct object_entry
*src_entry
= src
->entry
;
1820 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
1822 enum object_type type
;
1825 /* Don't bother doing diffs between different types */
1826 if (trg_entry
->type
!= src_entry
->type
)
1830 * We do not bother to try a delta that we discarded on an
1831 * earlier try, but only when reusing delta data. Note that
1832 * src_entry that is marked as the preferred_base should always
1833 * be considered, as even if we produce a suboptimal delta against
1834 * it, we will still save the transfer cost, as we already know
1835 * the other side has it and we won't send src_entry at all.
1837 if (reuse_delta
&& trg_entry
->in_pack
&&
1838 trg_entry
->in_pack
== src_entry
->in_pack
&&
1839 !src_entry
->preferred_base
&&
1840 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
1841 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
1844 /* Let's not bust the allowed depth. */
1845 if (src
->depth
>= max_depth
)
1848 /* Now some size filtering heuristics. */
1849 trg_size
= trg_entry
->size
;
1850 if (!trg_entry
->delta
) {
1851 max_size
= trg_size
/2 - 20;
1854 max_size
= trg_entry
->delta_size
;
1855 ref_depth
= trg
->depth
;
1857 max_size
= (uint64_t)max_size
* (max_depth
- src
->depth
) /
1858 (max_depth
- ref_depth
+ 1);
1861 src_size
= src_entry
->size
;
1862 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
1863 if (sizediff
>= max_size
)
1865 if (trg_size
< src_size
/ 32)
1868 /* Load data if not already done */
1871 trg
->data
= read_sha1_file(trg_entry
->idx
.oid
.hash
, &type
,
1875 die("object %s cannot be read",
1876 oid_to_hex(&trg_entry
->idx
.oid
));
1878 die("object %s inconsistent object length (%lu vs %lu)",
1879 oid_to_hex(&trg_entry
->idx
.oid
), sz
,
1885 src
->data
= read_sha1_file(src_entry
->idx
.oid
.hash
, &type
,
1889 if (src_entry
->preferred_base
) {
1890 static int warned
= 0;
1892 warning("object %s cannot be read",
1893 oid_to_hex(&src_entry
->idx
.oid
));
1895 * Those objects are not included in the
1896 * resulting pack. Be resilient and ignore
1897 * them if they can't be read, in case the
1898 * pack could be created nevertheless.
1902 die("object %s cannot be read",
1903 oid_to_hex(&src_entry
->idx
.oid
));
1906 die("object %s inconsistent object length (%lu vs %lu)",
1907 oid_to_hex(&src_entry
->idx
.oid
), sz
,
1912 src
->index
= create_delta_index(src
->data
, src_size
);
1914 static int warned
= 0;
1916 warning("suboptimal pack - out of memory");
1919 *mem_usage
+= sizeof_delta_index(src
->index
);
1922 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
1926 if (trg_entry
->delta
) {
1927 /* Prefer only shallower same-sized deltas. */
1928 if (delta_size
== trg_entry
->delta_size
&&
1929 src
->depth
+ 1 >= trg
->depth
) {
1936 * Handle memory allocation outside of the cache
1937 * accounting lock. Compiler will optimize the strangeness
1938 * away when NO_PTHREADS is defined.
1940 free(trg_entry
->delta_data
);
1942 if (trg_entry
->delta_data
) {
1943 delta_cache_size
-= trg_entry
->delta_size
;
1944 trg_entry
->delta_data
= NULL
;
1946 if (delta_cacheable(src_size
, trg_size
, delta_size
)) {
1947 delta_cache_size
+= delta_size
;
1949 trg_entry
->delta_data
= xrealloc(delta_buf
, delta_size
);
1955 trg_entry
->delta
= src_entry
;
1956 trg_entry
->delta_size
= delta_size
;
1957 trg
->depth
= src
->depth
+ 1;
1962 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
1964 struct object_entry
*child
= me
->delta_child
;
1967 unsigned int c
= check_delta_limit(child
, n
+ 1);
1970 child
= child
->delta_sibling
;
1975 static unsigned long free_unpacked(struct unpacked
*n
)
1977 unsigned long freed_mem
= sizeof_delta_index(n
->index
);
1978 free_delta_index(n
->index
);
1981 freed_mem
+= n
->entry
->size
;
1982 FREE_AND_NULL(n
->data
);
1989 static void find_deltas(struct object_entry
**list
, unsigned *list_size
,
1990 int window
, int depth
, unsigned *processed
)
1992 uint32_t i
, idx
= 0, count
= 0;
1993 struct unpacked
*array
;
1994 unsigned long mem_usage
= 0;
1996 array
= xcalloc(window
, sizeof(struct unpacked
));
1999 struct object_entry
*entry
;
2000 struct unpacked
*n
= array
+ idx
;
2001 int j
, max_depth
, best_base
= -1;
2010 if (!entry
->preferred_base
) {
2012 display_progress(progress_state
, *processed
);
2016 mem_usage
-= free_unpacked(n
);
2019 while (window_memory_limit
&&
2020 mem_usage
> window_memory_limit
&&
2022 uint32_t tail
= (idx
+ window
- count
) % window
;
2023 mem_usage
-= free_unpacked(array
+ tail
);
2027 /* We do not compute delta to *create* objects we are not
2030 if (entry
->preferred_base
)
2034 * If the current object is at pack edge, take the depth the
2035 * objects that depend on the current object into account
2036 * otherwise they would become too deep.
2039 if (entry
->delta_child
) {
2040 max_depth
-= check_delta_limit(entry
, 0);
2048 uint32_t other_idx
= idx
+ j
;
2050 if (other_idx
>= window
)
2051 other_idx
-= window
;
2052 m
= array
+ other_idx
;
2055 ret
= try_delta(n
, m
, max_depth
, &mem_usage
);
2059 best_base
= other_idx
;
2063 * If we decided to cache the delta data, then it is best
2064 * to compress it right away. First because we have to do
2065 * it anyway, and doing it here while we're threaded will
2066 * save a lot of time in the non threaded write phase,
2067 * as well as allow for caching more deltas within
2068 * the same cache size limit.
2070 * But only if not writing to stdout, since in that case
2071 * the network is most likely throttling writes anyway,
2072 * and therefore it is best to go to the write phase ASAP
2073 * instead, as we can afford spending more time compressing
2074 * between writes at that moment.
2076 if (entry
->delta_data
&& !pack_to_stdout
) {
2077 entry
->z_delta_size
= do_compress(&entry
->delta_data
,
2080 delta_cache_size
-= entry
->delta_size
;
2081 delta_cache_size
+= entry
->z_delta_size
;
2085 /* if we made n a delta, and if n is already at max
2086 * depth, leaving it in the window is pointless. we
2087 * should evict it first.
2089 if (entry
->delta
&& max_depth
<= n
->depth
)
2093 * Move the best delta base up in the window, after the
2094 * currently deltified object, to keep it longer. It will
2095 * be the first base object to be attempted next.
2098 struct unpacked swap
= array
[best_base
];
2099 int dist
= (window
+ idx
- best_base
) % window
;
2100 int dst
= best_base
;
2102 int src
= (dst
+ 1) % window
;
2103 array
[dst
] = array
[src
];
2111 if (count
+ 1 < window
)
2117 for (i
= 0; i
< window
; ++i
) {
2118 free_delta_index(array
[i
].index
);
2119 free(array
[i
].data
);
2126 static void try_to_free_from_threads(size_t size
)
2129 release_pack_memory(size
);
2133 static try_to_free_t old_try_to_free_routine
;
2136 * The main thread waits on the condition that (at least) one of the workers
2137 * has stopped working (which is indicated in the .working member of
2138 * struct thread_params).
2139 * When a work thread has completed its work, it sets .working to 0 and
2140 * signals the main thread and waits on the condition that .data_ready
2144 struct thread_params
{
2146 struct object_entry
**list
;
2153 pthread_mutex_t mutex
;
2154 pthread_cond_t cond
;
2155 unsigned *processed
;
2158 static pthread_cond_t progress_cond
;
2161 * Mutex and conditional variable can't be statically-initialized on Windows.
2163 static void init_threaded_search(void)
2165 init_recursive_mutex(&read_mutex
);
2166 pthread_mutex_init(&cache_mutex
, NULL
);
2167 pthread_mutex_init(&progress_mutex
, NULL
);
2168 pthread_cond_init(&progress_cond
, NULL
);
2169 old_try_to_free_routine
= set_try_to_free_routine(try_to_free_from_threads
);
2172 static void cleanup_threaded_search(void)
2174 set_try_to_free_routine(old_try_to_free_routine
);
2175 pthread_cond_destroy(&progress_cond
);
2176 pthread_mutex_destroy(&read_mutex
);
2177 pthread_mutex_destroy(&cache_mutex
);
2178 pthread_mutex_destroy(&progress_mutex
);
2181 static void *threaded_find_deltas(void *arg
)
2183 struct thread_params
*me
= arg
;
2186 while (me
->remaining
) {
2189 find_deltas(me
->list
, &me
->remaining
,
2190 me
->window
, me
->depth
, me
->processed
);
2194 pthread_cond_signal(&progress_cond
);
2198 * We must not set ->data_ready before we wait on the
2199 * condition because the main thread may have set it to 1
2200 * before we get here. In order to be sure that new
2201 * work is available if we see 1 in ->data_ready, it
2202 * was initialized to 0 before this thread was spawned
2203 * and we reset it to 0 right away.
2205 pthread_mutex_lock(&me
->mutex
);
2206 while (!me
->data_ready
)
2207 pthread_cond_wait(&me
->cond
, &me
->mutex
);
2209 pthread_mutex_unlock(&me
->mutex
);
2214 /* leave ->working 1 so that this doesn't get more work assigned */
2218 static void ll_find_deltas(struct object_entry
**list
, unsigned list_size
,
2219 int window
, int depth
, unsigned *processed
)
2221 struct thread_params
*p
;
2222 int i
, ret
, active_threads
= 0;
2224 init_threaded_search();
2226 if (delta_search_threads
<= 1) {
2227 find_deltas(list
, &list_size
, window
, depth
, processed
);
2228 cleanup_threaded_search();
2231 if (progress
> pack_to_stdout
)
2232 fprintf(stderr
, "Delta compression using up to %d threads.\n",
2233 delta_search_threads
);
2234 p
= xcalloc(delta_search_threads
, sizeof(*p
));
2236 /* Partition the work amongst work threads. */
2237 for (i
= 0; i
< delta_search_threads
; i
++) {
2238 unsigned sub_size
= list_size
/ (delta_search_threads
- i
);
2240 /* don't use too small segments or no deltas will be found */
2241 if (sub_size
< 2*window
&& i
+1 < delta_search_threads
)
2244 p
[i
].window
= window
;
2246 p
[i
].processed
= processed
;
2248 p
[i
].data_ready
= 0;
2250 /* try to split chunks on "path" boundaries */
2251 while (sub_size
&& sub_size
< list_size
&&
2252 list
[sub_size
]->hash
&&
2253 list
[sub_size
]->hash
== list
[sub_size
-1]->hash
)
2257 p
[i
].list_size
= sub_size
;
2258 p
[i
].remaining
= sub_size
;
2261 list_size
-= sub_size
;
2264 /* Start work threads. */
2265 for (i
= 0; i
< delta_search_threads
; i
++) {
2266 if (!p
[i
].list_size
)
2268 pthread_mutex_init(&p
[i
].mutex
, NULL
);
2269 pthread_cond_init(&p
[i
].cond
, NULL
);
2270 ret
= pthread_create(&p
[i
].thread
, NULL
,
2271 threaded_find_deltas
, &p
[i
]);
2273 die("unable to create thread: %s", strerror(ret
));
2278 * Now let's wait for work completion. Each time a thread is done
2279 * with its work, we steal half of the remaining work from the
2280 * thread with the largest number of unprocessed objects and give
2281 * it to that newly idle thread. This ensure good load balancing
2282 * until the remaining object list segments are simply too short
2283 * to be worth splitting anymore.
2285 while (active_threads
) {
2286 struct thread_params
*target
= NULL
;
2287 struct thread_params
*victim
= NULL
;
2288 unsigned sub_size
= 0;
2292 for (i
= 0; !target
&& i
< delta_search_threads
; i
++)
2297 pthread_cond_wait(&progress_cond
, &progress_mutex
);
2300 for (i
= 0; i
< delta_search_threads
; i
++)
2301 if (p
[i
].remaining
> 2*window
&&
2302 (!victim
|| victim
->remaining
< p
[i
].remaining
))
2305 sub_size
= victim
->remaining
/ 2;
2306 list
= victim
->list
+ victim
->list_size
- sub_size
;
2307 while (sub_size
&& list
[0]->hash
&&
2308 list
[0]->hash
== list
[-1]->hash
) {
2314 * It is possible for some "paths" to have
2315 * so many objects that no hash boundary
2316 * might be found. Let's just steal the
2317 * exact half in that case.
2319 sub_size
= victim
->remaining
/ 2;
2322 target
->list
= list
;
2323 victim
->list_size
-= sub_size
;
2324 victim
->remaining
-= sub_size
;
2326 target
->list_size
= sub_size
;
2327 target
->remaining
= sub_size
;
2328 target
->working
= 1;
2331 pthread_mutex_lock(&target
->mutex
);
2332 target
->data_ready
= 1;
2333 pthread_cond_signal(&target
->cond
);
2334 pthread_mutex_unlock(&target
->mutex
);
2337 pthread_join(target
->thread
, NULL
);
2338 pthread_cond_destroy(&target
->cond
);
2339 pthread_mutex_destroy(&target
->mutex
);
2343 cleanup_threaded_search();
2348 #define ll_find_deltas(l, s, w, d, p) find_deltas(l, &s, w, d, p)
2351 static void add_tag_chain(const struct object_id
*oid
)
2356 * We catch duplicates already in add_object_entry(), but we'd
2357 * prefer to do this extra check to avoid having to parse the
2358 * tag at all if we already know that it's being packed (e.g., if
2359 * it was included via bitmaps, we would not have parsed it
2362 if (packlist_find(&to_pack
, oid
->hash
, NULL
))
2365 tag
= lookup_tag(oid
);
2367 if (!tag
|| parse_tag(tag
) || !tag
->tagged
)
2368 die("unable to pack objects reachable from tag %s",
2371 add_object_entry(&tag
->object
.oid
, OBJ_TAG
, NULL
, 0);
2373 if (tag
->tagged
->type
!= OBJ_TAG
)
2376 tag
= (struct tag
*)tag
->tagged
;
2380 static int add_ref_tag(const char *path
, const struct object_id
*oid
, int flag
, void *cb_data
)
2382 struct object_id peeled
;
2384 if (starts_with(path
, "refs/tags/") && /* is a tag? */
2385 !peel_ref(path
, &peeled
) && /* peelable? */
2386 packlist_find(&to_pack
, peeled
.hash
, NULL
)) /* object packed? */
2391 static void prepare_pack(int window
, int depth
)
2393 struct object_entry
**delta_list
;
2394 uint32_t i
, nr_deltas
;
2397 get_object_details();
2400 * If we're locally repacking then we need to be doubly careful
2401 * from now on in order to make sure no stealth corruption gets
2402 * propagated to the new pack. Clients receiving streamed packs
2403 * should validate everything they get anyway so no need to incur
2404 * the additional cost here in that case.
2406 if (!pack_to_stdout
)
2407 do_check_packed_object_crc
= 1;
2409 if (!to_pack
.nr_objects
|| !window
|| !depth
)
2412 ALLOC_ARRAY(delta_list
, to_pack
.nr_objects
);
2415 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
2416 struct object_entry
*entry
= to_pack
.objects
+ i
;
2419 /* This happens if we decided to reuse existing
2420 * delta from a pack. "reuse_delta &&" is implied.
2424 if (entry
->size
< 50)
2427 if (entry
->no_try_delta
)
2430 if (!entry
->preferred_base
) {
2432 if (entry
->type
< 0)
2433 die("unable to get type of object %s",
2434 oid_to_hex(&entry
->idx
.oid
));
2436 if (entry
->type
< 0) {
2438 * This object is not found, but we
2439 * don't have to include it anyway.
2445 delta_list
[n
++] = entry
;
2448 if (nr_deltas
&& n
> 1) {
2449 unsigned nr_done
= 0;
2451 progress_state
= start_progress(_("Compressing objects"),
2453 QSORT(delta_list
, n
, type_size_sort
);
2454 ll_find_deltas(delta_list
, n
, window
+1, depth
, &nr_done
);
2455 stop_progress(&progress_state
);
2456 if (nr_done
!= nr_deltas
)
2457 die("inconsistency with delta count");
2462 static int git_pack_config(const char *k
, const char *v
, void *cb
)
2464 if (!strcmp(k
, "pack.window")) {
2465 window
= git_config_int(k
, v
);
2468 if (!strcmp(k
, "pack.windowmemory")) {
2469 window_memory_limit
= git_config_ulong(k
, v
);
2472 if (!strcmp(k
, "pack.depth")) {
2473 depth
= git_config_int(k
, v
);
2476 if (!strcmp(k
, "pack.deltacachesize")) {
2477 max_delta_cache_size
= git_config_int(k
, v
);
2480 if (!strcmp(k
, "pack.deltacachelimit")) {
2481 cache_max_small_delta_size
= git_config_int(k
, v
);
2484 if (!strcmp(k
, "pack.writebitmaphashcache")) {
2485 if (git_config_bool(k
, v
))
2486 write_bitmap_options
|= BITMAP_OPT_HASH_CACHE
;
2488 write_bitmap_options
&= ~BITMAP_OPT_HASH_CACHE
;
2490 if (!strcmp(k
, "pack.usebitmaps")) {
2491 use_bitmap_index_default
= git_config_bool(k
, v
);
2494 if (!strcmp(k
, "pack.threads")) {
2495 delta_search_threads
= git_config_int(k
, v
);
2496 if (delta_search_threads
< 0)
2497 die("invalid number of threads specified (%d)",
2498 delta_search_threads
);
2500 if (delta_search_threads
!= 1) {
2501 warning("no threads support, ignoring %s", k
);
2502 delta_search_threads
= 0;
2507 if (!strcmp(k
, "pack.indexversion")) {
2508 pack_idx_opts
.version
= git_config_int(k
, v
);
2509 if (pack_idx_opts
.version
> 2)
2510 die("bad pack.indexversion=%"PRIu32
,
2511 pack_idx_opts
.version
);
2514 return git_default_config(k
, v
, cb
);
2517 static void read_object_list_from_stdin(void)
2519 char line
[GIT_MAX_HEXSZ
+ 1 + PATH_MAX
+ 2];
2520 struct object_id oid
;
2524 if (!fgets(line
, sizeof(line
), stdin
)) {
2528 die("fgets returned NULL, not EOF, not error!");
2534 if (line
[0] == '-') {
2535 if (get_oid_hex(line
+1, &oid
))
2536 die("expected edge object ID, got garbage:\n %s",
2538 add_preferred_base(&oid
);
2541 if (parse_oid_hex(line
, &oid
, &p
))
2542 die("expected object ID, got garbage:\n %s", line
);
2544 add_preferred_base_object(p
+ 1);
2545 add_object_entry(&oid
, 0, p
+ 1, 0);
2549 #define OBJECT_ADDED (1u<<20)
2551 static void show_commit(struct commit
*commit
, void *data
)
2553 add_object_entry(&commit
->object
.oid
, OBJ_COMMIT
, NULL
, 0);
2554 commit
->object
.flags
|= OBJECT_ADDED
;
2556 if (write_bitmap_index
)
2557 index_commit_for_bitmap(commit
);
2560 static void show_object(struct object
*obj
, const char *name
, void *data
)
2562 add_preferred_base_object(name
);
2563 add_object_entry(&obj
->oid
, obj
->type
, name
, 0);
2564 obj
->flags
|= OBJECT_ADDED
;
2567 static void show_object__ma_allow_any(struct object
*obj
, const char *name
, void *data
)
2569 assert(arg_missing_action
== MA_ALLOW_ANY
);
2572 * Quietly ignore ALL missing objects. This avoids problems with
2573 * staging them now and getting an odd error later.
2575 if (!has_object_file(&obj
->oid
))
2578 show_object(obj
, name
, data
);
2581 static int option_parse_missing_action(const struct option
*opt
,
2582 const char *arg
, int unset
)
2587 if (!strcmp(arg
, "error")) {
2588 arg_missing_action
= MA_ERROR
;
2589 fn_show_object
= show_object
;
2593 if (!strcmp(arg
, "allow-any")) {
2594 arg_missing_action
= MA_ALLOW_ANY
;
2595 fn_show_object
= show_object__ma_allow_any
;
2599 die(_("invalid value for --missing"));
2603 static void show_edge(struct commit
*commit
)
2605 add_preferred_base(&commit
->object
.oid
);
2608 struct in_pack_object
{
2610 struct object
*object
;
2616 struct in_pack_object
*array
;
2619 static void mark_in_pack_object(struct object
*object
, struct packed_git
*p
, struct in_pack
*in_pack
)
2621 in_pack
->array
[in_pack
->nr
].offset
= find_pack_entry_one(object
->oid
.hash
, p
);
2622 in_pack
->array
[in_pack
->nr
].object
= object
;
2627 * Compare the objects in the offset order, in order to emulate the
2628 * "git rev-list --objects" output that produced the pack originally.
2630 static int ofscmp(const void *a_
, const void *b_
)
2632 struct in_pack_object
*a
= (struct in_pack_object
*)a_
;
2633 struct in_pack_object
*b
= (struct in_pack_object
*)b_
;
2635 if (a
->offset
< b
->offset
)
2637 else if (a
->offset
> b
->offset
)
2640 return oidcmp(&a
->object
->oid
, &b
->object
->oid
);
2643 static void add_objects_in_unpacked_packs(struct rev_info
*revs
)
2645 struct packed_git
*p
;
2646 struct in_pack in_pack
;
2649 memset(&in_pack
, 0, sizeof(in_pack
));
2651 for (p
= packed_git
; p
; p
= p
->next
) {
2652 struct object_id oid
;
2655 if (!p
->pack_local
|| p
->pack_keep
)
2657 if (open_pack_index(p
))
2658 die("cannot open pack index");
2660 ALLOC_GROW(in_pack
.array
,
2661 in_pack
.nr
+ p
->num_objects
,
2664 for (i
= 0; i
< p
->num_objects
; i
++) {
2665 nth_packed_object_oid(&oid
, p
, i
);
2666 o
= lookup_unknown_object(oid
.hash
);
2667 if (!(o
->flags
& OBJECT_ADDED
))
2668 mark_in_pack_object(o
, p
, &in_pack
);
2669 o
->flags
|= OBJECT_ADDED
;
2674 QSORT(in_pack
.array
, in_pack
.nr
, ofscmp
);
2675 for (i
= 0; i
< in_pack
.nr
; i
++) {
2676 struct object
*o
= in_pack
.array
[i
].object
;
2677 add_object_entry(&o
->oid
, o
->type
, "", 0);
2680 free(in_pack
.array
);
2683 static int add_loose_object(const struct object_id
*oid
, const char *path
,
2686 enum object_type type
= sha1_object_info(oid
->hash
, NULL
);
2689 warning("loose object at %s could not be examined", path
);
2693 add_object_entry(oid
, type
, "", 0);
2698 * We actually don't even have to worry about reachability here.
2699 * add_object_entry will weed out duplicates, so we just add every
2700 * loose object we find.
2702 static void add_unreachable_loose_objects(void)
2704 for_each_loose_file_in_objdir(get_object_directory(),
2709 static int has_sha1_pack_kept_or_nonlocal(const struct object_id
*oid
)
2711 static struct packed_git
*last_found
= (void *)1;
2712 struct packed_git
*p
;
2714 p
= (last_found
!= (void *)1) ? last_found
: packed_git
;
2717 if ((!p
->pack_local
|| p
->pack_keep
) &&
2718 find_pack_entry_one(oid
->hash
, p
)) {
2722 if (p
== last_found
)
2726 if (p
== last_found
)
2733 * Store a list of sha1s that are should not be discarded
2734 * because they are either written too recently, or are
2735 * reachable from another object that was.
2737 * This is filled by get_object_list.
2739 static struct oid_array recent_objects
;
2741 static int loosened_object_can_be_discarded(const struct object_id
*oid
,
2744 if (!unpack_unreachable_expiration
)
2746 if (mtime
> unpack_unreachable_expiration
)
2748 if (oid_array_lookup(&recent_objects
, oid
) >= 0)
2753 static void loosen_unused_packed_objects(struct rev_info
*revs
)
2755 struct packed_git
*p
;
2757 struct object_id oid
;
2759 for (p
= packed_git
; p
; p
= p
->next
) {
2760 if (!p
->pack_local
|| p
->pack_keep
)
2763 if (open_pack_index(p
))
2764 die("cannot open pack index");
2766 for (i
= 0; i
< p
->num_objects
; i
++) {
2767 nth_packed_object_oid(&oid
, p
, i
);
2768 if (!packlist_find(&to_pack
, oid
.hash
, NULL
) &&
2769 !has_sha1_pack_kept_or_nonlocal(&oid
) &&
2770 !loosened_object_can_be_discarded(&oid
, p
->mtime
))
2771 if (force_object_loose(oid
.hash
, p
->mtime
))
2772 die("unable to force loose object");
2778 * This tracks any options which pack-reuse code expects to be on, or which a
2779 * reader of the pack might not understand, and which would therefore prevent
2780 * blind reuse of what we have on disk.
2782 static int pack_options_allow_reuse(void)
2784 return pack_to_stdout
&&
2786 !ignore_packed_keep
&&
2787 (!local
|| !have_non_local_packs
) &&
2791 static int get_object_list_from_bitmap(struct rev_info
*revs
)
2793 if (prepare_bitmap_walk(revs
) < 0)
2796 if (pack_options_allow_reuse() &&
2797 !reuse_partial_packfile_from_bitmap(
2799 &reuse_packfile_objects
,
2800 &reuse_packfile_offset
)) {
2801 assert(reuse_packfile_objects
);
2802 nr_result
+= reuse_packfile_objects
;
2803 display_progress(progress_state
, nr_result
);
2806 traverse_bitmap_commit_list(&add_object_entry_from_bitmap
);
2810 static void record_recent_object(struct object
*obj
,
2814 oid_array_append(&recent_objects
, &obj
->oid
);
2817 static void record_recent_commit(struct commit
*commit
, void *data
)
2819 oid_array_append(&recent_objects
, &commit
->object
.oid
);
2822 static void get_object_list(int ac
, const char **av
)
2824 struct rev_info revs
;
2828 init_revisions(&revs
, NULL
);
2829 save_commit_buffer
= 0;
2830 setup_revisions(ac
, av
, &revs
, NULL
);
2832 /* make sure shallows are read */
2833 is_repository_shallow();
2835 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
2836 int len
= strlen(line
);
2837 if (len
&& line
[len
- 1] == '\n')
2842 if (!strcmp(line
, "--not")) {
2843 flags
^= UNINTERESTING
;
2844 write_bitmap_index
= 0;
2847 if (starts_with(line
, "--shallow ")) {
2848 struct object_id oid
;
2849 if (get_oid_hex(line
+ 10, &oid
))
2850 die("not an SHA-1 '%s'", line
+ 10);
2851 register_shallow(&oid
);
2852 use_bitmap_index
= 0;
2855 die("not a rev '%s'", line
);
2857 if (handle_revision_arg(line
, &revs
, flags
, REVARG_CANNOT_BE_FILENAME
))
2858 die("bad revision '%s'", line
);
2861 if (use_bitmap_index
&& !get_object_list_from_bitmap(&revs
))
2864 if (prepare_revision_walk(&revs
))
2865 die("revision walk setup failed");
2866 mark_edges_uninteresting(&revs
, show_edge
);
2868 if (!fn_show_object
)
2869 fn_show_object
= show_object
;
2870 traverse_commit_list_filtered(&filter_options
, &revs
,
2871 show_commit
, fn_show_object
, NULL
,
2874 if (unpack_unreachable_expiration
) {
2875 revs
.ignore_missing_links
= 1;
2876 if (add_unseen_recent_objects_to_traversal(&revs
,
2877 unpack_unreachable_expiration
))
2878 die("unable to add recent objects");
2879 if (prepare_revision_walk(&revs
))
2880 die("revision walk setup failed");
2881 traverse_commit_list(&revs
, record_recent_commit
,
2882 record_recent_object
, NULL
);
2885 if (keep_unreachable
)
2886 add_objects_in_unpacked_packs(&revs
);
2887 if (pack_loose_unreachable
)
2888 add_unreachable_loose_objects();
2889 if (unpack_unreachable
)
2890 loosen_unused_packed_objects(&revs
);
2892 oid_array_clear(&recent_objects
);
2895 static int option_parse_index_version(const struct option
*opt
,
2896 const char *arg
, int unset
)
2899 const char *val
= arg
;
2900 pack_idx_opts
.version
= strtoul(val
, &c
, 10);
2901 if (pack_idx_opts
.version
> 2)
2902 die(_("unsupported index version %s"), val
);
2903 if (*c
== ',' && c
[1])
2904 pack_idx_opts
.off32_limit
= strtoul(c
+1, &c
, 0);
2905 if (*c
|| pack_idx_opts
.off32_limit
& 0x80000000)
2906 die(_("bad index version '%s'"), val
);
2910 static int option_parse_unpack_unreachable(const struct option
*opt
,
2911 const char *arg
, int unset
)
2914 unpack_unreachable
= 0;
2915 unpack_unreachable_expiration
= 0;
2918 unpack_unreachable
= 1;
2920 unpack_unreachable_expiration
= approxidate(arg
);
2925 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
2927 int use_internal_rev_list
= 0;
2930 int all_progress_implied
= 0;
2931 struct argv_array rp
= ARGV_ARRAY_INIT
;
2932 int rev_list_unpacked
= 0, rev_list_all
= 0, rev_list_reflog
= 0;
2933 int rev_list_index
= 0;
2934 struct option pack_objects_options
[] = {
2935 OPT_SET_INT('q', "quiet", &progress
,
2936 N_("do not show progress meter"), 0),
2937 OPT_SET_INT(0, "progress", &progress
,
2938 N_("show progress meter"), 1),
2939 OPT_SET_INT(0, "all-progress", &progress
,
2940 N_("show progress meter during object writing phase"), 2),
2941 OPT_BOOL(0, "all-progress-implied",
2942 &all_progress_implied
,
2943 N_("similar to --all-progress when progress meter is shown")),
2944 { OPTION_CALLBACK
, 0, "index-version", NULL
, N_("version[,offset]"),
2945 N_("write the pack index file in the specified idx format version"),
2946 0, option_parse_index_version
},
2947 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit
,
2948 N_("maximum size of each output pack file")),
2949 OPT_BOOL(0, "local", &local
,
2950 N_("ignore borrowed objects from alternate object store")),
2951 OPT_BOOL(0, "incremental", &incremental
,
2952 N_("ignore packed objects")),
2953 OPT_INTEGER(0, "window", &window
,
2954 N_("limit pack window by objects")),
2955 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit
,
2956 N_("limit pack window by memory in addition to object limit")),
2957 OPT_INTEGER(0, "depth", &depth
,
2958 N_("maximum length of delta chain allowed in the resulting pack")),
2959 OPT_BOOL(0, "reuse-delta", &reuse_delta
,
2960 N_("reuse existing deltas")),
2961 OPT_BOOL(0, "reuse-object", &reuse_object
,
2962 N_("reuse existing objects")),
2963 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta
,
2964 N_("use OFS_DELTA objects")),
2965 OPT_INTEGER(0, "threads", &delta_search_threads
,
2966 N_("use threads when searching for best delta matches")),
2967 OPT_BOOL(0, "non-empty", &non_empty
,
2968 N_("do not create an empty pack output")),
2969 OPT_BOOL(0, "revs", &use_internal_rev_list
,
2970 N_("read revision arguments from standard input")),
2971 { OPTION_SET_INT
, 0, "unpacked", &rev_list_unpacked
, NULL
,
2972 N_("limit the objects to those that are not yet packed"),
2973 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2974 { OPTION_SET_INT
, 0, "all", &rev_list_all
, NULL
,
2975 N_("include objects reachable from any reference"),
2976 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2977 { OPTION_SET_INT
, 0, "reflog", &rev_list_reflog
, NULL
,
2978 N_("include objects referred by reflog entries"),
2979 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2980 { OPTION_SET_INT
, 0, "indexed-objects", &rev_list_index
, NULL
,
2981 N_("include objects referred to by the index"),
2982 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2983 OPT_BOOL(0, "stdout", &pack_to_stdout
,
2984 N_("output pack to stdout")),
2985 OPT_BOOL(0, "include-tag", &include_tag
,
2986 N_("include tag objects that refer to objects to be packed")),
2987 OPT_BOOL(0, "keep-unreachable", &keep_unreachable
,
2988 N_("keep unreachable objects")),
2989 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable
,
2990 N_("pack loose unreachable objects")),
2991 { OPTION_CALLBACK
, 0, "unpack-unreachable", NULL
, N_("time"),
2992 N_("unpack unreachable objects newer than <time>"),
2993 PARSE_OPT_OPTARG
, option_parse_unpack_unreachable
},
2994 OPT_BOOL(0, "thin", &thin
,
2995 N_("create thin packs")),
2996 OPT_BOOL(0, "shallow", &shallow
,
2997 N_("create packs suitable for shallow fetches")),
2998 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep
,
2999 N_("ignore packs that have companion .keep file")),
3000 OPT_INTEGER(0, "compression", &pack_compression_level
,
3001 N_("pack compression level")),
3002 OPT_SET_INT(0, "keep-true-parents", &grafts_replace_parents
,
3003 N_("do not hide commits by grafts"), 0),
3004 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index
,
3005 N_("use a bitmap index if available to speed up counting objects")),
3006 OPT_BOOL(0, "write-bitmap-index", &write_bitmap_index
,
3007 N_("write a bitmap index together with the pack index")),
3008 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
3009 { OPTION_CALLBACK
, 0, "missing", NULL
, N_("action"),
3010 N_("handling for missing objects"), PARSE_OPT_NONEG
,
3011 option_parse_missing_action
},
3015 check_replace_refs
= 0;
3017 reset_pack_idx_option(&pack_idx_opts
);
3018 git_config(git_pack_config
, NULL
);
3020 progress
= isatty(2);
3021 argc
= parse_options(argc
, argv
, prefix
, pack_objects_options
,
3025 base_name
= argv
[0];
3028 if (pack_to_stdout
!= !base_name
|| argc
)
3029 usage_with_options(pack_usage
, pack_objects_options
);
3031 argv_array_push(&rp
, "pack-objects");
3033 use_internal_rev_list
= 1;
3034 argv_array_push(&rp
, shallow
3035 ? "--objects-edge-aggressive"
3036 : "--objects-edge");
3038 argv_array_push(&rp
, "--objects");
3041 use_internal_rev_list
= 1;
3042 argv_array_push(&rp
, "--all");
3044 if (rev_list_reflog
) {
3045 use_internal_rev_list
= 1;
3046 argv_array_push(&rp
, "--reflog");
3048 if (rev_list_index
) {
3049 use_internal_rev_list
= 1;
3050 argv_array_push(&rp
, "--indexed-objects");
3052 if (rev_list_unpacked
) {
3053 use_internal_rev_list
= 1;
3054 argv_array_push(&rp
, "--unpacked");
3059 if (pack_compression_level
== -1)
3060 pack_compression_level
= Z_DEFAULT_COMPRESSION
;
3061 else if (pack_compression_level
< 0 || pack_compression_level
> Z_BEST_COMPRESSION
)
3062 die("bad pack compression level %d", pack_compression_level
);
3064 if (!delta_search_threads
) /* --threads=0 means autodetect */
3065 delta_search_threads
= online_cpus();
3068 if (delta_search_threads
!= 1)
3069 warning("no threads support, ignoring --threads");
3071 if (!pack_to_stdout
&& !pack_size_limit
)
3072 pack_size_limit
= pack_size_limit_cfg
;
3073 if (pack_to_stdout
&& pack_size_limit
)
3074 die("--max-pack-size cannot be used to build a pack for transfer.");
3075 if (pack_size_limit
&& pack_size_limit
< 1024*1024) {
3076 warning("minimum pack size limit is 1 MiB");
3077 pack_size_limit
= 1024*1024;
3080 if (!pack_to_stdout
&& thin
)
3081 die("--thin cannot be used to build an indexable pack.");
3083 if (keep_unreachable
&& unpack_unreachable
)
3084 die("--keep-unreachable and --unpack-unreachable are incompatible.");
3085 if (!rev_list_all
|| !rev_list_reflog
|| !rev_list_index
)
3086 unpack_unreachable_expiration
= 0;
3088 if (filter_options
.choice
) {
3089 if (!pack_to_stdout
)
3090 die("cannot use --filter without --stdout.");
3091 use_bitmap_index
= 0;
3095 * "soft" reasons not to use bitmaps - for on-disk repack by default we want
3097 * - to produce good pack (with bitmap index not-yet-packed objects are
3098 * packed in suboptimal order).
3100 * - to use more robust pack-generation codepath (avoiding possible
3101 * bugs in bitmap code and possible bitmap index corruption).
3103 if (!pack_to_stdout
)
3104 use_bitmap_index_default
= 0;
3106 if (use_bitmap_index
< 0)
3107 use_bitmap_index
= use_bitmap_index_default
;
3109 /* "hard" reasons not to use bitmaps; these just won't work at all */
3110 if (!use_internal_rev_list
|| (!pack_to_stdout
&& write_bitmap_index
) || is_repository_shallow())
3111 use_bitmap_index
= 0;
3113 if (pack_to_stdout
|| !rev_list_all
)
3114 write_bitmap_index
= 0;
3116 if (progress
&& all_progress_implied
)
3119 prepare_packed_git();
3120 if (ignore_packed_keep
) {
3121 struct packed_git
*p
;
3122 for (p
= packed_git
; p
; p
= p
->next
)
3123 if (p
->pack_local
&& p
->pack_keep
)
3125 if (!p
) /* no keep-able packs found */
3126 ignore_packed_keep
= 0;
3130 * unlike ignore_packed_keep above, we do not want to
3131 * unset "local" based on looking at packs, as it
3132 * also covers non-local objects
3134 struct packed_git
*p
;
3135 for (p
= packed_git
; p
; p
= p
->next
) {
3136 if (!p
->pack_local
) {
3137 have_non_local_packs
= 1;
3144 progress_state
= start_progress(_("Counting objects"), 0);
3145 if (!use_internal_rev_list
)
3146 read_object_list_from_stdin();
3148 get_object_list(rp
.argc
, rp
.argv
);
3149 argv_array_clear(&rp
);
3151 cleanup_preferred_base();
3152 if (include_tag
&& nr_result
)
3153 for_each_ref(add_ref_tag
, NULL
);
3154 stop_progress(&progress_state
);
3156 if (non_empty
&& !nr_result
)
3159 prepare_pack(window
, depth
);
3162 fprintf(stderr
, "Total %"PRIu32
" (delta %"PRIu32
"),"
3163 " reused %"PRIu32
" (delta %"PRIu32
")\n",
3164 written
, written_delta
, reused
, reused_delta
);