10 #include "tree-walk.h"
14 static const char pack_usage
[] = "git-pack-objects [-q] [--no-reuse-delta] [--non-empty] [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list";
17 unsigned char sha1
[20];
18 unsigned long size
; /* uncompressed size */
19 unsigned long offset
; /* offset into the final pack file;
20 * nonzero if already written.
22 unsigned int depth
; /* delta depth */
23 unsigned int delta_limit
; /* base adjustment for in-pack delta */
24 unsigned int hash
; /* name hint hash */
25 enum object_type type
;
26 enum object_type in_pack_type
; /* could be delta */
27 unsigned long delta_size
; /* delta data size (uncompressed) */
28 struct object_entry
*delta
; /* delta base object */
29 struct packed_git
*in_pack
; /* already in pack */
30 unsigned int in_pack_offset
;
31 struct object_entry
*delta_child
; /* delitified objects who bases me */
32 struct object_entry
*delta_sibling
; /* other deltified objects who
33 * uses the same base as me
35 int preferred_base
; /* we do not pack this, but is encouraged to
36 * be used as the base objectto delta huge
42 * Objects we are going to pack are colected in objects array (dynamically
43 * expanded). nr_objects & nr_alloc controls this array. They are stored
44 * in the order we see -- typically rev-list --objects order that gives us
45 * nice "minimum seek" order.
47 * sorted-by-sha ans sorted-by-type are arrays of pointers that point at
48 * elements in the objects array. The former is used to build the pack
49 * index (lists object names in the ascending order to help offset lookup),
50 * and the latter is used to group similar things together by try_delta()
54 static unsigned char object_list_sha1
[20];
55 static int non_empty
= 0;
56 static int no_reuse_delta
= 0;
58 static int incremental
= 0;
59 static struct object_entry
**sorted_by_sha
, **sorted_by_type
;
60 static struct object_entry
*objects
= NULL
;
61 static int nr_objects
= 0, nr_alloc
= 0, nr_result
= 0;
62 static const char *base_name
;
63 static unsigned char pack_file_sha1
[20];
64 static int progress
= 1;
65 static volatile sig_atomic_t progress_update
= 0;
68 * The object names in objects array are hashed with this hashtable,
69 * to help looking up the entry by object name. Binary search from
70 * sorted_by_sha is also possible but this was easier to code and faster.
71 * This hashtable is built after all the objects are seen.
73 static int *object_ix
= NULL
;
74 static int object_ix_hashsz
= 0;
77 * Pack index for existing packs give us easy access to the offsets into
78 * corresponding pack file where each object's data starts, but the entries
79 * do not store the size of the compressed representation (uncompressed
80 * size is easily available by examining the pack entry header). We build
81 * a hashtable of existing packs (pack_revindex), and keep reverse index
82 * here -- pack index file is sorted by object name mapping to offset; this
83 * pack_revindex[].revindex array is an ordered list of offsets, so if you
84 * know the offset of an object, next offset is where its packed
85 * representation ends.
87 struct pack_revindex
{
89 unsigned long *revindex
;
90 } *pack_revindex
= NULL
;
91 static int pack_revindex_hashsz
= 0;
96 static int written
= 0;
97 static int written_delta
= 0;
98 static int reused
= 0;
99 static int reused_delta
= 0;
101 static int pack_revindex_ix(struct packed_git
*p
)
103 unsigned long ui
= (unsigned long)p
;
106 ui
= ui
^ (ui
>> 16); /* defeat structure alignment */
107 i
= (int)(ui
% pack_revindex_hashsz
);
108 while (pack_revindex
[i
].p
) {
109 if (pack_revindex
[i
].p
== p
)
111 if (++i
== pack_revindex_hashsz
)
117 static void prepare_pack_ix(void)
120 struct packed_git
*p
;
121 for (num
= 0, p
= packed_git
; p
; p
= p
->next
)
125 pack_revindex_hashsz
= num
* 11;
126 pack_revindex
= xcalloc(sizeof(*pack_revindex
), pack_revindex_hashsz
);
127 for (p
= packed_git
; p
; p
= p
->next
) {
128 num
= pack_revindex_ix(p
);
130 pack_revindex
[num
].p
= p
;
132 /* revindex elements are lazily initialized */
135 static int cmp_offset(const void *a_
, const void *b_
)
137 unsigned long a
= *(unsigned long *) a_
;
138 unsigned long b
= *(unsigned long *) b_
;
148 * Ordered list of offsets of objects in the pack.
150 static void prepare_pack_revindex(struct pack_revindex
*rix
)
152 struct packed_git
*p
= rix
->p
;
153 int num_ent
= num_packed_objects(p
);
155 void *index
= p
->index_base
+ 256;
157 rix
->revindex
= xmalloc(sizeof(unsigned long) * (num_ent
+ 1));
158 for (i
= 0; i
< num_ent
; i
++) {
159 unsigned int hl
= *((unsigned int *)((char *) index
+ 24*i
));
160 rix
->revindex
[i
] = ntohl(hl
);
162 /* This knows the pack format -- the 20-byte trailer
163 * follows immediately after the last object data.
165 rix
->revindex
[num_ent
] = p
->pack_size
- 20;
166 qsort(rix
->revindex
, num_ent
, sizeof(unsigned long), cmp_offset
);
169 static unsigned long find_packed_object_size(struct packed_git
*p
,
174 struct pack_revindex
*rix
;
175 unsigned long *revindex
;
176 num
= pack_revindex_ix(p
);
178 die("internal error: pack revindex uninitialized");
179 rix
= &pack_revindex
[num
];
181 prepare_pack_revindex(rix
);
182 revindex
= rix
->revindex
;
184 hi
= num_packed_objects(p
) + 1;
186 int mi
= (lo
+ hi
) / 2;
187 if (revindex
[mi
] == ofs
) {
188 return revindex
[mi
+1] - ofs
;
190 else if (ofs
< revindex
[mi
])
195 die("internal error: pack revindex corrupt");
198 static void *delta_against(void *buf
, unsigned long size
, struct object_entry
*entry
)
200 unsigned long othersize
, delta_size
;
202 void *otherbuf
= read_sha1_file(entry
->delta
->sha1
, type
, &othersize
);
206 die("unable to read %s", sha1_to_hex(entry
->delta
->sha1
));
207 delta_buf
= diff_delta(otherbuf
, othersize
,
208 buf
, size
, &delta_size
, 0);
209 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
210 die("delta size changed");
217 * The per-object header is a pretty dense thing, which is
218 * - first byte: low four bits are "size", then three bits of "type",
219 * and the high bit is "size continues".
220 * - each byte afterwards: low seven bits are size continuation,
221 * with the high bit being "size continues"
223 static int encode_header(enum object_type type
, unsigned long size
, unsigned char *hdr
)
228 if (type
< OBJ_COMMIT
|| type
> OBJ_DELTA
)
229 die("bad type %d", type
);
231 c
= (type
<< 4) | (size
& 15);
243 static unsigned long write_object(struct sha1file
*f
,
244 struct object_entry
*entry
)
249 unsigned char header
[10];
250 unsigned hdrlen
, datalen
;
251 enum object_type obj_type
;
254 if (entry
->preferred_base
)
257 obj_type
= entry
->type
;
258 if (! entry
->in_pack
)
259 to_reuse
= 0; /* can't reuse what we don't have */
260 else if (obj_type
== OBJ_DELTA
)
261 to_reuse
= 1; /* check_object() decided it for us */
262 else if (obj_type
!= entry
->in_pack_type
)
263 to_reuse
= 0; /* pack has delta which is unusable */
264 else if (entry
->delta
)
265 to_reuse
= 0; /* we want to pack afresh */
267 to_reuse
= 1; /* we have it in-pack undeltified,
268 * and we do not need to deltify it.
272 buf
= read_sha1_file(entry
->sha1
, type
, &size
);
274 die("unable to read %s", sha1_to_hex(entry
->sha1
));
275 if (size
!= entry
->size
)
276 die("object %s size inconsistency (%lu vs %lu)",
277 sha1_to_hex(entry
->sha1
), size
, entry
->size
);
279 buf
= delta_against(buf
, size
, entry
);
280 size
= entry
->delta_size
;
281 obj_type
= OBJ_DELTA
;
284 * The object header is a byte of 'type' followed by zero or
285 * more bytes of length. For deltas, the 20 bytes of delta
288 hdrlen
= encode_header(obj_type
, size
, header
);
289 sha1write(f
, header
, hdrlen
);
292 sha1write(f
, entry
->delta
, 20);
295 datalen
= sha1write_compressed(f
, buf
, size
);
299 struct packed_git
*p
= entry
->in_pack
;
302 datalen
= find_packed_object_size(p
, entry
->in_pack_offset
);
303 buf
= (char *) p
->pack_base
+ entry
->in_pack_offset
;
304 sha1write(f
, buf
, datalen
);
306 hdrlen
= 0; /* not really */
307 if (obj_type
== OBJ_DELTA
)
311 if (obj_type
== OBJ_DELTA
)
314 return hdrlen
+ datalen
;
317 static unsigned long write_one(struct sha1file
*f
,
318 struct object_entry
*e
,
319 unsigned long offset
)
322 /* offset starts from header size and cannot be zero
323 * if it is written already.
327 offset
+= write_object(f
, e
);
328 /* if we are deltified, write out its base object. */
330 offset
= write_one(f
, e
->delta
, offset
);
334 static void write_pack_file(void)
338 unsigned long offset
;
339 struct pack_header hdr
;
340 unsigned last_percent
= 999;
344 f
= sha1fd(1, "<stdout>");
346 f
= sha1create("%s-%s.%s", base_name
,
347 sha1_to_hex(object_list_sha1
), "pack");
348 do_progress
= progress
;
351 fprintf(stderr
, "Writing %d objects.\n", nr_result
);
353 hdr
.hdr_signature
= htonl(PACK_SIGNATURE
);
354 hdr
.hdr_version
= htonl(PACK_VERSION
);
355 hdr
.hdr_entries
= htonl(nr_result
);
356 sha1write(f
, &hdr
, sizeof(hdr
));
357 offset
= sizeof(hdr
);
360 for (i
= 0; i
< nr_objects
; i
++) {
361 offset
= write_one(f
, objects
+ i
, offset
);
363 unsigned percent
= written
* 100 / nr_result
;
364 if (progress_update
|| percent
!= last_percent
) {
365 fprintf(stderr
, "%4u%% (%u/%u) done\r",
366 percent
, written
, nr_result
);
368 last_percent
= percent
;
375 sha1close(f
, pack_file_sha1
, 1);
378 static void write_index_file(void)
381 struct sha1file
*f
= sha1create("%s-%s.%s", base_name
,
382 sha1_to_hex(object_list_sha1
), "idx");
383 struct object_entry
**list
= sorted_by_sha
;
384 struct object_entry
**last
= list
+ nr_result
;
385 unsigned int array
[256];
388 * Write the first-level table (the list is sorted,
389 * but we use a 256-entry lookup to be able to avoid
390 * having to do eight extra binary search iterations).
392 for (i
= 0; i
< 256; i
++) {
393 struct object_entry
**next
= list
;
394 while (next
< last
) {
395 struct object_entry
*entry
= *next
;
396 if (entry
->sha1
[0] != i
)
400 array
[i
] = htonl(next
- sorted_by_sha
);
403 sha1write(f
, array
, 256 * sizeof(int));
406 * Write the actual SHA1 entries..
408 list
= sorted_by_sha
;
409 for (i
= 0; i
< nr_result
; i
++) {
410 struct object_entry
*entry
= *list
++;
411 unsigned int offset
= htonl(entry
->offset
);
412 sha1write(f
, &offset
, 4);
413 sha1write(f
, entry
->sha1
, 20);
415 sha1write(f
, pack_file_sha1
, 20);
416 sha1close(f
, NULL
, 1);
419 static int locate_object_entry_hash(const unsigned char *sha1
)
423 memcpy(&ui
, sha1
, sizeof(unsigned int));
424 i
= ui
% object_ix_hashsz
;
425 while (0 < object_ix
[i
]) {
426 if (!memcmp(sha1
, objects
[object_ix
[i
]-1].sha1
, 20))
428 if (++i
== object_ix_hashsz
)
434 static struct object_entry
*locate_object_entry(const unsigned char *sha1
)
438 if (!object_ix_hashsz
)
441 i
= locate_object_entry_hash(sha1
);
443 return &objects
[object_ix
[i
]-1];
447 static void rehash_objects(void)
450 struct object_entry
*oe
;
452 object_ix_hashsz
= nr_objects
* 3;
453 if (object_ix_hashsz
< 1024)
454 object_ix_hashsz
= 1024;
455 object_ix
= xrealloc(object_ix
, sizeof(int) * object_ix_hashsz
);
456 memset(object_ix
, 0, sizeof(int) * object_ix_hashsz
);
457 for (i
= 0, oe
= objects
; i
< nr_objects
; i
++, oe
++) {
458 int ix
= locate_object_entry_hash(oe
->sha1
);
462 object_ix
[ix
] = i
+ 1;
466 static unsigned name_hash(const char *name
)
472 * This effectively just creates a sortable number from the
473 * last sixteen non-whitespace characters. Last characters
474 * count "most", so things that end in ".c" sort together.
476 while ((c
= *name
++) != 0) {
479 hash
= (hash
>> 2) + (c
<< 24);
484 static int add_object_entry(const unsigned char *sha1
, unsigned hash
, int exclude
)
486 unsigned int idx
= nr_objects
;
487 struct object_entry
*entry
;
488 struct packed_git
*p
;
489 unsigned int found_offset
= 0;
490 struct packed_git
*found_pack
= NULL
;
494 for (p
= packed_git
; p
; p
= p
->next
) {
496 if (find_pack_entry_one(sha1
, &e
, p
)) {
499 if (local
&& !p
->pack_local
)
502 found_offset
= e
.offset
;
508 if ((entry
= locate_object_entry(sha1
)) != NULL
)
511 if (idx
>= nr_alloc
) {
512 unsigned int needed
= (idx
+ 1024) * 3 / 2;
513 objects
= xrealloc(objects
, needed
* sizeof(*entry
));
516 entry
= objects
+ idx
;
517 nr_objects
= idx
+ 1;
518 memset(entry
, 0, sizeof(*entry
));
519 memcpy(entry
->sha1
, sha1
, 20);
522 if (object_ix_hashsz
* 3 <= nr_objects
* 4)
525 ix
= locate_object_entry_hash(entry
->sha1
);
527 die("internal error in object hashing.");
528 object_ix
[-1 - ix
] = idx
+ 1;
533 if (progress_update
) {
534 fprintf(stderr
, "Counting objects...%d\r", nr_objects
);
538 entry
->preferred_base
= 1;
541 entry
->in_pack
= found_pack
;
542 entry
->in_pack_offset
= found_offset
;
548 struct pbase_tree_cache
{
549 unsigned char sha1
[20];
553 unsigned long tree_size
;
556 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
557 static int pbase_tree_cache_ix(const unsigned char *sha1
)
559 return sha1
[0] % ARRAY_SIZE(pbase_tree_cache
);
561 static int pbase_tree_cache_ix_incr(int ix
)
563 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
566 static struct pbase_tree
{
567 struct pbase_tree
*next
;
568 /* This is a phony "cache" entry; we are not
569 * going to evict it nor find it through _get()
570 * mechanism -- this is for the toplevel node that
571 * would almost always change with any commit.
573 struct pbase_tree_cache pcache
;
576 static struct pbase_tree_cache
*pbase_tree_get(const unsigned char *sha1
)
578 struct pbase_tree_cache
*ent
, *nent
;
583 int my_ix
= pbase_tree_cache_ix(sha1
);
584 int available_ix
= -1;
586 /* pbase-tree-cache acts as a limited hashtable.
587 * your object will be found at your index or within a few
588 * slots after that slot if it is cached.
590 for (neigh
= 0; neigh
< 8; neigh
++) {
591 ent
= pbase_tree_cache
[my_ix
];
592 if (ent
&& !memcmp(ent
->sha1
, sha1
, 20)) {
596 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
597 ((0 <= available_ix
) &&
598 (!ent
&& pbase_tree_cache
[available_ix
])))
599 available_ix
= my_ix
;
602 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
605 /* Did not find one. Either we got a bogus request or
606 * we need to read and perhaps cache.
608 data
= read_sha1_file(sha1
, type
, &size
);
611 if (strcmp(type
, tree_type
)) {
616 /* We need to either cache or return a throwaway copy */
618 if (available_ix
< 0)
621 ent
= pbase_tree_cache
[available_ix
];
622 my_ix
= available_ix
;
626 nent
= xmalloc(sizeof(*nent
));
627 nent
->temporary
= (available_ix
< 0);
630 /* evict and reuse */
631 free(ent
->tree_data
);
634 memcpy(nent
->sha1
, sha1
, 20);
635 nent
->tree_data
= data
;
636 nent
->tree_size
= size
;
638 if (!nent
->temporary
)
639 pbase_tree_cache
[my_ix
] = nent
;
643 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
645 if (!cache
->temporary
) {
649 free(cache
->tree_data
);
653 static int name_cmp_len(const char *name
)
656 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
661 static void add_pbase_object(struct tree_desc
*tree
,
664 const char *fullname
)
666 struct name_entry entry
;
668 while (tree_entry(tree
,&entry
)) {
672 if (entry
.pathlen
!= cmplen
||
673 memcmp(entry
.path
, name
, cmplen
) ||
674 !has_sha1_file(entry
.sha1
) ||
675 sha1_object_info(entry
.sha1
, type
, &size
))
677 if (name
[cmplen
] != '/') {
678 unsigned hash
= name_hash(fullname
);
679 add_object_entry(entry
.sha1
, hash
, 1);
682 if (!strcmp(type
, tree_type
)) {
683 struct tree_desc sub
;
684 struct pbase_tree_cache
*tree
;
685 const char *down
= name
+cmplen
+1;
686 int downlen
= name_cmp_len(down
);
688 tree
= pbase_tree_get(entry
.sha1
);
691 sub
.buf
= tree
->tree_data
;
692 sub
.size
= tree
->tree_size
;
694 add_pbase_object(&sub
, down
, downlen
, fullname
);
695 pbase_tree_put(tree
);
700 static unsigned *done_pbase_paths
;
701 static int done_pbase_paths_num
;
702 static int done_pbase_paths_alloc
;
703 static int done_pbase_path_pos(unsigned hash
)
706 int hi
= done_pbase_paths_num
;
708 int mi
= (hi
+ lo
) / 2;
709 if (done_pbase_paths
[mi
] == hash
)
711 if (done_pbase_paths
[mi
] < hash
)
719 static int check_pbase_path(unsigned hash
)
721 int pos
= (!done_pbase_paths
) ? -1 : done_pbase_path_pos(hash
);
725 if (done_pbase_paths_alloc
<= done_pbase_paths_num
) {
726 done_pbase_paths_alloc
= alloc_nr(done_pbase_paths_alloc
);
727 done_pbase_paths
= xrealloc(done_pbase_paths
,
728 done_pbase_paths_alloc
*
731 done_pbase_paths_num
++;
732 if (pos
< done_pbase_paths_num
)
733 memmove(done_pbase_paths
+ pos
+ 1,
734 done_pbase_paths
+ pos
,
735 (done_pbase_paths_num
- pos
- 1) * sizeof(unsigned));
736 done_pbase_paths
[pos
] = hash
;
740 static void add_preferred_base_object(char *name
, unsigned hash
)
742 struct pbase_tree
*it
;
743 int cmplen
= name_cmp_len(name
);
745 if (check_pbase_path(hash
))
748 for (it
= pbase_tree
; it
; it
= it
->next
) {
750 hash
= name_hash("");
751 add_object_entry(it
->pcache
.sha1
, hash
, 1);
754 struct tree_desc tree
;
755 tree
.buf
= it
->pcache
.tree_data
;
756 tree
.size
= it
->pcache
.tree_size
;
757 add_pbase_object(&tree
, name
, cmplen
, name
);
762 static void add_preferred_base(unsigned char *sha1
)
764 struct pbase_tree
*it
;
767 unsigned char tree_sha1
[20];
769 data
= read_object_with_reference(sha1
, tree_type
, &size
, tree_sha1
);
773 for (it
= pbase_tree
; it
; it
= it
->next
) {
774 if (!memcmp(it
->pcache
.sha1
, tree_sha1
, 20)) {
780 it
= xcalloc(1, sizeof(*it
));
781 it
->next
= pbase_tree
;
784 memcpy(it
->pcache
.sha1
, tree_sha1
, 20);
785 it
->pcache
.tree_data
= data
;
786 it
->pcache
.tree_size
= size
;
789 static void check_object(struct object_entry
*entry
)
793 if (entry
->in_pack
&& !entry
->preferred_base
) {
794 unsigned char base
[20];
796 struct object_entry
*base_entry
;
798 /* We want in_pack_type even if we do not reuse delta.
799 * There is no point not reusing non-delta representations.
801 check_reuse_pack_delta(entry
->in_pack
,
802 entry
->in_pack_offset
,
804 &entry
->in_pack_type
);
806 /* Check if it is delta, and the base is also an object
807 * we are going to pack. If so we will reuse the existing
810 if (!no_reuse_delta
&&
811 entry
->in_pack_type
== OBJ_DELTA
&&
812 (base_entry
= locate_object_entry(base
)) &&
813 (!base_entry
->preferred_base
)) {
815 /* Depth value does not matter - find_deltas()
816 * will never consider reused delta as the
817 * base object to deltify other objects
818 * against, in order to avoid circular deltas.
821 /* uncompressed size of the delta data */
822 entry
->size
= entry
->delta_size
= size
;
823 entry
->delta
= base_entry
;
824 entry
->type
= OBJ_DELTA
;
826 entry
->delta_sibling
= base_entry
->delta_child
;
827 base_entry
->delta_child
= entry
;
831 /* Otherwise we would do the usual */
834 if (sha1_object_info(entry
->sha1
, type
, &entry
->size
))
835 die("unable to get type of object %s",
836 sha1_to_hex(entry
->sha1
));
838 if (!strcmp(type
, commit_type
)) {
839 entry
->type
= OBJ_COMMIT
;
840 } else if (!strcmp(type
, tree_type
)) {
841 entry
->type
= OBJ_TREE
;
842 } else if (!strcmp(type
, blob_type
)) {
843 entry
->type
= OBJ_BLOB
;
844 } else if (!strcmp(type
, tag_type
)) {
845 entry
->type
= OBJ_TAG
;
847 die("unable to pack object %s of type %s",
848 sha1_to_hex(entry
->sha1
), type
);
851 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
853 struct object_entry
*child
= me
->delta_child
;
856 unsigned int c
= check_delta_limit(child
, n
+ 1);
859 child
= child
->delta_sibling
;
864 static void get_object_details(void)
867 struct object_entry
*entry
;
870 for (i
= 0, entry
= objects
; i
< nr_objects
; i
++, entry
++)
873 if (nr_objects
== nr_result
) {
875 * Depth of objects that depend on the entry -- this
876 * is subtracted from depth-max to break too deep
877 * delta chain because of delta data reusing.
878 * However, we loosen this restriction when we know we
879 * are creating a thin pack -- it will have to be
880 * expanded on the other end anyway, so do not
881 * artificially cut the delta chain and let it go as
884 for (i
= 0, entry
= objects
; i
< nr_objects
; i
++, entry
++)
885 if (!entry
->delta
&& entry
->delta_child
)
887 check_delta_limit(entry
, 1);
891 typedef int (*entry_sort_t
)(const struct object_entry
*, const struct object_entry
*);
893 static entry_sort_t current_sort
;
895 static int sort_comparator(const void *_a
, const void *_b
)
897 struct object_entry
*a
= *(struct object_entry
**)_a
;
898 struct object_entry
*b
= *(struct object_entry
**)_b
;
899 return current_sort(a
,b
);
902 static struct object_entry
**create_sorted_list(entry_sort_t sort
)
904 struct object_entry
**list
= xmalloc(nr_objects
* sizeof(struct object_entry
*));
907 for (i
= 0; i
< nr_objects
; i
++)
908 list
[i
] = objects
+ i
;
910 qsort(list
, nr_objects
, sizeof(struct object_entry
*), sort_comparator
);
914 static int sha1_sort(const struct object_entry
*a
, const struct object_entry
*b
)
916 return memcmp(a
->sha1
, b
->sha1
, 20);
919 static struct object_entry
**create_final_object_list(void)
921 struct object_entry
**list
;
924 for (i
= nr_result
= 0; i
< nr_objects
; i
++)
925 if (!objects
[i
].preferred_base
)
927 list
= xmalloc(nr_result
* sizeof(struct object_entry
*));
928 for (i
= j
= 0; i
< nr_objects
; i
++) {
929 if (!objects
[i
].preferred_base
)
930 list
[j
++] = objects
+ i
;
932 current_sort
= sha1_sort
;
933 qsort(list
, nr_result
, sizeof(struct object_entry
*), sort_comparator
);
937 static int type_size_sort(const struct object_entry
*a
, const struct object_entry
*b
)
939 if (a
->type
< b
->type
)
941 if (a
->type
> b
->type
)
943 if (a
->hash
< b
->hash
)
945 if (a
->hash
> b
->hash
)
947 if (a
->preferred_base
< b
->preferred_base
)
949 if (a
->preferred_base
> b
->preferred_base
)
951 if (a
->size
< b
->size
)
953 if (a
->size
> b
->size
)
955 return a
< b
? -1 : (a
> b
);
959 struct object_entry
*entry
;
961 struct delta_index
*index
;
965 * We search for deltas _backwards_ in a list sorted by type and
966 * by size, so that we see progressively smaller and smaller files.
967 * That's because we prefer deltas to be from the bigger file
968 * to the smaller - deletes are potentially cheaper, but perhaps
969 * more importantly, the bigger file is likely the more recent
972 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
973 struct delta_index
*src_index
, unsigned max_depth
)
975 struct object_entry
*trg_entry
= trg
->entry
;
976 struct object_entry
*src_entry
= src
->entry
;
977 unsigned long size
, src_size
, delta_size
, sizediff
, max_size
;
980 /* Don't bother doing diffs between different types */
981 if (trg_entry
->type
!= src_entry
->type
)
984 /* We do not compute delta to *create* objects we are not
987 if (trg_entry
->preferred_base
)
991 * If the current object is at pack edge, take the depth the
992 * objects that depend on the current object into account --
993 * otherwise they would become too deep.
995 if (trg_entry
->delta_child
) {
996 if (max_depth
<= trg_entry
->delta_limit
)
998 max_depth
-= trg_entry
->delta_limit
;
1000 if (src_entry
->depth
>= max_depth
)
1003 /* Now some size filtering heuristics. */
1004 size
= trg_entry
->size
;
1005 max_size
= size
/2 - 20;
1006 max_size
= max_size
* (max_depth
- src_entry
->depth
) / max_depth
;
1009 if (trg_entry
->delta
&& trg_entry
->delta_size
<= max_size
)
1010 max_size
= trg_entry
->delta_size
-1;
1011 src_size
= src_entry
->size
;
1012 sizediff
= src_size
< size
? size
- src_size
: 0;
1013 if (sizediff
>= max_size
)
1016 delta_buf
= create_delta(src_index
, trg
->data
, size
, &delta_size
, max_size
);
1020 trg_entry
->delta
= src_entry
;
1021 trg_entry
->delta_size
= delta_size
;
1022 trg_entry
->depth
= src_entry
->depth
+ 1;
1027 static void progress_interval(int signum
)
1029 progress_update
= 1;
1032 static void find_deltas(struct object_entry
**list
, int window
, int depth
)
1035 unsigned int array_size
= window
* sizeof(struct unpacked
);
1036 struct unpacked
*array
= xmalloc(array_size
);
1037 unsigned processed
= 0;
1038 unsigned last_percent
= 999;
1040 memset(array
, 0, array_size
);
1044 fprintf(stderr
, "Deltifying %d objects.\n", nr_result
);
1047 struct object_entry
*entry
= list
[i
];
1048 struct unpacked
*n
= array
+ idx
;
1053 if (!entry
->preferred_base
)
1057 unsigned percent
= processed
* 100 / nr_result
;
1058 if (percent
!= last_percent
|| progress_update
) {
1059 fprintf(stderr
, "%4u%% (%u/%u) done\r",
1060 percent
, processed
, nr_result
);
1061 progress_update
= 0;
1062 last_percent
= percent
;
1067 /* This happens if we decided to reuse existing
1068 * delta from a pack. "!no_reuse_delta &&" is implied.
1072 if (entry
->size
< 50)
1074 free_delta_index(n
->index
);
1078 n
->data
= read_sha1_file(entry
->sha1
, type
, &size
);
1079 if (size
!= entry
->size
)
1080 die("object %s inconsistent object length (%lu vs %lu)",
1081 sha1_to_hex(entry
->sha1
), size
, entry
->size
);
1085 unsigned int other_idx
= idx
+ j
;
1087 if (other_idx
>= window
)
1088 other_idx
-= window
;
1089 m
= array
+ other_idx
;
1092 if (try_delta(n
, m
, m
->index
, depth
) < 0)
1095 /* if we made n a delta, and if n is already at max
1096 * depth, leaving it in the window is pointless. we
1097 * should evict it first.
1099 if (entry
->delta
&& depth
<= entry
->depth
)
1102 n
->index
= create_delta_index(n
->data
, size
);
1104 die("out of memory");
1112 fputc('\n', stderr
);
1114 for (i
= 0; i
< window
; ++i
) {
1115 free_delta_index(array
[i
].index
);
1116 free(array
[i
].data
);
1121 static void prepare_pack(int window
, int depth
)
1123 get_object_details();
1124 sorted_by_type
= create_sorted_list(type_size_sort
);
1125 if (window
&& depth
)
1126 find_deltas(sorted_by_type
, window
+1, depth
);
1129 static int reuse_cached_pack(unsigned char *sha1
, int pack_to_stdout
)
1131 static const char cache
[] = "pack-cache/pack-%s.%s";
1132 char *cached_pack
, *cached_idx
;
1133 int ifd
, ofd
, ifd_ix
= -1;
1135 cached_pack
= git_path(cache
, sha1_to_hex(sha1
), "pack");
1136 ifd
= open(cached_pack
, O_RDONLY
);
1140 if (!pack_to_stdout
) {
1141 cached_idx
= git_path(cache
, sha1_to_hex(sha1
), "idx");
1142 ifd_ix
= open(cached_idx
, O_RDONLY
);
1150 fprintf(stderr
, "Reusing %d objects pack %s\n", nr_objects
,
1153 if (pack_to_stdout
) {
1154 if (copy_fd(ifd
, 1))
1159 char name
[PATH_MAX
];
1160 snprintf(name
, sizeof(name
),
1161 "%s-%s.%s", base_name
, sha1_to_hex(sha1
), "pack");
1162 ofd
= open(name
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1164 die("unable to open %s (%s)", name
, strerror(errno
));
1165 if (copy_fd(ifd
, ofd
))
1169 snprintf(name
, sizeof(name
),
1170 "%s-%s.%s", base_name
, sha1_to_hex(sha1
), "idx");
1171 ofd
= open(name
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1173 die("unable to open %s (%s)", name
, strerror(errno
));
1174 if (copy_fd(ifd_ix
, ofd
))
1177 puts(sha1_to_hex(sha1
));
1183 static void setup_progress_signal(void)
1185 struct sigaction sa
;
1188 memset(&sa
, 0, sizeof(sa
));
1189 sa
.sa_handler
= progress_interval
;
1190 sigemptyset(&sa
.sa_mask
);
1191 sa
.sa_flags
= SA_RESTART
;
1192 sigaction(SIGALRM
, &sa
, NULL
);
1194 v
.it_interval
.tv_sec
= 1;
1195 v
.it_interval
.tv_usec
= 0;
1196 v
.it_value
= v
.it_interval
;
1197 setitimer(ITIMER_REAL
, &v
, NULL
);
1200 int main(int argc
, char **argv
)
1203 char line
[40 + 1 + PATH_MAX
+ 2];
1204 int window
= 10, depth
= 10, pack_to_stdout
= 0;
1205 struct object_entry
**list
;
1206 int num_preferred_base
= 0;
1209 setup_git_directory();
1211 progress
= isatty(2);
1212 for (i
= 1; i
< argc
; i
++) {
1213 const char *arg
= argv
[i
];
1216 if (!strcmp("--non-empty", arg
)) {
1220 if (!strcmp("--local", arg
)) {
1224 if (!strcmp("--progress", arg
)) {
1228 if (!strcmp("--incremental", arg
)) {
1232 if (!strncmp("--window=", arg
, 9)) {
1234 window
= strtoul(arg
+9, &end
, 0);
1235 if (!arg
[9] || *end
)
1239 if (!strncmp("--depth=", arg
, 8)) {
1241 depth
= strtoul(arg
+8, &end
, 0);
1242 if (!arg
[8] || *end
)
1246 if (!strcmp("--progress", arg
)) {
1250 if (!strcmp("-q", arg
)) {
1254 if (!strcmp("--no-reuse-delta", arg
)) {
1258 if (!strcmp("--stdout", arg
)) {
1269 if (pack_to_stdout
!= !base_name
)
1272 prepare_packed_git();
1275 fprintf(stderr
, "Generating pack...\n");
1276 setup_progress_signal();
1280 unsigned char sha1
[20];
1283 if (!fgets(line
, sizeof(line
), stdin
)) {
1287 die("fgets returned NULL, not EOF, not error!");
1289 die("fgets: %s", strerror(errno
));
1294 if (line
[0] == '-') {
1295 if (get_sha1_hex(line
+1, sha1
))
1296 die("expected edge sha1, got garbage:\n %s",
1298 if (num_preferred_base
++ < window
)
1299 add_preferred_base(sha1
);
1302 if (get_sha1_hex(line
, sha1
))
1303 die("expected sha1, got garbage:\n %s", line
);
1304 hash
= name_hash(line
+41);
1305 add_preferred_base_object(line
+41, hash
);
1306 add_object_entry(sha1
, hash
, 0);
1309 fprintf(stderr
, "Done counting %d objects.\n", nr_objects
);
1310 sorted_by_sha
= create_final_object_list();
1311 if (non_empty
&& !nr_result
)
1315 list
= sorted_by_sha
;
1316 for (i
= 0; i
< nr_result
; i
++) {
1317 struct object_entry
*entry
= *list
++;
1318 SHA1_Update(&ctx
, entry
->sha1
, 20);
1320 SHA1_Final(object_list_sha1
, &ctx
);
1321 if (progress
&& (nr_objects
!= nr_result
))
1322 fprintf(stderr
, "Result has %d objects.\n", nr_result
);
1324 if (reuse_cached_pack(object_list_sha1
, pack_to_stdout
))
1328 prepare_pack(window
, depth
);
1329 if (progress
&& pack_to_stdout
) {
1330 /* the other end usually displays progress itself */
1331 struct itimerval v
= {{0,},};
1332 setitimer(ITIMER_REAL
, &v
, NULL
);
1333 signal(SIGALRM
, SIG_IGN
);
1334 progress_update
= 0;
1337 if (!pack_to_stdout
) {
1339 puts(sha1_to_hex(object_list_sha1
));
1343 fprintf(stderr
, "Total %d, written %d (delta %d), reused %d (delta %d)\n",
1344 nr_result
, written
, written_delta
, reused
, reused_delta
);