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"
28 static const char *pack_usage
[] = {
29 N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
30 N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
35 * Objects we are going to pack are collected in the `to_pack` structure.
36 * It contains an array (dynamically expanded) of the object data, and a map
37 * that can resolve SHA1s to their position in the array.
39 static struct packing_data to_pack
;
41 static struct pack_idx_entry
**written_list
;
42 static uint32_t nr_result
, nr_written
;
45 static int reuse_delta
= 1, reuse_object
= 1;
46 static int keep_unreachable
, unpack_unreachable
, include_tag
;
47 static unsigned long unpack_unreachable_expiration
;
48 static int pack_loose_unreachable
;
50 static int have_non_local_packs
;
51 static int incremental
;
52 static int ignore_packed_keep
;
53 static int allow_ofs_delta
;
54 static struct pack_idx_option pack_idx_opts
;
55 static const char *base_name
;
56 static int progress
= 1;
57 static int window
= 10;
58 static unsigned long pack_size_limit
;
59 static int depth
= 50;
60 static int delta_search_threads
;
61 static int pack_to_stdout
;
62 static int num_preferred_base
;
63 static struct progress
*progress_state
;
64 static int pack_compression_level
= Z_DEFAULT_COMPRESSION
;
65 static int pack_compression_seen
;
67 static struct packed_git
*reuse_packfile
;
68 static uint32_t reuse_packfile_objects
;
69 static off_t reuse_packfile_offset
;
71 static int use_bitmap_index_default
= 1;
72 static int use_bitmap_index
= -1;
73 static int write_bitmap_index
;
74 static uint16_t write_bitmap_options
;
76 static unsigned long delta_cache_size
= 0;
77 static unsigned long max_delta_cache_size
= 256 * 1024 * 1024;
78 static unsigned long cache_max_small_delta_size
= 1000;
80 static unsigned long window_memory_limit
= 0;
85 static uint32_t written
, written_delta
;
86 static uint32_t reused
, reused_delta
;
91 static struct commit
**indexed_commits
;
92 static unsigned int indexed_commits_nr
;
93 static unsigned int indexed_commits_alloc
;
95 static void index_commit_for_bitmap(struct commit
*commit
)
97 if (indexed_commits_nr
>= indexed_commits_alloc
) {
98 indexed_commits_alloc
= (indexed_commits_alloc
+ 32) * 2;
99 REALLOC_ARRAY(indexed_commits
, indexed_commits_alloc
);
102 indexed_commits
[indexed_commits_nr
++] = commit
;
105 static void *get_delta(struct object_entry
*entry
)
107 unsigned long size
, base_size
, delta_size
;
108 void *buf
, *base_buf
, *delta_buf
;
109 enum object_type type
;
111 buf
= read_sha1_file(entry
->idx
.sha1
, &type
, &size
);
113 die("unable to read %s", sha1_to_hex(entry
->idx
.sha1
));
114 base_buf
= read_sha1_file(entry
->delta
->idx
.sha1
, &type
, &base_size
);
116 die("unable to read %s", sha1_to_hex(entry
->delta
->idx
.sha1
));
117 delta_buf
= diff_delta(base_buf
, base_size
,
118 buf
, size
, &delta_size
, 0);
119 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
120 die("delta size changed");
126 static unsigned long do_compress(void **pptr
, unsigned long size
)
130 unsigned long maxsize
;
132 git_deflate_init(&stream
, pack_compression_level
);
133 maxsize
= git_deflate_bound(&stream
, size
);
136 out
= xmalloc(maxsize
);
140 stream
.avail_in
= size
;
141 stream
.next_out
= out
;
142 stream
.avail_out
= maxsize
;
143 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
145 git_deflate_end(&stream
);
148 return stream
.total_out
;
151 static unsigned long write_large_blob_data(struct git_istream
*st
, struct sha1file
*f
,
152 const unsigned char *sha1
)
155 unsigned char ibuf
[1024 * 16];
156 unsigned char obuf
[1024 * 16];
157 unsigned long olen
= 0;
159 git_deflate_init(&stream
, pack_compression_level
);
164 readlen
= read_istream(st
, ibuf
, sizeof(ibuf
));
166 die(_("unable to read %s"), sha1_to_hex(sha1
));
168 stream
.next_in
= ibuf
;
169 stream
.avail_in
= readlen
;
170 while ((stream
.avail_in
|| readlen
== 0) &&
171 (zret
== Z_OK
|| zret
== Z_BUF_ERROR
)) {
172 stream
.next_out
= obuf
;
173 stream
.avail_out
= sizeof(obuf
);
174 zret
= git_deflate(&stream
, readlen
? 0 : Z_FINISH
);
175 sha1write(f
, obuf
, stream
.next_out
- obuf
);
176 olen
+= stream
.next_out
- obuf
;
179 die(_("deflate error (%d)"), zret
);
181 if (zret
!= Z_STREAM_END
)
182 die(_("deflate error (%d)"), zret
);
186 git_deflate_end(&stream
);
191 * we are going to reuse the existing object data as is. make
192 * sure it is not corrupt.
194 static int check_pack_inflate(struct packed_git
*p
,
195 struct pack_window
**w_curs
,
198 unsigned long expect
)
201 unsigned char fakebuf
[4096], *in
;
204 memset(&stream
, 0, sizeof(stream
));
205 git_inflate_init(&stream
);
207 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_in
);
209 stream
.next_out
= fakebuf
;
210 stream
.avail_out
= sizeof(fakebuf
);
211 st
= git_inflate(&stream
, Z_FINISH
);
212 offset
+= stream
.next_in
- in
;
213 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
214 git_inflate_end(&stream
);
215 return (st
== Z_STREAM_END
&&
216 stream
.total_out
== expect
&&
217 stream
.total_in
== len
) ? 0 : -1;
220 static void copy_pack_data(struct sha1file
*f
,
221 struct packed_git
*p
,
222 struct pack_window
**w_curs
,
230 in
= use_pack(p
, w_curs
, offset
, &avail
);
232 avail
= (unsigned long)len
;
233 sha1write(f
, in
, avail
);
239 /* Return 0 if we will bust the pack-size limit */
240 static unsigned long write_no_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
241 unsigned long limit
, int usable_delta
)
243 unsigned long size
, datalen
;
244 unsigned char header
[10], dheader
[10];
246 enum object_type type
;
248 struct git_istream
*st
= NULL
;
251 if (entry
->type
== OBJ_BLOB
&&
252 entry
->size
> big_file_threshold
&&
253 (st
= open_istream(entry
->idx
.sha1
, &type
, &size
, NULL
)) != NULL
)
256 buf
= read_sha1_file(entry
->idx
.sha1
, &type
, &size
);
258 die(_("unable to read %s"), sha1_to_hex(entry
->idx
.sha1
));
261 * make sure no cached delta data remains from a
262 * previous attempt before a pack split occurred.
264 free(entry
->delta_data
);
265 entry
->delta_data
= NULL
;
266 entry
->z_delta_size
= 0;
267 } else if (entry
->delta_data
) {
268 size
= entry
->delta_size
;
269 buf
= entry
->delta_data
;
270 entry
->delta_data
= NULL
;
271 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
272 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
274 buf
= get_delta(entry
);
275 size
= entry
->delta_size
;
276 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
277 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
280 if (st
) /* large blob case, just assume we don't compress well */
282 else if (entry
->z_delta_size
)
283 datalen
= entry
->z_delta_size
;
285 datalen
= do_compress(&buf
, size
);
288 * The object header is a byte of 'type' followed by zero or
289 * more bytes of length.
291 hdrlen
= encode_in_pack_object_header(type
, size
, header
);
293 if (type
== OBJ_OFS_DELTA
) {
295 * Deltas with relative base contain an additional
296 * encoding of the relative offset for the delta
297 * base from this object's position in the pack.
299 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
300 unsigned pos
= sizeof(dheader
) - 1;
301 dheader
[pos
] = ofs
& 127;
303 dheader
[--pos
] = 128 | (--ofs
& 127);
304 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
310 sha1write(f
, header
, hdrlen
);
311 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
312 hdrlen
+= sizeof(dheader
) - pos
;
313 } else if (type
== OBJ_REF_DELTA
) {
315 * Deltas with a base reference contain
316 * an additional 20 bytes for the base sha1.
318 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
324 sha1write(f
, header
, hdrlen
);
325 sha1write(f
, entry
->delta
->idx
.sha1
, 20);
328 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
334 sha1write(f
, header
, hdrlen
);
337 datalen
= write_large_blob_data(st
, f
, entry
->idx
.sha1
);
340 sha1write(f
, buf
, datalen
);
344 return hdrlen
+ datalen
;
347 /* Return 0 if we will bust the pack-size limit */
348 static off_t
write_reuse_object(struct sha1file
*f
, struct object_entry
*entry
,
349 unsigned long limit
, int usable_delta
)
351 struct packed_git
*p
= entry
->in_pack
;
352 struct pack_window
*w_curs
= NULL
;
353 struct revindex_entry
*revidx
;
355 enum object_type type
= entry
->type
;
357 unsigned char header
[10], dheader
[10];
361 type
= (allow_ofs_delta
&& entry
->delta
->idx
.offset
) ?
362 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
363 hdrlen
= encode_in_pack_object_header(type
, entry
->size
, header
);
365 offset
= entry
->in_pack_offset
;
366 revidx
= find_pack_revindex(p
, offset
);
367 datalen
= revidx
[1].offset
- offset
;
368 if (!pack_to_stdout
&& p
->index_version
> 1 &&
369 check_pack_crc(p
, &w_curs
, offset
, datalen
, revidx
->nr
)) {
370 error("bad packed object CRC for %s", sha1_to_hex(entry
->idx
.sha1
));
372 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
375 offset
+= entry
->in_pack_header_size
;
376 datalen
-= entry
->in_pack_header_size
;
378 if (!pack_to_stdout
&& p
->index_version
== 1 &&
379 check_pack_inflate(p
, &w_curs
, offset
, datalen
, entry
->size
)) {
380 error("corrupt packed object for %s", sha1_to_hex(entry
->idx
.sha1
));
382 return write_no_reuse_object(f
, entry
, limit
, usable_delta
);
385 if (type
== OBJ_OFS_DELTA
) {
386 off_t ofs
= entry
->idx
.offset
- entry
->delta
->idx
.offset
;
387 unsigned pos
= sizeof(dheader
) - 1;
388 dheader
[pos
] = ofs
& 127;
390 dheader
[--pos
] = 128 | (--ofs
& 127);
391 if (limit
&& hdrlen
+ sizeof(dheader
) - pos
+ datalen
+ 20 >= limit
) {
395 sha1write(f
, header
, hdrlen
);
396 sha1write(f
, dheader
+ pos
, sizeof(dheader
) - pos
);
397 hdrlen
+= sizeof(dheader
) - pos
;
399 } else if (type
== OBJ_REF_DELTA
) {
400 if (limit
&& hdrlen
+ 20 + datalen
+ 20 >= limit
) {
404 sha1write(f
, header
, hdrlen
);
405 sha1write(f
, entry
->delta
->idx
.sha1
, 20);
409 if (limit
&& hdrlen
+ datalen
+ 20 >= limit
) {
413 sha1write(f
, header
, hdrlen
);
415 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
418 return hdrlen
+ datalen
;
421 /* Return 0 if we will bust the pack-size limit */
422 static off_t
write_object(struct sha1file
*f
,
423 struct object_entry
*entry
,
428 int usable_delta
, to_reuse
;
433 /* apply size limit if limited packsize and not first object */
434 if (!pack_size_limit
|| !nr_written
)
436 else if (pack_size_limit
<= write_offset
)
438 * the earlier object did not fit the limit; avoid
439 * mistaking this with unlimited (i.e. limit = 0).
443 limit
= pack_size_limit
- write_offset
;
446 usable_delta
= 0; /* no delta */
447 else if (!pack_size_limit
)
448 usable_delta
= 1; /* unlimited packfile */
449 else if (entry
->delta
->idx
.offset
== (off_t
)-1)
450 usable_delta
= 0; /* base was written to another pack */
451 else if (entry
->delta
->idx
.offset
)
452 usable_delta
= 1; /* base already exists in this pack */
454 usable_delta
= 0; /* base could end up in another pack */
457 to_reuse
= 0; /* explicit */
458 else if (!entry
->in_pack
)
459 to_reuse
= 0; /* can't reuse what we don't have */
460 else if (entry
->type
== OBJ_REF_DELTA
|| entry
->type
== OBJ_OFS_DELTA
)
461 /* check_object() decided it for us ... */
462 to_reuse
= usable_delta
;
463 /* ... but pack split may override that */
464 else if (entry
->type
!= entry
->in_pack_type
)
465 to_reuse
= 0; /* pack has delta which is unusable */
466 else if (entry
->delta
)
467 to_reuse
= 0; /* we want to pack afresh */
469 to_reuse
= 1; /* we have it in-pack undeltified,
470 * and we do not need to deltify it.
474 len
= write_no_reuse_object(f
, entry
, limit
, usable_delta
);
476 len
= write_reuse_object(f
, entry
, limit
, usable_delta
);
484 entry
->idx
.crc32
= crc32_end(f
);
488 enum write_one_status
{
489 WRITE_ONE_SKIP
= -1, /* already written */
490 WRITE_ONE_BREAK
= 0, /* writing this will bust the limit; not written */
491 WRITE_ONE_WRITTEN
= 1, /* normal */
492 WRITE_ONE_RECURSIVE
= 2 /* already scheduled to be written */
495 static enum write_one_status
write_one(struct sha1file
*f
,
496 struct object_entry
*e
,
503 * we set offset to 1 (which is an impossible value) to mark
504 * the fact that this object is involved in "write its base
505 * first before writing a deltified object" recursion.
507 recursing
= (e
->idx
.offset
== 1);
509 warning("recursive delta detected for object %s",
510 sha1_to_hex(e
->idx
.sha1
));
511 return WRITE_ONE_RECURSIVE
;
512 } else if (e
->idx
.offset
|| e
->preferred_base
) {
513 /* offset is non zero if object is written already. */
514 return WRITE_ONE_SKIP
;
517 /* if we are deltified, write out base object first. */
519 e
->idx
.offset
= 1; /* now recurse */
520 switch (write_one(f
, e
->delta
, offset
)) {
521 case WRITE_ONE_RECURSIVE
:
522 /* we cannot depend on this one */
527 case WRITE_ONE_BREAK
:
528 e
->idx
.offset
= recursing
;
529 return WRITE_ONE_BREAK
;
533 e
->idx
.offset
= *offset
;
534 size
= write_object(f
, e
, *offset
);
536 e
->idx
.offset
= recursing
;
537 return WRITE_ONE_BREAK
;
539 written_list
[nr_written
++] = &e
->idx
;
541 /* make sure off_t is sufficiently large not to wrap */
542 if (signed_add_overflows(*offset
, size
))
543 die("pack too large for current definition of off_t");
545 return WRITE_ONE_WRITTEN
;
548 static int mark_tagged(const char *path
, const struct object_id
*oid
, int flag
,
551 unsigned char peeled
[20];
552 struct object_entry
*entry
= packlist_find(&to_pack
, oid
->hash
, NULL
);
556 if (!peel_ref(path
, peeled
)) {
557 entry
= packlist_find(&to_pack
, peeled
, NULL
);
564 static inline void add_to_write_order(struct object_entry
**wo
,
566 struct object_entry
*e
)
574 static void add_descendants_to_write_order(struct object_entry
**wo
,
576 struct object_entry
*e
)
578 int add_to_order
= 1;
581 struct object_entry
*s
;
582 /* add this node... */
583 add_to_write_order(wo
, endp
, e
);
584 /* all its siblings... */
585 for (s
= e
->delta_sibling
; s
; s
= s
->delta_sibling
) {
586 add_to_write_order(wo
, endp
, s
);
589 /* drop down a level to add left subtree nodes if possible */
590 if (e
->delta_child
) {
595 /* our sibling might have some children, it is next */
596 if (e
->delta_sibling
) {
597 e
= e
->delta_sibling
;
600 /* go back to our parent node */
602 while (e
&& !e
->delta_sibling
) {
603 /* we're on the right side of a subtree, keep
604 * going up until we can go right again */
608 /* done- we hit our original root node */
611 /* pass it off to sibling at this level */
612 e
= e
->delta_sibling
;
617 static void add_family_to_write_order(struct object_entry
**wo
,
619 struct object_entry
*e
)
621 struct object_entry
*root
;
623 for (root
= e
; root
->delta
; root
= root
->delta
)
625 add_descendants_to_write_order(wo
, endp
, root
);
628 static struct object_entry
**compute_write_order(void)
630 unsigned int i
, wo_end
, last_untagged
;
632 struct object_entry
**wo
;
633 struct object_entry
*objects
= to_pack
.objects
;
635 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
636 objects
[i
].tagged
= 0;
637 objects
[i
].filled
= 0;
638 objects
[i
].delta_child
= NULL
;
639 objects
[i
].delta_sibling
= NULL
;
643 * Fully connect delta_child/delta_sibling network.
644 * Make sure delta_sibling is sorted in the original
647 for (i
= to_pack
.nr_objects
; i
> 0;) {
648 struct object_entry
*e
= &objects
[--i
];
651 /* Mark me as the first child */
652 e
->delta_sibling
= e
->delta
->delta_child
;
653 e
->delta
->delta_child
= e
;
657 * Mark objects that are at the tip of tags.
659 for_each_tag_ref(mark_tagged
, NULL
);
662 * Give the objects in the original recency order until
663 * we see a tagged tip.
665 ALLOC_ARRAY(wo
, to_pack
.nr_objects
);
666 for (i
= wo_end
= 0; i
< to_pack
.nr_objects
; i
++) {
667 if (objects
[i
].tagged
)
669 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
674 * Then fill all the tagged tips.
676 for (; i
< to_pack
.nr_objects
; i
++) {
677 if (objects
[i
].tagged
)
678 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
682 * And then all remaining commits and tags.
684 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
685 if (objects
[i
].type
!= OBJ_COMMIT
&&
686 objects
[i
].type
!= OBJ_TAG
)
688 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
692 * And then all the trees.
694 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
695 if (objects
[i
].type
!= OBJ_TREE
)
697 add_to_write_order(wo
, &wo_end
, &objects
[i
]);
701 * Finally all the rest in really tight order
703 for (i
= last_untagged
; i
< to_pack
.nr_objects
; i
++) {
704 if (!objects
[i
].filled
)
705 add_family_to_write_order(wo
, &wo_end
, &objects
[i
]);
708 if (wo_end
!= to_pack
.nr_objects
)
709 die("ordered %u objects, expected %"PRIu32
, wo_end
, to_pack
.nr_objects
);
714 static off_t
write_reused_pack(struct sha1file
*f
)
716 unsigned char buffer
[8192];
717 off_t to_write
, total
;
720 if (!is_pack_valid(reuse_packfile
))
721 die("packfile is invalid: %s", reuse_packfile
->pack_name
);
723 fd
= git_open(reuse_packfile
->pack_name
);
725 die_errno("unable to open packfile for reuse: %s",
726 reuse_packfile
->pack_name
);
728 if (lseek(fd
, sizeof(struct pack_header
), SEEK_SET
) == -1)
729 die_errno("unable to seek in reused packfile");
731 if (reuse_packfile_offset
< 0)
732 reuse_packfile_offset
= reuse_packfile
->pack_size
- 20;
734 total
= to_write
= reuse_packfile_offset
- sizeof(struct pack_header
);
737 int read_pack
= xread(fd
, buffer
, sizeof(buffer
));
740 die_errno("unable to read from reused packfile");
742 if (read_pack
> to_write
)
743 read_pack
= to_write
;
745 sha1write(f
, buffer
, read_pack
);
746 to_write
-= read_pack
;
749 * We don't know the actual number of objects written,
750 * only how many bytes written, how many bytes total, and
751 * how many objects total. So we can fake it by pretending all
752 * objects we are writing are the same size. This gives us a
753 * smooth progress meter, and at the end it matches the true
756 written
= reuse_packfile_objects
*
757 (((double)(total
- to_write
)) / total
);
758 display_progress(progress_state
, written
);
762 written
= reuse_packfile_objects
;
763 display_progress(progress_state
, written
);
764 return reuse_packfile_offset
- sizeof(struct pack_header
);
767 static const char no_split_warning
[] = N_(
768 "disabling bitmap writing, packs are split due to pack.packSizeLimit"
771 static void write_pack_file(void)
776 uint32_t nr_remaining
= nr_result
;
777 time_t last_mtime
= 0;
778 struct object_entry
**write_order
;
780 if (progress
> pack_to_stdout
)
781 progress_state
= start_progress(_("Writing objects"), nr_result
);
782 ALLOC_ARRAY(written_list
, to_pack
.nr_objects
);
783 write_order
= compute_write_order();
786 unsigned char sha1
[20];
787 char *pack_tmp_name
= NULL
;
790 f
= sha1fd_throughput(1, "<stdout>", progress_state
);
792 f
= create_tmp_packfile(&pack_tmp_name
);
794 offset
= write_pack_header(f
, nr_remaining
);
796 if (reuse_packfile
) {
798 assert(pack_to_stdout
);
800 packfile_size
= write_reused_pack(f
);
801 offset
+= packfile_size
;
805 for (; i
< to_pack
.nr_objects
; i
++) {
806 struct object_entry
*e
= write_order
[i
];
807 if (write_one(f
, e
, &offset
) == WRITE_ONE_BREAK
)
809 display_progress(progress_state
, written
);
813 * Did we write the wrong # entries in the header?
814 * If so, rewrite it like in fast-import
816 if (pack_to_stdout
) {
817 sha1close(f
, sha1
, CSUM_CLOSE
);
818 } else if (nr_written
== nr_remaining
) {
819 sha1close(f
, sha1
, CSUM_FSYNC
);
821 int fd
= sha1close(f
, sha1
, 0);
822 fixup_pack_header_footer(fd
, sha1
, pack_tmp_name
,
823 nr_written
, sha1
, offset
);
825 if (write_bitmap_index
) {
826 warning(_(no_split_warning
));
827 write_bitmap_index
= 0;
831 if (!pack_to_stdout
) {
833 struct strbuf tmpname
= STRBUF_INIT
;
836 * Packs are runtime accessed in their mtime
837 * order since newer packs are more likely to contain
838 * younger objects. So if we are creating multiple
839 * packs then we should modify the mtime of later ones
840 * to preserve this property.
842 if (stat(pack_tmp_name
, &st
) < 0) {
843 warning_errno("failed to stat %s", pack_tmp_name
);
844 } else if (!last_mtime
) {
845 last_mtime
= st
.st_mtime
;
848 utb
.actime
= st
.st_atime
;
849 utb
.modtime
= --last_mtime
;
850 if (utime(pack_tmp_name
, &utb
) < 0)
851 warning_errno("failed utime() on %s", pack_tmp_name
);
854 strbuf_addf(&tmpname
, "%s-", base_name
);
856 if (write_bitmap_index
) {
857 bitmap_writer_set_checksum(sha1
);
858 bitmap_writer_build_type_index(written_list
, nr_written
);
861 finish_tmp_packfile(&tmpname
, pack_tmp_name
,
862 written_list
, nr_written
,
863 &pack_idx_opts
, sha1
);
865 if (write_bitmap_index
) {
866 strbuf_addf(&tmpname
, "%s.bitmap", sha1_to_hex(sha1
));
868 stop_progress(&progress_state
);
870 bitmap_writer_show_progress(progress
);
871 bitmap_writer_reuse_bitmaps(&to_pack
);
872 bitmap_writer_select_commits(indexed_commits
, indexed_commits_nr
, -1);
873 bitmap_writer_build(&to_pack
);
874 bitmap_writer_finish(written_list
, nr_written
,
875 tmpname
.buf
, write_bitmap_options
);
876 write_bitmap_index
= 0;
879 strbuf_release(&tmpname
);
881 puts(sha1_to_hex(sha1
));
884 /* mark written objects as written to previous pack */
885 for (j
= 0; j
< nr_written
; j
++) {
886 written_list
[j
]->offset
= (off_t
)-1;
888 nr_remaining
-= nr_written
;
889 } while (nr_remaining
&& i
< to_pack
.nr_objects
);
893 stop_progress(&progress_state
);
894 if (written
!= nr_result
)
895 die("wrote %"PRIu32
" objects while expecting %"PRIu32
,
899 static void setup_delta_attr_check(struct git_attr_check
*check
)
901 static struct git_attr
*attr_delta
;
904 attr_delta
= git_attr("delta");
906 check
[0].attr
= attr_delta
;
909 static int no_try_delta(const char *path
)
911 struct git_attr_check check
[1];
913 setup_delta_attr_check(check
);
914 if (git_check_attr(path
, ARRAY_SIZE(check
), check
))
916 if (ATTR_FALSE(check
->value
))
922 * When adding an object, check whether we have already added it
923 * to our packing list. If so, we can skip. However, if we are
924 * being asked to excludei t, but the previous mention was to include
925 * it, make sure to adjust its flags and tweak our numbers accordingly.
927 * As an optimization, we pass out the index position where we would have
928 * found the item, since that saves us from having to look it up again a
929 * few lines later when we want to add the new entry.
931 static int have_duplicate_entry(const unsigned char *sha1
,
935 struct object_entry
*entry
;
937 entry
= packlist_find(&to_pack
, sha1
, index_pos
);
942 if (!entry
->preferred_base
)
944 entry
->preferred_base
= 1;
950 static int want_found_object(int exclude
, struct packed_git
*p
)
958 * When asked to do --local (do not include an object that appears in a
959 * pack we borrow from elsewhere) or --honor-pack-keep (do not include
960 * an object that appears in a pack marked with .keep), finding a pack
961 * that matches the criteria is sufficient for us to decide to omit it.
962 * However, even if this pack does not satisfy the criteria, we need to
963 * make sure no copy of this object appears in _any_ pack that makes us
964 * to omit the object, so we need to check all the packs.
966 * We can however first check whether these options can possible matter;
967 * if they do not matter we know we want the object in generated pack.
968 * Otherwise, we signal "-1" at the end to tell the caller that we do
969 * not know either way, and it needs to check more packs.
971 if (!ignore_packed_keep
&&
972 (!local
|| !have_non_local_packs
))
975 if (local
&& !p
->pack_local
)
977 if (ignore_packed_keep
&& p
->pack_local
&& p
->pack_keep
)
980 /* we don't know yet; keep looking for more packs */
985 * Check whether we want the object in the pack (e.g., we do not want
986 * objects found in non-local stores if the "--local" option was used).
988 * If the caller already knows an existing pack it wants to take the object
989 * from, that is passed in *found_pack and *found_offset; otherwise this
990 * function finds if there is any pack that has the object and returns the pack
991 * and its offset in these variables.
993 static int want_object_in_pack(const unsigned char *sha1
,
995 struct packed_git
**found_pack
,
998 struct mru_entry
*entry
;
1001 if (!exclude
&& local
&& has_loose_object_nonlocal(sha1
))
1005 * If we already know the pack object lives in, start checks from that
1006 * pack - in the usual case when neither --local was given nor .keep files
1007 * are present we will determine the answer right now.
1010 want
= want_found_object(exclude
, *found_pack
);
1015 for (entry
= packed_git_mru
->head
; entry
; entry
= entry
->next
) {
1016 struct packed_git
*p
= entry
->item
;
1019 if (p
== *found_pack
)
1020 offset
= *found_offset
;
1022 offset
= find_pack_entry_one(sha1
, p
);
1026 if (!is_pack_valid(p
))
1028 *found_offset
= offset
;
1031 want
= want_found_object(exclude
, p
);
1032 if (!exclude
&& want
> 0)
1033 mru_mark(packed_git_mru
, entry
);
1042 static void create_object_entry(const unsigned char *sha1
,
1043 enum object_type type
,
1048 struct packed_git
*found_pack
,
1051 struct object_entry
*entry
;
1053 entry
= packlist_alloc(&to_pack
, sha1
, index_pos
);
1058 entry
->preferred_base
= 1;
1062 entry
->in_pack
= found_pack
;
1063 entry
->in_pack_offset
= found_offset
;
1066 entry
->no_try_delta
= no_try_delta
;
1069 static const char no_closure_warning
[] = N_(
1070 "disabling bitmap writing, as some objects are not being packed"
1073 static int add_object_entry(const unsigned char *sha1
, enum object_type type
,
1074 const char *name
, int exclude
)
1076 struct packed_git
*found_pack
= NULL
;
1077 off_t found_offset
= 0;
1080 if (have_duplicate_entry(sha1
, exclude
, &index_pos
))
1083 if (!want_object_in_pack(sha1
, exclude
, &found_pack
, &found_offset
)) {
1084 /* The pack is missing an object, so it will not have closure */
1085 if (write_bitmap_index
) {
1086 warning(_(no_closure_warning
));
1087 write_bitmap_index
= 0;
1092 create_object_entry(sha1
, type
, pack_name_hash(name
),
1093 exclude
, name
&& no_try_delta(name
),
1094 index_pos
, found_pack
, found_offset
);
1096 display_progress(progress_state
, nr_result
);
1100 static int add_object_entry_from_bitmap(const unsigned char *sha1
,
1101 enum object_type type
,
1102 int flags
, uint32_t name_hash
,
1103 struct packed_git
*pack
, off_t offset
)
1107 if (have_duplicate_entry(sha1
, 0, &index_pos
))
1110 if (!want_object_in_pack(sha1
, 0, &pack
, &offset
))
1113 create_object_entry(sha1
, type
, name_hash
, 0, 0, index_pos
, pack
, offset
);
1115 display_progress(progress_state
, nr_result
);
1119 struct pbase_tree_cache
{
1120 unsigned char sha1
[20];
1124 unsigned long tree_size
;
1127 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
1128 static int pbase_tree_cache_ix(const unsigned char *sha1
)
1130 return sha1
[0] % ARRAY_SIZE(pbase_tree_cache
);
1132 static int pbase_tree_cache_ix_incr(int ix
)
1134 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
1137 static struct pbase_tree
{
1138 struct pbase_tree
*next
;
1139 /* This is a phony "cache" entry; we are not
1140 * going to evict it or find it through _get()
1141 * mechanism -- this is for the toplevel node that
1142 * would almost always change with any commit.
1144 struct pbase_tree_cache pcache
;
1147 static struct pbase_tree_cache
*pbase_tree_get(const unsigned char *sha1
)
1149 struct pbase_tree_cache
*ent
, *nent
;
1152 enum object_type type
;
1154 int my_ix
= pbase_tree_cache_ix(sha1
);
1155 int available_ix
= -1;
1157 /* pbase-tree-cache acts as a limited hashtable.
1158 * your object will be found at your index or within a few
1159 * slots after that slot if it is cached.
1161 for (neigh
= 0; neigh
< 8; neigh
++) {
1162 ent
= pbase_tree_cache
[my_ix
];
1163 if (ent
&& !hashcmp(ent
->sha1
, sha1
)) {
1167 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
1168 ((0 <= available_ix
) &&
1169 (!ent
&& pbase_tree_cache
[available_ix
])))
1170 available_ix
= my_ix
;
1173 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
1176 /* Did not find one. Either we got a bogus request or
1177 * we need to read and perhaps cache.
1179 data
= read_sha1_file(sha1
, &type
, &size
);
1182 if (type
!= OBJ_TREE
) {
1187 /* We need to either cache or return a throwaway copy */
1189 if (available_ix
< 0)
1192 ent
= pbase_tree_cache
[available_ix
];
1193 my_ix
= available_ix
;
1197 nent
= xmalloc(sizeof(*nent
));
1198 nent
->temporary
= (available_ix
< 0);
1201 /* evict and reuse */
1202 free(ent
->tree_data
);
1205 hashcpy(nent
->sha1
, sha1
);
1206 nent
->tree_data
= data
;
1207 nent
->tree_size
= size
;
1209 if (!nent
->temporary
)
1210 pbase_tree_cache
[my_ix
] = nent
;
1214 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
1216 if (!cache
->temporary
) {
1220 free(cache
->tree_data
);
1224 static int name_cmp_len(const char *name
)
1227 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
1232 static void add_pbase_object(struct tree_desc
*tree
,
1235 const char *fullname
)
1237 struct name_entry entry
;
1240 while (tree_entry(tree
,&entry
)) {
1241 if (S_ISGITLINK(entry
.mode
))
1243 cmp
= tree_entry_len(&entry
) != cmplen
? 1 :
1244 memcmp(name
, entry
.path
, cmplen
);
1249 if (name
[cmplen
] != '/') {
1250 add_object_entry(entry
.oid
->hash
,
1251 object_type(entry
.mode
),
1255 if (S_ISDIR(entry
.mode
)) {
1256 struct tree_desc sub
;
1257 struct pbase_tree_cache
*tree
;
1258 const char *down
= name
+cmplen
+1;
1259 int downlen
= name_cmp_len(down
);
1261 tree
= pbase_tree_get(entry
.oid
->hash
);
1264 init_tree_desc(&sub
, tree
->tree_data
, tree
->tree_size
);
1266 add_pbase_object(&sub
, down
, downlen
, fullname
);
1267 pbase_tree_put(tree
);
1272 static unsigned *done_pbase_paths
;
1273 static int done_pbase_paths_num
;
1274 static int done_pbase_paths_alloc
;
1275 static int done_pbase_path_pos(unsigned hash
)
1278 int hi
= done_pbase_paths_num
;
1280 int mi
= (hi
+ lo
) / 2;
1281 if (done_pbase_paths
[mi
] == hash
)
1283 if (done_pbase_paths
[mi
] < hash
)
1291 static int check_pbase_path(unsigned hash
)
1293 int pos
= (!done_pbase_paths
) ? -1 : done_pbase_path_pos(hash
);
1297 ALLOC_GROW(done_pbase_paths
,
1298 done_pbase_paths_num
+ 1,
1299 done_pbase_paths_alloc
);
1300 done_pbase_paths_num
++;
1301 if (pos
< done_pbase_paths_num
)
1302 memmove(done_pbase_paths
+ pos
+ 1,
1303 done_pbase_paths
+ pos
,
1304 (done_pbase_paths_num
- pos
- 1) * sizeof(unsigned));
1305 done_pbase_paths
[pos
] = hash
;
1309 static void add_preferred_base_object(const char *name
)
1311 struct pbase_tree
*it
;
1313 unsigned hash
= pack_name_hash(name
);
1315 if (!num_preferred_base
|| check_pbase_path(hash
))
1318 cmplen
= name_cmp_len(name
);
1319 for (it
= pbase_tree
; it
; it
= it
->next
) {
1321 add_object_entry(it
->pcache
.sha1
, OBJ_TREE
, NULL
, 1);
1324 struct tree_desc tree
;
1325 init_tree_desc(&tree
, it
->pcache
.tree_data
, it
->pcache
.tree_size
);
1326 add_pbase_object(&tree
, name
, cmplen
, name
);
1331 static void add_preferred_base(unsigned char *sha1
)
1333 struct pbase_tree
*it
;
1336 unsigned char tree_sha1
[20];
1338 if (window
<= num_preferred_base
++)
1341 data
= read_object_with_reference(sha1
, tree_type
, &size
, tree_sha1
);
1345 for (it
= pbase_tree
; it
; it
= it
->next
) {
1346 if (!hashcmp(it
->pcache
.sha1
, tree_sha1
)) {
1352 it
= xcalloc(1, sizeof(*it
));
1353 it
->next
= pbase_tree
;
1356 hashcpy(it
->pcache
.sha1
, tree_sha1
);
1357 it
->pcache
.tree_data
= data
;
1358 it
->pcache
.tree_size
= size
;
1361 static void cleanup_preferred_base(void)
1363 struct pbase_tree
*it
;
1369 struct pbase_tree
*this = it
;
1371 free(this->pcache
.tree_data
);
1375 for (i
= 0; i
< ARRAY_SIZE(pbase_tree_cache
); i
++) {
1376 if (!pbase_tree_cache
[i
])
1378 free(pbase_tree_cache
[i
]->tree_data
);
1379 free(pbase_tree_cache
[i
]);
1380 pbase_tree_cache
[i
] = NULL
;
1383 free(done_pbase_paths
);
1384 done_pbase_paths
= NULL
;
1385 done_pbase_paths_num
= done_pbase_paths_alloc
= 0;
1388 static void check_object(struct object_entry
*entry
)
1390 if (entry
->in_pack
) {
1391 struct packed_git
*p
= entry
->in_pack
;
1392 struct pack_window
*w_curs
= NULL
;
1393 const unsigned char *base_ref
= NULL
;
1394 struct object_entry
*base_entry
;
1395 unsigned long used
, used_0
;
1396 unsigned long avail
;
1398 unsigned char *buf
, c
;
1400 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
1403 * We want in_pack_type even if we do not reuse delta
1404 * since non-delta representations could still be reused.
1406 used
= unpack_object_header_buffer(buf
, avail
,
1407 &entry
->in_pack_type
,
1413 * Determine if this is a delta and if so whether we can
1414 * reuse it or not. Otherwise let's find out as cheaply as
1415 * possible what the actual type and size for this object is.
1417 switch (entry
->in_pack_type
) {
1419 /* Not a delta hence we've already got all we need. */
1420 entry
->type
= entry
->in_pack_type
;
1421 entry
->in_pack_header_size
= used
;
1422 if (entry
->type
< OBJ_COMMIT
|| entry
->type
> OBJ_BLOB
)
1424 unuse_pack(&w_curs
);
1427 if (reuse_delta
&& !entry
->preferred_base
)
1428 base_ref
= use_pack(p
, &w_curs
,
1429 entry
->in_pack_offset
+ used
, NULL
);
1430 entry
->in_pack_header_size
= used
+ 20;
1433 buf
= use_pack(p
, &w_curs
,
1434 entry
->in_pack_offset
+ used
, NULL
);
1440 if (!ofs
|| MSB(ofs
, 7)) {
1441 error("delta base offset overflow in pack for %s",
1442 sha1_to_hex(entry
->idx
.sha1
));
1446 ofs
= (ofs
<< 7) + (c
& 127);
1448 ofs
= entry
->in_pack_offset
- ofs
;
1449 if (ofs
<= 0 || ofs
>= entry
->in_pack_offset
) {
1450 error("delta base offset out of bound for %s",
1451 sha1_to_hex(entry
->idx
.sha1
));
1454 if (reuse_delta
&& !entry
->preferred_base
) {
1455 struct revindex_entry
*revidx
;
1456 revidx
= find_pack_revindex(p
, ofs
);
1459 base_ref
= nth_packed_object_sha1(p
, revidx
->nr
);
1461 entry
->in_pack_header_size
= used
+ used_0
;
1465 if (base_ref
&& (base_entry
= packlist_find(&to_pack
, base_ref
, NULL
))) {
1467 * If base_ref was set above that means we wish to
1468 * reuse delta data, and we even found that base
1469 * in the list of objects we want to pack. Goodie!
1471 * Depth value does not matter - find_deltas() will
1472 * never consider reused delta as the base object to
1473 * deltify other objects against, in order to avoid
1476 entry
->type
= entry
->in_pack_type
;
1477 entry
->delta
= base_entry
;
1478 entry
->delta_size
= entry
->size
;
1479 entry
->delta_sibling
= base_entry
->delta_child
;
1480 base_entry
->delta_child
= entry
;
1481 unuse_pack(&w_curs
);
1487 * This must be a delta and we already know what the
1488 * final object type is. Let's extract the actual
1489 * object size from the delta header.
1491 entry
->size
= get_size_from_delta(p
, &w_curs
,
1492 entry
->in_pack_offset
+ entry
->in_pack_header_size
);
1493 if (entry
->size
== 0)
1495 unuse_pack(&w_curs
);
1500 * No choice but to fall back to the recursive delta walk
1501 * with sha1_object_info() to find about the object type
1505 unuse_pack(&w_curs
);
1508 entry
->type
= sha1_object_info(entry
->idx
.sha1
, &entry
->size
);
1510 * The error condition is checked in prepare_pack(). This is
1511 * to permit a missing preferred base object to be ignored
1512 * as a preferred base. Doing so can result in a larger
1513 * pack file, but the transfer will still take place.
1517 static int pack_offset_sort(const void *_a
, const void *_b
)
1519 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1520 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1522 /* avoid filesystem trashing with loose objects */
1523 if (!a
->in_pack
&& !b
->in_pack
)
1524 return hashcmp(a
->idx
.sha1
, b
->idx
.sha1
);
1526 if (a
->in_pack
< b
->in_pack
)
1528 if (a
->in_pack
> b
->in_pack
)
1530 return a
->in_pack_offset
< b
->in_pack_offset
? -1 :
1531 (a
->in_pack_offset
> b
->in_pack_offset
);
1535 * Drop an on-disk delta we were planning to reuse. Naively, this would
1536 * just involve blanking out the "delta" field, but we have to deal
1537 * with some extra book-keeping:
1539 * 1. Removing ourselves from the delta_sibling linked list.
1541 * 2. Updating our size/type to the non-delta representation. These were
1542 * either not recorded initially (size) or overwritten with the delta type
1543 * (type) when check_object() decided to reuse the delta.
1545 * 3. Resetting our delta depth, as we are now a base object.
1547 static void drop_reused_delta(struct object_entry
*entry
)
1549 struct object_entry
**p
= &entry
->delta
->delta_child
;
1550 struct object_info oi
= OBJECT_INFO_INIT
;
1554 *p
= (*p
)->delta_sibling
;
1556 p
= &(*p
)->delta_sibling
;
1558 entry
->delta
= NULL
;
1561 oi
.sizep
= &entry
->size
;
1562 oi
.typep
= &entry
->type
;
1563 if (packed_object_info(entry
->in_pack
, entry
->in_pack_offset
, &oi
) < 0) {
1565 * We failed to get the info from this pack for some reason;
1566 * fall back to sha1_object_info, which may find another copy.
1567 * And if that fails, the error will be recorded in entry->type
1568 * and dealt with in prepare_pack().
1570 entry
->type
= sha1_object_info(entry
->idx
.sha1
, &entry
->size
);
1575 * Follow the chain of deltas from this entry onward, throwing away any links
1576 * that cause us to hit a cycle (as determined by the DFS state flags in
1579 * We also detect too-long reused chains that would violate our --depth
1582 static void break_delta_chains(struct object_entry
*entry
)
1584 /* If it's not a delta, it can't be part of a cycle. */
1585 if (!entry
->delta
) {
1586 entry
->dfs_state
= DFS_DONE
;
1590 switch (entry
->dfs_state
) {
1593 * This is the first time we've seen the object. We mark it as
1594 * part of the active potential cycle and recurse.
1596 entry
->dfs_state
= DFS_ACTIVE
;
1597 break_delta_chains(entry
->delta
);
1600 * Once we've recursed, our base (if we still have one) knows
1601 * its depth, so we can compute ours (and check it against
1605 entry
->depth
= entry
->delta
->depth
+ 1;
1606 if (entry
->depth
> depth
)
1607 drop_reused_delta(entry
);
1610 entry
->dfs_state
= DFS_DONE
;
1614 /* object already examined, and not part of a cycle */
1619 * We found a cycle that needs broken. It would be correct to
1620 * break any link in the chain, but it's convenient to
1623 drop_reused_delta(entry
);
1624 entry
->dfs_state
= DFS_DONE
;
1629 static void get_object_details(void)
1632 struct object_entry
**sorted_by_offset
;
1634 sorted_by_offset
= xcalloc(to_pack
.nr_objects
, sizeof(struct object_entry
*));
1635 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
1636 sorted_by_offset
[i
] = to_pack
.objects
+ i
;
1637 QSORT(sorted_by_offset
, to_pack
.nr_objects
, pack_offset_sort
);
1639 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
1640 struct object_entry
*entry
= sorted_by_offset
[i
];
1641 check_object(entry
);
1642 if (big_file_threshold
< entry
->size
)
1643 entry
->no_try_delta
= 1;
1647 * This must happen in a second pass, since we rely on the delta
1648 * information for the whole list being completed.
1650 for (i
= 0; i
< to_pack
.nr_objects
; i
++)
1651 break_delta_chains(&to_pack
.objects
[i
]);
1653 free(sorted_by_offset
);
1657 * We search for deltas in a list sorted by type, by filename hash, and then
1658 * by size, so that we see progressively smaller and smaller files.
1659 * That's because we prefer deltas to be from the bigger file
1660 * to the smaller -- deletes are potentially cheaper, but perhaps
1661 * more importantly, the bigger file is likely the more recent
1662 * one. The deepest deltas are therefore the oldest objects which are
1663 * less susceptible to be accessed often.
1665 static int type_size_sort(const void *_a
, const void *_b
)
1667 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1668 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1670 if (a
->type
> b
->type
)
1672 if (a
->type
< b
->type
)
1674 if (a
->hash
> b
->hash
)
1676 if (a
->hash
< b
->hash
)
1678 if (a
->preferred_base
> b
->preferred_base
)
1680 if (a
->preferred_base
< b
->preferred_base
)
1682 if (a
->size
> b
->size
)
1684 if (a
->size
< b
->size
)
1686 return a
< b
? -1 : (a
> b
); /* newest first */
1690 struct object_entry
*entry
;
1692 struct delta_index
*index
;
1696 static int delta_cacheable(unsigned long src_size
, unsigned long trg_size
,
1697 unsigned long delta_size
)
1699 if (max_delta_cache_size
&& delta_cache_size
+ delta_size
> max_delta_cache_size
)
1702 if (delta_size
< cache_max_small_delta_size
)
1705 /* cache delta, if objects are large enough compared to delta size */
1706 if ((src_size
>> 20) + (trg_size
>> 21) > (delta_size
>> 10))
1714 static pthread_mutex_t read_mutex
;
1715 #define read_lock() pthread_mutex_lock(&read_mutex)
1716 #define read_unlock() pthread_mutex_unlock(&read_mutex)
1718 static pthread_mutex_t cache_mutex
;
1719 #define cache_lock() pthread_mutex_lock(&cache_mutex)
1720 #define cache_unlock() pthread_mutex_unlock(&cache_mutex)
1722 static pthread_mutex_t progress_mutex
;
1723 #define progress_lock() pthread_mutex_lock(&progress_mutex)
1724 #define progress_unlock() pthread_mutex_unlock(&progress_mutex)
1728 #define read_lock() (void)0
1729 #define read_unlock() (void)0
1730 #define cache_lock() (void)0
1731 #define cache_unlock() (void)0
1732 #define progress_lock() (void)0
1733 #define progress_unlock() (void)0
1737 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
1738 unsigned max_depth
, unsigned long *mem_usage
)
1740 struct object_entry
*trg_entry
= trg
->entry
;
1741 struct object_entry
*src_entry
= src
->entry
;
1742 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
1744 enum object_type type
;
1747 /* Don't bother doing diffs between different types */
1748 if (trg_entry
->type
!= src_entry
->type
)
1752 * We do not bother to try a delta that we discarded on an
1753 * earlier try, but only when reusing delta data. Note that
1754 * src_entry that is marked as the preferred_base should always
1755 * be considered, as even if we produce a suboptimal delta against
1756 * it, we will still save the transfer cost, as we already know
1757 * the other side has it and we won't send src_entry at all.
1759 if (reuse_delta
&& trg_entry
->in_pack
&&
1760 trg_entry
->in_pack
== src_entry
->in_pack
&&
1761 !src_entry
->preferred_base
&&
1762 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
1763 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
1766 /* Let's not bust the allowed depth. */
1767 if (src
->depth
>= max_depth
)
1770 /* Now some size filtering heuristics. */
1771 trg_size
= trg_entry
->size
;
1772 if (!trg_entry
->delta
) {
1773 max_size
= trg_size
/2 - 20;
1776 max_size
= trg_entry
->delta_size
;
1777 ref_depth
= trg
->depth
;
1779 max_size
= (uint64_t)max_size
* (max_depth
- src
->depth
) /
1780 (max_depth
- ref_depth
+ 1);
1783 src_size
= src_entry
->size
;
1784 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
1785 if (sizediff
>= max_size
)
1787 if (trg_size
< src_size
/ 32)
1790 /* Load data if not already done */
1793 trg
->data
= read_sha1_file(trg_entry
->idx
.sha1
, &type
, &sz
);
1796 die("object %s cannot be read",
1797 sha1_to_hex(trg_entry
->idx
.sha1
));
1799 die("object %s inconsistent object length (%lu vs %lu)",
1800 sha1_to_hex(trg_entry
->idx
.sha1
), sz
, trg_size
);
1805 src
->data
= read_sha1_file(src_entry
->idx
.sha1
, &type
, &sz
);
1808 if (src_entry
->preferred_base
) {
1809 static int warned
= 0;
1811 warning("object %s cannot be read",
1812 sha1_to_hex(src_entry
->idx
.sha1
));
1814 * Those objects are not included in the
1815 * resulting pack. Be resilient and ignore
1816 * them if they can't be read, in case the
1817 * pack could be created nevertheless.
1821 die("object %s cannot be read",
1822 sha1_to_hex(src_entry
->idx
.sha1
));
1825 die("object %s inconsistent object length (%lu vs %lu)",
1826 sha1_to_hex(src_entry
->idx
.sha1
), sz
, src_size
);
1830 src
->index
= create_delta_index(src
->data
, src_size
);
1832 static int warned
= 0;
1834 warning("suboptimal pack - out of memory");
1837 *mem_usage
+= sizeof_delta_index(src
->index
);
1840 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
1844 if (trg_entry
->delta
) {
1845 /* Prefer only shallower same-sized deltas. */
1846 if (delta_size
== trg_entry
->delta_size
&&
1847 src
->depth
+ 1 >= trg
->depth
) {
1854 * Handle memory allocation outside of the cache
1855 * accounting lock. Compiler will optimize the strangeness
1856 * away when NO_PTHREADS is defined.
1858 free(trg_entry
->delta_data
);
1860 if (trg_entry
->delta_data
) {
1861 delta_cache_size
-= trg_entry
->delta_size
;
1862 trg_entry
->delta_data
= NULL
;
1864 if (delta_cacheable(src_size
, trg_size
, delta_size
)) {
1865 delta_cache_size
+= delta_size
;
1867 trg_entry
->delta_data
= xrealloc(delta_buf
, delta_size
);
1873 trg_entry
->delta
= src_entry
;
1874 trg_entry
->delta_size
= delta_size
;
1875 trg
->depth
= src
->depth
+ 1;
1880 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
1882 struct object_entry
*child
= me
->delta_child
;
1885 unsigned int c
= check_delta_limit(child
, n
+ 1);
1888 child
= child
->delta_sibling
;
1893 static unsigned long free_unpacked(struct unpacked
*n
)
1895 unsigned long freed_mem
= sizeof_delta_index(n
->index
);
1896 free_delta_index(n
->index
);
1899 freed_mem
+= n
->entry
->size
;
1908 static void find_deltas(struct object_entry
**list
, unsigned *list_size
,
1909 int window
, int depth
, unsigned *processed
)
1911 uint32_t i
, idx
= 0, count
= 0;
1912 struct unpacked
*array
;
1913 unsigned long mem_usage
= 0;
1915 array
= xcalloc(window
, sizeof(struct unpacked
));
1918 struct object_entry
*entry
;
1919 struct unpacked
*n
= array
+ idx
;
1920 int j
, max_depth
, best_base
= -1;
1929 if (!entry
->preferred_base
) {
1931 display_progress(progress_state
, *processed
);
1935 mem_usage
-= free_unpacked(n
);
1938 while (window_memory_limit
&&
1939 mem_usage
> window_memory_limit
&&
1941 uint32_t tail
= (idx
+ window
- count
) % window
;
1942 mem_usage
-= free_unpacked(array
+ tail
);
1946 /* We do not compute delta to *create* objects we are not
1949 if (entry
->preferred_base
)
1953 * If the current object is at pack edge, take the depth the
1954 * objects that depend on the current object into account
1955 * otherwise they would become too deep.
1958 if (entry
->delta_child
) {
1959 max_depth
-= check_delta_limit(entry
, 0);
1967 uint32_t other_idx
= idx
+ j
;
1969 if (other_idx
>= window
)
1970 other_idx
-= window
;
1971 m
= array
+ other_idx
;
1974 ret
= try_delta(n
, m
, max_depth
, &mem_usage
);
1978 best_base
= other_idx
;
1982 * If we decided to cache the delta data, then it is best
1983 * to compress it right away. First because we have to do
1984 * it anyway, and doing it here while we're threaded will
1985 * save a lot of time in the non threaded write phase,
1986 * as well as allow for caching more deltas within
1987 * the same cache size limit.
1989 * But only if not writing to stdout, since in that case
1990 * the network is most likely throttling writes anyway,
1991 * and therefore it is best to go to the write phase ASAP
1992 * instead, as we can afford spending more time compressing
1993 * between writes at that moment.
1995 if (entry
->delta_data
&& !pack_to_stdout
) {
1996 entry
->z_delta_size
= do_compress(&entry
->delta_data
,
1999 delta_cache_size
-= entry
->delta_size
;
2000 delta_cache_size
+= entry
->z_delta_size
;
2004 /* if we made n a delta, and if n is already at max
2005 * depth, leaving it in the window is pointless. we
2006 * should evict it first.
2008 if (entry
->delta
&& max_depth
<= n
->depth
)
2012 * Move the best delta base up in the window, after the
2013 * currently deltified object, to keep it longer. It will
2014 * be the first base object to be attempted next.
2017 struct unpacked swap
= array
[best_base
];
2018 int dist
= (window
+ idx
- best_base
) % window
;
2019 int dst
= best_base
;
2021 int src
= (dst
+ 1) % window
;
2022 array
[dst
] = array
[src
];
2030 if (count
+ 1 < window
)
2036 for (i
= 0; i
< window
; ++i
) {
2037 free_delta_index(array
[i
].index
);
2038 free(array
[i
].data
);
2045 static void try_to_free_from_threads(size_t size
)
2048 release_pack_memory(size
);
2052 static try_to_free_t old_try_to_free_routine
;
2055 * The main thread waits on the condition that (at least) one of the workers
2056 * has stopped working (which is indicated in the .working member of
2057 * struct thread_params).
2058 * When a work thread has completed its work, it sets .working to 0 and
2059 * signals the main thread and waits on the condition that .data_ready
2063 struct thread_params
{
2065 struct object_entry
**list
;
2072 pthread_mutex_t mutex
;
2073 pthread_cond_t cond
;
2074 unsigned *processed
;
2077 static pthread_cond_t progress_cond
;
2080 * Mutex and conditional variable can't be statically-initialized on Windows.
2082 static void init_threaded_search(void)
2084 init_recursive_mutex(&read_mutex
);
2085 pthread_mutex_init(&cache_mutex
, NULL
);
2086 pthread_mutex_init(&progress_mutex
, NULL
);
2087 pthread_cond_init(&progress_cond
, NULL
);
2088 old_try_to_free_routine
= set_try_to_free_routine(try_to_free_from_threads
);
2091 static void cleanup_threaded_search(void)
2093 set_try_to_free_routine(old_try_to_free_routine
);
2094 pthread_cond_destroy(&progress_cond
);
2095 pthread_mutex_destroy(&read_mutex
);
2096 pthread_mutex_destroy(&cache_mutex
);
2097 pthread_mutex_destroy(&progress_mutex
);
2100 static void *threaded_find_deltas(void *arg
)
2102 struct thread_params
*me
= arg
;
2104 while (me
->remaining
) {
2105 find_deltas(me
->list
, &me
->remaining
,
2106 me
->window
, me
->depth
, me
->processed
);
2110 pthread_cond_signal(&progress_cond
);
2114 * We must not set ->data_ready before we wait on the
2115 * condition because the main thread may have set it to 1
2116 * before we get here. In order to be sure that new
2117 * work is available if we see 1 in ->data_ready, it
2118 * was initialized to 0 before this thread was spawned
2119 * and we reset it to 0 right away.
2121 pthread_mutex_lock(&me
->mutex
);
2122 while (!me
->data_ready
)
2123 pthread_cond_wait(&me
->cond
, &me
->mutex
);
2125 pthread_mutex_unlock(&me
->mutex
);
2127 /* leave ->working 1 so that this doesn't get more work assigned */
2131 static void ll_find_deltas(struct object_entry
**list
, unsigned list_size
,
2132 int window
, int depth
, unsigned *processed
)
2134 struct thread_params
*p
;
2135 int i
, ret
, active_threads
= 0;
2137 init_threaded_search();
2139 if (delta_search_threads
<= 1) {
2140 find_deltas(list
, &list_size
, window
, depth
, processed
);
2141 cleanup_threaded_search();
2144 if (progress
> pack_to_stdout
)
2145 fprintf(stderr
, "Delta compression using up to %d threads.\n",
2146 delta_search_threads
);
2147 p
= xcalloc(delta_search_threads
, sizeof(*p
));
2149 /* Partition the work amongst work threads. */
2150 for (i
= 0; i
< delta_search_threads
; i
++) {
2151 unsigned sub_size
= list_size
/ (delta_search_threads
- i
);
2153 /* don't use too small segments or no deltas will be found */
2154 if (sub_size
< 2*window
&& i
+1 < delta_search_threads
)
2157 p
[i
].window
= window
;
2159 p
[i
].processed
= processed
;
2161 p
[i
].data_ready
= 0;
2163 /* try to split chunks on "path" boundaries */
2164 while (sub_size
&& sub_size
< list_size
&&
2165 list
[sub_size
]->hash
&&
2166 list
[sub_size
]->hash
== list
[sub_size
-1]->hash
)
2170 p
[i
].list_size
= sub_size
;
2171 p
[i
].remaining
= sub_size
;
2174 list_size
-= sub_size
;
2177 /* Start work threads. */
2178 for (i
= 0; i
< delta_search_threads
; i
++) {
2179 if (!p
[i
].list_size
)
2181 pthread_mutex_init(&p
[i
].mutex
, NULL
);
2182 pthread_cond_init(&p
[i
].cond
, NULL
);
2183 ret
= pthread_create(&p
[i
].thread
, NULL
,
2184 threaded_find_deltas
, &p
[i
]);
2186 die("unable to create thread: %s", strerror(ret
));
2191 * Now let's wait for work completion. Each time a thread is done
2192 * with its work, we steal half of the remaining work from the
2193 * thread with the largest number of unprocessed objects and give
2194 * it to that newly idle thread. This ensure good load balancing
2195 * until the remaining object list segments are simply too short
2196 * to be worth splitting anymore.
2198 while (active_threads
) {
2199 struct thread_params
*target
= NULL
;
2200 struct thread_params
*victim
= NULL
;
2201 unsigned sub_size
= 0;
2205 for (i
= 0; !target
&& i
< delta_search_threads
; i
++)
2210 pthread_cond_wait(&progress_cond
, &progress_mutex
);
2213 for (i
= 0; i
< delta_search_threads
; i
++)
2214 if (p
[i
].remaining
> 2*window
&&
2215 (!victim
|| victim
->remaining
< p
[i
].remaining
))
2218 sub_size
= victim
->remaining
/ 2;
2219 list
= victim
->list
+ victim
->list_size
- sub_size
;
2220 while (sub_size
&& list
[0]->hash
&&
2221 list
[0]->hash
== list
[-1]->hash
) {
2227 * It is possible for some "paths" to have
2228 * so many objects that no hash boundary
2229 * might be found. Let's just steal the
2230 * exact half in that case.
2232 sub_size
= victim
->remaining
/ 2;
2235 target
->list
= list
;
2236 victim
->list_size
-= sub_size
;
2237 victim
->remaining
-= sub_size
;
2239 target
->list_size
= sub_size
;
2240 target
->remaining
= sub_size
;
2241 target
->working
= 1;
2244 pthread_mutex_lock(&target
->mutex
);
2245 target
->data_ready
= 1;
2246 pthread_cond_signal(&target
->cond
);
2247 pthread_mutex_unlock(&target
->mutex
);
2250 pthread_join(target
->thread
, NULL
);
2251 pthread_cond_destroy(&target
->cond
);
2252 pthread_mutex_destroy(&target
->mutex
);
2256 cleanup_threaded_search();
2261 #define ll_find_deltas(l, s, w, d, p) find_deltas(l, &s, w, d, p)
2264 static void add_tag_chain(const struct object_id
*oid
)
2269 * We catch duplicates already in add_object_entry(), but we'd
2270 * prefer to do this extra check to avoid having to parse the
2271 * tag at all if we already know that it's being packed (e.g., if
2272 * it was included via bitmaps, we would not have parsed it
2275 if (packlist_find(&to_pack
, oid
->hash
, NULL
))
2278 tag
= lookup_tag(oid
->hash
);
2280 if (!tag
|| parse_tag(tag
) || !tag
->tagged
)
2281 die("unable to pack objects reachable from tag %s",
2284 add_object_entry(tag
->object
.oid
.hash
, OBJ_TAG
, NULL
, 0);
2286 if (tag
->tagged
->type
!= OBJ_TAG
)
2289 tag
= (struct tag
*)tag
->tagged
;
2293 static int add_ref_tag(const char *path
, const struct object_id
*oid
, int flag
, void *cb_data
)
2295 struct object_id peeled
;
2297 if (starts_with(path
, "refs/tags/") && /* is a tag? */
2298 !peel_ref(path
, peeled
.hash
) && /* peelable? */
2299 packlist_find(&to_pack
, peeled
.hash
, NULL
)) /* object packed? */
2304 static void prepare_pack(int window
, int depth
)
2306 struct object_entry
**delta_list
;
2307 uint32_t i
, nr_deltas
;
2310 get_object_details();
2313 * If we're locally repacking then we need to be doubly careful
2314 * from now on in order to make sure no stealth corruption gets
2315 * propagated to the new pack. Clients receiving streamed packs
2316 * should validate everything they get anyway so no need to incur
2317 * the additional cost here in that case.
2319 if (!pack_to_stdout
)
2320 do_check_packed_object_crc
= 1;
2322 if (!to_pack
.nr_objects
|| !window
|| !depth
)
2325 ALLOC_ARRAY(delta_list
, to_pack
.nr_objects
);
2328 for (i
= 0; i
< to_pack
.nr_objects
; i
++) {
2329 struct object_entry
*entry
= to_pack
.objects
+ i
;
2332 /* This happens if we decided to reuse existing
2333 * delta from a pack. "reuse_delta &&" is implied.
2337 if (entry
->size
< 50)
2340 if (entry
->no_try_delta
)
2343 if (!entry
->preferred_base
) {
2345 if (entry
->type
< 0)
2346 die("unable to get type of object %s",
2347 sha1_to_hex(entry
->idx
.sha1
));
2349 if (entry
->type
< 0) {
2351 * This object is not found, but we
2352 * don't have to include it anyway.
2358 delta_list
[n
++] = entry
;
2361 if (nr_deltas
&& n
> 1) {
2362 unsigned nr_done
= 0;
2364 progress_state
= start_progress(_("Compressing objects"),
2366 QSORT(delta_list
, n
, type_size_sort
);
2367 ll_find_deltas(delta_list
, n
, window
+1, depth
, &nr_done
);
2368 stop_progress(&progress_state
);
2369 if (nr_done
!= nr_deltas
)
2370 die("inconsistency with delta count");
2375 static int git_pack_config(const char *k
, const char *v
, void *cb
)
2377 if (!strcmp(k
, "pack.window")) {
2378 window
= git_config_int(k
, v
);
2381 if (!strcmp(k
, "pack.windowmemory")) {
2382 window_memory_limit
= git_config_ulong(k
, v
);
2385 if (!strcmp(k
, "pack.depth")) {
2386 depth
= git_config_int(k
, v
);
2389 if (!strcmp(k
, "pack.compression")) {
2390 int level
= git_config_int(k
, v
);
2392 level
= Z_DEFAULT_COMPRESSION
;
2393 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
2394 die("bad pack compression level %d", level
);
2395 pack_compression_level
= level
;
2396 pack_compression_seen
= 1;
2399 if (!strcmp(k
, "pack.deltacachesize")) {
2400 max_delta_cache_size
= git_config_int(k
, v
);
2403 if (!strcmp(k
, "pack.deltacachelimit")) {
2404 cache_max_small_delta_size
= git_config_int(k
, v
);
2407 if (!strcmp(k
, "pack.writebitmaphashcache")) {
2408 if (git_config_bool(k
, v
))
2409 write_bitmap_options
|= BITMAP_OPT_HASH_CACHE
;
2411 write_bitmap_options
&= ~BITMAP_OPT_HASH_CACHE
;
2413 if (!strcmp(k
, "pack.usebitmaps")) {
2414 use_bitmap_index_default
= git_config_bool(k
, v
);
2417 if (!strcmp(k
, "pack.threads")) {
2418 delta_search_threads
= git_config_int(k
, v
);
2419 if (delta_search_threads
< 0)
2420 die("invalid number of threads specified (%d)",
2421 delta_search_threads
);
2423 if (delta_search_threads
!= 1)
2424 warning("no threads support, ignoring %s", k
);
2428 if (!strcmp(k
, "pack.indexversion")) {
2429 pack_idx_opts
.version
= git_config_int(k
, v
);
2430 if (pack_idx_opts
.version
> 2)
2431 die("bad pack.indexversion=%"PRIu32
,
2432 pack_idx_opts
.version
);
2435 return git_default_config(k
, v
, cb
);
2438 static void read_object_list_from_stdin(void)
2440 char line
[40 + 1 + PATH_MAX
+ 2];
2441 unsigned char sha1
[20];
2444 if (!fgets(line
, sizeof(line
), stdin
)) {
2448 die("fgets returned NULL, not EOF, not error!");
2454 if (line
[0] == '-') {
2455 if (get_sha1_hex(line
+1, sha1
))
2456 die("expected edge sha1, got garbage:\n %s",
2458 add_preferred_base(sha1
);
2461 if (get_sha1_hex(line
, sha1
))
2462 die("expected sha1, got garbage:\n %s", line
);
2464 add_preferred_base_object(line
+41);
2465 add_object_entry(sha1
, 0, line
+41, 0);
2469 #define OBJECT_ADDED (1u<<20)
2471 static void show_commit(struct commit
*commit
, void *data
)
2473 add_object_entry(commit
->object
.oid
.hash
, OBJ_COMMIT
, NULL
, 0);
2474 commit
->object
.flags
|= OBJECT_ADDED
;
2476 if (write_bitmap_index
)
2477 index_commit_for_bitmap(commit
);
2480 static void show_object(struct object
*obj
, const char *name
, void *data
)
2482 add_preferred_base_object(name
);
2483 add_object_entry(obj
->oid
.hash
, obj
->type
, name
, 0);
2484 obj
->flags
|= OBJECT_ADDED
;
2487 static void show_edge(struct commit
*commit
)
2489 add_preferred_base(commit
->object
.oid
.hash
);
2492 struct in_pack_object
{
2494 struct object
*object
;
2500 struct in_pack_object
*array
;
2503 static void mark_in_pack_object(struct object
*object
, struct packed_git
*p
, struct in_pack
*in_pack
)
2505 in_pack
->array
[in_pack
->nr
].offset
= find_pack_entry_one(object
->oid
.hash
, p
);
2506 in_pack
->array
[in_pack
->nr
].object
= object
;
2511 * Compare the objects in the offset order, in order to emulate the
2512 * "git rev-list --objects" output that produced the pack originally.
2514 static int ofscmp(const void *a_
, const void *b_
)
2516 struct in_pack_object
*a
= (struct in_pack_object
*)a_
;
2517 struct in_pack_object
*b
= (struct in_pack_object
*)b_
;
2519 if (a
->offset
< b
->offset
)
2521 else if (a
->offset
> b
->offset
)
2524 return oidcmp(&a
->object
->oid
, &b
->object
->oid
);
2527 static void add_objects_in_unpacked_packs(struct rev_info
*revs
)
2529 struct packed_git
*p
;
2530 struct in_pack in_pack
;
2533 memset(&in_pack
, 0, sizeof(in_pack
));
2535 for (p
= packed_git
; p
; p
= p
->next
) {
2536 const unsigned char *sha1
;
2539 if (!p
->pack_local
|| p
->pack_keep
)
2541 if (open_pack_index(p
))
2542 die("cannot open pack index");
2544 ALLOC_GROW(in_pack
.array
,
2545 in_pack
.nr
+ p
->num_objects
,
2548 for (i
= 0; i
< p
->num_objects
; i
++) {
2549 sha1
= nth_packed_object_sha1(p
, i
);
2550 o
= lookup_unknown_object(sha1
);
2551 if (!(o
->flags
& OBJECT_ADDED
))
2552 mark_in_pack_object(o
, p
, &in_pack
);
2553 o
->flags
|= OBJECT_ADDED
;
2558 QSORT(in_pack
.array
, in_pack
.nr
, ofscmp
);
2559 for (i
= 0; i
< in_pack
.nr
; i
++) {
2560 struct object
*o
= in_pack
.array
[i
].object
;
2561 add_object_entry(o
->oid
.hash
, o
->type
, "", 0);
2564 free(in_pack
.array
);
2567 static int add_loose_object(const unsigned char *sha1
, const char *path
,
2570 enum object_type type
= sha1_object_info(sha1
, NULL
);
2573 warning("loose object at %s could not be examined", path
);
2577 add_object_entry(sha1
, type
, "", 0);
2582 * We actually don't even have to worry about reachability here.
2583 * add_object_entry will weed out duplicates, so we just add every
2584 * loose object we find.
2586 static void add_unreachable_loose_objects(void)
2588 for_each_loose_file_in_objdir(get_object_directory(),
2593 static int has_sha1_pack_kept_or_nonlocal(const unsigned char *sha1
)
2595 static struct packed_git
*last_found
= (void *)1;
2596 struct packed_git
*p
;
2598 p
= (last_found
!= (void *)1) ? last_found
: packed_git
;
2601 if ((!p
->pack_local
|| p
->pack_keep
) &&
2602 find_pack_entry_one(sha1
, p
)) {
2606 if (p
== last_found
)
2610 if (p
== last_found
)
2617 * Store a list of sha1s that are should not be discarded
2618 * because they are either written too recently, or are
2619 * reachable from another object that was.
2621 * This is filled by get_object_list.
2623 static struct sha1_array recent_objects
;
2625 static int loosened_object_can_be_discarded(const unsigned char *sha1
,
2626 unsigned long mtime
)
2628 if (!unpack_unreachable_expiration
)
2630 if (mtime
> unpack_unreachable_expiration
)
2632 if (sha1_array_lookup(&recent_objects
, sha1
) >= 0)
2637 static void loosen_unused_packed_objects(struct rev_info
*revs
)
2639 struct packed_git
*p
;
2641 const unsigned char *sha1
;
2643 for (p
= packed_git
; p
; p
= p
->next
) {
2644 if (!p
->pack_local
|| p
->pack_keep
)
2647 if (open_pack_index(p
))
2648 die("cannot open pack index");
2650 for (i
= 0; i
< p
->num_objects
; i
++) {
2651 sha1
= nth_packed_object_sha1(p
, i
);
2652 if (!packlist_find(&to_pack
, sha1
, NULL
) &&
2653 !has_sha1_pack_kept_or_nonlocal(sha1
) &&
2654 !loosened_object_can_be_discarded(sha1
, p
->mtime
))
2655 if (force_object_loose(sha1
, p
->mtime
))
2656 die("unable to force loose object");
2662 * This tracks any options which pack-reuse code expects to be on, or which a
2663 * reader of the pack might not understand, and which would therefore prevent
2664 * blind reuse of what we have on disk.
2666 static int pack_options_allow_reuse(void)
2668 return pack_to_stdout
&& allow_ofs_delta
;
2671 static int get_object_list_from_bitmap(struct rev_info
*revs
)
2673 if (prepare_bitmap_walk(revs
) < 0)
2676 if (pack_options_allow_reuse() &&
2677 !reuse_partial_packfile_from_bitmap(
2679 &reuse_packfile_objects
,
2680 &reuse_packfile_offset
)) {
2681 assert(reuse_packfile_objects
);
2682 nr_result
+= reuse_packfile_objects
;
2683 display_progress(progress_state
, nr_result
);
2686 traverse_bitmap_commit_list(&add_object_entry_from_bitmap
);
2690 static void record_recent_object(struct object
*obj
,
2694 sha1_array_append(&recent_objects
, obj
->oid
.hash
);
2697 static void record_recent_commit(struct commit
*commit
, void *data
)
2699 sha1_array_append(&recent_objects
, commit
->object
.oid
.hash
);
2702 static void get_object_list(int ac
, const char **av
)
2704 struct rev_info revs
;
2708 init_revisions(&revs
, NULL
);
2709 save_commit_buffer
= 0;
2710 setup_revisions(ac
, av
, &revs
, NULL
);
2712 /* make sure shallows are read */
2713 is_repository_shallow();
2715 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
2716 int len
= strlen(line
);
2717 if (len
&& line
[len
- 1] == '\n')
2722 if (!strcmp(line
, "--not")) {
2723 flags
^= UNINTERESTING
;
2724 write_bitmap_index
= 0;
2727 if (starts_with(line
, "--shallow ")) {
2728 unsigned char sha1
[20];
2729 if (get_sha1_hex(line
+ 10, sha1
))
2730 die("not an SHA-1 '%s'", line
+ 10);
2731 register_shallow(sha1
);
2732 use_bitmap_index
= 0;
2735 die("not a rev '%s'", line
);
2737 if (handle_revision_arg(line
, &revs
, flags
, REVARG_CANNOT_BE_FILENAME
))
2738 die("bad revision '%s'", line
);
2741 if (use_bitmap_index
&& !get_object_list_from_bitmap(&revs
))
2744 if (prepare_revision_walk(&revs
))
2745 die("revision walk setup failed");
2746 mark_edges_uninteresting(&revs
, show_edge
);
2747 traverse_commit_list(&revs
, show_commit
, show_object
, NULL
);
2749 if (unpack_unreachable_expiration
) {
2750 revs
.ignore_missing_links
= 1;
2751 if (add_unseen_recent_objects_to_traversal(&revs
,
2752 unpack_unreachable_expiration
))
2753 die("unable to add recent objects");
2754 if (prepare_revision_walk(&revs
))
2755 die("revision walk setup failed");
2756 traverse_commit_list(&revs
, record_recent_commit
,
2757 record_recent_object
, NULL
);
2760 if (keep_unreachable
)
2761 add_objects_in_unpacked_packs(&revs
);
2762 if (pack_loose_unreachable
)
2763 add_unreachable_loose_objects();
2764 if (unpack_unreachable
)
2765 loosen_unused_packed_objects(&revs
);
2767 sha1_array_clear(&recent_objects
);
2770 static int option_parse_index_version(const struct option
*opt
,
2771 const char *arg
, int unset
)
2774 const char *val
= arg
;
2775 pack_idx_opts
.version
= strtoul(val
, &c
, 10);
2776 if (pack_idx_opts
.version
> 2)
2777 die(_("unsupported index version %s"), val
);
2778 if (*c
== ',' && c
[1])
2779 pack_idx_opts
.off32_limit
= strtoul(c
+1, &c
, 0);
2780 if (*c
|| pack_idx_opts
.off32_limit
& 0x80000000)
2781 die(_("bad index version '%s'"), val
);
2785 static int option_parse_unpack_unreachable(const struct option
*opt
,
2786 const char *arg
, int unset
)
2789 unpack_unreachable
= 0;
2790 unpack_unreachable_expiration
= 0;
2793 unpack_unreachable
= 1;
2795 unpack_unreachable_expiration
= approxidate(arg
);
2800 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
2802 int use_internal_rev_list
= 0;
2805 int all_progress_implied
= 0;
2806 struct argv_array rp
= ARGV_ARRAY_INIT
;
2807 int rev_list_unpacked
= 0, rev_list_all
= 0, rev_list_reflog
= 0;
2808 int rev_list_index
= 0;
2809 struct option pack_objects_options
[] = {
2810 OPT_SET_INT('q', "quiet", &progress
,
2811 N_("do not show progress meter"), 0),
2812 OPT_SET_INT(0, "progress", &progress
,
2813 N_("show progress meter"), 1),
2814 OPT_SET_INT(0, "all-progress", &progress
,
2815 N_("show progress meter during object writing phase"), 2),
2816 OPT_BOOL(0, "all-progress-implied",
2817 &all_progress_implied
,
2818 N_("similar to --all-progress when progress meter is shown")),
2819 { OPTION_CALLBACK
, 0, "index-version", NULL
, N_("version[,offset]"),
2820 N_("write the pack index file in the specified idx format version"),
2821 0, option_parse_index_version
},
2822 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit
,
2823 N_("maximum size of each output pack file")),
2824 OPT_BOOL(0, "local", &local
,
2825 N_("ignore borrowed objects from alternate object store")),
2826 OPT_BOOL(0, "incremental", &incremental
,
2827 N_("ignore packed objects")),
2828 OPT_INTEGER(0, "window", &window
,
2829 N_("limit pack window by objects")),
2830 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit
,
2831 N_("limit pack window by memory in addition to object limit")),
2832 OPT_INTEGER(0, "depth", &depth
,
2833 N_("maximum length of delta chain allowed in the resulting pack")),
2834 OPT_BOOL(0, "reuse-delta", &reuse_delta
,
2835 N_("reuse existing deltas")),
2836 OPT_BOOL(0, "reuse-object", &reuse_object
,
2837 N_("reuse existing objects")),
2838 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta
,
2839 N_("use OFS_DELTA objects")),
2840 OPT_INTEGER(0, "threads", &delta_search_threads
,
2841 N_("use threads when searching for best delta matches")),
2842 OPT_BOOL(0, "non-empty", &non_empty
,
2843 N_("do not create an empty pack output")),
2844 OPT_BOOL(0, "revs", &use_internal_rev_list
,
2845 N_("read revision arguments from standard input")),
2846 { OPTION_SET_INT
, 0, "unpacked", &rev_list_unpacked
, NULL
,
2847 N_("limit the objects to those that are not yet packed"),
2848 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2849 { OPTION_SET_INT
, 0, "all", &rev_list_all
, NULL
,
2850 N_("include objects reachable from any reference"),
2851 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2852 { OPTION_SET_INT
, 0, "reflog", &rev_list_reflog
, NULL
,
2853 N_("include objects referred by reflog entries"),
2854 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2855 { OPTION_SET_INT
, 0, "indexed-objects", &rev_list_index
, NULL
,
2856 N_("include objects referred to by the index"),
2857 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
, 1 },
2858 OPT_BOOL(0, "stdout", &pack_to_stdout
,
2859 N_("output pack to stdout")),
2860 OPT_BOOL(0, "include-tag", &include_tag
,
2861 N_("include tag objects that refer to objects to be packed")),
2862 OPT_BOOL(0, "keep-unreachable", &keep_unreachable
,
2863 N_("keep unreachable objects")),
2864 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable
,
2865 N_("pack loose unreachable objects")),
2866 { OPTION_CALLBACK
, 0, "unpack-unreachable", NULL
, N_("time"),
2867 N_("unpack unreachable objects newer than <time>"),
2868 PARSE_OPT_OPTARG
, option_parse_unpack_unreachable
},
2869 OPT_BOOL(0, "thin", &thin
,
2870 N_("create thin packs")),
2871 OPT_BOOL(0, "shallow", &shallow
,
2872 N_("create packs suitable for shallow fetches")),
2873 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep
,
2874 N_("ignore packs that have companion .keep file")),
2875 OPT_INTEGER(0, "compression", &pack_compression_level
,
2876 N_("pack compression level")),
2877 OPT_SET_INT(0, "keep-true-parents", &grafts_replace_parents
,
2878 N_("do not hide commits by grafts"), 0),
2879 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index
,
2880 N_("use a bitmap index if available to speed up counting objects")),
2881 OPT_BOOL(0, "write-bitmap-index", &write_bitmap_index
,
2882 N_("write a bitmap index together with the pack index")),
2886 check_replace_refs
= 0;
2888 reset_pack_idx_option(&pack_idx_opts
);
2889 git_config(git_pack_config
, NULL
);
2890 if (!pack_compression_seen
&& core_compression_seen
)
2891 pack_compression_level
= core_compression_level
;
2893 progress
= isatty(2);
2894 argc
= parse_options(argc
, argv
, prefix
, pack_objects_options
,
2898 base_name
= argv
[0];
2901 if (pack_to_stdout
!= !base_name
|| argc
)
2902 usage_with_options(pack_usage
, pack_objects_options
);
2904 argv_array_push(&rp
, "pack-objects");
2906 use_internal_rev_list
= 1;
2907 argv_array_push(&rp
, shallow
2908 ? "--objects-edge-aggressive"
2909 : "--objects-edge");
2911 argv_array_push(&rp
, "--objects");
2914 use_internal_rev_list
= 1;
2915 argv_array_push(&rp
, "--all");
2917 if (rev_list_reflog
) {
2918 use_internal_rev_list
= 1;
2919 argv_array_push(&rp
, "--reflog");
2921 if (rev_list_index
) {
2922 use_internal_rev_list
= 1;
2923 argv_array_push(&rp
, "--indexed-objects");
2925 if (rev_list_unpacked
) {
2926 use_internal_rev_list
= 1;
2927 argv_array_push(&rp
, "--unpacked");
2932 if (pack_compression_level
== -1)
2933 pack_compression_level
= Z_DEFAULT_COMPRESSION
;
2934 else if (pack_compression_level
< 0 || pack_compression_level
> Z_BEST_COMPRESSION
)
2935 die("bad pack compression level %d", pack_compression_level
);
2937 if (!delta_search_threads
) /* --threads=0 means autodetect */
2938 delta_search_threads
= online_cpus();
2941 if (delta_search_threads
!= 1)
2942 warning("no threads support, ignoring --threads");
2944 if (!pack_to_stdout
&& !pack_size_limit
)
2945 pack_size_limit
= pack_size_limit_cfg
;
2946 if (pack_to_stdout
&& pack_size_limit
)
2947 die("--max-pack-size cannot be used to build a pack for transfer.");
2948 if (pack_size_limit
&& pack_size_limit
< 1024*1024) {
2949 warning("minimum pack size limit is 1 MiB");
2950 pack_size_limit
= 1024*1024;
2953 if (!pack_to_stdout
&& thin
)
2954 die("--thin cannot be used to build an indexable pack.");
2956 if (keep_unreachable
&& unpack_unreachable
)
2957 die("--keep-unreachable and --unpack-unreachable are incompatible.");
2958 if (!rev_list_all
|| !rev_list_reflog
|| !rev_list_index
)
2959 unpack_unreachable_expiration
= 0;
2962 * "soft" reasons not to use bitmaps - for on-disk repack by default we want
2964 * - to produce good pack (with bitmap index not-yet-packed objects are
2965 * packed in suboptimal order).
2967 * - to use more robust pack-generation codepath (avoiding possible
2968 * bugs in bitmap code and possible bitmap index corruption).
2970 if (!pack_to_stdout
)
2971 use_bitmap_index_default
= 0;
2973 if (use_bitmap_index
< 0)
2974 use_bitmap_index
= use_bitmap_index_default
;
2976 /* "hard" reasons not to use bitmaps; these just won't work at all */
2977 if (!use_internal_rev_list
|| (!pack_to_stdout
&& write_bitmap_index
) || is_repository_shallow())
2978 use_bitmap_index
= 0;
2980 if (pack_to_stdout
|| !rev_list_all
)
2981 write_bitmap_index
= 0;
2983 if (progress
&& all_progress_implied
)
2986 prepare_packed_git();
2987 if (ignore_packed_keep
) {
2988 struct packed_git
*p
;
2989 for (p
= packed_git
; p
; p
= p
->next
)
2990 if (p
->pack_local
&& p
->pack_keep
)
2992 if (!p
) /* no keep-able packs found */
2993 ignore_packed_keep
= 0;
2997 * unlike ignore_packed_keep above, we do not want to
2998 * unset "local" based on looking at packs, as it
2999 * also covers non-local objects
3001 struct packed_git
*p
;
3002 for (p
= packed_git
; p
; p
= p
->next
) {
3003 if (!p
->pack_local
) {
3004 have_non_local_packs
= 1;
3011 progress_state
= start_progress(_("Counting objects"), 0);
3012 if (!use_internal_rev_list
)
3013 read_object_list_from_stdin();
3015 get_object_list(rp
.argc
, rp
.argv
);
3016 argv_array_clear(&rp
);
3018 cleanup_preferred_base();
3019 if (include_tag
&& nr_result
)
3020 for_each_ref(add_ref_tag
, NULL
);
3021 stop_progress(&progress_state
);
3023 if (non_empty
&& !nr_result
)
3026 prepare_pack(window
, depth
);
3029 fprintf(stderr
, "Total %"PRIu32
" (delta %"PRIu32
"),"
3030 " reused %"PRIu32
" (delta %"PRIu32
")\n",
3031 written
, written_delta
, reused
, reused_delta
);