Allow "make -w" generate its usual output
[git/dscho.git] / builtin-pack-objects.c
blob8cf24f407915e6988b86a0ee40a4884dab9f5358
1 #include "builtin.h"
2 #include "cache.h"
3 #include "object.h"
4 #include "blob.h"
5 #include "commit.h"
6 #include "tag.h"
7 #include "tree.h"
8 #include "delta.h"
9 #include "pack.h"
10 #include "csum-file.h"
11 #include "tree-walk.h"
12 #include "diff.h"
13 #include "revision.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]";
23 struct object_entry {
24 unsigned char sha1[20];
25 unsigned long size; /* uncompressed size */
26 unsigned long 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 */
38 unsigned int in_pack_offset;
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
45 * objects against.
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()
59 * heuristics.
62 static unsigned char object_list_sha1[20];
63 static int non_empty;
64 static int no_reuse_delta;
65 static int local;
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 int 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 {
104 unsigned int offset;
105 unsigned int nr;
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;
115 * stats
117 static int written;
118 static int written_delta;
119 static int reused;
120 static int reused_delta;
122 static int pack_revindex_ix(struct packed_git *p)
124 unsigned long ui = (unsigned long)p;
125 int i;
127 ui = ui ^ (ui >> 16); /* defeat structure alignment */
128 i = (int)(ui % pack_revindex_hashsz);
129 while (pack_revindex[i].p) {
130 if (pack_revindex[i].p == p)
131 return i;
132 if (++i == pack_revindex_hashsz)
133 i = 0;
135 return -1 - i;
138 static void prepare_pack_ix(void)
140 int num;
141 struct packed_git *p;
142 for (num = 0, p = packed_git; p; p = p->next)
143 num++;
144 if (!num)
145 return;
146 pack_revindex_hashsz = num * 11;
147 pack_revindex = xcalloc(sizeof(*pack_revindex), pack_revindex_hashsz);
148 for (p = packed_git; p; p = p->next) {
149 num = pack_revindex_ix(p);
150 num = - 1 - num;
151 pack_revindex[num].p = p;
153 /* revindex elements are lazily initialized */
156 static int cmp_offset(const void *a_, const void *b_)
158 const struct revindex_entry *a = a_;
159 const struct revindex_entry *b = b_;
160 return (a->offset < b->offset) ? -1 : (a->offset > b->offset) ? 1 : 0;
164 * Ordered list of offsets of objects in the pack.
166 static void prepare_pack_revindex(struct pack_revindex *rix)
168 struct packed_git *p = rix->p;
169 int num_ent = num_packed_objects(p);
170 int i;
171 void *index = p->index_base + 256;
173 rix->revindex = xmalloc(sizeof(*rix->revindex) * (num_ent + 1));
174 for (i = 0; i < num_ent; i++) {
175 unsigned int hl = *((unsigned int *)((char *) index + 24*i));
176 rix->revindex[i].offset = ntohl(hl);
177 rix->revindex[i].nr = i;
179 /* This knows the pack format -- the 20-byte trailer
180 * follows immediately after the last object data.
182 rix->revindex[num_ent].offset = p->pack_size - 20;
183 rix->revindex[num_ent].nr = -1;
184 qsort(rix->revindex, num_ent, sizeof(*rix->revindex), cmp_offset);
187 static struct revindex_entry * find_packed_object(struct packed_git *p,
188 unsigned int ofs)
190 int num;
191 int lo, hi;
192 struct pack_revindex *rix;
193 struct revindex_entry *revindex;
194 num = pack_revindex_ix(p);
195 if (num < 0)
196 die("internal error: pack revindex uninitialized");
197 rix = &pack_revindex[num];
198 if (!rix->revindex)
199 prepare_pack_revindex(rix);
200 revindex = rix->revindex;
201 lo = 0;
202 hi = num_packed_objects(p) + 1;
203 do {
204 int mi = (lo + hi) / 2;
205 if (revindex[mi].offset == ofs) {
206 return revindex + mi;
208 else if (ofs < revindex[mi].offset)
209 hi = mi;
210 else
211 lo = mi + 1;
212 } while (lo < hi);
213 die("internal error: pack revindex corrupt");
216 static unsigned long find_packed_object_size(struct packed_git *p,
217 unsigned long ofs)
219 struct revindex_entry *entry = find_packed_object(p, ofs);
220 return entry[1].offset - ofs;
223 static unsigned char *find_packed_object_name(struct packed_git *p,
224 unsigned long ofs)
226 struct revindex_entry *entry = find_packed_object(p, ofs);
227 return (unsigned char *)(p->index_base + 256) + 24 * entry->nr + 4;
230 static void *delta_against(void *buf, unsigned long size, struct object_entry *entry)
232 unsigned long othersize, delta_size;
233 enum object_type type;
234 void *otherbuf = read_sha1_file(entry->delta->sha1, &type, &othersize);
235 void *delta_buf;
237 if (!otherbuf)
238 die("unable to read %s", sha1_to_hex(entry->delta->sha1));
239 delta_buf = diff_delta(otherbuf, othersize,
240 buf, size, &delta_size, 0);
241 if (!delta_buf || delta_size != entry->delta_size)
242 die("delta size changed");
243 free(buf);
244 free(otherbuf);
245 return delta_buf;
249 * The per-object header is a pretty dense thing, which is
250 * - first byte: low four bits are "size", then three bits of "type",
251 * and the high bit is "size continues".
252 * - each byte afterwards: low seven bits are size continuation,
253 * with the high bit being "size continues"
255 static int encode_header(enum object_type type, unsigned long size, unsigned char *hdr)
257 int n = 1;
258 unsigned char c;
260 if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
261 die("bad type %d", type);
263 c = (type << 4) | (size & 15);
264 size >>= 4;
265 while (size) {
266 *hdr++ = c | 0x80;
267 c = size & 0x7f;
268 size >>= 7;
269 n++;
271 *hdr = c;
272 return n;
276 * we are going to reuse the existing object data as is. make
277 * sure it is not corrupt.
279 static int check_pack_inflate(struct packed_git *p,
280 struct pack_window **w_curs,
281 unsigned long offset,
282 unsigned long len,
283 unsigned long expect)
285 z_stream stream;
286 unsigned char fakebuf[4096], *in;
287 int st;
289 memset(&stream, 0, sizeof(stream));
290 inflateInit(&stream);
291 do {
292 in = use_pack(p, w_curs, offset, &stream.avail_in);
293 stream.next_in = in;
294 stream.next_out = fakebuf;
295 stream.avail_out = sizeof(fakebuf);
296 st = inflate(&stream, Z_FINISH);
297 offset += stream.next_in - in;
298 } while (st == Z_OK || st == Z_BUF_ERROR);
299 inflateEnd(&stream);
300 return (st == Z_STREAM_END &&
301 stream.total_out == expect &&
302 stream.total_in == len) ? 0 : -1;
305 static void copy_pack_data(struct sha1file *f,
306 struct packed_git *p,
307 struct pack_window **w_curs,
308 unsigned long offset,
309 unsigned long len)
311 unsigned char *in;
312 unsigned int avail;
314 while (len) {
315 in = use_pack(p, w_curs, offset, &avail);
316 if (avail > len)
317 avail = len;
318 sha1write(f, in, avail);
319 offset += avail;
320 len -= avail;
324 static int check_loose_inflate(unsigned char *data, unsigned long len, unsigned long expect)
326 z_stream stream;
327 unsigned char fakebuf[4096];
328 int st;
330 memset(&stream, 0, sizeof(stream));
331 stream.next_in = data;
332 stream.avail_in = len;
333 stream.next_out = fakebuf;
334 stream.avail_out = sizeof(fakebuf);
335 inflateInit(&stream);
337 while (1) {
338 st = inflate(&stream, Z_FINISH);
339 if (st == Z_STREAM_END || st == Z_OK) {
340 st = (stream.total_out == expect &&
341 stream.total_in == len) ? 0 : -1;
342 break;
344 if (st != Z_BUF_ERROR) {
345 st = -1;
346 break;
348 stream.next_out = fakebuf;
349 stream.avail_out = sizeof(fakebuf);
351 inflateEnd(&stream);
352 return st;
355 static int revalidate_loose_object(struct object_entry *entry,
356 unsigned char *map,
357 unsigned long mapsize)
359 /* we already know this is a loose object with new type header. */
360 enum object_type type;
361 unsigned long size, used;
363 if (pack_to_stdout)
364 return 0;
366 used = unpack_object_header_gently(map, mapsize, &type, &size);
367 if (!used)
368 return -1;
369 map += used;
370 mapsize -= used;
371 return check_loose_inflate(map, mapsize, size);
374 static unsigned long write_object(struct sha1file *f,
375 struct object_entry *entry)
377 unsigned long size;
378 enum object_type type;
379 void *buf;
380 unsigned char header[10];
381 unsigned hdrlen, datalen;
382 enum object_type obj_type;
383 int to_reuse = 0;
385 obj_type = entry->type;
386 if (! entry->in_pack)
387 to_reuse = 0; /* can't reuse what we don't have */
388 else if (obj_type == OBJ_REF_DELTA || obj_type == OBJ_OFS_DELTA)
389 to_reuse = 1; /* check_object() decided it for us */
390 else if (obj_type != entry->in_pack_type)
391 to_reuse = 0; /* pack has delta which is unusable */
392 else if (entry->delta)
393 to_reuse = 0; /* we want to pack afresh */
394 else
395 to_reuse = 1; /* we have it in-pack undeltified,
396 * and we do not need to deltify it.
399 if (!entry->in_pack && !entry->delta) {
400 unsigned char *map;
401 unsigned long mapsize;
402 map = map_sha1_file(entry->sha1, &mapsize);
403 if (map && !legacy_loose_object(map)) {
404 /* We can copy straight into the pack file */
405 if (revalidate_loose_object(entry, map, mapsize))
406 die("corrupt loose object %s",
407 sha1_to_hex(entry->sha1));
408 sha1write(f, map, mapsize);
409 munmap(map, mapsize);
410 written++;
411 reused++;
412 return mapsize;
414 if (map)
415 munmap(map, mapsize);
418 if (!to_reuse) {
419 buf = read_sha1_file(entry->sha1, &type, &size);
420 if (!buf)
421 die("unable to read %s", sha1_to_hex(entry->sha1));
422 if (size != entry->size)
423 die("object %s size inconsistency (%lu vs %lu)",
424 sha1_to_hex(entry->sha1), size, entry->size);
425 if (entry->delta) {
426 buf = delta_against(buf, size, entry);
427 size = entry->delta_size;
428 obj_type = (allow_ofs_delta && entry->delta->offset) ?
429 OBJ_OFS_DELTA : OBJ_REF_DELTA;
432 * The object header is a byte of 'type' followed by zero or
433 * more bytes of length.
435 hdrlen = encode_header(obj_type, size, header);
436 sha1write(f, header, hdrlen);
438 if (obj_type == OBJ_OFS_DELTA) {
440 * Deltas with relative base contain an additional
441 * encoding of the relative offset for the delta
442 * base from this object's position in the pack.
444 unsigned long ofs = entry->offset - entry->delta->offset;
445 unsigned pos = sizeof(header) - 1;
446 header[pos] = ofs & 127;
447 while (ofs >>= 7)
448 header[--pos] = 128 | (--ofs & 127);
449 sha1write(f, header + pos, sizeof(header) - pos);
450 hdrlen += sizeof(header) - pos;
451 } else if (obj_type == OBJ_REF_DELTA) {
453 * Deltas with a base reference contain
454 * an additional 20 bytes for the base sha1.
456 sha1write(f, entry->delta->sha1, 20);
457 hdrlen += 20;
459 datalen = sha1write_compressed(f, buf, size);
460 free(buf);
462 else {
463 struct packed_git *p = entry->in_pack;
464 struct pack_window *w_curs = NULL;
465 unsigned long offset;
467 if (entry->delta) {
468 obj_type = (allow_ofs_delta && entry->delta->offset) ?
469 OBJ_OFS_DELTA : OBJ_REF_DELTA;
470 reused_delta++;
472 hdrlen = encode_header(obj_type, entry->size, header);
473 sha1write(f, header, hdrlen);
474 if (obj_type == OBJ_OFS_DELTA) {
475 unsigned long ofs = entry->offset - entry->delta->offset;
476 unsigned pos = sizeof(header) - 1;
477 header[pos] = ofs & 127;
478 while (ofs >>= 7)
479 header[--pos] = 128 | (--ofs & 127);
480 sha1write(f, header + pos, sizeof(header) - pos);
481 hdrlen += sizeof(header) - pos;
482 } else if (obj_type == OBJ_REF_DELTA) {
483 sha1write(f, entry->delta->sha1, 20);
484 hdrlen += 20;
487 offset = entry->in_pack_offset + entry->in_pack_header_size;
488 datalen = find_packed_object_size(p, entry->in_pack_offset)
489 - entry->in_pack_header_size;
490 if (!pack_to_stdout && check_pack_inflate(p, &w_curs,
491 offset, datalen, entry->size))
492 die("corrupt delta in pack %s", sha1_to_hex(entry->sha1));
493 copy_pack_data(f, p, &w_curs, offset, datalen);
494 unuse_pack(&w_curs);
495 reused++;
497 if (entry->delta)
498 written_delta++;
499 written++;
500 return hdrlen + datalen;
503 static unsigned long write_one(struct sha1file *f,
504 struct object_entry *e,
505 unsigned long offset)
507 if (e->offset || e->preferred_base)
508 /* offset starts from header size and cannot be zero
509 * if it is written already.
511 return offset;
512 /* if we are deltified, write out its base object first. */
513 if (e->delta)
514 offset = write_one(f, e->delta, offset);
515 e->offset = offset;
516 return offset + write_object(f, e);
519 static void write_pack_file(void)
521 int i;
522 struct sha1file *f;
523 unsigned long offset;
524 struct pack_header hdr;
525 unsigned last_percent = 999;
526 int do_progress = progress;
528 if (!base_name) {
529 f = sha1fd(1, "<stdout>");
530 do_progress >>= 1;
532 else
533 f = sha1create("%s-%s.%s", base_name,
534 sha1_to_hex(object_list_sha1), "pack");
535 if (do_progress)
536 fprintf(stderr, "Writing %d objects.\n", nr_result);
538 hdr.hdr_signature = htonl(PACK_SIGNATURE);
539 hdr.hdr_version = htonl(PACK_VERSION);
540 hdr.hdr_entries = htonl(nr_result);
541 sha1write(f, &hdr, sizeof(hdr));
542 offset = sizeof(hdr);
543 if (!nr_result)
544 goto done;
545 for (i = 0; i < nr_objects; i++) {
546 offset = write_one(f, objects + i, offset);
547 if (do_progress) {
548 unsigned percent = written * 100 / nr_result;
549 if (progress_update || percent != last_percent) {
550 fprintf(stderr, "%4u%% (%u/%u) done\r",
551 percent, written, nr_result);
552 progress_update = 0;
553 last_percent = percent;
557 if (do_progress)
558 fputc('\n', stderr);
559 done:
560 if (written != nr_result)
561 die("wrote %d objects while expecting %d", written, nr_result);
562 sha1close(f, pack_file_sha1, 1);
565 static void write_index_file(void)
567 int i;
568 struct sha1file *f = sha1create("%s-%s.%s", base_name,
569 sha1_to_hex(object_list_sha1), "idx");
570 struct object_entry **list = sorted_by_sha;
571 struct object_entry **last = list + nr_result;
572 uint32_t array[256];
575 * Write the first-level table (the list is sorted,
576 * but we use a 256-entry lookup to be able to avoid
577 * having to do eight extra binary search iterations).
579 for (i = 0; i < 256; i++) {
580 struct object_entry **next = list;
581 while (next < last) {
582 struct object_entry *entry = *next;
583 if (entry->sha1[0] != i)
584 break;
585 next++;
587 array[i] = htonl(next - sorted_by_sha);
588 list = next;
590 sha1write(f, array, 256 * 4);
593 * Write the actual SHA1 entries..
595 list = sorted_by_sha;
596 for (i = 0; i < nr_result; i++) {
597 struct object_entry *entry = *list++;
598 uint32_t offset = htonl(entry->offset);
599 sha1write(f, &offset, 4);
600 sha1write(f, entry->sha1, 20);
602 sha1write(f, pack_file_sha1, 20);
603 sha1close(f, NULL, 1);
606 static int locate_object_entry_hash(const unsigned char *sha1)
608 int i;
609 unsigned int ui;
610 memcpy(&ui, sha1, sizeof(unsigned int));
611 i = ui % object_ix_hashsz;
612 while (0 < object_ix[i]) {
613 if (!hashcmp(sha1, objects[object_ix[i] - 1].sha1))
614 return i;
615 if (++i == object_ix_hashsz)
616 i = 0;
618 return -1 - i;
621 static struct object_entry *locate_object_entry(const unsigned char *sha1)
623 int i;
625 if (!object_ix_hashsz)
626 return NULL;
628 i = locate_object_entry_hash(sha1);
629 if (0 <= i)
630 return &objects[object_ix[i]-1];
631 return NULL;
634 static void rehash_objects(void)
636 int i;
637 struct object_entry *oe;
639 object_ix_hashsz = nr_objects * 3;
640 if (object_ix_hashsz < 1024)
641 object_ix_hashsz = 1024;
642 object_ix = xrealloc(object_ix, sizeof(int) * object_ix_hashsz);
643 memset(object_ix, 0, sizeof(int) * object_ix_hashsz);
644 for (i = 0, oe = objects; i < nr_objects; i++, oe++) {
645 int ix = locate_object_entry_hash(oe->sha1);
646 if (0 <= ix)
647 continue;
648 ix = -1 - ix;
649 object_ix[ix] = i + 1;
653 static unsigned name_hash(const char *name)
655 unsigned char c;
656 unsigned hash = 0;
659 * This effectively just creates a sortable number from the
660 * last sixteen non-whitespace characters. Last characters
661 * count "most", so things that end in ".c" sort together.
663 while ((c = *name++) != 0) {
664 if (isspace(c))
665 continue;
666 hash = (hash >> 2) + (c << 24);
668 return hash;
671 static int add_object_entry(const unsigned char *sha1, unsigned hash, int exclude)
673 unsigned int idx = nr_objects;
674 struct object_entry *entry;
675 struct packed_git *p;
676 unsigned int found_offset = 0;
677 struct packed_git *found_pack = NULL;
678 int ix, status = 0;
680 if (!exclude) {
681 for (p = packed_git; p; p = p->next) {
682 unsigned long offset = find_pack_entry_one(sha1, p);
683 if (offset) {
684 if (incremental)
685 return 0;
686 if (local && !p->pack_local)
687 return 0;
688 if (!found_pack) {
689 found_offset = offset;
690 found_pack = p;
695 if ((entry = locate_object_entry(sha1)) != NULL)
696 goto already_added;
698 if (idx >= nr_alloc) {
699 unsigned int needed = (idx + 1024) * 3 / 2;
700 objects = xrealloc(objects, needed * sizeof(*entry));
701 nr_alloc = needed;
703 entry = objects + idx;
704 nr_objects = idx + 1;
705 memset(entry, 0, sizeof(*entry));
706 hashcpy(entry->sha1, sha1);
707 entry->hash = hash;
709 if (object_ix_hashsz * 3 <= nr_objects * 4)
710 rehash_objects();
711 else {
712 ix = locate_object_entry_hash(entry->sha1);
713 if (0 <= ix)
714 die("internal error in object hashing.");
715 object_ix[-1 - ix] = idx + 1;
717 status = 1;
719 already_added:
720 if (progress_update) {
721 fprintf(stderr, "Counting objects...%d\r", nr_objects);
722 progress_update = 0;
724 if (exclude)
725 entry->preferred_base = 1;
726 else {
727 if (found_pack) {
728 entry->in_pack = found_pack;
729 entry->in_pack_offset = found_offset;
732 return status;
735 struct pbase_tree_cache {
736 unsigned char sha1[20];
737 int ref;
738 int temporary;
739 void *tree_data;
740 unsigned long tree_size;
743 static struct pbase_tree_cache *(pbase_tree_cache[256]);
744 static int pbase_tree_cache_ix(const unsigned char *sha1)
746 return sha1[0] % ARRAY_SIZE(pbase_tree_cache);
748 static int pbase_tree_cache_ix_incr(int ix)
750 return (ix+1) % ARRAY_SIZE(pbase_tree_cache);
753 static struct pbase_tree {
754 struct pbase_tree *next;
755 /* This is a phony "cache" entry; we are not
756 * going to evict it nor find it through _get()
757 * mechanism -- this is for the toplevel node that
758 * would almost always change with any commit.
760 struct pbase_tree_cache pcache;
761 } *pbase_tree;
763 static struct pbase_tree_cache *pbase_tree_get(const unsigned char *sha1)
765 struct pbase_tree_cache *ent, *nent;
766 void *data;
767 unsigned long size;
768 enum object_type type;
769 int neigh;
770 int my_ix = pbase_tree_cache_ix(sha1);
771 int available_ix = -1;
773 /* pbase-tree-cache acts as a limited hashtable.
774 * your object will be found at your index or within a few
775 * slots after that slot if it is cached.
777 for (neigh = 0; neigh < 8; neigh++) {
778 ent = pbase_tree_cache[my_ix];
779 if (ent && !hashcmp(ent->sha1, sha1)) {
780 ent->ref++;
781 return ent;
783 else if (((available_ix < 0) && (!ent || !ent->ref)) ||
784 ((0 <= available_ix) &&
785 (!ent && pbase_tree_cache[available_ix])))
786 available_ix = my_ix;
787 if (!ent)
788 break;
789 my_ix = pbase_tree_cache_ix_incr(my_ix);
792 /* Did not find one. Either we got a bogus request or
793 * we need to read and perhaps cache.
795 data = read_sha1_file(sha1, &type, &size);
796 if (!data)
797 return NULL;
798 if (type != OBJ_TREE) {
799 free(data);
800 return NULL;
803 /* We need to either cache or return a throwaway copy */
805 if (available_ix < 0)
806 ent = NULL;
807 else {
808 ent = pbase_tree_cache[available_ix];
809 my_ix = available_ix;
812 if (!ent) {
813 nent = xmalloc(sizeof(*nent));
814 nent->temporary = (available_ix < 0);
816 else {
817 /* evict and reuse */
818 free(ent->tree_data);
819 nent = ent;
821 hashcpy(nent->sha1, sha1);
822 nent->tree_data = data;
823 nent->tree_size = size;
824 nent->ref = 1;
825 if (!nent->temporary)
826 pbase_tree_cache[my_ix] = nent;
827 return nent;
830 static void pbase_tree_put(struct pbase_tree_cache *cache)
832 if (!cache->temporary) {
833 cache->ref--;
834 return;
836 free(cache->tree_data);
837 free(cache);
840 static int name_cmp_len(const char *name)
842 int i;
843 for (i = 0; name[i] && name[i] != '\n' && name[i] != '/'; i++)
845 return i;
848 static void add_pbase_object(struct tree_desc *tree,
849 const char *name,
850 int cmplen,
851 const char *fullname)
853 struct name_entry entry;
855 while (tree_entry(tree,&entry)) {
856 unsigned long size;
857 enum object_type type;
859 if (entry.pathlen != cmplen ||
860 memcmp(entry.path, name, cmplen) ||
861 !has_sha1_file(entry.sha1) ||
862 (type = sha1_object_info(entry.sha1, &size)) < 0)
863 continue;
864 if (name[cmplen] != '/') {
865 unsigned hash = name_hash(fullname);
866 add_object_entry(entry.sha1, hash, 1);
867 return;
869 if (type == OBJ_TREE) {
870 struct tree_desc sub;
871 struct pbase_tree_cache *tree;
872 const char *down = name+cmplen+1;
873 int downlen = name_cmp_len(down);
875 tree = pbase_tree_get(entry.sha1);
876 if (!tree)
877 return;
878 sub.buf = tree->tree_data;
879 sub.size = tree->tree_size;
881 add_pbase_object(&sub, down, downlen, fullname);
882 pbase_tree_put(tree);
887 static unsigned *done_pbase_paths;
888 static int done_pbase_paths_num;
889 static int done_pbase_paths_alloc;
890 static int done_pbase_path_pos(unsigned hash)
892 int lo = 0;
893 int hi = done_pbase_paths_num;
894 while (lo < hi) {
895 int mi = (hi + lo) / 2;
896 if (done_pbase_paths[mi] == hash)
897 return mi;
898 if (done_pbase_paths[mi] < hash)
899 hi = mi;
900 else
901 lo = mi + 1;
903 return -lo-1;
906 static int check_pbase_path(unsigned hash)
908 int pos = (!done_pbase_paths) ? -1 : done_pbase_path_pos(hash);
909 if (0 <= pos)
910 return 1;
911 pos = -pos - 1;
912 if (done_pbase_paths_alloc <= done_pbase_paths_num) {
913 done_pbase_paths_alloc = alloc_nr(done_pbase_paths_alloc);
914 done_pbase_paths = xrealloc(done_pbase_paths,
915 done_pbase_paths_alloc *
916 sizeof(unsigned));
918 done_pbase_paths_num++;
919 if (pos < done_pbase_paths_num)
920 memmove(done_pbase_paths + pos + 1,
921 done_pbase_paths + pos,
922 (done_pbase_paths_num - pos - 1) * sizeof(unsigned));
923 done_pbase_paths[pos] = hash;
924 return 0;
927 static void add_preferred_base_object(const char *name, unsigned hash)
929 struct pbase_tree *it;
930 int cmplen = name_cmp_len(name);
932 if (check_pbase_path(hash))
933 return;
935 for (it = pbase_tree; it; it = it->next) {
936 if (cmplen == 0) {
937 hash = name_hash("");
938 add_object_entry(it->pcache.sha1, hash, 1);
940 else {
941 struct tree_desc tree;
942 tree.buf = it->pcache.tree_data;
943 tree.size = it->pcache.tree_size;
944 add_pbase_object(&tree, name, cmplen, name);
949 static void add_preferred_base(unsigned char *sha1)
951 struct pbase_tree *it;
952 void *data;
953 unsigned long size;
954 unsigned char tree_sha1[20];
956 if (window <= num_preferred_base++)
957 return;
959 data = read_object_with_reference(sha1, tree_type, &size, tree_sha1);
960 if (!data)
961 return;
963 for (it = pbase_tree; it; it = it->next) {
964 if (!hashcmp(it->pcache.sha1, tree_sha1)) {
965 free(data);
966 return;
970 it = xcalloc(1, sizeof(*it));
971 it->next = pbase_tree;
972 pbase_tree = it;
974 hashcpy(it->pcache.sha1, tree_sha1);
975 it->pcache.tree_data = data;
976 it->pcache.tree_size = size;
979 static void check_object(struct object_entry *entry)
981 if (entry->in_pack && !entry->preferred_base) {
982 struct packed_git *p = entry->in_pack;
983 struct pack_window *w_curs = NULL;
984 unsigned long left = p->pack_size - entry->in_pack_offset;
985 unsigned long size, used;
986 unsigned char *buf;
987 struct object_entry *base_entry = NULL;
989 buf = use_pack(p, &w_curs, entry->in_pack_offset, NULL);
991 /* We want in_pack_type even if we do not reuse delta.
992 * There is no point not reusing non-delta representations.
994 used = unpack_object_header_gently(buf, left,
995 &entry->in_pack_type, &size);
997 /* Check if it is delta, and the base is also an object
998 * we are going to pack. If so we will reuse the existing
999 * delta.
1001 if (!no_reuse_delta) {
1002 unsigned char c, *base_name;
1003 unsigned long ofs;
1004 unsigned long used_0;
1005 /* there is at least 20 bytes left in the pack */
1006 switch (entry->in_pack_type) {
1007 case OBJ_REF_DELTA:
1008 base_name = use_pack(p, &w_curs,
1009 entry->in_pack_offset + used, NULL);
1010 used += 20;
1011 break;
1012 case OBJ_OFS_DELTA:
1013 buf = use_pack(p, &w_curs,
1014 entry->in_pack_offset + used, NULL);
1015 used_0 = 0;
1016 c = buf[used_0++];
1017 ofs = c & 127;
1018 while (c & 128) {
1019 ofs += 1;
1020 if (!ofs || ofs & ~(~0UL >> 7))
1021 die("delta base offset overflow in pack for %s",
1022 sha1_to_hex(entry->sha1));
1023 c = buf[used_0++];
1024 ofs = (ofs << 7) + (c & 127);
1026 if (ofs >= entry->in_pack_offset)
1027 die("delta base offset out of bound for %s",
1028 sha1_to_hex(entry->sha1));
1029 ofs = entry->in_pack_offset - ofs;
1030 base_name = find_packed_object_name(p, ofs);
1031 used += used_0;
1032 break;
1033 default:
1034 base_name = NULL;
1036 if (base_name)
1037 base_entry = locate_object_entry(base_name);
1039 unuse_pack(&w_curs);
1040 entry->in_pack_header_size = used;
1042 if (base_entry) {
1044 /* Depth value does not matter - find_deltas()
1045 * will never consider reused delta as the
1046 * base object to deltify other objects
1047 * against, in order to avoid circular deltas.
1050 /* uncompressed size of the delta data */
1051 entry->size = size;
1052 entry->delta = base_entry;
1053 entry->type = entry->in_pack_type;
1055 entry->delta_sibling = base_entry->delta_child;
1056 base_entry->delta_child = entry;
1058 return;
1060 /* Otherwise we would do the usual */
1063 entry->type = sha1_object_info(entry->sha1, &entry->size);
1064 if (entry->type < 0)
1065 die("unable to get type of object %s",
1066 sha1_to_hex(entry->sha1));
1069 static unsigned int check_delta_limit(struct object_entry *me, unsigned int n)
1071 struct object_entry *child = me->delta_child;
1072 unsigned int m = n;
1073 while (child) {
1074 unsigned int c = check_delta_limit(child, n + 1);
1075 if (m < c)
1076 m = c;
1077 child = child->delta_sibling;
1079 return m;
1082 static void get_object_details(void)
1084 int i;
1085 struct object_entry *entry;
1087 prepare_pack_ix();
1088 for (i = 0, entry = objects; i < nr_objects; i++, entry++)
1089 check_object(entry);
1091 if (nr_objects == nr_result) {
1093 * Depth of objects that depend on the entry -- this
1094 * is subtracted from depth-max to break too deep
1095 * delta chain because of delta data reusing.
1096 * However, we loosen this restriction when we know we
1097 * are creating a thin pack -- it will have to be
1098 * expanded on the other end anyway, so do not
1099 * artificially cut the delta chain and let it go as
1100 * deep as it wants.
1102 for (i = 0, entry = objects; i < nr_objects; i++, entry++)
1103 if (!entry->delta && entry->delta_child)
1104 entry->delta_limit =
1105 check_delta_limit(entry, 1);
1109 typedef int (*entry_sort_t)(const struct object_entry *, const struct object_entry *);
1111 static entry_sort_t current_sort;
1113 static int sort_comparator(const void *_a, const void *_b)
1115 struct object_entry *a = *(struct object_entry **)_a;
1116 struct object_entry *b = *(struct object_entry **)_b;
1117 return current_sort(a,b);
1120 static struct object_entry **create_sorted_list(entry_sort_t sort)
1122 struct object_entry **list = xmalloc(nr_objects * sizeof(struct object_entry *));
1123 int i;
1125 for (i = 0; i < nr_objects; i++)
1126 list[i] = objects + i;
1127 current_sort = sort;
1128 qsort(list, nr_objects, sizeof(struct object_entry *), sort_comparator);
1129 return list;
1132 static int sha1_sort(const struct object_entry *a, const struct object_entry *b)
1134 return hashcmp(a->sha1, b->sha1);
1137 static struct object_entry **create_final_object_list(void)
1139 struct object_entry **list;
1140 int i, j;
1142 for (i = nr_result = 0; i < nr_objects; i++)
1143 if (!objects[i].preferred_base)
1144 nr_result++;
1145 list = xmalloc(nr_result * sizeof(struct object_entry *));
1146 for (i = j = 0; i < nr_objects; i++) {
1147 if (!objects[i].preferred_base)
1148 list[j++] = objects + i;
1150 current_sort = sha1_sort;
1151 qsort(list, nr_result, sizeof(struct object_entry *), sort_comparator);
1152 return list;
1155 static int type_size_sort(const struct object_entry *a, const struct object_entry *b)
1157 if (a->type < b->type)
1158 return -1;
1159 if (a->type > b->type)
1160 return 1;
1161 if (a->hash < b->hash)
1162 return -1;
1163 if (a->hash > b->hash)
1164 return 1;
1165 if (a->preferred_base < b->preferred_base)
1166 return -1;
1167 if (a->preferred_base > b->preferred_base)
1168 return 1;
1169 if (a->size < b->size)
1170 return -1;
1171 if (a->size > b->size)
1172 return 1;
1173 return a < b ? -1 : (a > b);
1176 struct unpacked {
1177 struct object_entry *entry;
1178 void *data;
1179 struct delta_index *index;
1183 * We search for deltas _backwards_ in a list sorted by type and
1184 * by size, so that we see progressively smaller and smaller files.
1185 * That's because we prefer deltas to be from the bigger file
1186 * to the smaller - deletes are potentially cheaper, but perhaps
1187 * more importantly, the bigger file is likely the more recent
1188 * one.
1190 static int try_delta(struct unpacked *trg, struct unpacked *src,
1191 unsigned max_depth)
1193 struct object_entry *trg_entry = trg->entry;
1194 struct object_entry *src_entry = src->entry;
1195 unsigned long trg_size, src_size, delta_size, sizediff, max_size, sz;
1196 enum object_type type;
1197 void *delta_buf;
1199 /* Don't bother doing diffs between different types */
1200 if (trg_entry->type != src_entry->type)
1201 return -1;
1203 /* We do not compute delta to *create* objects we are not
1204 * going to pack.
1206 if (trg_entry->preferred_base)
1207 return -1;
1210 * We do not bother to try a delta that we discarded
1211 * on an earlier try, but only when reusing delta data.
1213 if (!no_reuse_delta && trg_entry->in_pack &&
1214 trg_entry->in_pack == src_entry->in_pack &&
1215 trg_entry->in_pack_type != OBJ_REF_DELTA &&
1216 trg_entry->in_pack_type != OBJ_OFS_DELTA)
1217 return 0;
1220 * If the current object is at pack edge, take the depth the
1221 * objects that depend on the current object into account --
1222 * otherwise they would become too deep.
1224 if (trg_entry->delta_child) {
1225 if (max_depth <= trg_entry->delta_limit)
1226 return 0;
1227 max_depth -= trg_entry->delta_limit;
1229 if (src_entry->depth >= max_depth)
1230 return 0;
1232 /* Now some size filtering heuristics. */
1233 trg_size = trg_entry->size;
1234 max_size = trg_size/2 - 20;
1235 max_size = max_size * (max_depth - src_entry->depth) / max_depth;
1236 if (max_size == 0)
1237 return 0;
1238 if (trg_entry->delta && trg_entry->delta_size <= max_size)
1239 max_size = trg_entry->delta_size-1;
1240 src_size = src_entry->size;
1241 sizediff = src_size < trg_size ? trg_size - src_size : 0;
1242 if (sizediff >= max_size)
1243 return 0;
1245 /* Load data if not already done */
1246 if (!trg->data) {
1247 trg->data = read_sha1_file(trg_entry->sha1, &type, &sz);
1248 if (sz != trg_size)
1249 die("object %s inconsistent object length (%lu vs %lu)",
1250 sha1_to_hex(trg_entry->sha1), sz, trg_size);
1252 if (!src->data) {
1253 src->data = read_sha1_file(src_entry->sha1, &type, &sz);
1254 if (sz != src_size)
1255 die("object %s inconsistent object length (%lu vs %lu)",
1256 sha1_to_hex(src_entry->sha1), sz, src_size);
1258 if (!src->index) {
1259 src->index = create_delta_index(src->data, src_size);
1260 if (!src->index)
1261 die("out of memory");
1264 delta_buf = create_delta(src->index, trg->data, trg_size, &delta_size, max_size);
1265 if (!delta_buf)
1266 return 0;
1268 trg_entry->delta = src_entry;
1269 trg_entry->delta_size = delta_size;
1270 trg_entry->depth = src_entry->depth + 1;
1271 free(delta_buf);
1272 return 1;
1275 static void progress_interval(int signum)
1277 progress_update = 1;
1280 static void find_deltas(struct object_entry **list, int window, int depth)
1282 int i, idx;
1283 unsigned int array_size = window * sizeof(struct unpacked);
1284 struct unpacked *array = xmalloc(array_size);
1285 unsigned processed = 0;
1286 unsigned last_percent = 999;
1288 memset(array, 0, array_size);
1289 i = nr_objects;
1290 idx = 0;
1291 if (progress)
1292 fprintf(stderr, "Deltifying %d objects.\n", nr_result);
1294 while (--i >= 0) {
1295 struct object_entry *entry = list[i];
1296 struct unpacked *n = array + idx;
1297 int j;
1299 if (!entry->preferred_base)
1300 processed++;
1302 if (progress) {
1303 unsigned percent = processed * 100 / nr_result;
1304 if (percent != last_percent || progress_update) {
1305 fprintf(stderr, "%4u%% (%u/%u) done\r",
1306 percent, processed, nr_result);
1307 progress_update = 0;
1308 last_percent = percent;
1312 if (entry->delta)
1313 /* This happens if we decided to reuse existing
1314 * delta from a pack. "!no_reuse_delta &&" is implied.
1316 continue;
1318 if (entry->size < 50)
1319 continue;
1320 free_delta_index(n->index);
1321 n->index = NULL;
1322 free(n->data);
1323 n->data = NULL;
1324 n->entry = entry;
1326 j = window;
1327 while (--j > 0) {
1328 unsigned int other_idx = idx + j;
1329 struct unpacked *m;
1330 if (other_idx >= window)
1331 other_idx -= window;
1332 m = array + other_idx;
1333 if (!m->entry)
1334 break;
1335 if (try_delta(n, m, depth) < 0)
1336 break;
1338 /* if we made n a delta, and if n is already at max
1339 * depth, leaving it in the window is pointless. we
1340 * should evict it first.
1342 if (entry->delta && depth <= entry->depth)
1343 continue;
1345 idx++;
1346 if (idx >= window)
1347 idx = 0;
1350 if (progress)
1351 fputc('\n', stderr);
1353 for (i = 0; i < window; ++i) {
1354 free_delta_index(array[i].index);
1355 free(array[i].data);
1357 free(array);
1360 static void prepare_pack(int window, int depth)
1362 get_object_details();
1363 sorted_by_type = create_sorted_list(type_size_sort);
1364 if (window && depth)
1365 find_deltas(sorted_by_type, window+1, depth);
1368 static int reuse_cached_pack(unsigned char *sha1)
1370 static const char cache[] = "pack-cache/pack-%s.%s";
1371 char *cached_pack, *cached_idx;
1372 int ifd, ofd, ifd_ix = -1;
1374 cached_pack = git_path(cache, sha1_to_hex(sha1), "pack");
1375 ifd = open(cached_pack, O_RDONLY);
1376 if (ifd < 0)
1377 return 0;
1379 if (!pack_to_stdout) {
1380 cached_idx = git_path(cache, sha1_to_hex(sha1), "idx");
1381 ifd_ix = open(cached_idx, O_RDONLY);
1382 if (ifd_ix < 0) {
1383 close(ifd);
1384 return 0;
1388 if (progress)
1389 fprintf(stderr, "Reusing %d objects pack %s\n", nr_objects,
1390 sha1_to_hex(sha1));
1392 if (pack_to_stdout) {
1393 if (copy_fd(ifd, 1))
1394 exit(1);
1395 close(ifd);
1397 else {
1398 char name[PATH_MAX];
1399 snprintf(name, sizeof(name),
1400 "%s-%s.%s", base_name, sha1_to_hex(sha1), "pack");
1401 ofd = open(name, O_CREAT | O_EXCL | O_WRONLY, 0666);
1402 if (ofd < 0)
1403 die("unable to open %s (%s)", name, strerror(errno));
1404 if (copy_fd(ifd, ofd))
1405 exit(1);
1406 close(ifd);
1408 snprintf(name, sizeof(name),
1409 "%s-%s.%s", base_name, sha1_to_hex(sha1), "idx");
1410 ofd = open(name, O_CREAT | O_EXCL | O_WRONLY, 0666);
1411 if (ofd < 0)
1412 die("unable to open %s (%s)", name, strerror(errno));
1413 if (copy_fd(ifd_ix, ofd))
1414 exit(1);
1415 close(ifd_ix);
1416 puts(sha1_to_hex(sha1));
1419 return 1;
1422 static void setup_progress_signal(void)
1424 struct sigaction sa;
1425 struct itimerval v;
1427 memset(&sa, 0, sizeof(sa));
1428 sa.sa_handler = progress_interval;
1429 sigemptyset(&sa.sa_mask);
1430 sa.sa_flags = SA_RESTART;
1431 sigaction(SIGALRM, &sa, NULL);
1433 v.it_interval.tv_sec = 1;
1434 v.it_interval.tv_usec = 0;
1435 v.it_value = v.it_interval;
1436 setitimer(ITIMER_REAL, &v, NULL);
1439 static int git_pack_config(const char *k, const char *v)
1441 if(!strcmp(k, "pack.window")) {
1442 window = git_config_int(k, v);
1443 return 0;
1445 return git_default_config(k, v);
1448 static void read_object_list_from_stdin(void)
1450 char line[40 + 1 + PATH_MAX + 2];
1451 unsigned char sha1[20];
1452 unsigned hash;
1454 for (;;) {
1455 if (!fgets(line, sizeof(line), stdin)) {
1456 if (feof(stdin))
1457 break;
1458 if (!ferror(stdin))
1459 die("fgets returned NULL, not EOF, not error!");
1460 if (errno != EINTR)
1461 die("fgets: %s", strerror(errno));
1462 clearerr(stdin);
1463 continue;
1465 if (line[0] == '-') {
1466 if (get_sha1_hex(line+1, sha1))
1467 die("expected edge sha1, got garbage:\n %s",
1468 line);
1469 add_preferred_base(sha1);
1470 continue;
1472 if (get_sha1_hex(line, sha1))
1473 die("expected sha1, got garbage:\n %s", line);
1475 hash = name_hash(line+41);
1476 add_preferred_base_object(line+41, hash);
1477 add_object_entry(sha1, hash, 0);
1481 static void show_commit(struct commit *commit)
1483 unsigned hash = name_hash("");
1484 add_preferred_base_object("", hash);
1485 add_object_entry(commit->object.sha1, hash, 0);
1488 static void show_object(struct object_array_entry *p)
1490 unsigned hash = name_hash(p->name);
1491 add_preferred_base_object(p->name, hash);
1492 add_object_entry(p->item->sha1, hash, 0);
1495 static void show_edge(struct commit *commit)
1497 add_preferred_base(commit->object.sha1);
1500 static void get_object_list(int ac, const char **av)
1502 struct rev_info revs;
1503 char line[1000];
1504 int flags = 0;
1506 init_revisions(&revs, NULL);
1507 save_commit_buffer = 0;
1508 track_object_refs = 0;
1509 setup_revisions(ac, av, &revs, NULL);
1511 while (fgets(line, sizeof(line), stdin) != NULL) {
1512 int len = strlen(line);
1513 if (line[len - 1] == '\n')
1514 line[--len] = 0;
1515 if (!len)
1516 break;
1517 if (*line == '-') {
1518 if (!strcmp(line, "--not")) {
1519 flags ^= UNINTERESTING;
1520 continue;
1522 die("not a rev '%s'", line);
1524 if (handle_revision_arg(line, &revs, flags, 1))
1525 die("bad revision '%s'", line);
1528 prepare_revision_walk(&revs);
1529 mark_edges_uninteresting(revs.commits, &revs, show_edge);
1530 traverse_commit_list(&revs, show_commit, show_object);
1533 int cmd_pack_objects(int argc, const char **argv, const char *prefix)
1535 SHA_CTX ctx;
1536 int depth = 10;
1537 struct object_entry **list;
1538 int use_internal_rev_list = 0;
1539 int thin = 0;
1540 int i;
1541 const char **rp_av;
1542 int rp_ac_alloc = 64;
1543 int rp_ac;
1545 rp_av = xcalloc(rp_ac_alloc, sizeof(*rp_av));
1547 rp_av[0] = "pack-objects";
1548 rp_av[1] = "--objects"; /* --thin will make it --objects-edge */
1549 rp_ac = 2;
1551 git_config(git_pack_config);
1553 progress = isatty(2);
1554 for (i = 1; i < argc; i++) {
1555 const char *arg = argv[i];
1557 if (*arg != '-')
1558 break;
1560 if (!strcmp("--non-empty", arg)) {
1561 non_empty = 1;
1562 continue;
1564 if (!strcmp("--local", arg)) {
1565 local = 1;
1566 continue;
1568 if (!strcmp("--incremental", arg)) {
1569 incremental = 1;
1570 continue;
1572 if (!prefixcmp(arg, "--window=")) {
1573 char *end;
1574 window = strtoul(arg+9, &end, 0);
1575 if (!arg[9] || *end)
1576 usage(pack_usage);
1577 continue;
1579 if (!prefixcmp(arg, "--depth=")) {
1580 char *end;
1581 depth = strtoul(arg+8, &end, 0);
1582 if (!arg[8] || *end)
1583 usage(pack_usage);
1584 continue;
1586 if (!strcmp("--progress", arg)) {
1587 progress = 1;
1588 continue;
1590 if (!strcmp("--all-progress", arg)) {
1591 progress = 2;
1592 continue;
1594 if (!strcmp("-q", arg)) {
1595 progress = 0;
1596 continue;
1598 if (!strcmp("--no-reuse-delta", arg)) {
1599 no_reuse_delta = 1;
1600 continue;
1602 if (!strcmp("--delta-base-offset", arg)) {
1603 allow_ofs_delta = 1;
1604 continue;
1606 if (!strcmp("--stdout", arg)) {
1607 pack_to_stdout = 1;
1608 continue;
1610 if (!strcmp("--revs", arg)) {
1611 use_internal_rev_list = 1;
1612 continue;
1614 if (!strcmp("--unpacked", arg) ||
1615 !prefixcmp(arg, "--unpacked=") ||
1616 !strcmp("--reflog", arg) ||
1617 !strcmp("--all", arg)) {
1618 use_internal_rev_list = 1;
1619 if (rp_ac >= rp_ac_alloc - 1) {
1620 rp_ac_alloc = alloc_nr(rp_ac_alloc);
1621 rp_av = xrealloc(rp_av,
1622 rp_ac_alloc * sizeof(*rp_av));
1624 rp_av[rp_ac++] = arg;
1625 continue;
1627 if (!strcmp("--thin", arg)) {
1628 use_internal_rev_list = 1;
1629 thin = 1;
1630 rp_av[1] = "--objects-edge";
1631 continue;
1633 usage(pack_usage);
1636 /* Traditionally "pack-objects [options] base extra" failed;
1637 * we would however want to take refs parameter that would
1638 * have been given to upstream rev-list ourselves, which means
1639 * we somehow want to say what the base name is. So the
1640 * syntax would be:
1642 * pack-objects [options] base <refs...>
1644 * in other words, we would treat the first non-option as the
1645 * base_name and send everything else to the internal revision
1646 * walker.
1649 if (!pack_to_stdout)
1650 base_name = argv[i++];
1652 if (pack_to_stdout != !base_name)
1653 usage(pack_usage);
1655 if (!pack_to_stdout && thin)
1656 die("--thin cannot be used to build an indexable pack.");
1658 prepare_packed_git();
1660 if (progress) {
1661 fprintf(stderr, "Generating pack...\n");
1662 setup_progress_signal();
1665 if (!use_internal_rev_list)
1666 read_object_list_from_stdin();
1667 else {
1668 rp_av[rp_ac] = NULL;
1669 get_object_list(rp_ac, rp_av);
1672 if (progress)
1673 fprintf(stderr, "Done counting %d objects.\n", nr_objects);
1674 sorted_by_sha = create_final_object_list();
1675 if (non_empty && !nr_result)
1676 return 0;
1678 SHA1_Init(&ctx);
1679 list = sorted_by_sha;
1680 for (i = 0; i < nr_result; i++) {
1681 struct object_entry *entry = *list++;
1682 SHA1_Update(&ctx, entry->sha1, 20);
1684 SHA1_Final(object_list_sha1, &ctx);
1685 if (progress && (nr_objects != nr_result))
1686 fprintf(stderr, "Result has %d objects.\n", nr_result);
1688 if (reuse_cached_pack(object_list_sha1))
1690 else {
1691 if (nr_result)
1692 prepare_pack(window, depth);
1693 if (progress == 1 && pack_to_stdout) {
1694 /* the other end usually displays progress itself */
1695 struct itimerval v = {{0,},};
1696 setitimer(ITIMER_REAL, &v, NULL);
1697 signal(SIGALRM, SIG_IGN );
1698 progress_update = 0;
1700 write_pack_file();
1701 if (!pack_to_stdout) {
1702 write_index_file();
1703 puts(sha1_to_hex(object_list_sha1));
1706 if (progress)
1707 fprintf(stderr, "Total %d (delta %d), reused %d (delta %d)\n",
1708 written, written_delta, reused, reused_delta);
1709 return 0;