11 #include "pack-revindex.h"
12 #include "csum-file.h"
13 #include "tree-walk.h"
16 #include "list-objects.h"
17 #include "pack-objects.h"
20 #include "streaming.h"
21 #include "thread-utils.h"
22 #include "pack-bitmap.h"
23 #include "reachable.h"
24 #include "sha1-array.h"
25 #include "argv-array.h"
27 static const char *pack_usage
[] = {
28 N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
29 N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
34 * Objects we are going to pack are collected in the `to_pack` structure.
35 * It contains an array (dynamically expanded) of the object data, and a map
36 * that can resolve SHA1s to their position in the array.
38 static struct packing_data to_pack
;
40 static struct pack_idx_entry
**written_list
;
41 static uint32_t nr_result
, nr_written
;
44 static int reuse_delta
= 1, reuse_object
= 1;
45 static int keep_unreachable
, unpack_unreachable
, include_tag
;
46 static unsigned long unpack_unreachable_expiration
;
47 static int pack_loose_unreachable
;
49 static int incremental
;
50 static int ignore_packed_keep
;
51 static int allow_ofs_delta
;
52 static struct pack_idx_option pack_idx_opts
;
53 static const char *base_name
;
54 static int progress
= 1;
55 static int window
= 10;
56 static unsigned long pack_size_limit
;
57 static int depth
= 50;
58 static int delta_search_threads
;
59 static int pack_to_stdout
;
60 static int num_preferred_base
;
61 static struct progress
*progress_state
;
62 static int pack_compression_level
= Z_DEFAULT_COMPRESSION
;
63 static int pack_compression_seen
;
65 static struct packed_git
*reuse_packfile
;
66 static uint32_t reuse_packfile_objects
;
67 static off_t reuse_packfile_offset
;
69 static int use_bitmap_index
= 1;
70 static int write_bitmap_index
;
71 static uint16_t write_bitmap_options
;
73 static unsigned long delta_cache_size
= 0;
74 static unsigned long max_delta_cache_size
= 256 * 1024 * 1024;
75 static unsigned long cache_max_small_delta_size
= 1000;
77 static unsigned long window_memory_limit
= 0;
82 static uint32_t written
, written_delta
;
83 static uint32_t reused
, reused_delta
;
88 static struct commit
**indexed_commits
;
89 static unsigned int indexed_commits_nr
;
90 static unsigned int indexed_commits_alloc
;
92 static void index_commit_for_bitmap(struct commit
*commit
)
94 if (indexed_commits_nr
>= indexed_commits_alloc
) {
95 indexed_commits_alloc
= (indexed_commits_alloc
+ 32) * 2;
96 REALLOC_ARRAY(indexed_commits
, indexed_commits_alloc
);
99 indexed_commits
[indexed_commits_nr
++] = commit
;
102 static void *get_delta(struct object_entry
*entry
)
104 unsigned long size
, base_size
, delta_size
;
105 void *buf
, *base_buf
, *delta_buf
;
106 enum object_type type
;
108 buf
= read_sha1_file(entry
->idx
.sha1
, &type
, &size
);
110 die("unable to read %s", sha1_to_hex(entry
->idx
.sha1
));
111 base_buf
= read_sha1_file(entry
->delta
->idx
.sha1
, &type
, &base_size
);
113 die("unable to read %s", sha1_to_hex(entry
->delta
->idx
.sha1
));
114 delta_buf
= diff_delta(base_buf
, base_size
,
115 buf
, size
, &delta_size
, 0);
116 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
117 die("delta size changed");
123 static unsigned long do_compress(void **pptr
, unsigned long size
)
127 unsigned long maxsize
;
129 git_deflate_init(&stream
, pack_compression_level
);
130 maxsize
= git_deflate_bound(&stream
, size
);
133 out
= xmalloc(maxsize
);
137 stream
.avail_in
= size
;
138 stream
.next_out
= out
;
139 stream
.avail_out
= maxsize
;
140 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
142 git_deflate_end(&stream
);
145 return stream
.total_out
;
148 static unsigned long write_large_blob_data(struct git_istream
*st
, struct sha1file
*f
,
149 const unsigned char *sha1
)
152 unsigned char ibuf
[1024 * 16];
153 unsigned char obuf
[1024 * 16];
154 unsigned long olen
= 0;
156 git_deflate_init(&stream
, pack_compression_level
);
161 readlen
= read_istream(st
, ibuf
, sizeof(ibuf
));
163 die(_("unable to read %s"), sha1_to_hex(sha1
));
165 stream
.next_in
= ibuf
;
166 stream
.avail_in
= readlen
;
167 while ((stream
.avail_in
|| readlen
== 0) &&
168 (zret
== Z_OK
|| zret
== Z_BUF_ERROR
)) {
169 stream
.next_out
= obuf
;
170 stream
.avail_out
= sizeof(obuf
);
171 zret
= git_deflate(&stream
, readlen
? 0 : Z_FINISH
);
172 sha1write(f
, obuf
, stream
.next_out
- obuf
);
173 olen
+= stream
.next_out
- obuf
;
176 die(_("deflate error (%d)"), zret
);
178 if (zret
!= Z_STREAM_END
)
179 die(_("deflate error (%d)"), zret
);
183 git_deflate_end(&stream
);
188 * we are going to reuse the existing object data as is. make
189 * sure it is not corrupt.
191 static int check_pack_inflate(struct packed_git
*p
,
192 struct pack_window
**w_curs
,
195 unsigned long expect
)
198 unsigned char fakebuf
[4096], *in
;
201 memset(&stream
, 0, sizeof(stream
));
202 git_inflate_init(&stream
);
204 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_in
);
206 stream
.next_out
= fakebuf
;
207 stream
.avail_out
= sizeof(fakebuf
);
208 st
= git_inflate(&stream
, Z_FINISH
);
209 offset
+= stream
.next_in
- in
;
210 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
211 git_inflate_end(&stream
);
212 return (st
== Z_STREAM_END
&&
213 stream
.total_out
== expect
&&
214 stream
.total_in
== len
) ? 0 : -1;
217 static void copy_pack_data(struct sha1file
*f
,
218 struct packed_git
*p
,
219 struct pack_window
**w_curs
,
227 in
= use_pack(p
, w_curs
, offset
, &avail
);
229 avail
= (unsigned long)len
;
230 sha1write(f
, in
, avail
);
236 /* Return 0 if we will bust the pack-size limit */
237 static unsigned long write_no_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
238 unsigned long limit
, int usable_delta
)
240 unsigned long size
, datalen
;
241 unsigned char header
[10], dheader
[10];
243 enum object_type type
;
245 struct git_istream
*st
= NULL
;
248 if (entry
->type
== OBJ_BLOB
&&
249 entry
->size
> big_file_threshold
&&
250 (st
= open_istream(entry
->idx
.sha1
, &type
, &size
, NULL
)) != NULL
)
253 buf
= read_sha1_file(entry
->idx
.sha1
, &type
, &size
);
255 die(_("unable to read %s"), sha1_to_hex(entry
->idx
.sha1
));
258 * make sure no cached delta data remains from a
259 * previous attempt before a pack split occurred.
261 free(entry
->delta_data
);
262 entry
->delta_data
= NULL
;
263 entry
->z_delta_size
= 0;
264 } else if (entry
->delta_data
) {
265 size
= entry
->delta_size
;
266 buf
= entry
->delta_data
;
267 entry
->delta_data
= NULL
;
268 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
269 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
271 buf
= get_delta(entry
);
272 size
= entry
->delta_size
;
273 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
274 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
277 if (st
) /* large blob case, just assume we don't compress well */
279 else if (entry
->z_delta_size
)
280 datalen
= entry
->z_delta_size
;
282 datalen
= do_compress(&buf
, size
);
285 * The object header is a byte of 'type' followed by zero or
286 * more bytes of length.
288 hdrlen
= encode_in_pack_object_header(type
, size
, header
);
290 if (type
== OBJ_OFS_DELTA
) {
292 * Deltas with relative base contain an additional
293 * encoding of the relative offset for the delta
294 * base from this object's position in the pack.
296 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
297 unsigned pos
= sizeof(dheader
) - 1;
298 dheader
[pos
] = ofs
& 127;
300 dheader
[--pos
] = 128 | (--ofs
& 127);
301 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
307 sha1write(f
, header
, hdrlen
);
308 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
309 hdrlen
+= sizeof(dheader
) - pos
;
310 } else if (type
== OBJ_REF_DELTA
) {
312 * Deltas with a base reference contain
313 * an additional 20 bytes for the base sha1.
315 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
321 sha1write(f
, header
, hdrlen
);
322 sha1write(f
, entry
->delta
->idx
.sha1
, 20);
325 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
331 sha1write(f
, header
, hdrlen
);
334 datalen
= write_large_blob_data(st
, f
, entry
->idx
.sha1
);
337 sha1write(f
, buf
, datalen
);
341 return hdrlen
+ datalen
;
344 /* Return 0 if we will bust the pack-size limit */
345 static unsigned long write_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
346 unsigned long limit
, int usable_delta
)
348 struct packed_git
*p
= entry
->in_pack
;
349 struct pack_window
*w_curs
= NULL
;
350 struct revindex_entry
*revidx
;
352 enum object_type type
= entry
->type
;
353 unsigned long datalen
;
354 unsigned char header
[10], dheader
[10];
358 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
359 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
360 hdrlen
= encode_in_pack_object_header(type
, entry
->size
, header
);
362 offset
= entry
->in_pack_offset
;
363 revidx
= find_pack_revindex(p
, offset
);
364 datalen
= revidx
[1].offset
- offset
;
365 if (!pack_to_stdout
&& p
->index_version
> 1 &&
366 check_pack_crc(p
, &w_curs
, offset
, datalen
, revidx
->nr
)) {
367 error("bad packed object CRC for %s", sha1_to_hex(entry
->idx
.sha1
));
369 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
372 offset
+= entry
->in_pack_header_size
;
373 datalen
-= entry
->in_pack_header_size
;
375 if (!pack_to_stdout
&& p
->index_version
== 1 &&
376 check_pack_inflate(p
, &w_curs
, offset
, datalen
, entry
->size
)) {
377 error("corrupt packed object for %s", sha1_to_hex(entry
->idx
.sha1
));
379 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
382 if (type
== OBJ_OFS_DELTA
) {
383 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
384 unsigned pos
= sizeof(dheader
) - 1;
385 dheader
[pos
] = ofs
& 127;
387 dheader
[--pos
] = 128 | (--ofs
& 127);
388 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
392 sha1write(f
, header
, hdrlen
);
393 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
394 hdrlen
+= sizeof(dheader
) - pos
;
396 } else if (type
== OBJ_REF_DELTA
) {
397 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
401 sha1write(f
, header
, hdrlen
);
402 sha1write(f
, entry
->delta
->idx
.sha1
, 20);
406 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
410 sha1write(f
, header
, hdrlen
);
412 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
415 return hdrlen
+ datalen
;
418 /* Return 0 if we will bust the pack-size limit */
419 static unsigned long write_object(struct sha1file
*f
,
420 struct object_entry
*entry
,
423 unsigned long limit
, len
;
424 int usable_delta
, to_reuse
;
429 /* apply size limit if limited packsize and not first object */
430 if (!pack_size_limit
|| !nr_written
)
432 else if (pack_size_limit
<= write_offset
)
434 * the earlier object did not fit the limit; avoid
435 * mistaking this with unlimited (i.e. limit = 0).
439 limit
= pack_size_limit
- write_offset
;
442 usable_delta
= 0; /* no delta */
443 else if (!pack_size_limit
)
444 usable_delta
= 1; /* unlimited packfile */
445 else if (entry
->delta
->idx
.offset
== (off_t
)-1)
446 usable_delta
= 0; /* base was written to another pack */
447 else if (entry
->delta
->idx
.offset
)
448 usable_delta
= 1; /* base already exists in this pack */
450 usable_delta
= 0; /* base could end up in another pack */
453 to_reuse
= 0; /* explicit */
454 else if (!entry
->in_pack
)
455 to_reuse
= 0; /* can't reuse what we don't have */
456 else if (entry
->type
== OBJ_REF_DELTA
|| entry
->type
== OBJ_OFS_DELTA
)
457 /* check_object() decided it for us ... */
458 to_reuse
= usable_delta
;
459 /* ... but pack split may override that */
460 else if (entry
->type
!= entry
->in_pack_type
)
461 to_reuse
= 0; /* pack has delta which is unusable */
462 else if (entry
->delta
)
463 to_reuse
= 0; /* we want to pack afresh */
465 to_reuse
= 1; /* we have it in-pack undeltified,
466 * and we do not need to deltify it.
470 len
= write_no_reuse_object(f
, entry
, limit
, usable_delta
);
472 len
= write_reuse_object(f
, entry
, limit
, usable_delta
);
480 entry
->idx
.crc32
= crc32_end(f
);
484 enum write_one_status
{
485 WRITE_ONE_SKIP
= -1, /* already written */
486 WRITE_ONE_BREAK
= 0, /* writing this will bust the limit; not written */
487 WRITE_ONE_WRITTEN
= 1, /* normal */
488 WRITE_ONE_RECURSIVE
= 2 /* already scheduled to be written */
491 static enum write_one_status
write_one(struct sha1file
*f
,
492 struct object_entry
*e
,
499 * we set offset to 1 (which is an impossible value) to mark
500 * the fact that this object is involved in "write its base
501 * first before writing a deltified object" recursion.
503 recursing
= (e
->idx
.offset
== 1);
505 warning("recursive delta detected for object %s",
506 sha1_to_hex(e
->idx
.sha1
));
507 return WRITE_ONE_RECURSIVE
;
508 } else if (e
->idx
.offset
|| e
->preferred_base
) {
509 /* offset is non zero if object is written already. */
510 return WRITE_ONE_SKIP
;
513 /* if we are deltified, write out base object first. */
515 e
->idx
.offset
= 1; /* now recurse */
516 switch (write_one(f
, e
->delta
, offset
)) {
517 case WRITE_ONE_RECURSIVE
:
518 /* we cannot depend on this one */
523 case WRITE_ONE_BREAK
:
524 e
->idx
.offset
= recursing
;
525 return WRITE_ONE_BREAK
;
529 e
->idx
.offset
= *offset
;
530 size
= write_object(f
, e
, *offset
);
532 e
->idx
.offset
= recursing
;
533 return WRITE_ONE_BREAK
;
535 written_list
[nr_written
++] = &e
->idx
;
537 /* make sure off_t is sufficiently large not to wrap */
538 if (signed_add_overflows(*offset
, size
))
539 die("pack too large for current definition of off_t");
541 return WRITE_ONE_WRITTEN
;
544 static int mark_tagged(const char *path
, const struct object_id
*oid
, int flag
,
547 unsigned char peeled
[20];
548 struct object_entry
*entry
= packlist_find(&to_pack
, oid
->hash
, NULL
);
552 if (!peel_ref(path
, peeled
)) {
553 entry
= packlist_find(&to_pack
, peeled
, NULL
);
560 static inline void add_to_write_order(struct object_entry
**wo
,
562 struct object_entry
*e
)
570 static void add_descendants_to_write_order(struct object_entry
**wo
,
572 struct object_entry
*e
)
574 int add_to_order
= 1;
577 struct object_entry
*s
;
578 /* add this node... */
579 add_to_write_order(wo
, endp
, e
);
580 /* all its siblings... */
581 for (s
= e
->delta_sibling
; s
; s
= s
->delta_sibling
) {
582 add_to_write_order(wo
, endp
, s
);
585 /* drop down a level to add left subtree nodes if possible */
586 if (e
->delta_child
) {
591 /* our sibling might have some children, it is next */
592 if (e
->delta_sibling
) {
593 e
= e
->delta_sibling
;
596 /* go back to our parent node */
598 while (e
&& !e
->delta_sibling
) {
599 /* we're on the right side of a subtree, keep
600 * going up until we can go right again */
604 /* done- we hit our original root node */
607 /* pass it off to sibling at this level */
608 e
= e
->delta_sibling
;
613 static void add_family_to_write_order(struct object_entry
**wo
,
615 struct object_entry
*e
)
617 struct object_entry
*root
;
619 for (root
= e
; root
->delta
; root
= root
->delta
)
621 add_descendants_to_write_order(wo
, endp
, root
);
624 static struct object_entry
**compute_write_order(void)
626 unsigned int i
, wo_end
, last_untagged
;
628 struct object_entry
**wo
;
629 struct object_entry
*objects
= to_pack
.objects
;
631 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
632 objects
[i
].tagged
= 0;
633 objects
[i
].filled
= 0;
634 objects
[i
].delta_child
= NULL
;
635 objects
[i
].delta_sibling
= NULL
;
639 * Fully connect delta_child/delta_sibling network.
640 * Make sure delta_sibling is sorted in the original
643 for (i
= to_pack
.nr_objects
; i
> 0;) {
644 struct object_entry
*e
= &objects
[--i
];
647 /* Mark me as the first child */
648 e
->delta_sibling
= e
->delta
->delta_child
;
649 e
->delta
->delta_child
= e
;
653 * Mark objects that are at the tip of tags.
655 for_each_tag_ref(mark_tagged
, NULL
);
658 * Give the objects in the original recency order until
659 * we see a tagged tip.
661 ALLOC_ARRAY(wo
, to_pack
.nr_objects
);
662 for (i
= wo_end
= 0; i
< to_pack
.nr_objects
; i
++) {
663 if (objects
[i
].tagged
)
665 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
670 * Then fill all the tagged tips.
672 for (; i
< to_pack
.nr_objects
; i
++) {
673 if (objects
[i
].tagged
)
674 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
678 * And then all remaining commits and tags.
680 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
681 if (objects
[i
].type
!= OBJ_COMMIT
&&
682 objects
[i
].type
!= OBJ_TAG
)
684 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
688 * And then all the trees.
690 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
691 if (objects
[i
].type
!= OBJ_TREE
)
693 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
697 * Finally all the rest in really tight order
699 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
700 if (!objects
[i
].filled
)
701 add_family_to_write_order(wo
, &wo_end
, &objects
[i
]);
704 if (wo_end
!= to_pack
.nr_objects
)
705 die("ordered %u objects, expected %"PRIu32
, wo_end
, to_pack
.nr_objects
);
710 static off_t
write_reused_pack(struct sha1file
*f
)
712 unsigned char buffer
[8192];
713 off_t to_write
, total
;
716 if (!is_pack_valid(reuse_packfile
))
717 die("packfile is invalid: %s", reuse_packfile
->pack_name
);
719 fd
= git_open_noatime(reuse_packfile
->pack_name
);
721 die_errno("unable to open packfile for reuse: %s",
722 reuse_packfile
->pack_name
);
724 if (lseek(fd
, sizeof(struct pack_header
), SEEK_SET
) == -1)
725 die_errno("unable to seek in reused packfile");
727 if (reuse_packfile_offset
< 0)
728 reuse_packfile_offset
= reuse_packfile
->pack_size
- 20;
730 total
= to_write
= reuse_packfile_offset
- sizeof(struct pack_header
);
733 int read_pack
= xread(fd
, buffer
, sizeof(buffer
));
736 die_errno("unable to read from reused packfile");
738 if (read_pack
> to_write
)
739 read_pack
= to_write
;
741 sha1write(f
, buffer
, read_pack
);
742 to_write
-= read_pack
;
745 * We don't know the actual number of objects written,
746 * only how many bytes written, how many bytes total, and
747 * how many objects total. So we can fake it by pretending all
748 * objects we are writing are the same size. This gives us a
749 * smooth progress meter, and at the end it matches the true
752 written
= reuse_packfile_objects
*
753 (((double)(total
- to_write
)) / total
);
754 display_progress(progress_state
, written
);
758 written
= reuse_packfile_objects
;
759 display_progress(progress_state
, written
);
760 return reuse_packfile_offset
- sizeof(struct pack_header
);
763 static const char no_split_warning
[] = N_(
764 "disabling bitmap writing, packs are split due to pack.packSizeLimit"
767 static void write_pack_file(void)
772 uint32_t nr_remaining
= nr_result
;
773 time_t last_mtime
= 0;
774 struct object_entry
**write_order
;
776 if (progress
> pack_to_stdout
)
777 progress_state
= start_progress(_("Writing objects"), nr_result
);
778 ALLOC_ARRAY(written_list
, to_pack
.nr_objects
);
779 write_order
= compute_write_order();
782 unsigned char sha1
[20];
783 char *pack_tmp_name
= NULL
;
786 f
= sha1fd_throughput(1, "<stdout>", progress_state
);
788 f
= create_tmp_packfile(&pack_tmp_name
);
790 offset
= write_pack_header(f
, nr_remaining
);
792 if (reuse_packfile
) {
794 assert(pack_to_stdout
);
796 packfile_size
= write_reused_pack(f
);
797 offset
+= packfile_size
;
801 for (; i
< to_pack
.nr_objects
; i
++) {
802 struct object_entry
*e
= write_order
[i
];
803 if (write_one(f
, e
, &offset
) == WRITE_ONE_BREAK
)
805 display_progress(progress_state
, written
);
809 * Did we write the wrong # entries in the header?
810 * If so, rewrite it like in fast-import
812 if (pack_to_stdout
) {
813 sha1close(f
, sha1
, CSUM_CLOSE
);
814 } else if (nr_written
== nr_remaining
) {
815 sha1close(f
, sha1
, CSUM_FSYNC
);
817 int fd
= sha1close(f
, sha1
, 0);
818 fixup_pack_header_footer(fd
, sha1
, pack_tmp_name
,
819 nr_written
, sha1
, offset
);
821 if (write_bitmap_index
) {
822 warning(_(no_split_warning
));
823 write_bitmap_index
= 0;
827 if (!pack_to_stdout
) {
829 struct strbuf tmpname
= STRBUF_INIT
;
832 * Packs are runtime accessed in their mtime
833 * order since newer packs are more likely to contain
834 * younger objects. So if we are creating multiple
835 * packs then we should modify the mtime of later ones
836 * to preserve this property.
838 if (stat(pack_tmp_name
, &st
) < 0) {
839 warning_errno("failed to stat %s", pack_tmp_name
);
840 } else if (!last_mtime
) {
841 last_mtime
= st
.st_mtime
;
844 utb
.actime
= st
.st_atime
;
845 utb
.modtime
= --last_mtime
;
846 if (utime(pack_tmp_name
, &utb
) < 0)
847 warning_errno("failed utime() on %s", pack_tmp_name
);
850 strbuf_addf(&tmpname
, "%s-", base_name
);
852 if (write_bitmap_index
) {
853 bitmap_writer_set_checksum(sha1
);
854 bitmap_writer_build_type_index(written_list
, nr_written
);
857 finish_tmp_packfile(&tmpname
, pack_tmp_name
,
858 written_list
, nr_written
,
859 &pack_idx_opts
, sha1
);
861 if (write_bitmap_index
) {
862 strbuf_addf(&tmpname
, "%s.bitmap", sha1_to_hex(sha1
));
864 stop_progress(&progress_state
);
866 bitmap_writer_show_progress(progress
);
867 bitmap_writer_reuse_bitmaps(&to_pack
);
868 bitmap_writer_select_commits(indexed_commits
, indexed_commits_nr
, -1);
869 bitmap_writer_build(&to_pack
);
870 bitmap_writer_finish(written_list
, nr_written
,
871 tmpname
.buf
, write_bitmap_options
);
872 write_bitmap_index
= 0;
875 strbuf_release(&tmpname
);
877 puts(sha1_to_hex(sha1
));
880 /* mark written objects as written to previous pack */
881 for (j
= 0; j
< nr_written
; j
++) {
882 written_list
[j
]->offset
= (off_t
)-1;
884 nr_remaining
-= nr_written
;
885 } while (nr_remaining
&& i
< to_pack
.nr_objects
);
889 stop_progress(&progress_state
);
890 if (written
!= nr_result
)
891 die("wrote %"PRIu32
" objects while expecting %"PRIu32
,
895 static void setup_delta_attr_check(struct git_attr_check
*check
)
897 static struct git_attr
*attr_delta
;
900 attr_delta
= git_attr("delta");
902 check
[0].attr
= attr_delta
;
905 static int no_try_delta(const char *path
)
907 struct git_attr_check check
[1];
909 setup_delta_attr_check(check
);
910 if (git_check_attr(path
, ARRAY_SIZE(check
), check
))
912 if (ATTR_FALSE(check
->value
))
918 * When adding an object, check whether we have already added it
919 * to our packing list. If so, we can skip. However, if we are
920 * being asked to excludei t, but the previous mention was to include
921 * it, make sure to adjust its flags and tweak our numbers accordingly.
923 * As an optimization, we pass out the index position where we would have
924 * found the item, since that saves us from having to look it up again a
925 * few lines later when we want to add the new entry.
927 static int have_duplicate_entry(const unsigned char *sha1
,
931 struct object_entry
*entry
;
933 entry
= packlist_find(&to_pack
, sha1
, index_pos
);
938 if (!entry
->preferred_base
)
940 entry
->preferred_base
= 1;
947 * Check whether we want the object in the pack (e.g., we do not want
948 * objects found in non-local stores if the "--local" option was used).
950 * As a side effect of this check, we will find the packed version of this
951 * object, if any. We therefore pass out the pack information to avoid having
952 * to look it up again later.
954 static int want_object_in_pack(const unsigned char *sha1
,
956 struct packed_git
**found_pack
,
959 struct packed_git
*p
;
961 if (!exclude
&& local
&& has_loose_object_nonlocal(sha1
))
967 for (p
= packed_git
; p
; p
= p
->next
) {
968 off_t offset
= find_pack_entry_one(sha1
, p
);
971 if (!is_pack_valid(p
))
973 *found_offset
= offset
;
980 if (local
&& !p
->pack_local
)
982 if (ignore_packed_keep
&& p
->pack_local
&& p
->pack_keep
)
990 static void create_object_entry(const unsigned char *sha1
,
991 enum object_type type
,
996 struct packed_git
*found_pack
,
999 struct object_entry
*entry
;
1001 entry
= packlist_alloc(&to_pack
, sha1
, index_pos
);
1006 entry
->preferred_base
= 1;
1010 entry
->in_pack
= found_pack
;
1011 entry
->in_pack_offset
= found_offset
;
1014 entry
->no_try_delta
= no_try_delta
;
1017 static const char no_closure_warning
[] = N_(
1018 "disabling bitmap writing, as some objects are not being packed"
1021 static int add_object_entry(const unsigned char *sha1
, enum object_type type
,
1022 const char *name
, int exclude
)
1024 struct packed_git
*found_pack
;
1028 if (have_duplicate_entry(sha1
, exclude
, &index_pos
))
1031 if (!want_object_in_pack(sha1
, exclude
, &found_pack
, &found_offset
)) {
1032 /* The pack is missing an object, so it will not have closure */
1033 if (write_bitmap_index
) {
1034 warning(_(no_closure_warning
));
1035 write_bitmap_index
= 0;
1040 create_object_entry(sha1
, type
, pack_name_hash(name
),
1041 exclude
, name
&& no_try_delta(name
),
1042 index_pos
, found_pack
, found_offset
);
1044 display_progress(progress_state
, nr_result
);
1048 static int add_object_entry_from_bitmap(const unsigned char *sha1
,
1049 enum object_type type
,
1050 int flags
, uint32_t name_hash
,
1051 struct packed_git
*pack
, off_t offset
)
1055 if (have_duplicate_entry(sha1
, 0, &index_pos
))
1058 create_object_entry(sha1
, type
, name_hash
, 0, 0, index_pos
, pack
, offset
);
1060 display_progress(progress_state
, nr_result
);
1064 struct pbase_tree_cache
{
1065 unsigned char sha1
[20];
1069 unsigned long tree_size
;
1072 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
1073 static int pbase_tree_cache_ix(const unsigned char *sha1
)
1075 return sha1
[0] % ARRAY_SIZE(pbase_tree_cache
);
1077 static int pbase_tree_cache_ix_incr(int ix
)
1079 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
1082 static struct pbase_tree
{
1083 struct pbase_tree
*next
;
1084 /* This is a phony "cache" entry; we are not
1085 * going to evict it or find it through _get()
1086 * mechanism -- this is for the toplevel node that
1087 * would almost always change with any commit.
1089 struct pbase_tree_cache pcache
;
1092 static struct pbase_tree_cache
*pbase_tree_get(const unsigned char *sha1
)
1094 struct pbase_tree_cache
*ent
, *nent
;
1097 enum object_type type
;
1099 int my_ix
= pbase_tree_cache_ix(sha1
);
1100 int available_ix
= -1;
1102 /* pbase-tree-cache acts as a limited hashtable.
1103 * your object will be found at your index or within a few
1104 * slots after that slot if it is cached.
1106 for (neigh
= 0; neigh
< 8; neigh
++) {
1107 ent
= pbase_tree_cache
[my_ix
];
1108 if (ent
&& !hashcmp(ent
->sha1
, sha1
)) {
1112 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
1113 ((0 <= available_ix
) &&
1114 (!ent
&& pbase_tree_cache
[available_ix
])))
1115 available_ix
= my_ix
;
1118 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
1121 /* Did not find one. Either we got a bogus request or
1122 * we need to read and perhaps cache.
1124 data
= read_sha1_file(sha1
, &type
, &size
);
1127 if (type
!= OBJ_TREE
) {
1132 /* We need to either cache or return a throwaway copy */
1134 if (available_ix
< 0)
1137 ent
= pbase_tree_cache
[available_ix
];
1138 my_ix
= available_ix
;
1142 nent
= xmalloc(sizeof(*nent
));
1143 nent
->temporary
= (available_ix
< 0);
1146 /* evict and reuse */
1147 free(ent
->tree_data
);
1150 hashcpy(nent
->sha1
, sha1
);
1151 nent
->tree_data
= data
;
1152 nent
->tree_size
= size
;
1154 if (!nent
->temporary
)
1155 pbase_tree_cache
[my_ix
] = nent
;
1159 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
1161 if (!cache
->temporary
) {
1165 free(cache
->tree_data
);
1169 static int name_cmp_len(const char *name
)
1172 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
1177 static void add_pbase_object(struct tree_desc
*tree
,
1180 const char *fullname
)
1182 struct name_entry entry
;
1185 while (tree_entry(tree
,&entry
)) {
1186 if (S_ISGITLINK(entry
.mode
))
1188 cmp
= tree_entry_len(&entry
) != cmplen
? 1 :
1189 memcmp(name
, entry
.path
, cmplen
);
1194 if (name
[cmplen
] != '/') {
1195 add_object_entry(entry
.oid
->hash
,
1196 object_type(entry
.mode
),
1200 if (S_ISDIR(entry
.mode
)) {
1201 struct tree_desc sub
;
1202 struct pbase_tree_cache
*tree
;
1203 const char *down
= name
+cmplen
+1;
1204 int downlen
= name_cmp_len(down
);
1206 tree
= pbase_tree_get(entry
.oid
->hash
);
1209 init_tree_desc(&sub
, tree
->tree_data
, tree
->tree_size
);
1211 add_pbase_object(&sub
, down
, downlen
, fullname
);
1212 pbase_tree_put(tree
);
1217 static unsigned *done_pbase_paths
;
1218 static int done_pbase_paths_num
;
1219 static int done_pbase_paths_alloc
;
1220 static int done_pbase_path_pos(unsigned hash
)
1223 int hi
= done_pbase_paths_num
;
1225 int mi
= (hi
+ lo
) / 2;
1226 if (done_pbase_paths
[mi
] == hash
)
1228 if (done_pbase_paths
[mi
] < hash
)
1236 static int check_pbase_path(unsigned hash
)
1238 int pos
= (!done_pbase_paths
) ? -1 : done_pbase_path_pos(hash
);
1242 ALLOC_GROW(done_pbase_paths
,
1243 done_pbase_paths_num
+ 1,
1244 done_pbase_paths_alloc
);
1245 done_pbase_paths_num
++;
1246 if (pos
< done_pbase_paths_num
)
1247 memmove(done_pbase_paths
+ pos
+ 1,
1248 done_pbase_paths
+ pos
,
1249 (done_pbase_paths_num
- pos
- 1) * sizeof(unsigned));
1250 done_pbase_paths
[pos
] = hash
;
1254 static void add_preferred_base_object(const char *name
)
1256 struct pbase_tree
*it
;
1258 unsigned hash
= pack_name_hash(name
);
1260 if (!num_preferred_base
|| check_pbase_path(hash
))
1263 cmplen
= name_cmp_len(name
);
1264 for (it
= pbase_tree
; it
; it
= it
->next
) {
1266 add_object_entry(it
->pcache
.sha1
, OBJ_TREE
, NULL
, 1);
1269 struct tree_desc tree
;
1270 init_tree_desc(&tree
, it
->pcache
.tree_data
, it
->pcache
.tree_size
);
1271 add_pbase_object(&tree
, name
, cmplen
, name
);
1276 static void add_preferred_base(unsigned char *sha1
)
1278 struct pbase_tree
*it
;
1281 unsigned char tree_sha1
[20];
1283 if (window
<= num_preferred_base
++)
1286 data
= read_object_with_reference(sha1
, tree_type
, &size
, tree_sha1
);
1290 for (it
= pbase_tree
; it
; it
= it
->next
) {
1291 if (!hashcmp(it
->pcache
.sha1
, tree_sha1
)) {
1297 it
= xcalloc(1, sizeof(*it
));
1298 it
->next
= pbase_tree
;
1301 hashcpy(it
->pcache
.sha1
, tree_sha1
);
1302 it
->pcache
.tree_data
= data
;
1303 it
->pcache
.tree_size
= size
;
1306 static void cleanup_preferred_base(void)
1308 struct pbase_tree
*it
;
1314 struct pbase_tree
*this = it
;
1316 free(this->pcache
.tree_data
);
1320 for (i
= 0; i
< ARRAY_SIZE(pbase_tree_cache
); i
++) {
1321 if (!pbase_tree_cache
[i
])
1323 free(pbase_tree_cache
[i
]->tree_data
);
1324 free(pbase_tree_cache
[i
]);
1325 pbase_tree_cache
[i
] = NULL
;
1328 free(done_pbase_paths
);
1329 done_pbase_paths
= NULL
;
1330 done_pbase_paths_num
= done_pbase_paths_alloc
= 0;
1333 static void check_object(struct object_entry
*entry
)
1335 if (entry
->in_pack
) {
1336 struct packed_git
*p
= entry
->in_pack
;
1337 struct pack_window
*w_curs
= NULL
;
1338 const unsigned char *base_ref
= NULL
;
1339 struct object_entry
*base_entry
;
1340 unsigned long used
, used_0
;
1341 unsigned long avail
;
1343 unsigned char *buf
, c
;
1345 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
1348 * We want in_pack_type even if we do not reuse delta
1349 * since non-delta representations could still be reused.
1351 used
= unpack_object_header_buffer(buf
, avail
,
1352 &entry
->in_pack_type
,
1358 * Determine if this is a delta and if so whether we can
1359 * reuse it or not. Otherwise let's find out as cheaply as
1360 * possible what the actual type and size for this object is.
1362 switch (entry
->in_pack_type
) {
1364 /* Not a delta hence we've already got all we need. */
1365 entry
->type
= entry
->in_pack_type
;
1366 entry
->in_pack_header_size
= used
;
1367 if (entry
->type
< OBJ_COMMIT
|| entry
->type
> OBJ_BLOB
)
1369 unuse_pack(&w_curs
);
1372 if (reuse_delta
&& !entry
->preferred_base
)
1373 base_ref
= use_pack(p
, &w_curs
,
1374 entry
->in_pack_offset
+ used
, NULL
);
1375 entry
->in_pack_header_size
= used
+ 20;
1378 buf
= use_pack(p
, &w_curs
,
1379 entry
->in_pack_offset
+ used
, NULL
);
1385 if (!ofs
|| MSB(ofs
, 7)) {
1386 error("delta base offset overflow in pack for %s",
1387 sha1_to_hex(entry
->idx
.sha1
));
1391 ofs
= (ofs
<< 7) + (c
& 127);
1393 ofs
= entry
->in_pack_offset
- ofs
;
1394 if (ofs
<= 0 || ofs
>= entry
->in_pack_offset
) {
1395 error("delta base offset out of bound for %s",
1396 sha1_to_hex(entry
->idx
.sha1
));
1399 if (reuse_delta
&& !entry
->preferred_base
) {
1400 struct revindex_entry
*revidx
;
1401 revidx
= find_pack_revindex(p
, ofs
);
1404 base_ref
= nth_packed_object_sha1(p
, revidx
->nr
);
1406 entry
->in_pack_header_size
= used
+ used_0
;
1410 if (base_ref
&& (base_entry
= packlist_find(&to_pack
, base_ref
, NULL
))) {
1412 * If base_ref was set above that means we wish to
1413 * reuse delta data, and we even found that base
1414 * in the list of objects we want to pack. Goodie!
1416 * Depth value does not matter - find_deltas() will
1417 * never consider reused delta as the base object to
1418 * deltify other objects against, in order to avoid
1421 entry
->type
= entry
->in_pack_type
;
1422 entry
->delta
= base_entry
;
1423 entry
->delta_size
= entry
->size
;
1424 entry
->delta_sibling
= base_entry
->delta_child
;
1425 base_entry
->delta_child
= entry
;
1426 unuse_pack(&w_curs
);
1432 * This must be a delta and we already know what the
1433 * final object type is. Let's extract the actual
1434 * object size from the delta header.
1436 entry
->size
= get_size_from_delta(p
, &w_curs
,
1437 entry
->in_pack_offset
+ entry
->in_pack_header_size
);
1438 if (entry
->size
== 0)
1440 unuse_pack(&w_curs
);
1445 * No choice but to fall back to the recursive delta walk
1446 * with sha1_object_info() to find about the object type
1450 unuse_pack(&w_curs
);
1453 entry
->type
= sha1_object_info(entry
->idx
.sha1
, &entry
->size
);
1455 * The error condition is checked in prepare_pack(). This is
1456 * to permit a missing preferred base object to be ignored
1457 * as a preferred base. Doing so can result in a larger
1458 * pack file, but the transfer will still take place.
1462 static int pack_offset_sort(const void *_a
, const void *_b
)
1464 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1465 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1467 /* avoid filesystem trashing with loose objects */
1468 if (!a
->in_pack
&& !b
->in_pack
)
1469 return hashcmp(a
->idx
.sha1
, b
->idx
.sha1
);
1471 if (a
->in_pack
< b
->in_pack
)
1473 if (a
->in_pack
> b
->in_pack
)
1475 return a
->in_pack_offset
< b
->in_pack_offset
? -1 :
1476 (a
->in_pack_offset
> b
->in_pack_offset
);
1479 static void get_object_details(void)
1482 struct object_entry
**sorted_by_offset
;
1484 sorted_by_offset
= xcalloc(to_pack
.nr_objects
, sizeof(struct object_entry
*));
1485 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
1486 sorted_by_offset
[i
] = to_pack
.objects
+ i
;
1487 qsort(sorted_by_offset
, to_pack
.nr_objects
, sizeof(*sorted_by_offset
), pack_offset_sort
);
1489 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
1490 struct object_entry
*entry
= sorted_by_offset
[i
];
1491 check_object(entry
);
1492 if (big_file_threshold
< entry
->size
)
1493 entry
->no_try_delta
= 1;
1496 free(sorted_by_offset
);
1500 * We search for deltas in a list sorted by type, by filename hash, and then
1501 * by size, so that we see progressively smaller and smaller files.
1502 * That's because we prefer deltas to be from the bigger file
1503 * to the smaller -- deletes are potentially cheaper, but perhaps
1504 * more importantly, the bigger file is likely the more recent
1505 * one. The deepest deltas are therefore the oldest objects which are
1506 * less susceptible to be accessed often.
1508 static int type_size_sort(const void *_a
, const void *_b
)
1510 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1511 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1513 if (a
->type
> b
->type
)
1515 if (a
->type
< b
->type
)
1517 if (a
->hash
> b
->hash
)
1519 if (a
->hash
< b
->hash
)
1521 if (a
->preferred_base
> b
->preferred_base
)
1523 if (a
->preferred_base
< b
->preferred_base
)
1525 if (a
->size
> b
->size
)
1527 if (a
->size
< b
->size
)
1529 return a
< b
? -1 : (a
> b
); /* newest first */
1533 struct object_entry
*entry
;
1535 struct delta_index
*index
;
1539 static int delta_cacheable(unsigned long src_size
, unsigned long trg_size
,
1540 unsigned long delta_size
)
1542 if (max_delta_cache_size
&& delta_cache_size
+ delta_size
> max_delta_cache_size
)
1545 if (delta_size
< cache_max_small_delta_size
)
1548 /* cache delta, if objects are large enough compared to delta size */
1549 if ((src_size
>> 20) + (trg_size
>> 21) > (delta_size
>> 10))
1557 static pthread_mutex_t read_mutex
;
1558 #define read_lock() pthread_mutex_lock(&read_mutex)
1559 #define read_unlock() pthread_mutex_unlock(&read_mutex)
1561 static pthread_mutex_t cache_mutex
;
1562 #define cache_lock() pthread_mutex_lock(&cache_mutex)
1563 #define cache_unlock() pthread_mutex_unlock(&cache_mutex)
1565 static pthread_mutex_t progress_mutex
;
1566 #define progress_lock() pthread_mutex_lock(&progress_mutex)
1567 #define progress_unlock() pthread_mutex_unlock(&progress_mutex)
1571 #define read_lock() (void)0
1572 #define read_unlock() (void)0
1573 #define cache_lock() (void)0
1574 #define cache_unlock() (void)0
1575 #define progress_lock() (void)0
1576 #define progress_unlock() (void)0
1580 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
1581 unsigned max_depth
, unsigned long *mem_usage
)
1583 struct object_entry
*trg_entry
= trg
->entry
;
1584 struct object_entry
*src_entry
= src
->entry
;
1585 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
1587 enum object_type type
;
1590 /* Don't bother doing diffs between different types */
1591 if (trg_entry
->type
!= src_entry
->type
)
1595 * We do not bother to try a delta that we discarded on an
1596 * earlier try, but only when reusing delta data. Note that
1597 * src_entry that is marked as the preferred_base should always
1598 * be considered, as even if we produce a suboptimal delta against
1599 * it, we will still save the transfer cost, as we already know
1600 * the other side has it and we won't send src_entry at all.
1602 if (reuse_delta
&& trg_entry
->in_pack
&&
1603 trg_entry
->in_pack
== src_entry
->in_pack
&&
1604 !src_entry
->preferred_base
&&
1605 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
1606 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
1609 /* Let's not bust the allowed depth. */
1610 if (src
->depth
>= max_depth
)
1613 /* Now some size filtering heuristics. */
1614 trg_size
= trg_entry
->size
;
1615 if (!trg_entry
->delta
) {
1616 max_size
= trg_size
/2 - 20;
1619 max_size
= trg_entry
->delta_size
;
1620 ref_depth
= trg
->depth
;
1622 max_size
= (uint64_t)max_size
* (max_depth
- src
->depth
) /
1623 (max_depth
- ref_depth
+ 1);
1626 src_size
= src_entry
->size
;
1627 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
1628 if (sizediff
>= max_size
)
1630 if (trg_size
< src_size
/ 32)
1633 /* Load data if not already done */
1636 trg
->data
= read_sha1_file(trg_entry
->idx
.sha1
, &type
, &sz
);
1639 die("object %s cannot be read",
1640 sha1_to_hex(trg_entry
->idx
.sha1
));
1642 die("object %s inconsistent object length (%lu vs %lu)",
1643 sha1_to_hex(trg_entry
->idx
.sha1
), sz
, trg_size
);
1648 src
->data
= read_sha1_file(src_entry
->idx
.sha1
, &type
, &sz
);
1651 if (src_entry
->preferred_base
) {
1652 static int warned
= 0;
1654 warning("object %s cannot be read",
1655 sha1_to_hex(src_entry
->idx
.sha1
));
1657 * Those objects are not included in the
1658 * resulting pack. Be resilient and ignore
1659 * them if they can't be read, in case the
1660 * pack could be created nevertheless.
1664 die("object %s cannot be read",
1665 sha1_to_hex(src_entry
->idx
.sha1
));
1668 die("object %s inconsistent object length (%lu vs %lu)",
1669 sha1_to_hex(src_entry
->idx
.sha1
), sz
, src_size
);
1673 src
->index
= create_delta_index(src
->data
, src_size
);
1675 static int warned
= 0;
1677 warning("suboptimal pack - out of memory");
1680 *mem_usage
+= sizeof_delta_index(src
->index
);
1683 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
1687 if (trg_entry
->delta
) {
1688 /* Prefer only shallower same-sized deltas. */
1689 if (delta_size
== trg_entry
->delta_size
&&
1690 src
->depth
+ 1 >= trg
->depth
) {
1697 * Handle memory allocation outside of the cache
1698 * accounting lock. Compiler will optimize the strangeness
1699 * away when NO_PTHREADS is defined.
1701 free(trg_entry
->delta_data
);
1703 if (trg_entry
->delta_data
) {
1704 delta_cache_size
-= trg_entry
->delta_size
;
1705 trg_entry
->delta_data
= NULL
;
1707 if (delta_cacheable(src_size
, trg_size
, delta_size
)) {
1708 delta_cache_size
+= delta_size
;
1710 trg_entry
->delta_data
= xrealloc(delta_buf
, delta_size
);
1716 trg_entry
->delta
= src_entry
;
1717 trg_entry
->delta_size
= delta_size
;
1718 trg
->depth
= src
->depth
+ 1;
1723 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
1725 struct object_entry
*child
= me
->delta_child
;
1728 unsigned int c
= check_delta_limit(child
, n
+ 1);
1731 child
= child
->delta_sibling
;
1736 static unsigned long free_unpacked(struct unpacked
*n
)
1738 unsigned long freed_mem
= sizeof_delta_index(n
->index
);
1739 free_delta_index(n
->index
);
1742 freed_mem
+= n
->entry
->size
;
1751 static void find_deltas(struct object_entry
**list
, unsigned *list_size
,
1752 int window
, int depth
, unsigned *processed
)
1754 uint32_t i
, idx
= 0, count
= 0;
1755 struct unpacked
*array
;
1756 unsigned long mem_usage
= 0;
1758 array
= xcalloc(window
, sizeof(struct unpacked
));
1761 struct object_entry
*entry
;
1762 struct unpacked
*n
= array
+ idx
;
1763 int j
, max_depth
, best_base
= -1;
1772 if (!entry
->preferred_base
) {
1774 display_progress(progress_state
, *processed
);
1778 mem_usage
-= free_unpacked(n
);
1781 while (window_memory_limit
&&
1782 mem_usage
> window_memory_limit
&&
1784 uint32_t tail
= (idx
+ window
- count
) % window
;
1785 mem_usage
-= free_unpacked(array
+ tail
);
1789 /* We do not compute delta to *create* objects we are not
1792 if (entry
->preferred_base
)
1796 * If the current object is at pack edge, take the depth the
1797 * objects that depend on the current object into account
1798 * otherwise they would become too deep.
1801 if (entry
->delta_child
) {
1802 max_depth
-= check_delta_limit(entry
, 0);
1810 uint32_t other_idx
= idx
+ j
;
1812 if (other_idx
>= window
)
1813 other_idx
-= window
;
1814 m
= array
+ other_idx
;
1817 ret
= try_delta(n
, m
, max_depth
, &mem_usage
);
1821 best_base
= other_idx
;
1825 * If we decided to cache the delta data, then it is best
1826 * to compress it right away. First because we have to do
1827 * it anyway, and doing it here while we're threaded will
1828 * save a lot of time in the non threaded write phase,
1829 * as well as allow for caching more deltas within
1830 * the same cache size limit.
1832 * But only if not writing to stdout, since in that case
1833 * the network is most likely throttling writes anyway,
1834 * and therefore it is best to go to the write phase ASAP
1835 * instead, as we can afford spending more time compressing
1836 * between writes at that moment.
1838 if (entry
->delta_data
&& !pack_to_stdout
) {
1839 entry
->z_delta_size
= do_compress(&entry
->delta_data
,
1842 delta_cache_size
-= entry
->delta_size
;
1843 delta_cache_size
+= entry
->z_delta_size
;
1847 /* if we made n a delta, and if n is already at max
1848 * depth, leaving it in the window is pointless. we
1849 * should evict it first.
1851 if (entry
->delta
&& max_depth
<= n
->depth
)
1855 * Move the best delta base up in the window, after the
1856 * currently deltified object, to keep it longer. It will
1857 * be the first base object to be attempted next.
1860 struct unpacked swap
= array
[best_base
];
1861 int dist
= (window
+ idx
- best_base
) % window
;
1862 int dst
= best_base
;
1864 int src
= (dst
+ 1) % window
;
1865 array
[dst
] = array
[src
];
1873 if (count
+ 1 < window
)
1879 for (i
= 0; i
< window
; ++i
) {
1880 free_delta_index(array
[i
].index
);
1881 free(array
[i
].data
);
1888 static void try_to_free_from_threads(size_t size
)
1891 release_pack_memory(size
);
1895 static try_to_free_t old_try_to_free_routine
;
1898 * The main thread waits on the condition that (at least) one of the workers
1899 * has stopped working (which is indicated in the .working member of
1900 * struct thread_params).
1901 * When a work thread has completed its work, it sets .working to 0 and
1902 * signals the main thread and waits on the condition that .data_ready
1906 struct thread_params
{
1908 struct object_entry
**list
;
1915 pthread_mutex_t mutex
;
1916 pthread_cond_t cond
;
1917 unsigned *processed
;
1920 static pthread_cond_t progress_cond
;
1923 * Mutex and conditional variable can't be statically-initialized on Windows.
1925 static void init_threaded_search(void)
1927 init_recursive_mutex(&read_mutex
);
1928 pthread_mutex_init(&cache_mutex
, NULL
);
1929 pthread_mutex_init(&progress_mutex
, NULL
);
1930 pthread_cond_init(&progress_cond
, NULL
);
1931 old_try_to_free_routine
= set_try_to_free_routine(try_to_free_from_threads
);
1934 static void cleanup_threaded_search(void)
1936 set_try_to_free_routine(old_try_to_free_routine
);
1937 pthread_cond_destroy(&progress_cond
);
1938 pthread_mutex_destroy(&read_mutex
);
1939 pthread_mutex_destroy(&cache_mutex
);
1940 pthread_mutex_destroy(&progress_mutex
);
1943 static void *threaded_find_deltas(void *arg
)
1945 struct thread_params
*me
= arg
;
1947 while (me
->remaining
) {
1948 find_deltas(me
->list
, &me
->remaining
,
1949 me
->window
, me
->depth
, me
->processed
);
1953 pthread_cond_signal(&progress_cond
);
1957 * We must not set ->data_ready before we wait on the
1958 * condition because the main thread may have set it to 1
1959 * before we get here. In order to be sure that new
1960 * work is available if we see 1 in ->data_ready, it
1961 * was initialized to 0 before this thread was spawned
1962 * and we reset it to 0 right away.
1964 pthread_mutex_lock(&me
->mutex
);
1965 while (!me
->data_ready
)
1966 pthread_cond_wait(&me
->cond
, &me
->mutex
);
1968 pthread_mutex_unlock(&me
->mutex
);
1970 /* leave ->working 1 so that this doesn't get more work assigned */
1974 static void ll_find_deltas(struct object_entry
**list
, unsigned list_size
,
1975 int window
, int depth
, unsigned *processed
)
1977 struct thread_params
*p
;
1978 int i
, ret
, active_threads
= 0;
1980 init_threaded_search();
1982 if (delta_search_threads
<= 1) {
1983 find_deltas(list
, &list_size
, window
, depth
, processed
);
1984 cleanup_threaded_search();
1987 if (progress
> pack_to_stdout
)
1988 fprintf(stderr
, "Delta compression using up to %d threads.\n",
1989 delta_search_threads
);
1990 p
= xcalloc(delta_search_threads
, sizeof(*p
));
1992 /* Partition the work amongst work threads. */
1993 for (i
= 0; i
< delta_search_threads
; i
++) {
1994 unsigned sub_size
= list_size
/ (delta_search_threads
- i
);
1996 /* don't use too small segments or no deltas will be found */
1997 if (sub_size
< 2*window
&& i
+1 < delta_search_threads
)
2000 p
[i
].window
= window
;
2002 p
[i
].processed
= processed
;
2004 p
[i
].data_ready
= 0;
2006 /* try to split chunks on "path" boundaries */
2007 while (sub_size
&& sub_size
< list_size
&&
2008 list
[sub_size
]->hash
&&
2009 list
[sub_size
]->hash
== list
[sub_size
-1]->hash
)
2013 p
[i
].list_size
= sub_size
;
2014 p
[i
].remaining
= sub_size
;
2017 list_size
-= sub_size
;
2020 /* Start work threads. */
2021 for (i
= 0; i
< delta_search_threads
; i
++) {
2022 if (!p
[i
].list_size
)
2024 pthread_mutex_init(&p
[i
].mutex
, NULL
);
2025 pthread_cond_init(&p
[i
].cond
, NULL
);
2026 ret
= pthread_create(&p
[i
].thread
, NULL
,
2027 threaded_find_deltas
, &p
[i
]);
2029 die("unable to create thread: %s", strerror(ret
));
2034 * Now let's wait for work completion. Each time a thread is done
2035 * with its work, we steal half of the remaining work from the
2036 * thread with the largest number of unprocessed objects and give
2037 * it to that newly idle thread. This ensure good load balancing
2038 * until the remaining object list segments are simply too short
2039 * to be worth splitting anymore.
2041 while (active_threads
) {
2042 struct thread_params
*target
= NULL
;
2043 struct thread_params
*victim
= NULL
;
2044 unsigned sub_size
= 0;
2048 for (i
= 0; !target
&& i
< delta_search_threads
; i
++)
2053 pthread_cond_wait(&progress_cond
, &progress_mutex
);
2056 for (i
= 0; i
< delta_search_threads
; i
++)
2057 if (p
[i
].remaining
> 2*window
&&
2058 (!victim
|| victim
->remaining
< p
[i
].remaining
))
2061 sub_size
= victim
->remaining
/ 2;
2062 list
= victim
->list
+ victim
->list_size
- sub_size
;
2063 while (sub_size
&& list
[0]->hash
&&
2064 list
[0]->hash
== list
[-1]->hash
) {
2070 * It is possible for some "paths" to have
2071 * so many objects that no hash boundary
2072 * might be found. Let's just steal the
2073 * exact half in that case.
2075 sub_size
= victim
->remaining
/ 2;
2078 target
->list
= list
;
2079 victim
->list_size
-= sub_size
;
2080 victim
->remaining
-= sub_size
;
2082 target
->list_size
= sub_size
;
2083 target
->remaining
= sub_size
;
2084 target
->working
= 1;
2087 pthread_mutex_lock(&target
->mutex
);
2088 target
->data_ready
= 1;
2089 pthread_cond_signal(&target
->cond
);
2090 pthread_mutex_unlock(&target
->mutex
);
2093 pthread_join(target
->thread
, NULL
);
2094 pthread_cond_destroy(&target
->cond
);
2095 pthread_mutex_destroy(&target
->mutex
);
2099 cleanup_threaded_search();
2104 #define ll_find_deltas(l, s, w, d, p) find_deltas(l, &s, w, d, p)
2107 static int add_ref_tag(const char *path
, const struct object_id
*oid
, int flag
, void *cb_data
)
2109 struct object_id peeled
;
2111 if (starts_with(path
, "refs/tags/") && /* is a tag? */
2112 !peel_ref(path
, peeled
.hash
) && /* peelable? */
2113 packlist_find(&to_pack
, peeled
.hash
, NULL
)) /* object packed? */
2114 add_object_entry(oid
->hash
, OBJ_TAG
, NULL
, 0);
2118 static void prepare_pack(int window
, int depth
)
2120 struct object_entry
**delta_list
;
2121 uint32_t i
, nr_deltas
;
2124 get_object_details();
2127 * If we're locally repacking then we need to be doubly careful
2128 * from now on in order to make sure no stealth corruption gets
2129 * propagated to the new pack. Clients receiving streamed packs
2130 * should validate everything they get anyway so no need to incur
2131 * the additional cost here in that case.
2133 if (!pack_to_stdout
)
2134 do_check_packed_object_crc
= 1;
2136 if (!to_pack
.nr_objects
|| !window
|| !depth
)
2139 ALLOC_ARRAY(delta_list
, to_pack
.nr_objects
);
2142 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
2143 struct object_entry
*entry
= to_pack
.objects
+ i
;
2146 /* This happens if we decided to reuse existing
2147 * delta from a pack. "reuse_delta &&" is implied.
2151 if (entry
->size
< 50)
2154 if (entry
->no_try_delta
)
2157 if (!entry
->preferred_base
) {
2159 if (entry
->type
< 0)
2160 die("unable to get type of object %s",
2161 sha1_to_hex(entry
->idx
.sha1
));
2163 if (entry
->type
< 0) {
2165 * This object is not found, but we
2166 * don't have to include it anyway.
2172 delta_list
[n
++] = entry
;
2175 if (nr_deltas
&& n
> 1) {
2176 unsigned nr_done
= 0;
2178 progress_state
= start_progress(_("Compressing objects"),
2180 qsort(delta_list
, n
, sizeof(*delta_list
), type_size_sort
);
2181 ll_find_deltas(delta_list
, n
, window
+1, depth
, &nr_done
);
2182 stop_progress(&progress_state
);
2183 if (nr_done
!= nr_deltas
)
2184 die("inconsistency with delta count");
2189 static int git_pack_config(const char *k
, const char *v
, void *cb
)
2191 if (!strcmp(k
, "pack.window")) {
2192 window
= git_config_int(k
, v
);
2195 if (!strcmp(k
, "pack.windowmemory")) {
2196 window_memory_limit
= git_config_ulong(k
, v
);
2199 if (!strcmp(k
, "pack.depth")) {
2200 depth
= git_config_int(k
, v
);
2203 if (!strcmp(k
, "pack.compression")) {
2204 int level
= git_config_int(k
, v
);
2206 level
= Z_DEFAULT_COMPRESSION
;
2207 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
2208 die("bad pack compression level %d", level
);
2209 pack_compression_level
= level
;
2210 pack_compression_seen
= 1;
2213 if (!strcmp(k
, "pack.deltacachesize")) {
2214 max_delta_cache_size
= git_config_int(k
, v
);
2217 if (!strcmp(k
, "pack.deltacachelimit")) {
2218 cache_max_small_delta_size
= git_config_int(k
, v
);
2221 if (!strcmp(k
, "pack.writebitmaphashcache")) {
2222 if (git_config_bool(k
, v
))
2223 write_bitmap_options
|= BITMAP_OPT_HASH_CACHE
;
2225 write_bitmap_options
&= ~BITMAP_OPT_HASH_CACHE
;
2227 if (!strcmp(k
, "pack.usebitmaps")) {
2228 use_bitmap_index
= git_config_bool(k
, v
);
2231 if (!strcmp(k
, "pack.threads")) {
2232 delta_search_threads
= git_config_int(k
, v
);
2233 if (delta_search_threads
< 0)
2234 die("invalid number of threads specified (%d)",
2235 delta_search_threads
);
2237 if (delta_search_threads
!= 1)
2238 warning("no threads support, ignoring %s", k
);
2242 if (!strcmp(k
, "pack.indexversion")) {
2243 pack_idx_opts
.version
= git_config_int(k
, v
);
2244 if (pack_idx_opts
.version
> 2)
2245 die("bad pack.indexversion=%"PRIu32
,
2246 pack_idx_opts
.version
);
2249 return git_default_config(k
, v
, cb
);
2252 static void read_object_list_from_stdin(void)
2254 char line
[40 + 1 + PATH_MAX
+ 2];
2255 unsigned char sha1
[20];
2258 if (!fgets(line
, sizeof(line
), stdin
)) {
2262 die("fgets returned NULL, not EOF, not error!");
2268 if (line
[0] == '-') {
2269 if (get_sha1_hex(line
+1, sha1
))
2270 die("expected edge sha1, got garbage:\n %s",
2272 add_preferred_base(sha1
);
2275 if (get_sha1_hex(line
, sha1
))
2276 die("expected sha1, got garbage:\n %s", line
);
2278 add_preferred_base_object(line
+41);
2279 add_object_entry(sha1
, 0, line
+41, 0);
2283 #define OBJECT_ADDED (1u<<20)
2285 static void show_commit(struct commit
*commit
, void *data
)
2287 add_object_entry(commit
->object
.oid
.hash
, OBJ_COMMIT
, NULL
, 0);
2288 commit
->object
.flags
|= OBJECT_ADDED
;
2290 if (write_bitmap_index
)
2291 index_commit_for_bitmap(commit
);
2294 static void show_object(struct object
*obj
, const char *name
, void *data
)
2296 add_preferred_base_object(name
);
2297 add_object_entry(obj
->oid
.hash
, obj
->type
, name
, 0);
2298 obj
->flags
|= OBJECT_ADDED
;
2301 static void show_edge(struct commit
*commit
)
2303 add_preferred_base(commit
->object
.oid
.hash
);
2306 struct in_pack_object
{
2308 struct object
*object
;
2314 struct in_pack_object
*array
;
2317 static void mark_in_pack_object(struct object
*object
, struct packed_git
*p
, struct in_pack
*in_pack
)
2319 in_pack
->array
[in_pack
->nr
].offset
= find_pack_entry_one(object
->oid
.hash
, p
);
2320 in_pack
->array
[in_pack
->nr
].object
= object
;
2325 * Compare the objects in the offset order, in order to emulate the
2326 * "git rev-list --objects" output that produced the pack originally.
2328 static int ofscmp(const void *a_
, const void *b_
)
2330 struct in_pack_object
*a
= (struct in_pack_object
*)a_
;
2331 struct in_pack_object
*b
= (struct in_pack_object
*)b_
;
2333 if (a
->offset
< b
->offset
)
2335 else if (a
->offset
> b
->offset
)
2338 return oidcmp(&a
->object
->oid
, &b
->object
->oid
);
2341 static void add_objects_in_unpacked_packs(struct rev_info
*revs
)
2343 struct packed_git
*p
;
2344 struct in_pack in_pack
;
2347 memset(&in_pack
, 0, sizeof(in_pack
));
2349 for (p
= packed_git
; p
; p
= p
->next
) {
2350 const unsigned char *sha1
;
2353 if (!p
->pack_local
|| p
->pack_keep
)
2355 if (open_pack_index(p
))
2356 die("cannot open pack index");
2358 ALLOC_GROW(in_pack
.array
,
2359 in_pack
.nr
+ p
->num_objects
,
2362 for (i
= 0; i
< p
->num_objects
; i
++) {
2363 sha1
= nth_packed_object_sha1(p
, i
);
2364 o
= lookup_unknown_object(sha1
);
2365 if (!(o
->flags
& OBJECT_ADDED
))
2366 mark_in_pack_object(o
, p
, &in_pack
);
2367 o
->flags
|= OBJECT_ADDED
;
2372 qsort(in_pack
.array
, in_pack
.nr
, sizeof(in_pack
.array
[0]),
2374 for (i
= 0; i
< in_pack
.nr
; i
++) {
2375 struct object
*o
= in_pack
.array
[i
].object
;
2376 add_object_entry(o
->oid
.hash
, o
->type
, "", 0);
2379 free(in_pack
.array
);
2382 static int add_loose_object(const unsigned char *sha1
, const char *path
,
2385 enum object_type type
= sha1_object_info(sha1
, NULL
);
2388 warning("loose object at %s could not be examined", path
);
2392 add_object_entry(sha1
, type
, "", 0);
2397 * We actually don't even have to worry about reachability here.
2398 * add_object_entry will weed out duplicates, so we just add every
2399 * loose object we find.
2401 static void add_unreachable_loose_objects(void)
2403 for_each_loose_file_in_objdir(get_object_directory(),
2408 static int has_sha1_pack_kept_or_nonlocal(const unsigned char *sha1
)
2410 static struct packed_git
*last_found
= (void *)1;
2411 struct packed_git
*p
;
2413 p
= (last_found
!= (void *)1) ? last_found
: packed_git
;
2416 if ((!p
->pack_local
|| p
->pack_keep
) &&
2417 find_pack_entry_one(sha1
, p
)) {
2421 if (p
== last_found
)
2425 if (p
== last_found
)
2432 * Store a list of sha1s that are should not be discarded
2433 * because they are either written too recently, or are
2434 * reachable from another object that was.
2436 * This is filled by get_object_list.
2438 static struct sha1_array recent_objects
;
2440 static int loosened_object_can_be_discarded(const unsigned char *sha1
,
2441 unsigned long mtime
)
2443 if (!unpack_unreachable_expiration
)
2445 if (mtime
> unpack_unreachable_expiration
)
2447 if (sha1_array_lookup(&recent_objects
, sha1
) >= 0)
2452 static void loosen_unused_packed_objects(struct rev_info
*revs
)
2454 struct packed_git
*p
;
2456 const unsigned char *sha1
;
2458 for (p
= packed_git
; p
; p
= p
->next
) {
2459 if (!p
->pack_local
|| p
->pack_keep
)
2462 if (open_pack_index(p
))
2463 die("cannot open pack index");
2465 for (i
= 0; i
< p
->num_objects
; i
++) {
2466 sha1
= nth_packed_object_sha1(p
, i
);
2467 if (!packlist_find(&to_pack
, sha1
, NULL
) &&
2468 !has_sha1_pack_kept_or_nonlocal(sha1
) &&
2469 !loosened_object_can_be_discarded(sha1
, p
->mtime
))
2470 if (force_object_loose(sha1
, p
->mtime
))
2471 die("unable to force loose object");
2477 * This tracks any options which a reader of the pack might
2478 * not understand, and which would therefore prevent blind reuse
2479 * of what we have on disk.
2481 static int pack_options_allow_reuse(void)
2483 return allow_ofs_delta
;
2486 static int get_object_list_from_bitmap(struct rev_info
*revs
)
2488 if (prepare_bitmap_walk(revs
) < 0)
2491 if (pack_options_allow_reuse() &&
2492 !reuse_partial_packfile_from_bitmap(
2494 &reuse_packfile_objects
,
2495 &reuse_packfile_offset
)) {
2496 assert(reuse_packfile_objects
);
2497 nr_result
+= reuse_packfile_objects
;
2498 display_progress(progress_state
, nr_result
);
2501 traverse_bitmap_commit_list(&add_object_entry_from_bitmap
);
2505 static void record_recent_object(struct object
*obj
,
2509 sha1_array_append(&recent_objects
, obj
->oid
.hash
);
2512 static void record_recent_commit(struct commit
*commit
, void *data
)
2514 sha1_array_append(&recent_objects
, commit
->object
.oid
.hash
);
2517 static void get_object_list(int ac
, const char **av
)
2519 struct rev_info revs
;
2523 init_revisions(&revs
, NULL
);
2524 save_commit_buffer
= 0;
2525 setup_revisions(ac
, av
, &revs
, NULL
);
2527 /* make sure shallows are read */
2528 is_repository_shallow();
2530 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
2531 int len
= strlen(line
);
2532 if (len
&& line
[len
- 1] == '\n')
2537 if (!strcmp(line
, "--not")) {
2538 flags
^= UNINTERESTING
;
2539 write_bitmap_index
= 0;
2542 if (starts_with(line
, "--shallow ")) {
2543 unsigned char sha1
[20];
2544 if (get_sha1_hex(line
+ 10, sha1
))
2545 die("not an SHA-1 '%s'", line
+ 10);
2546 register_shallow(sha1
);
2547 use_bitmap_index
= 0;
2550 die("not a rev '%s'", line
);
2552 if (handle_revision_arg(line
, &revs
, flags
, REVARG_CANNOT_BE_FILENAME
))
2553 die("bad revision '%s'", line
);
2556 if (use_bitmap_index
&& !get_object_list_from_bitmap(&revs
))
2559 if (prepare_revision_walk(&revs
))
2560 die("revision walk setup failed");
2561 mark_edges_uninteresting(&revs
, show_edge
);
2562 traverse_commit_list(&revs
, show_commit
, show_object
, NULL
);
2564 if (unpack_unreachable_expiration
) {
2565 revs
.ignore_missing_links
= 1;
2566 if (add_unseen_recent_objects_to_traversal(&revs
,
2567 unpack_unreachable_expiration
))
2568 die("unable to add recent objects");
2569 if (prepare_revision_walk(&revs
))
2570 die("revision walk setup failed");
2571 traverse_commit_list(&revs
, record_recent_commit
,
2572 record_recent_object
, NULL
);
2575 if (keep_unreachable
)
2576 add_objects_in_unpacked_packs(&revs
);
2577 if (pack_loose_unreachable
)
2578 add_unreachable_loose_objects();
2579 if (unpack_unreachable
)
2580 loosen_unused_packed_objects(&revs
);
2582 sha1_array_clear(&recent_objects
);
2585 static int option_parse_index_version(const struct option
*opt
,
2586 const char *arg
, int unset
)
2589 const char *val
= arg
;
2590 pack_idx_opts
.version
= strtoul(val
, &c
, 10);
2591 if (pack_idx_opts
.version
> 2)
2592 die(_("unsupported index version %s"), val
);
2593 if (*c
== ',' && c
[1])
2594 pack_idx_opts
.off32_limit
= strtoul(c
+1, &c
, 0);
2595 if (*c
|| pack_idx_opts
.off32_limit
& 0x80000000)
2596 die(_("bad index version '%s'"), val
);
2600 static int option_parse_unpack_unreachable(const struct option
*opt
,
2601 const char *arg
, int unset
)
2604 unpack_unreachable
= 0;
2605 unpack_unreachable_expiration
= 0;
2608 unpack_unreachable
= 1;
2610 unpack_unreachable_expiration
= approxidate(arg
);
2615 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
2617 int use_internal_rev_list
= 0;
2620 int all_progress_implied
= 0;
2621 struct argv_array rp
= ARGV_ARRAY_INIT
;
2622 int rev_list_unpacked
= 0, rev_list_all
= 0, rev_list_reflog
= 0;
2623 int rev_list_index
= 0;
2624 struct option pack_objects_options
[] = {
2625 OPT_SET_INT('q', "quiet", &progress
,
2626 N_("do not show progress meter"), 0),
2627 OPT_SET_INT(0, "progress", &progress
,
2628 N_("show progress meter"), 1),
2629 OPT_SET_INT(0, "all-progress", &progress
,
2630 N_("show progress meter during object writing phase"), 2),
2631 OPT_BOOL(0, "all-progress-implied",
2632 &all_progress_implied
,
2633 N_("similar to --all-progress when progress meter is shown")),
2634 { OPTION_CALLBACK
, 0, "index-version", NULL
, N_("version[,offset]"),
2635 N_("write the pack index file in the specified idx format version"),
2636 0, option_parse_index_version
},
2637 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit
,
2638 N_("maximum size of each output pack file")),
2639 OPT_BOOL(0, "local", &local
,
2640 N_("ignore borrowed objects from alternate object store")),
2641 OPT_BOOL(0, "incremental", &incremental
,
2642 N_("ignore packed objects")),
2643 OPT_INTEGER(0, "window", &window
,
2644 N_("limit pack window by objects")),
2645 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit
,
2646 N_("limit pack window by memory in addition to object limit")),
2647 OPT_INTEGER(0, "depth", &depth
,
2648 N_("maximum length of delta chain allowed in the resulting pack")),
2649 OPT_BOOL(0, "reuse-delta", &reuse_delta
,
2650 N_("reuse existing deltas")),
2651 OPT_BOOL(0, "reuse-object", &reuse_object
,
2652 N_("reuse existing objects")),
2653 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta
,
2654 N_("use OFS_DELTA objects")),
2655 OPT_INTEGER(0, "threads", &delta_search_threads
,
2656 N_("use threads when searching for best delta matches")),
2657 OPT_BOOL(0, "non-empty", &non_empty
,
2658 N_("do not create an empty pack output")),
2659 OPT_BOOL(0, "revs", &use_internal_rev_list
,
2660 N_("read revision arguments from standard input")),
2661 { OPTION_SET_INT
, 0, "unpacked", &rev_list_unpacked
, NULL
,
2662 N_("limit the objects to those that are not yet packed"),
2663 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2664 { OPTION_SET_INT
, 0, "all", &rev_list_all
, NULL
,
2665 N_("include objects reachable from any reference"),
2666 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2667 { OPTION_SET_INT
, 0, "reflog", &rev_list_reflog
, NULL
,
2668 N_("include objects referred by reflog entries"),
2669 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2670 { OPTION_SET_INT
, 0, "indexed-objects", &rev_list_index
, NULL
,
2671 N_("include objects referred to by the index"),
2672 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2673 OPT_BOOL(0, "stdout", &pack_to_stdout
,
2674 N_("output pack to stdout")),
2675 OPT_BOOL(0, "include-tag", &include_tag
,
2676 N_("include tag objects that refer to objects to be packed")),
2677 OPT_BOOL(0, "keep-unreachable", &keep_unreachable
,
2678 N_("keep unreachable objects")),
2679 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable
,
2680 N_("pack loose unreachable objects")),
2681 { OPTION_CALLBACK
, 0, "unpack-unreachable", NULL
, N_("time"),
2682 N_("unpack unreachable objects newer than <time>"),
2683 PARSE_OPT_OPTARG
, option_parse_unpack_unreachable
},
2684 OPT_BOOL(0, "thin", &thin
,
2685 N_("create thin packs")),
2686 OPT_BOOL(0, "shallow", &shallow
,
2687 N_("create packs suitable for shallow fetches")),
2688 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep
,
2689 N_("ignore packs that have companion .keep file")),
2690 OPT_INTEGER(0, "compression", &pack_compression_level
,
2691 N_("pack compression level")),
2692 OPT_SET_INT(0, "keep-true-parents", &grafts_replace_parents
,
2693 N_("do not hide commits by grafts"), 0),
2694 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index
,
2695 N_("use a bitmap index if available to speed up counting objects")),
2696 OPT_BOOL(0, "write-bitmap-index", &write_bitmap_index
,
2697 N_("write a bitmap index together with the pack index")),
2701 check_replace_refs
= 0;
2703 reset_pack_idx_option(&pack_idx_opts
);
2704 git_config(git_pack_config
, NULL
);
2705 if (!pack_compression_seen
&& core_compression_seen
)
2706 pack_compression_level
= core_compression_level
;
2708 progress
= isatty(2);
2709 argc
= parse_options(argc
, argv
, prefix
, pack_objects_options
,
2713 base_name
= argv
[0];
2716 if (pack_to_stdout
!= !base_name
|| argc
)
2717 usage_with_options(pack_usage
, pack_objects_options
);
2719 argv_array_push(&rp
, "pack-objects");
2721 use_internal_rev_list
= 1;
2722 argv_array_push(&rp
, shallow
2723 ? "--objects-edge-aggressive"
2724 : "--objects-edge");
2726 argv_array_push(&rp
, "--objects");
2729 use_internal_rev_list
= 1;
2730 argv_array_push(&rp
, "--all");
2732 if (rev_list_reflog
) {
2733 use_internal_rev_list
= 1;
2734 argv_array_push(&rp
, "--reflog");
2736 if (rev_list_index
) {
2737 use_internal_rev_list
= 1;
2738 argv_array_push(&rp
, "--indexed-objects");
2740 if (rev_list_unpacked
) {
2741 use_internal_rev_list
= 1;
2742 argv_array_push(&rp
, "--unpacked");
2747 if (pack_compression_level
== -1)
2748 pack_compression_level
= Z_DEFAULT_COMPRESSION
;
2749 else if (pack_compression_level
< 0 || pack_compression_level
> Z_BEST_COMPRESSION
)
2750 die("bad pack compression level %d", pack_compression_level
);
2752 if (!delta_search_threads
) /* --threads=0 means autodetect */
2753 delta_search_threads
= online_cpus();
2756 if (delta_search_threads
!= 1)
2757 warning("no threads support, ignoring --threads");
2759 if (!pack_to_stdout
&& !pack_size_limit
)
2760 pack_size_limit
= pack_size_limit_cfg
;
2761 if (pack_to_stdout
&& pack_size_limit
)
2762 die("--max-pack-size cannot be used to build a pack for transfer.");
2763 if (pack_size_limit
&& pack_size_limit
< 1024*1024) {
2764 warning("minimum pack size limit is 1 MiB");
2765 pack_size_limit
= 1024*1024;
2768 if (!pack_to_stdout
&& thin
)
2769 die("--thin cannot be used to build an indexable pack.");
2771 if (keep_unreachable
&& unpack_unreachable
)
2772 die("--keep-unreachable and --unpack-unreachable are incompatible.");
2773 if (!rev_list_all
|| !rev_list_reflog
|| !rev_list_index
)
2774 unpack_unreachable_expiration
= 0;
2776 if (!use_internal_rev_list
|| !pack_to_stdout
|| is_repository_shallow())
2777 use_bitmap_index
= 0;
2779 if (pack_to_stdout
|| !rev_list_all
)
2780 write_bitmap_index
= 0;
2782 if (progress
&& all_progress_implied
)
2785 prepare_packed_git();
2788 progress_state
= start_progress(_("Counting objects"), 0);
2789 if (!use_internal_rev_list
)
2790 read_object_list_from_stdin();
2792 get_object_list(rp
.argc
, rp
.argv
);
2793 argv_array_clear(&rp
);
2795 cleanup_preferred_base();
2796 if (include_tag
&& nr_result
)
2797 for_each_ref(add_ref_tag
, NULL
);
2798 stop_progress(&progress_state
);
2800 if (non_empty
&& !nr_result
)
2803 prepare_pack(window
, depth
);
2806 fprintf(stderr
, "Total %"PRIu32
" (delta %"PRIu32
"),"
2807 " reused %"PRIu32
" (delta %"PRIu32
")\n",
2808 written
, written_delta
, reused
, reused_delta
);