10 #include "csum-file.h"
11 #include "tree-walk.h"
14 #include "list-objects.h"
16 static const char pack_usage
[] = "\
17 git-pack-objects [{ -q | --progress | --all-progress }] \n\
18 [--local] [--incremental] [--window=N] [--depth=N] \n\
19 [--no-reuse-delta] [--delta-base-offset] [--non-empty] \n\
20 [--revs [--unpacked | --all]*] [--reflog] [--stdout | base-name] \n\
21 [<ref-list | <object-list]";
24 unsigned char sha1
[20];
25 unsigned long size
; /* uncompressed size */
26 off_t offset
; /* offset into the final pack file;
27 * nonzero if already written.
29 unsigned int depth
; /* delta depth */
30 unsigned int delta_limit
; /* base adjustment for in-pack delta */
31 unsigned int hash
; /* name hint hash */
32 enum object_type type
;
33 enum object_type in_pack_type
; /* could be delta */
34 unsigned long delta_size
; /* delta data size (uncompressed) */
35 #define in_pack_header_size delta_size /* only when reusing pack data */
36 struct object_entry
*delta
; /* delta base object */
37 struct packed_git
*in_pack
; /* already in pack */
39 struct object_entry
*delta_child
; /* deltified objects who bases me */
40 struct object_entry
*delta_sibling
; /* other deltified objects who
41 * uses the same base as me
43 int preferred_base
; /* we do not pack this, but is encouraged to
44 * be used as the base objectto delta huge
50 * Objects we are going to pack are collected in objects array (dynamically
51 * expanded). nr_objects & nr_alloc controls this array. They are stored
52 * in the order we see -- typically rev-list --objects order that gives us
53 * nice "minimum seek" order.
55 * sorted-by-sha ans sorted-by-type are arrays of pointers that point at
56 * elements in the objects array. The former is used to build the pack
57 * index (lists object names in the ascending order to help offset lookup),
58 * and the latter is used to group similar things together by try_delta()
62 static unsigned char object_list_sha1
[20];
64 static int no_reuse_delta
;
66 static int incremental
;
67 static int allow_ofs_delta
;
69 static struct object_entry
**sorted_by_sha
, **sorted_by_type
;
70 static struct object_entry
*objects
;
71 static uint32_t nr_objects
, nr_alloc
, nr_result
;
72 static const char *base_name
;
73 static unsigned char pack_file_sha1
[20];
74 static int progress
= 1;
75 static volatile sig_atomic_t progress_update
;
76 static int window
= 10;
77 static int pack_to_stdout
;
78 static int num_preferred_base
;
81 * The object names in objects array are hashed with this hashtable,
82 * to help looking up the entry by object name. Binary search from
83 * sorted_by_sha is also possible but this was easier to code and faster.
84 * This hashtable is built after all the objects are seen.
86 static int *object_ix
;
87 static int object_ix_hashsz
;
90 * Pack index for existing packs give us easy access to the offsets into
91 * corresponding pack file where each object's data starts, but the entries
92 * do not store the size of the compressed representation (uncompressed
93 * size is easily available by examining the pack entry header). It is
94 * also rather expensive to find the sha1 for an object given its offset.
96 * We build a hashtable of existing packs (pack_revindex), and keep reverse
97 * index here -- pack index file is sorted by object name mapping to offset;
98 * this pack_revindex[].revindex array is a list of offset/index_nr pairs
99 * ordered by offset, so if you know the offset of an object, next offset
100 * is where its packed representation ends and the index_nr can be used to
101 * get the object sha1 from the main index.
103 struct revindex_entry
{
107 struct pack_revindex
{
108 struct packed_git
*p
;
109 struct revindex_entry
*revindex
;
111 static struct pack_revindex
*pack_revindex
;
112 static int pack_revindex_hashsz
;
117 static uint32_t written
, written_delta
;
118 static uint32_t reused
, reused_delta
;
120 static int pack_revindex_ix(struct packed_git
*p
)
122 unsigned long ui
= (unsigned long)p
;
125 ui
= ui
^ (ui
>> 16); /* defeat structure alignment */
126 i
= (int)(ui
% pack_revindex_hashsz
);
127 while (pack_revindex
[i
].p
) {
128 if (pack_revindex
[i
].p
== p
)
130 if (++i
== pack_revindex_hashsz
)
136 static void prepare_pack_ix(void)
139 struct packed_git
*p
;
140 for (num
= 0, p
= packed_git
; p
; p
= p
->next
)
144 pack_revindex_hashsz
= num
* 11;
145 pack_revindex
= xcalloc(sizeof(*pack_revindex
), pack_revindex_hashsz
);
146 for (p
= packed_git
; p
; p
= p
->next
) {
147 num
= pack_revindex_ix(p
);
149 pack_revindex
[num
].p
= p
;
151 /* revindex elements are lazily initialized */
154 static int cmp_offset(const void *a_
, const void *b_
)
156 const struct revindex_entry
*a
= a_
;
157 const struct revindex_entry
*b
= b_
;
158 return (a
->offset
< b
->offset
) ? -1 : (a
->offset
> b
->offset
) ? 1 : 0;
162 * Ordered list of offsets of objects in the pack.
164 static void prepare_pack_revindex(struct pack_revindex
*rix
)
166 struct packed_git
*p
= rix
->p
;
167 int num_ent
= num_packed_objects(p
);
169 const char *index
= p
->index_data
;
172 rix
->revindex
= xmalloc(sizeof(*rix
->revindex
) * (num_ent
+ 1));
173 for (i
= 0; i
< num_ent
; i
++) {
174 uint32_t hl
= *((uint32_t *)(index
+ 24 * i
));
175 rix
->revindex
[i
].offset
= ntohl(hl
);
176 rix
->revindex
[i
].nr
= i
;
178 /* This knows the pack format -- the 20-byte trailer
179 * follows immediately after the last object data.
181 rix
->revindex
[num_ent
].offset
= p
->pack_size
- 20;
182 rix
->revindex
[num_ent
].nr
= -1;
183 qsort(rix
->revindex
, num_ent
, sizeof(*rix
->revindex
), cmp_offset
);
186 static struct revindex_entry
* find_packed_object(struct packed_git
*p
,
191 struct pack_revindex
*rix
;
192 struct revindex_entry
*revindex
;
193 num
= pack_revindex_ix(p
);
195 die("internal error: pack revindex uninitialized");
196 rix
= &pack_revindex
[num
];
198 prepare_pack_revindex(rix
);
199 revindex
= rix
->revindex
;
201 hi
= num_packed_objects(p
) + 1;
203 int mi
= (lo
+ hi
) / 2;
204 if (revindex
[mi
].offset
== ofs
) {
205 return revindex
+ mi
;
207 else if (ofs
< revindex
[mi
].offset
)
212 die("internal error: pack revindex corrupt");
215 static off_t
find_packed_object_size(struct packed_git
*p
, off_t ofs
)
217 struct revindex_entry
*entry
= find_packed_object(p
, ofs
);
218 return entry
[1].offset
- ofs
;
221 static const unsigned char *find_packed_object_name(struct packed_git
*p
,
224 struct revindex_entry
*entry
= find_packed_object(p
, ofs
);
225 return ((unsigned char *)p
->index_data
) + 4 * 256 + 24 * entry
->nr
+ 4;
228 static void *delta_against(void *buf
, unsigned long size
, struct object_entry
*entry
)
230 unsigned long othersize
, delta_size
;
231 enum object_type type
;
232 void *otherbuf
= read_sha1_file(entry
->delta
->sha1
, &type
, &othersize
);
236 die("unable to read %s", sha1_to_hex(entry
->delta
->sha1
));
237 delta_buf
= diff_delta(otherbuf
, othersize
,
238 buf
, size
, &delta_size
, 0);
239 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
240 die("delta size changed");
247 * The per-object header is a pretty dense thing, which is
248 * - first byte: low four bits are "size", then three bits of "type",
249 * and the high bit is "size continues".
250 * - each byte afterwards: low seven bits are size continuation,
251 * with the high bit being "size continues"
253 static int encode_header(enum object_type type
, unsigned long size
, unsigned char *hdr
)
258 if (type
< OBJ_COMMIT
|| type
> OBJ_REF_DELTA
)
259 die("bad type %d", type
);
261 c
= (type
<< 4) | (size
& 15);
274 * we are going to reuse the existing object data as is. make
275 * sure it is not corrupt.
277 static int check_pack_inflate(struct packed_git
*p
,
278 struct pack_window
**w_curs
,
281 unsigned long expect
)
284 unsigned char fakebuf
[4096], *in
;
287 memset(&stream
, 0, sizeof(stream
));
288 inflateInit(&stream
);
290 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_in
);
292 stream
.next_out
= fakebuf
;
293 stream
.avail_out
= sizeof(fakebuf
);
294 st
= inflate(&stream
, Z_FINISH
);
295 offset
+= stream
.next_in
- in
;
296 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
298 return (st
== Z_STREAM_END
&&
299 stream
.total_out
== expect
&&
300 stream
.total_in
== len
) ? 0 : -1;
303 static void copy_pack_data(struct sha1file
*f
,
304 struct packed_git
*p
,
305 struct pack_window
**w_curs
,
313 in
= use_pack(p
, w_curs
, offset
, &avail
);
315 avail
= (unsigned int)len
;
316 sha1write(f
, in
, avail
);
322 static int check_loose_inflate(unsigned char *data
, unsigned long len
, unsigned long expect
)
325 unsigned char fakebuf
[4096];
328 memset(&stream
, 0, sizeof(stream
));
329 stream
.next_in
= data
;
330 stream
.avail_in
= len
;
331 stream
.next_out
= fakebuf
;
332 stream
.avail_out
= sizeof(fakebuf
);
333 inflateInit(&stream
);
336 st
= inflate(&stream
, Z_FINISH
);
337 if (st
== Z_STREAM_END
|| st
== Z_OK
) {
338 st
= (stream
.total_out
== expect
&&
339 stream
.total_in
== len
) ? 0 : -1;
342 if (st
!= Z_BUF_ERROR
) {
346 stream
.next_out
= fakebuf
;
347 stream
.avail_out
= sizeof(fakebuf
);
353 static int revalidate_loose_object(struct object_entry
*entry
,
355 unsigned long mapsize
)
357 /* we already know this is a loose object with new type header. */
358 enum object_type type
;
359 unsigned long size
, used
;
364 used
= unpack_object_header_gently(map
, mapsize
, &type
, &size
);
369 return check_loose_inflate(map
, mapsize
, size
);
372 static off_t
write_object(struct sha1file
*f
,
373 struct object_entry
*entry
)
376 enum object_type type
;
378 unsigned char header
[10];
381 enum object_type obj_type
;
384 obj_type
= entry
->type
;
385 if (! entry
->in_pack
)
386 to_reuse
= 0; /* can't reuse what we don't have */
387 else if (obj_type
== OBJ_REF_DELTA
|| obj_type
== OBJ_OFS_DELTA
)
388 to_reuse
= 1; /* check_object() decided it for us */
389 else if (obj_type
!= entry
->in_pack_type
)
390 to_reuse
= 0; /* pack has delta which is unusable */
391 else if (entry
->delta
)
392 to_reuse
= 0; /* we want to pack afresh */
394 to_reuse
= 1; /* we have it in-pack undeltified,
395 * and we do not need to deltify it.
398 if (!entry
->in_pack
&& !entry
->delta
) {
400 unsigned long mapsize
;
401 map
= map_sha1_file(entry
->sha1
, &mapsize
);
402 if (map
&& !legacy_loose_object(map
)) {
403 /* We can copy straight into the pack file */
404 if (revalidate_loose_object(entry
, map
, mapsize
))
405 die("corrupt loose object %s",
406 sha1_to_hex(entry
->sha1
));
407 sha1write(f
, map
, mapsize
);
408 munmap(map
, mapsize
);
414 munmap(map
, mapsize
);
418 buf
= read_sha1_file(entry
->sha1
, &type
, &size
);
420 die("unable to read %s", sha1_to_hex(entry
->sha1
));
421 if (size
!= entry
->size
)
422 die("object %s size inconsistency (%lu vs %lu)",
423 sha1_to_hex(entry
->sha1
), size
, entry
->size
);
425 buf
= delta_against(buf
, size
, entry
);
426 size
= entry
->delta_size
;
427 obj_type
= (allow_ofs_delta
&& entry
->delta
->offset
) ?
428 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
431 * The object header is a byte of 'type' followed by zero or
432 * more bytes of length.
434 hdrlen
= encode_header(obj_type
, size
, header
);
435 sha1write(f
, header
, hdrlen
);
437 if (obj_type
== OBJ_OFS_DELTA
) {
439 * Deltas with relative base contain an additional
440 * encoding of the relative offset for the delta
441 * base from this object's position in the pack.
443 off_t ofs
= entry
->offset
- entry
->delta
->offset
;
444 unsigned pos
= sizeof(header
) - 1;
445 header
[pos
] = ofs
& 127;
447 header
[--pos
] = 128 | (--ofs
& 127);
448 sha1write(f
, header
+ pos
, sizeof(header
) - pos
);
449 hdrlen
+= sizeof(header
) - pos
;
450 } else if (obj_type
== OBJ_REF_DELTA
) {
452 * Deltas with a base reference contain
453 * an additional 20 bytes for the base sha1.
455 sha1write(f
, entry
->delta
->sha1
, 20);
458 datalen
= sha1write_compressed(f
, buf
, size
);
462 struct packed_git
*p
= entry
->in_pack
;
463 struct pack_window
*w_curs
= NULL
;
467 obj_type
= (allow_ofs_delta
&& entry
->delta
->offset
) ?
468 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
471 hdrlen
= encode_header(obj_type
, entry
->size
, header
);
472 sha1write(f
, header
, hdrlen
);
473 if (obj_type
== OBJ_OFS_DELTA
) {
474 off_t ofs
= entry
->offset
- entry
->delta
->offset
;
475 unsigned pos
= sizeof(header
) - 1;
476 header
[pos
] = ofs
& 127;
478 header
[--pos
] = 128 | (--ofs
& 127);
479 sha1write(f
, header
+ pos
, sizeof(header
) - pos
);
480 hdrlen
+= sizeof(header
) - pos
;
481 } else if (obj_type
== OBJ_REF_DELTA
) {
482 sha1write(f
, entry
->delta
->sha1
, 20);
486 offset
= entry
->in_pack_offset
+ entry
->in_pack_header_size
;
487 datalen
= find_packed_object_size(p
, entry
->in_pack_offset
)
488 - entry
->in_pack_header_size
;
489 if (!pack_to_stdout
&& check_pack_inflate(p
, &w_curs
,
490 offset
, datalen
, entry
->size
))
491 die("corrupt delta in pack %s", sha1_to_hex(entry
->sha1
));
492 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
499 return hdrlen
+ datalen
;
502 static off_t
write_one(struct sha1file
*f
,
503 struct object_entry
*e
,
506 if (e
->offset
|| e
->preferred_base
)
507 /* offset starts from header size and cannot be zero
508 * if it is written already.
511 /* if we are deltified, write out its base object first. */
513 offset
= write_one(f
, e
->delta
, offset
);
515 return offset
+ write_object(f
, e
);
518 static void write_pack_file(void)
523 struct pack_header hdr
;
524 unsigned last_percent
= 999;
525 int do_progress
= progress
;
528 f
= sha1fd(1, "<stdout>");
532 f
= sha1create("%s-%s.%s", base_name
,
533 sha1_to_hex(object_list_sha1
), "pack");
535 fprintf(stderr
, "Writing %u objects.\n", nr_result
);
537 hdr
.hdr_signature
= htonl(PACK_SIGNATURE
);
538 hdr
.hdr_version
= htonl(PACK_VERSION
);
539 hdr
.hdr_entries
= htonl(nr_result
);
540 sha1write(f
, &hdr
, sizeof(hdr
));
541 offset
= sizeof(hdr
);
544 for (i
= 0; i
< nr_objects
; i
++) {
545 offset
= write_one(f
, objects
+ i
, offset
);
547 unsigned percent
= written
* 100 / nr_result
;
548 if (progress_update
|| percent
!= last_percent
) {
549 fprintf(stderr
, "%4u%% (%u/%u) done\r",
550 percent
, written
, nr_result
);
552 last_percent
= percent
;
559 if (written
!= nr_result
)
560 die("wrote %u objects while expecting %u", written
, nr_result
);
561 sha1close(f
, pack_file_sha1
, 1);
564 static void write_index_file(void)
567 struct sha1file
*f
= sha1create("%s-%s.%s", base_name
,
568 sha1_to_hex(object_list_sha1
), "idx");
569 struct object_entry
**list
= sorted_by_sha
;
570 struct object_entry
**last
= list
+ nr_result
;
574 * Write the first-level table (the list is sorted,
575 * but we use a 256-entry lookup to be able to avoid
576 * having to do eight extra binary search iterations).
578 for (i
= 0; i
< 256; i
++) {
579 struct object_entry
**next
= list
;
580 while (next
< last
) {
581 struct object_entry
*entry
= *next
;
582 if (entry
->sha1
[0] != i
)
586 array
[i
] = htonl(next
- sorted_by_sha
);
589 sha1write(f
, array
, 256 * 4);
592 * Write the actual SHA1 entries..
594 list
= sorted_by_sha
;
595 for (i
= 0; i
< nr_result
; i
++) {
596 struct object_entry
*entry
= *list
++;
597 uint32_t offset
= htonl(entry
->offset
);
598 sha1write(f
, &offset
, 4);
599 sha1write(f
, entry
->sha1
, 20);
601 sha1write(f
, pack_file_sha1
, 20);
602 sha1close(f
, NULL
, 1);
605 static int locate_object_entry_hash(const unsigned char *sha1
)
609 memcpy(&ui
, sha1
, sizeof(unsigned int));
610 i
= ui
% object_ix_hashsz
;
611 while (0 < object_ix
[i
]) {
612 if (!hashcmp(sha1
, objects
[object_ix
[i
] - 1].sha1
))
614 if (++i
== object_ix_hashsz
)
620 static struct object_entry
*locate_object_entry(const unsigned char *sha1
)
624 if (!object_ix_hashsz
)
627 i
= locate_object_entry_hash(sha1
);
629 return &objects
[object_ix
[i
]-1];
633 static void rehash_objects(void)
636 struct object_entry
*oe
;
638 object_ix_hashsz
= nr_objects
* 3;
639 if (object_ix_hashsz
< 1024)
640 object_ix_hashsz
= 1024;
641 object_ix
= xrealloc(object_ix
, sizeof(int) * object_ix_hashsz
);
642 memset(object_ix
, 0, sizeof(int) * object_ix_hashsz
);
643 for (i
= 0, oe
= objects
; i
< nr_objects
; i
++, oe
++) {
644 int ix
= locate_object_entry_hash(oe
->sha1
);
648 object_ix
[ix
] = i
+ 1;
652 static unsigned name_hash(const char *name
)
658 * This effectively just creates a sortable number from the
659 * last sixteen non-whitespace characters. Last characters
660 * count "most", so things that end in ".c" sort together.
662 while ((c
= *name
++) != 0) {
665 hash
= (hash
>> 2) + (c
<< 24);
670 static int add_object_entry(const unsigned char *sha1
, unsigned hash
, int exclude
)
672 uint32_t idx
= nr_objects
;
673 struct object_entry
*entry
;
674 struct packed_git
*p
;
675 off_t found_offset
= 0;
676 struct packed_git
*found_pack
= NULL
;
680 for (p
= packed_git
; p
; p
= p
->next
) {
681 off_t offset
= find_pack_entry_one(sha1
, p
);
685 if (local
&& !p
->pack_local
)
688 found_offset
= offset
;
694 if ((entry
= locate_object_entry(sha1
)) != NULL
)
697 if (idx
>= nr_alloc
) {
698 nr_alloc
= (idx
+ 1024) * 3 / 2;
699 objects
= xrealloc(objects
, nr_alloc
* sizeof(*entry
));
701 entry
= objects
+ idx
;
702 nr_objects
= idx
+ 1;
703 memset(entry
, 0, sizeof(*entry
));
704 hashcpy(entry
->sha1
, sha1
);
707 if (object_ix_hashsz
* 3 <= nr_objects
* 4)
710 ix
= locate_object_entry_hash(entry
->sha1
);
712 die("internal error in object hashing.");
713 object_ix
[-1 - ix
] = idx
+ 1;
718 if (progress_update
) {
719 fprintf(stderr
, "Counting objects...%u\r", nr_objects
);
723 entry
->preferred_base
= 1;
726 entry
->in_pack
= found_pack
;
727 entry
->in_pack_offset
= found_offset
;
733 struct pbase_tree_cache
{
734 unsigned char sha1
[20];
738 unsigned long tree_size
;
741 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
742 static int pbase_tree_cache_ix(const unsigned char *sha1
)
744 return sha1
[0] % ARRAY_SIZE(pbase_tree_cache
);
746 static int pbase_tree_cache_ix_incr(int ix
)
748 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
751 static struct pbase_tree
{
752 struct pbase_tree
*next
;
753 /* This is a phony "cache" entry; we are not
754 * going to evict it nor find it through _get()
755 * mechanism -- this is for the toplevel node that
756 * would almost always change with any commit.
758 struct pbase_tree_cache pcache
;
761 static struct pbase_tree_cache
*pbase_tree_get(const unsigned char *sha1
)
763 struct pbase_tree_cache
*ent
, *nent
;
766 enum object_type type
;
768 int my_ix
= pbase_tree_cache_ix(sha1
);
769 int available_ix
= -1;
771 /* pbase-tree-cache acts as a limited hashtable.
772 * your object will be found at your index or within a few
773 * slots after that slot if it is cached.
775 for (neigh
= 0; neigh
< 8; neigh
++) {
776 ent
= pbase_tree_cache
[my_ix
];
777 if (ent
&& !hashcmp(ent
->sha1
, sha1
)) {
781 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
782 ((0 <= available_ix
) &&
783 (!ent
&& pbase_tree_cache
[available_ix
])))
784 available_ix
= my_ix
;
787 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
790 /* Did not find one. Either we got a bogus request or
791 * we need to read and perhaps cache.
793 data
= read_sha1_file(sha1
, &type
, &size
);
796 if (type
!= OBJ_TREE
) {
801 /* We need to either cache or return a throwaway copy */
803 if (available_ix
< 0)
806 ent
= pbase_tree_cache
[available_ix
];
807 my_ix
= available_ix
;
811 nent
= xmalloc(sizeof(*nent
));
812 nent
->temporary
= (available_ix
< 0);
815 /* evict and reuse */
816 free(ent
->tree_data
);
819 hashcpy(nent
->sha1
, sha1
);
820 nent
->tree_data
= data
;
821 nent
->tree_size
= size
;
823 if (!nent
->temporary
)
824 pbase_tree_cache
[my_ix
] = nent
;
828 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
830 if (!cache
->temporary
) {
834 free(cache
->tree_data
);
838 static int name_cmp_len(const char *name
)
841 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
846 static void add_pbase_object(struct tree_desc
*tree
,
849 const char *fullname
)
851 struct name_entry entry
;
853 while (tree_entry(tree
,&entry
)) {
855 enum object_type type
;
857 if (tree_entry_len(entry
.path
, entry
.sha1
) != cmplen
||
858 memcmp(entry
.path
, name
, cmplen
) ||
859 !has_sha1_file(entry
.sha1
) ||
860 (type
= sha1_object_info(entry
.sha1
, &size
)) < 0)
862 if (name
[cmplen
] != '/') {
863 unsigned hash
= name_hash(fullname
);
864 add_object_entry(entry
.sha1
, hash
, 1);
867 if (type
== OBJ_TREE
) {
868 struct tree_desc sub
;
869 struct pbase_tree_cache
*tree
;
870 const char *down
= name
+cmplen
+1;
871 int downlen
= name_cmp_len(down
);
873 tree
= pbase_tree_get(entry
.sha1
);
876 init_tree_desc(&sub
, tree
->tree_data
, tree
->tree_size
);
878 add_pbase_object(&sub
, down
, downlen
, fullname
);
879 pbase_tree_put(tree
);
884 static unsigned *done_pbase_paths
;
885 static int done_pbase_paths_num
;
886 static int done_pbase_paths_alloc
;
887 static int done_pbase_path_pos(unsigned hash
)
890 int hi
= done_pbase_paths_num
;
892 int mi
= (hi
+ lo
) / 2;
893 if (done_pbase_paths
[mi
] == hash
)
895 if (done_pbase_paths
[mi
] < hash
)
903 static int check_pbase_path(unsigned hash
)
905 int pos
= (!done_pbase_paths
) ? -1 : done_pbase_path_pos(hash
);
909 if (done_pbase_paths_alloc
<= done_pbase_paths_num
) {
910 done_pbase_paths_alloc
= alloc_nr(done_pbase_paths_alloc
);
911 done_pbase_paths
= xrealloc(done_pbase_paths
,
912 done_pbase_paths_alloc
*
915 done_pbase_paths_num
++;
916 if (pos
< done_pbase_paths_num
)
917 memmove(done_pbase_paths
+ pos
+ 1,
918 done_pbase_paths
+ pos
,
919 (done_pbase_paths_num
- pos
- 1) * sizeof(unsigned));
920 done_pbase_paths
[pos
] = hash
;
924 static void add_preferred_base_object(const char *name
, unsigned hash
)
926 struct pbase_tree
*it
;
927 int cmplen
= name_cmp_len(name
);
929 if (check_pbase_path(hash
))
932 for (it
= pbase_tree
; it
; it
= it
->next
) {
934 hash
= name_hash("");
935 add_object_entry(it
->pcache
.sha1
, hash
, 1);
938 struct tree_desc tree
;
939 init_tree_desc(&tree
, it
->pcache
.tree_data
, it
->pcache
.tree_size
);
940 add_pbase_object(&tree
, name
, cmplen
, name
);
945 static void add_preferred_base(unsigned char *sha1
)
947 struct pbase_tree
*it
;
950 unsigned char tree_sha1
[20];
952 if (window
<= num_preferred_base
++)
955 data
= read_object_with_reference(sha1
, tree_type
, &size
, tree_sha1
);
959 for (it
= pbase_tree
; it
; it
= it
->next
) {
960 if (!hashcmp(it
->pcache
.sha1
, tree_sha1
)) {
966 it
= xcalloc(1, sizeof(*it
));
967 it
->next
= pbase_tree
;
970 hashcpy(it
->pcache
.sha1
, tree_sha1
);
971 it
->pcache
.tree_data
= data
;
972 it
->pcache
.tree_size
= size
;
975 static void check_object(struct object_entry
*entry
)
977 if (entry
->in_pack
&& !entry
->preferred_base
) {
978 struct packed_git
*p
= entry
->in_pack
;
979 struct pack_window
*w_curs
= NULL
;
980 unsigned long size
, used
;
983 struct object_entry
*base_entry
= NULL
;
985 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
987 /* We want in_pack_type even if we do not reuse delta.
988 * There is no point not reusing non-delta representations.
990 used
= unpack_object_header_gently(buf
, avail
,
991 &entry
->in_pack_type
, &size
);
993 /* Check if it is delta, and the base is also an object
994 * we are going to pack. If so we will reuse the existing
997 if (!no_reuse_delta
) {
999 const unsigned char *base_name
;
1001 unsigned long used_0
;
1002 /* there is at least 20 bytes left in the pack */
1003 switch (entry
->in_pack_type
) {
1005 base_name
= use_pack(p
, &w_curs
,
1006 entry
->in_pack_offset
+ used
, NULL
);
1010 buf
= use_pack(p
, &w_curs
,
1011 entry
->in_pack_offset
+ used
, NULL
);
1017 if (!ofs
|| ofs
& ~(~0UL >> 7))
1018 die("delta base offset overflow in pack for %s",
1019 sha1_to_hex(entry
->sha1
));
1021 ofs
= (ofs
<< 7) + (c
& 127);
1023 if (ofs
>= entry
->in_pack_offset
)
1024 die("delta base offset out of bound for %s",
1025 sha1_to_hex(entry
->sha1
));
1026 ofs
= entry
->in_pack_offset
- ofs
;
1027 base_name
= find_packed_object_name(p
, ofs
);
1034 base_entry
= locate_object_entry(base_name
);
1036 unuse_pack(&w_curs
);
1037 entry
->in_pack_header_size
= used
;
1041 /* Depth value does not matter - find_deltas()
1042 * will never consider reused delta as the
1043 * base object to deltify other objects
1044 * against, in order to avoid circular deltas.
1047 /* uncompressed size of the delta data */
1049 entry
->delta
= base_entry
;
1050 entry
->type
= entry
->in_pack_type
;
1052 entry
->delta_sibling
= base_entry
->delta_child
;
1053 base_entry
->delta_child
= entry
;
1057 /* Otherwise we would do the usual */
1060 entry
->type
= sha1_object_info(entry
->sha1
, &entry
->size
);
1061 if (entry
->type
< 0)
1062 die("unable to get type of object %s",
1063 sha1_to_hex(entry
->sha1
));
1066 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
1068 struct object_entry
*child
= me
->delta_child
;
1071 unsigned int c
= check_delta_limit(child
, n
+ 1);
1074 child
= child
->delta_sibling
;
1079 static void get_object_details(void)
1082 struct object_entry
*entry
;
1085 for (i
= 0, entry
= objects
; i
< nr_objects
; i
++, entry
++)
1086 check_object(entry
);
1088 if (nr_objects
== nr_result
) {
1090 * Depth of objects that depend on the entry -- this
1091 * is subtracted from depth-max to break too deep
1092 * delta chain because of delta data reusing.
1093 * However, we loosen this restriction when we know we
1094 * are creating a thin pack -- it will have to be
1095 * expanded on the other end anyway, so do not
1096 * artificially cut the delta chain and let it go as
1099 for (i
= 0, entry
= objects
; i
< nr_objects
; i
++, entry
++)
1100 if (!entry
->delta
&& entry
->delta_child
)
1101 entry
->delta_limit
=
1102 check_delta_limit(entry
, 1);
1106 typedef int (*entry_sort_t
)(const struct object_entry
*, const struct object_entry
*);
1108 static entry_sort_t current_sort
;
1110 static int sort_comparator(const void *_a
, const void *_b
)
1112 struct object_entry
*a
= *(struct object_entry
**)_a
;
1113 struct object_entry
*b
= *(struct object_entry
**)_b
;
1114 return current_sort(a
,b
);
1117 static struct object_entry
**create_sorted_list(entry_sort_t sort
)
1119 struct object_entry
**list
= xmalloc(nr_objects
* sizeof(struct object_entry
*));
1122 for (i
= 0; i
< nr_objects
; i
++)
1123 list
[i
] = objects
+ i
;
1124 current_sort
= sort
;
1125 qsort(list
, nr_objects
, sizeof(struct object_entry
*), sort_comparator
);
1129 static int sha1_sort(const struct object_entry
*a
, const struct object_entry
*b
)
1131 return hashcmp(a
->sha1
, b
->sha1
);
1134 static struct object_entry
**create_final_object_list(void)
1136 struct object_entry
**list
;
1139 for (i
= nr_result
= 0; i
< nr_objects
; i
++)
1140 if (!objects
[i
].preferred_base
)
1142 list
= xmalloc(nr_result
* sizeof(struct object_entry
*));
1143 for (i
= j
= 0; i
< nr_objects
; i
++) {
1144 if (!objects
[i
].preferred_base
)
1145 list
[j
++] = objects
+ i
;
1147 current_sort
= sha1_sort
;
1148 qsort(list
, nr_result
, sizeof(struct object_entry
*), sort_comparator
);
1152 static int type_size_sort(const struct object_entry
*a
, const struct object_entry
*b
)
1154 if (a
->type
< b
->type
)
1156 if (a
->type
> b
->type
)
1158 if (a
->hash
< b
->hash
)
1160 if (a
->hash
> b
->hash
)
1162 if (a
->preferred_base
< b
->preferred_base
)
1164 if (a
->preferred_base
> b
->preferred_base
)
1166 if (a
->size
< b
->size
)
1168 if (a
->size
> b
->size
)
1170 return a
< b
? -1 : (a
> b
);
1174 struct object_entry
*entry
;
1176 struct delta_index
*index
;
1180 * We search for deltas _backwards_ in a list sorted by type and
1181 * by size, so that we see progressively smaller and smaller files.
1182 * That's because we prefer deltas to be from the bigger file
1183 * to the smaller - deletes are potentially cheaper, but perhaps
1184 * more importantly, the bigger file is likely the more recent
1187 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
1190 struct object_entry
*trg_entry
= trg
->entry
;
1191 struct object_entry
*src_entry
= src
->entry
;
1192 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
1193 enum object_type type
;
1196 /* Don't bother doing diffs between different types */
1197 if (trg_entry
->type
!= src_entry
->type
)
1200 /* We do not compute delta to *create* objects we are not
1203 if (trg_entry
->preferred_base
)
1207 * We do not bother to try a delta that we discarded
1208 * on an earlier try, but only when reusing delta data.
1210 if (!no_reuse_delta
&& trg_entry
->in_pack
&&
1211 trg_entry
->in_pack
== src_entry
->in_pack
&&
1212 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
1213 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
1217 * If the current object is at pack edge, take the depth the
1218 * objects that depend on the current object into account --
1219 * otherwise they would become too deep.
1221 if (trg_entry
->delta_child
) {
1222 if (max_depth
<= trg_entry
->delta_limit
)
1224 max_depth
-= trg_entry
->delta_limit
;
1226 if (src_entry
->depth
>= max_depth
)
1229 /* Now some size filtering heuristics. */
1230 trg_size
= trg_entry
->size
;
1231 max_size
= trg_size
/2 - 20;
1232 max_size
= max_size
* (max_depth
- src_entry
->depth
) / max_depth
;
1235 if (trg_entry
->delta
&& trg_entry
->delta_size
<= max_size
)
1236 max_size
= trg_entry
->delta_size
-1;
1237 src_size
= src_entry
->size
;
1238 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
1239 if (sizediff
>= max_size
)
1242 /* Load data if not already done */
1244 trg
->data
= read_sha1_file(trg_entry
->sha1
, &type
, &sz
);
1246 die("object %s inconsistent object length (%lu vs %lu)",
1247 sha1_to_hex(trg_entry
->sha1
), sz
, trg_size
);
1250 src
->data
= read_sha1_file(src_entry
->sha1
, &type
, &sz
);
1252 die("object %s inconsistent object length (%lu vs %lu)",
1253 sha1_to_hex(src_entry
->sha1
), sz
, src_size
);
1256 src
->index
= create_delta_index(src
->data
, src_size
);
1258 die("out of memory");
1261 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
1265 trg_entry
->delta
= src_entry
;
1266 trg_entry
->delta_size
= delta_size
;
1267 trg_entry
->depth
= src_entry
->depth
+ 1;
1272 static void progress_interval(int signum
)
1274 progress_update
= 1;
1277 static void find_deltas(struct object_entry
**list
, int window
, int depth
)
1279 uint32_t i
= nr_objects
, idx
= 0, processed
= 0;
1280 unsigned int array_size
= window
* sizeof(struct unpacked
);
1281 struct unpacked
*array
;
1282 unsigned last_percent
= 999;
1286 array
= xmalloc(array_size
);
1287 memset(array
, 0, array_size
);
1289 fprintf(stderr
, "Deltifying %u objects.\n", nr_result
);
1292 struct object_entry
*entry
= list
[--i
];
1293 struct unpacked
*n
= array
+ idx
;
1296 if (!entry
->preferred_base
)
1300 unsigned percent
= processed
* 100 / nr_result
;
1301 if (percent
!= last_percent
|| progress_update
) {
1302 fprintf(stderr
, "%4u%% (%u/%u) done\r",
1303 percent
, processed
, nr_result
);
1304 progress_update
= 0;
1305 last_percent
= percent
;
1310 /* This happens if we decided to reuse existing
1311 * delta from a pack. "!no_reuse_delta &&" is implied.
1315 if (entry
->size
< 50)
1317 free_delta_index(n
->index
);
1325 uint32_t other_idx
= idx
+ j
;
1327 if (other_idx
>= window
)
1328 other_idx
-= window
;
1329 m
= array
+ other_idx
;
1332 if (try_delta(n
, m
, depth
) < 0)
1335 /* if we made n a delta, and if n is already at max
1336 * depth, leaving it in the window is pointless. we
1337 * should evict it first.
1339 if (entry
->delta
&& depth
<= entry
->depth
)
1348 fputc('\n', stderr
);
1350 for (i
= 0; i
< window
; ++i
) {
1351 free_delta_index(array
[i
].index
);
1352 free(array
[i
].data
);
1357 static void prepare_pack(int window
, int depth
)
1359 get_object_details();
1360 sorted_by_type
= create_sorted_list(type_size_sort
);
1361 if (window
&& depth
)
1362 find_deltas(sorted_by_type
, window
+1, depth
);
1365 static int reuse_cached_pack(unsigned char *sha1
)
1367 static const char cache
[] = "pack-cache/pack-%s.%s";
1368 char *cached_pack
, *cached_idx
;
1369 int ifd
, ofd
, ifd_ix
= -1;
1371 cached_pack
= git_path(cache
, sha1_to_hex(sha1
), "pack");
1372 ifd
= open(cached_pack
, O_RDONLY
);
1376 if (!pack_to_stdout
) {
1377 cached_idx
= git_path(cache
, sha1_to_hex(sha1
), "idx");
1378 ifd_ix
= open(cached_idx
, O_RDONLY
);
1386 fprintf(stderr
, "Reusing %u objects pack %s\n", nr_objects
,
1389 if (pack_to_stdout
) {
1390 if (copy_fd(ifd
, 1))
1395 char name
[PATH_MAX
];
1396 snprintf(name
, sizeof(name
),
1397 "%s-%s.%s", base_name
, sha1_to_hex(sha1
), "pack");
1398 ofd
= open(name
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1400 die("unable to open %s (%s)", name
, strerror(errno
));
1401 if (copy_fd(ifd
, ofd
))
1405 snprintf(name
, sizeof(name
),
1406 "%s-%s.%s", base_name
, sha1_to_hex(sha1
), "idx");
1407 ofd
= open(name
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1409 die("unable to open %s (%s)", name
, strerror(errno
));
1410 if (copy_fd(ifd_ix
, ofd
))
1413 puts(sha1_to_hex(sha1
));
1419 static void setup_progress_signal(void)
1421 struct sigaction sa
;
1424 memset(&sa
, 0, sizeof(sa
));
1425 sa
.sa_handler
= progress_interval
;
1426 sigemptyset(&sa
.sa_mask
);
1427 sa
.sa_flags
= SA_RESTART
;
1428 sigaction(SIGALRM
, &sa
, NULL
);
1430 v
.it_interval
.tv_sec
= 1;
1431 v
.it_interval
.tv_usec
= 0;
1432 v
.it_value
= v
.it_interval
;
1433 setitimer(ITIMER_REAL
, &v
, NULL
);
1436 static int git_pack_config(const char *k
, const char *v
)
1438 if(!strcmp(k
, "pack.window")) {
1439 window
= git_config_int(k
, v
);
1442 return git_default_config(k
, v
);
1445 static void read_object_list_from_stdin(void)
1447 char line
[40 + 1 + PATH_MAX
+ 2];
1448 unsigned char sha1
[20];
1452 if (!fgets(line
, sizeof(line
), stdin
)) {
1456 die("fgets returned NULL, not EOF, not error!");
1458 die("fgets: %s", strerror(errno
));
1462 if (line
[0] == '-') {
1463 if (get_sha1_hex(line
+1, sha1
))
1464 die("expected edge sha1, got garbage:\n %s",
1466 add_preferred_base(sha1
);
1469 if (get_sha1_hex(line
, sha1
))
1470 die("expected sha1, got garbage:\n %s", line
);
1472 hash
= name_hash(line
+41);
1473 add_preferred_base_object(line
+41, hash
);
1474 add_object_entry(sha1
, hash
, 0);
1478 static void show_commit(struct commit
*commit
)
1480 unsigned hash
= name_hash("");
1481 add_preferred_base_object("", hash
);
1482 add_object_entry(commit
->object
.sha1
, hash
, 0);
1485 static void show_object(struct object_array_entry
*p
)
1487 unsigned hash
= name_hash(p
->name
);
1488 add_preferred_base_object(p
->name
, hash
);
1489 add_object_entry(p
->item
->sha1
, hash
, 0);
1492 static void show_edge(struct commit
*commit
)
1494 add_preferred_base(commit
->object
.sha1
);
1497 static void get_object_list(int ac
, const char **av
)
1499 struct rev_info revs
;
1503 init_revisions(&revs
, NULL
);
1504 save_commit_buffer
= 0;
1505 track_object_refs
= 0;
1506 setup_revisions(ac
, av
, &revs
, NULL
);
1508 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
1509 int len
= strlen(line
);
1510 if (line
[len
- 1] == '\n')
1515 if (!strcmp(line
, "--not")) {
1516 flags
^= UNINTERESTING
;
1519 die("not a rev '%s'", line
);
1521 if (handle_revision_arg(line
, &revs
, flags
, 1))
1522 die("bad revision '%s'", line
);
1525 prepare_revision_walk(&revs
);
1526 mark_edges_uninteresting(revs
.commits
, &revs
, show_edge
);
1527 traverse_commit_list(&revs
, show_commit
, show_object
);
1530 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
1534 struct object_entry
**list
;
1535 int use_internal_rev_list
= 0;
1539 int rp_ac_alloc
= 64;
1542 rp_av
= xcalloc(rp_ac_alloc
, sizeof(*rp_av
));
1544 rp_av
[0] = "pack-objects";
1545 rp_av
[1] = "--objects"; /* --thin will make it --objects-edge */
1548 git_config(git_pack_config
);
1550 progress
= isatty(2);
1551 for (i
= 1; i
< argc
; i
++) {
1552 const char *arg
= argv
[i
];
1557 if (!strcmp("--non-empty", arg
)) {
1561 if (!strcmp("--local", arg
)) {
1565 if (!strcmp("--incremental", arg
)) {
1569 if (!prefixcmp(arg
, "--window=")) {
1571 window
= strtoul(arg
+9, &end
, 0);
1572 if (!arg
[9] || *end
)
1576 if (!prefixcmp(arg
, "--depth=")) {
1578 depth
= strtoul(arg
+8, &end
, 0);
1579 if (!arg
[8] || *end
)
1583 if (!strcmp("--progress", arg
)) {
1587 if (!strcmp("--all-progress", arg
)) {
1591 if (!strcmp("-q", arg
)) {
1595 if (!strcmp("--no-reuse-delta", arg
)) {
1599 if (!strcmp("--delta-base-offset", arg
)) {
1600 allow_ofs_delta
= 1;
1603 if (!strcmp("--stdout", arg
)) {
1607 if (!strcmp("--revs", arg
)) {
1608 use_internal_rev_list
= 1;
1611 if (!strcmp("--unpacked", arg
) ||
1612 !prefixcmp(arg
, "--unpacked=") ||
1613 !strcmp("--reflog", arg
) ||
1614 !strcmp("--all", arg
)) {
1615 use_internal_rev_list
= 1;
1616 if (rp_ac
>= rp_ac_alloc
- 1) {
1617 rp_ac_alloc
= alloc_nr(rp_ac_alloc
);
1618 rp_av
= xrealloc(rp_av
,
1619 rp_ac_alloc
* sizeof(*rp_av
));
1621 rp_av
[rp_ac
++] = arg
;
1624 if (!strcmp("--thin", arg
)) {
1625 use_internal_rev_list
= 1;
1627 rp_av
[1] = "--objects-edge";
1633 /* Traditionally "pack-objects [options] base extra" failed;
1634 * we would however want to take refs parameter that would
1635 * have been given to upstream rev-list ourselves, which means
1636 * we somehow want to say what the base name is. So the
1639 * pack-objects [options] base <refs...>
1641 * in other words, we would treat the first non-option as the
1642 * base_name and send everything else to the internal revision
1646 if (!pack_to_stdout
)
1647 base_name
= argv
[i
++];
1649 if (pack_to_stdout
!= !base_name
)
1652 if (!pack_to_stdout
&& thin
)
1653 die("--thin cannot be used to build an indexable pack.");
1655 prepare_packed_git();
1658 fprintf(stderr
, "Generating pack...\n");
1659 setup_progress_signal();
1662 if (!use_internal_rev_list
)
1663 read_object_list_from_stdin();
1665 rp_av
[rp_ac
] = NULL
;
1666 get_object_list(rp_ac
, rp_av
);
1670 fprintf(stderr
, "Done counting %u objects.\n", nr_objects
);
1671 sorted_by_sha
= create_final_object_list();
1672 if (non_empty
&& !nr_result
)
1676 list
= sorted_by_sha
;
1677 for (i
= 0; i
< nr_result
; i
++) {
1678 struct object_entry
*entry
= *list
++;
1679 SHA1_Update(&ctx
, entry
->sha1
, 20);
1681 SHA1_Final(object_list_sha1
, &ctx
);
1682 if (progress
&& (nr_objects
!= nr_result
))
1683 fprintf(stderr
, "Result has %u objects.\n", nr_result
);
1685 if (reuse_cached_pack(object_list_sha1
))
1689 prepare_pack(window
, depth
);
1690 if (progress
== 1 && pack_to_stdout
) {
1691 /* the other end usually displays progress itself */
1692 struct itimerval v
= {{0,},};
1693 setitimer(ITIMER_REAL
, &v
, NULL
);
1694 signal(SIGALRM
, SIG_IGN
);
1695 progress_update
= 0;
1698 if (!pack_to_stdout
) {
1700 puts(sha1_to_hex(object_list_sha1
));
1704 fprintf(stderr
, "Total %u (delta %u), reused %u (delta %u)\n",
1705 written
, written_delta
, reused
, reused_delta
);