10 #include "csum-file.h"
11 #include "tree-walk.h"
14 #include "list-objects.h"
17 static const char pack_usage
[] = "\
18 git-pack-objects [{ -q | --progress | --all-progress }] \n\
19 [--local] [--incremental] [--window=N] [--depth=N] \n\
20 [--no-reuse-delta] [--delta-base-offset] [--non-empty] \n\
21 [--revs [--unpacked | --all]*] [--reflog] [--stdout | base-name] \n\
22 [<ref-list | <object-list]";
25 unsigned char sha1
[20];
26 uint32_t crc32
; /* crc of raw pack data for this object */
27 off_t offset
; /* offset into the final pack file */
28 unsigned long size
; /* uncompressed size */
29 unsigned int hash
; /* name hint hash */
30 unsigned int depth
; /* delta depth */
31 struct packed_git
*in_pack
; /* already in pack */
33 struct object_entry
*delta
; /* delta base object */
34 struct object_entry
*delta_child
; /* deltified objects who bases me */
35 struct object_entry
*delta_sibling
; /* other deltified objects who
36 * uses the same base as me
38 unsigned long delta_size
; /* delta data size (uncompressed) */
39 enum object_type type
;
40 enum object_type in_pack_type
; /* could be delta */
41 unsigned char in_pack_header_size
;
42 unsigned char preferred_base
; /* we do not pack this, but is available
43 * to be used as the base objectto delta
49 * Objects we are going to pack are collected in objects array (dynamically
50 * expanded). nr_objects & nr_alloc controls this array. They are stored
51 * in the order we see -- typically rev-list --objects order that gives us
52 * nice "minimum seek" order.
54 static struct object_entry
*objects
;
55 static uint32_t nr_objects
, nr_alloc
, nr_result
;
58 static int no_reuse_delta
;
60 static int incremental
;
61 static int allow_ofs_delta
;
62 static const char *pack_tmp_name
, *idx_tmp_name
;
63 static char tmpname
[PATH_MAX
];
64 static unsigned char pack_file_sha1
[20];
65 static int progress
= 1;
66 static int window
= 10;
67 static int pack_to_stdout
;
68 static int num_preferred_base
;
69 static struct progress progress_state
;
72 * The object names in objects array are hashed with this hashtable,
73 * to help looking up the entry by object name.
74 * This hashtable is built after all the objects are seen.
76 static int *object_ix
;
77 static int object_ix_hashsz
;
80 * Pack index for existing packs give us easy access to the offsets into
81 * corresponding pack file where each object's data starts, but the entries
82 * do not store the size of the compressed representation (uncompressed
83 * size is easily available by examining the pack entry header). It is
84 * also rather expensive to find the sha1 for an object given its offset.
86 * We build a hashtable of existing packs (pack_revindex), and keep reverse
87 * index here -- pack index file is sorted by object name mapping to offset;
88 * this pack_revindex[].revindex array is a list of offset/index_nr pairs
89 * ordered by offset, so if you know the offset of an object, next offset
90 * is where its packed representation ends and the index_nr can be used to
91 * get the object sha1 from the main index.
93 struct revindex_entry
{
97 struct pack_revindex
{
99 struct revindex_entry
*revindex
;
101 static struct pack_revindex
*pack_revindex
;
102 static int pack_revindex_hashsz
;
107 static uint32_t written
, written_delta
;
108 static uint32_t reused
, reused_delta
;
110 static int pack_revindex_ix(struct packed_git
*p
)
112 unsigned long ui
= (unsigned long)p
;
115 ui
= ui
^ (ui
>> 16); /* defeat structure alignment */
116 i
= (int)(ui
% pack_revindex_hashsz
);
117 while (pack_revindex
[i
].p
) {
118 if (pack_revindex
[i
].p
== p
)
120 if (++i
== pack_revindex_hashsz
)
126 static void prepare_pack_ix(void)
129 struct packed_git
*p
;
130 for (num
= 0, p
= packed_git
; p
; p
= p
->next
)
134 pack_revindex_hashsz
= num
* 11;
135 pack_revindex
= xcalloc(sizeof(*pack_revindex
), pack_revindex_hashsz
);
136 for (p
= packed_git
; p
; p
= p
->next
) {
137 num
= pack_revindex_ix(p
);
139 pack_revindex
[num
].p
= p
;
141 /* revindex elements are lazily initialized */
144 static int cmp_offset(const void *a_
, const void *b_
)
146 const struct revindex_entry
*a
= a_
;
147 const struct revindex_entry
*b
= b_
;
148 return (a
->offset
< b
->offset
) ? -1 : (a
->offset
> b
->offset
) ? 1 : 0;
152 * Ordered list of offsets of objects in the pack.
154 static void prepare_pack_revindex(struct pack_revindex
*rix
)
156 struct packed_git
*p
= rix
->p
;
157 int num_ent
= p
->num_objects
;
159 const char *index
= p
->index_data
;
161 rix
->revindex
= xmalloc(sizeof(*rix
->revindex
) * (num_ent
+ 1));
164 if (p
->index_version
> 1) {
165 const uint32_t *off_32
=
166 (uint32_t *)(index
+ 8 + p
->num_objects
* (20 + 4));
167 const uint32_t *off_64
= off_32
+ p
->num_objects
;
168 for (i
= 0; i
< num_ent
; i
++) {
169 uint32_t off
= ntohl(*off_32
++);
170 if (!(off
& 0x80000000)) {
171 rix
->revindex
[i
].offset
= off
;
173 rix
->revindex
[i
].offset
=
174 ((uint64_t)ntohl(*off_64
++)) << 32;
175 rix
->revindex
[i
].offset
|=
178 rix
->revindex
[i
].nr
= i
;
181 for (i
= 0; i
< num_ent
; i
++) {
182 uint32_t hl
= *((uint32_t *)(index
+ 24 * i
));
183 rix
->revindex
[i
].offset
= ntohl(hl
);
184 rix
->revindex
[i
].nr
= i
;
188 /* This knows the pack format -- the 20-byte trailer
189 * follows immediately after the last object data.
191 rix
->revindex
[num_ent
].offset
= p
->pack_size
- 20;
192 rix
->revindex
[num_ent
].nr
= -1;
193 qsort(rix
->revindex
, num_ent
, sizeof(*rix
->revindex
), cmp_offset
);
196 static struct revindex_entry
* find_packed_object(struct packed_git
*p
,
201 struct pack_revindex
*rix
;
202 struct revindex_entry
*revindex
;
203 num
= pack_revindex_ix(p
);
205 die("internal error: pack revindex uninitialized");
206 rix
= &pack_revindex
[num
];
208 prepare_pack_revindex(rix
);
209 revindex
= rix
->revindex
;
211 hi
= p
->num_objects
+ 1;
213 int mi
= (lo
+ hi
) / 2;
214 if (revindex
[mi
].offset
== ofs
) {
215 return revindex
+ mi
;
217 else if (ofs
< revindex
[mi
].offset
)
222 die("internal error: pack revindex corrupt");
225 static const unsigned char *find_packed_object_name(struct packed_git
*p
,
228 struct revindex_entry
*entry
= find_packed_object(p
, ofs
);
229 return nth_packed_object_sha1(p
, entry
->nr
);
232 static void *delta_against(void *buf
, unsigned long size
, struct object_entry
*entry
)
234 unsigned long othersize
, delta_size
;
235 enum object_type type
;
236 void *otherbuf
= read_sha1_file(entry
->delta
->sha1
, &type
, &othersize
);
240 die("unable to read %s", sha1_to_hex(entry
->delta
->sha1
));
241 delta_buf
= diff_delta(otherbuf
, othersize
,
242 buf
, size
, &delta_size
, 0);
243 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
244 die("delta size changed");
251 * The per-object header is a pretty dense thing, which is
252 * - first byte: low four bits are "size", then three bits of "type",
253 * and the high bit is "size continues".
254 * - each byte afterwards: low seven bits are size continuation,
255 * with the high bit being "size continues"
257 static int encode_header(enum object_type type
, unsigned long size
, unsigned char *hdr
)
262 if (type
< OBJ_COMMIT
|| type
> OBJ_REF_DELTA
)
263 die("bad type %d", type
);
265 c
= (type
<< 4) | (size
& 15);
278 * we are going to reuse the existing object data as is. make
279 * sure it is not corrupt.
281 static int check_pack_inflate(struct packed_git
*p
,
282 struct pack_window
**w_curs
,
285 unsigned long expect
)
288 unsigned char fakebuf
[4096], *in
;
291 memset(&stream
, 0, sizeof(stream
));
292 inflateInit(&stream
);
294 in
= use_pack(p
, w_curs
, offset
, &stream
.avail_in
);
296 stream
.next_out
= fakebuf
;
297 stream
.avail_out
= sizeof(fakebuf
);
298 st
= inflate(&stream
, Z_FINISH
);
299 offset
+= stream
.next_in
- in
;
300 } while (st
== Z_OK
|| st
== Z_BUF_ERROR
);
302 return (st
== Z_STREAM_END
&&
303 stream
.total_out
== expect
&&
304 stream
.total_in
== len
) ? 0 : -1;
307 static int check_pack_crc(struct packed_git
*p
, struct pack_window
**w_curs
,
308 off_t offset
, off_t len
, unsigned int nr
)
310 const uint32_t *index_crc
;
311 uint32_t data_crc
= crc32(0, Z_NULL
, 0);
315 void *data
= use_pack(p
, w_curs
, offset
, &avail
);
318 data_crc
= crc32(data_crc
, data
, avail
);
323 index_crc
= p
->index_data
;
324 index_crc
+= 2 + 256 + p
->num_objects
* (20/4) + nr
;
326 return data_crc
!= ntohl(*index_crc
);
329 static void copy_pack_data(struct sha1file
*f
,
330 struct packed_git
*p
,
331 struct pack_window
**w_curs
,
339 in
= use_pack(p
, w_curs
, offset
, &avail
);
341 avail
= (unsigned int)len
;
342 sha1write(f
, in
, avail
);
348 static int check_loose_inflate(unsigned char *data
, unsigned long len
, unsigned long expect
)
351 unsigned char fakebuf
[4096];
354 memset(&stream
, 0, sizeof(stream
));
355 stream
.next_in
= data
;
356 stream
.avail_in
= len
;
357 stream
.next_out
= fakebuf
;
358 stream
.avail_out
= sizeof(fakebuf
);
359 inflateInit(&stream
);
362 st
= inflate(&stream
, Z_FINISH
);
363 if (st
== Z_STREAM_END
|| st
== Z_OK
) {
364 st
= (stream
.total_out
== expect
&&
365 stream
.total_in
== len
) ? 0 : -1;
368 if (st
!= Z_BUF_ERROR
) {
372 stream
.next_out
= fakebuf
;
373 stream
.avail_out
= sizeof(fakebuf
);
379 static int revalidate_loose_object(struct object_entry
*entry
,
381 unsigned long mapsize
)
383 /* we already know this is a loose object with new type header. */
384 enum object_type type
;
385 unsigned long size
, used
;
390 used
= unpack_object_header_gently(map
, mapsize
, &type
, &size
);
395 return check_loose_inflate(map
, mapsize
, size
);
398 static unsigned long write_object(struct sha1file
*f
,
399 struct object_entry
*entry
)
402 enum object_type type
;
404 unsigned char header
[10];
407 enum object_type obj_type
;
413 obj_type
= entry
->type
;
414 if (! entry
->in_pack
)
415 to_reuse
= 0; /* can't reuse what we don't have */
416 else if (obj_type
== OBJ_REF_DELTA
|| obj_type
== OBJ_OFS_DELTA
)
417 to_reuse
= 1; /* check_object() decided it for us */
418 else if (obj_type
!= entry
->in_pack_type
)
419 to_reuse
= 0; /* pack has delta which is unusable */
420 else if (entry
->delta
)
421 to_reuse
= 0; /* we want to pack afresh */
423 to_reuse
= 1; /* we have it in-pack undeltified,
424 * and we do not need to deltify it.
427 if (!entry
->in_pack
&& !entry
->delta
) {
429 unsigned long mapsize
;
430 map
= map_sha1_file(entry
->sha1
, &mapsize
);
431 if (map
&& !legacy_loose_object(map
)) {
432 /* We can copy straight into the pack file */
433 if (revalidate_loose_object(entry
, map
, mapsize
))
434 die("corrupt loose object %s",
435 sha1_to_hex(entry
->sha1
));
436 sha1write(f
, map
, mapsize
);
437 munmap(map
, mapsize
);
443 munmap(map
, mapsize
);
447 buf
= read_sha1_file(entry
->sha1
, &type
, &size
);
449 die("unable to read %s", sha1_to_hex(entry
->sha1
));
450 if (size
!= entry
->size
)
451 die("object %s size inconsistency (%lu vs %lu)",
452 sha1_to_hex(entry
->sha1
), size
, entry
->size
);
454 buf
= delta_against(buf
, size
, entry
);
455 size
= entry
->delta_size
;
456 obj_type
= (allow_ofs_delta
&& entry
->delta
->offset
) ?
457 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
460 * The object header is a byte of 'type' followed by zero or
461 * more bytes of length.
463 hdrlen
= encode_header(obj_type
, size
, header
);
464 sha1write(f
, header
, hdrlen
);
466 if (obj_type
== OBJ_OFS_DELTA
) {
468 * Deltas with relative base contain an additional
469 * encoding of the relative offset for the delta
470 * base from this object's position in the pack.
472 off_t ofs
= entry
->offset
- entry
->delta
->offset
;
473 unsigned pos
= sizeof(header
) - 1;
474 header
[pos
] = ofs
& 127;
476 header
[--pos
] = 128 | (--ofs
& 127);
477 sha1write(f
, header
+ pos
, sizeof(header
) - pos
);
478 hdrlen
+= sizeof(header
) - pos
;
479 } else if (obj_type
== OBJ_REF_DELTA
) {
481 * Deltas with a base reference contain
482 * an additional 20 bytes for the base sha1.
484 sha1write(f
, entry
->delta
->sha1
, 20);
487 datalen
= sha1write_compressed(f
, buf
, size
);
491 struct packed_git
*p
= entry
->in_pack
;
492 struct pack_window
*w_curs
= NULL
;
493 struct revindex_entry
*revidx
;
497 obj_type
= (allow_ofs_delta
&& entry
->delta
->offset
) ?
498 OBJ_OFS_DELTA
: OBJ_REF_DELTA
;
501 hdrlen
= encode_header(obj_type
, entry
->size
, header
);
502 sha1write(f
, header
, hdrlen
);
503 if (obj_type
== OBJ_OFS_DELTA
) {
504 off_t ofs
= entry
->offset
- entry
->delta
->offset
;
505 unsigned pos
= sizeof(header
) - 1;
506 header
[pos
] = ofs
& 127;
508 header
[--pos
] = 128 | (--ofs
& 127);
509 sha1write(f
, header
+ pos
, sizeof(header
) - pos
);
510 hdrlen
+= sizeof(header
) - pos
;
511 } else if (obj_type
== OBJ_REF_DELTA
) {
512 sha1write(f
, entry
->delta
->sha1
, 20);
516 offset
= entry
->in_pack_offset
;
517 revidx
= find_packed_object(p
, offset
);
518 datalen
= revidx
[1].offset
- offset
;
519 if (!pack_to_stdout
&& p
->index_version
> 1 &&
520 check_pack_crc(p
, &w_curs
, offset
, datalen
, revidx
->nr
))
521 die("bad packed object CRC for %s", sha1_to_hex(entry
->sha1
));
522 offset
+= entry
->in_pack_header_size
;
523 datalen
-= entry
->in_pack_header_size
;
524 if (!pack_to_stdout
&& p
->index_version
== 1 &&
525 check_pack_inflate(p
, &w_curs
, offset
, datalen
, entry
->size
))
526 die("corrupt packed object for %s", sha1_to_hex(entry
->sha1
));
527 copy_pack_data(f
, p
, &w_curs
, offset
, datalen
);
535 entry
->crc32
= crc32_end(f
);
536 return hdrlen
+ datalen
;
539 static off_t
write_one(struct sha1file
*f
,
540 struct object_entry
*e
,
545 /* offset is non zero if object is written already. */
546 if (e
->offset
|| e
->preferred_base
)
549 /* if we are deltified, write out base object first. */
551 offset
= write_one(f
, e
->delta
, offset
);
554 size
= write_object(f
, e
);
556 /* make sure off_t is sufficiently large not to wrap */
557 if (offset
> offset
+ size
)
558 die("pack too large for current definition of off_t");
559 return offset
+ size
;
562 static off_t
write_pack_file(void)
566 off_t offset
, last_obj_offset
= 0;
567 struct pack_header hdr
;
568 int do_progress
= progress
;
570 if (pack_to_stdout
) {
571 f
= sha1fd(1, "<stdout>");
575 snprintf(tmpname
, sizeof(tmpname
), "tmp_pack_XXXXXX");
576 fd
= mkstemp(tmpname
);
578 die("unable to create %s: %s\n", tmpname
, strerror(errno
));
579 pack_tmp_name
= xstrdup(tmpname
);
580 f
= sha1fd(fd
, pack_tmp_name
);
584 start_progress(&progress_state
, "Writing %u objects...", "", nr_result
);
586 hdr
.hdr_signature
= htonl(PACK_SIGNATURE
);
587 hdr
.hdr_version
= htonl(PACK_VERSION
);
588 hdr
.hdr_entries
= htonl(nr_result
);
589 sha1write(f
, &hdr
, sizeof(hdr
));
590 offset
= sizeof(hdr
);
593 for (i
= 0; i
< nr_objects
; i
++) {
594 last_obj_offset
= offset
;
595 offset
= write_one(f
, objects
+ i
, offset
);
597 display_progress(&progress_state
, written
);
600 stop_progress(&progress_state
);
602 if (written
!= nr_result
)
603 die("wrote %u objects while expecting %u", written
, nr_result
);
604 sha1close(f
, pack_file_sha1
, 1);
606 return last_obj_offset
;
609 static int sha1_sort(const void *_a
, const void *_b
)
611 const struct object_entry
*a
= *(struct object_entry
**)_a
;
612 const struct object_entry
*b
= *(struct object_entry
**)_b
;
613 return hashcmp(a
->sha1
, b
->sha1
);
616 static uint32_t index_default_version
= 1;
617 static uint32_t index_off32_limit
= 0x7fffffff;
619 static void write_index_file(off_t last_obj_offset
, unsigned char *sha1
)
622 struct object_entry
**sorted_by_sha
, **list
, **last
;
624 uint32_t i
, index_version
;
628 snprintf(tmpname
, sizeof(tmpname
), "tmp_idx_XXXXXX");
629 fd
= mkstemp(tmpname
);
631 die("unable to create %s: %s\n", tmpname
, strerror(errno
));
632 idx_tmp_name
= xstrdup(tmpname
);
633 f
= sha1fd(fd
, idx_tmp_name
);
638 xcalloc(nr_result
, sizeof(struct object_entry
*));
639 for (i
= 0; i
< nr_objects
; i
++)
640 if (!objects
[i
].preferred_base
)
641 sorted_by_sha
[j
++] = objects
+ i
;
643 die("listed %u objects while expecting %u", j
, nr_result
);
644 qsort(sorted_by_sha
, nr_result
, sizeof(*sorted_by_sha
), sha1_sort
);
645 list
= sorted_by_sha
;
646 last
= sorted_by_sha
+ nr_result
;
648 sorted_by_sha
= list
= last
= NULL
;
650 /* if last object's offset is >= 2^31 we should use index V2 */
651 index_version
= (last_obj_offset
>> 31) ? 2 : index_default_version
;
653 /* index versions 2 and above need a header */
654 if (index_version
>= 2) {
655 struct pack_idx_header hdr
;
656 hdr
.idx_signature
= htonl(PACK_IDX_SIGNATURE
);
657 hdr
.idx_version
= htonl(index_version
);
658 sha1write(f
, &hdr
, sizeof(hdr
));
662 * Write the first-level table (the list is sorted,
663 * but we use a 256-entry lookup to be able to avoid
664 * having to do eight extra binary search iterations).
666 for (i
= 0; i
< 256; i
++) {
667 struct object_entry
**next
= list
;
668 while (next
< last
) {
669 struct object_entry
*entry
= *next
;
670 if (entry
->sha1
[0] != i
)
674 array
[i
] = htonl(next
- sorted_by_sha
);
677 sha1write(f
, array
, 256 * 4);
679 /* Compute the SHA1 hash of sorted object names. */
682 /* Write the actual SHA1 entries. */
683 list
= sorted_by_sha
;
684 for (i
= 0; i
< nr_result
; i
++) {
685 struct object_entry
*entry
= *list
++;
686 if (index_version
< 2) {
687 uint32_t offset
= htonl(entry
->offset
);
688 sha1write(f
, &offset
, 4);
690 sha1write(f
, entry
->sha1
, 20);
691 SHA1_Update(&ctx
, entry
->sha1
, 20);
694 if (index_version
>= 2) {
695 unsigned int nr_large_offset
= 0;
697 /* write the crc32 table */
698 list
= sorted_by_sha
;
699 for (i
= 0; i
< nr_objects
; i
++) {
700 struct object_entry
*entry
= *list
++;
701 uint32_t crc32_val
= htonl(entry
->crc32
);
702 sha1write(f
, &crc32_val
, 4);
705 /* write the 32-bit offset table */
706 list
= sorted_by_sha
;
707 for (i
= 0; i
< nr_objects
; i
++) {
708 struct object_entry
*entry
= *list
++;
709 uint32_t offset
= (entry
->offset
<= index_off32_limit
) ?
710 entry
->offset
: (0x80000000 | nr_large_offset
++);
711 offset
= htonl(offset
);
712 sha1write(f
, &offset
, 4);
715 /* write the large offset table */
716 list
= sorted_by_sha
;
717 while (nr_large_offset
) {
718 struct object_entry
*entry
= *list
++;
719 uint64_t offset
= entry
->offset
;
720 if (offset
> index_off32_limit
) {
722 split
[0] = htonl(offset
>> 32);
723 split
[1] = htonl(offset
& 0xffffffff);
724 sha1write(f
, split
, 8);
730 sha1write(f
, pack_file_sha1
, 20);
731 sha1close(f
, NULL
, 1);
733 SHA1_Final(sha1
, &ctx
);
736 static int locate_object_entry_hash(const unsigned char *sha1
)
740 memcpy(&ui
, sha1
, sizeof(unsigned int));
741 i
= ui
% object_ix_hashsz
;
742 while (0 < object_ix
[i
]) {
743 if (!hashcmp(sha1
, objects
[object_ix
[i
] - 1].sha1
))
745 if (++i
== object_ix_hashsz
)
751 static struct object_entry
*locate_object_entry(const unsigned char *sha1
)
755 if (!object_ix_hashsz
)
758 i
= locate_object_entry_hash(sha1
);
760 return &objects
[object_ix
[i
]-1];
764 static void rehash_objects(void)
767 struct object_entry
*oe
;
769 object_ix_hashsz
= nr_objects
* 3;
770 if (object_ix_hashsz
< 1024)
771 object_ix_hashsz
= 1024;
772 object_ix
= xrealloc(object_ix
, sizeof(int) * object_ix_hashsz
);
773 memset(object_ix
, 0, sizeof(int) * object_ix_hashsz
);
774 for (i
= 0, oe
= objects
; i
< nr_objects
; i
++, oe
++) {
775 int ix
= locate_object_entry_hash(oe
->sha1
);
779 object_ix
[ix
] = i
+ 1;
783 static unsigned name_hash(const char *name
)
789 * This effectively just creates a sortable number from the
790 * last sixteen non-whitespace characters. Last characters
791 * count "most", so things that end in ".c" sort together.
793 while ((c
= *name
++) != 0) {
796 hash
= (hash
>> 2) + (c
<< 24);
801 static int add_object_entry(const unsigned char *sha1
, enum object_type type
,
802 unsigned hash
, int exclude
)
804 struct object_entry
*entry
;
805 struct packed_git
*p
, *found_pack
= NULL
;
806 off_t found_offset
= 0;
809 ix
= nr_objects
? locate_object_entry_hash(sha1
) : -1;
812 entry
= objects
+ object_ix
[ix
] - 1;
813 if (!entry
->preferred_base
)
815 entry
->preferred_base
= 1;
820 for (p
= packed_git
; p
; p
= p
->next
) {
821 off_t offset
= find_pack_entry_one(sha1
, p
);
824 found_offset
= offset
;
831 if (local
&& !p
->pack_local
)
836 if (nr_objects
>= nr_alloc
) {
837 nr_alloc
= (nr_alloc
+ 1024) * 3 / 2;
838 objects
= xrealloc(objects
, nr_alloc
* sizeof(*entry
));
841 entry
= objects
+ nr_objects
++;
842 memset(entry
, 0, sizeof(*entry
));
843 hashcpy(entry
->sha1
, sha1
);
848 entry
->preferred_base
= 1;
852 entry
->in_pack
= found_pack
;
853 entry
->in_pack_offset
= found_offset
;
856 if (object_ix_hashsz
* 3 <= nr_objects
* 4)
859 object_ix
[-1 - ix
] = nr_objects
;
862 display_progress(&progress_state
, nr_objects
);
867 struct pbase_tree_cache
{
868 unsigned char sha1
[20];
872 unsigned long tree_size
;
875 static struct pbase_tree_cache
*(pbase_tree_cache
[256]);
876 static int pbase_tree_cache_ix(const unsigned char *sha1
)
878 return sha1
[0] % ARRAY_SIZE(pbase_tree_cache
);
880 static int pbase_tree_cache_ix_incr(int ix
)
882 return (ix
+1) % ARRAY_SIZE(pbase_tree_cache
);
885 static struct pbase_tree
{
886 struct pbase_tree
*next
;
887 /* This is a phony "cache" entry; we are not
888 * going to evict it nor find it through _get()
889 * mechanism -- this is for the toplevel node that
890 * would almost always change with any commit.
892 struct pbase_tree_cache pcache
;
895 static struct pbase_tree_cache
*pbase_tree_get(const unsigned char *sha1
)
897 struct pbase_tree_cache
*ent
, *nent
;
900 enum object_type type
;
902 int my_ix
= pbase_tree_cache_ix(sha1
);
903 int available_ix
= -1;
905 /* pbase-tree-cache acts as a limited hashtable.
906 * your object will be found at your index or within a few
907 * slots after that slot if it is cached.
909 for (neigh
= 0; neigh
< 8; neigh
++) {
910 ent
= pbase_tree_cache
[my_ix
];
911 if (ent
&& !hashcmp(ent
->sha1
, sha1
)) {
915 else if (((available_ix
< 0) && (!ent
|| !ent
->ref
)) ||
916 ((0 <= available_ix
) &&
917 (!ent
&& pbase_tree_cache
[available_ix
])))
918 available_ix
= my_ix
;
921 my_ix
= pbase_tree_cache_ix_incr(my_ix
);
924 /* Did not find one. Either we got a bogus request or
925 * we need to read and perhaps cache.
927 data
= read_sha1_file(sha1
, &type
, &size
);
930 if (type
!= OBJ_TREE
) {
935 /* We need to either cache or return a throwaway copy */
937 if (available_ix
< 0)
940 ent
= pbase_tree_cache
[available_ix
];
941 my_ix
= available_ix
;
945 nent
= xmalloc(sizeof(*nent
));
946 nent
->temporary
= (available_ix
< 0);
949 /* evict and reuse */
950 free(ent
->tree_data
);
953 hashcpy(nent
->sha1
, sha1
);
954 nent
->tree_data
= data
;
955 nent
->tree_size
= size
;
957 if (!nent
->temporary
)
958 pbase_tree_cache
[my_ix
] = nent
;
962 static void pbase_tree_put(struct pbase_tree_cache
*cache
)
964 if (!cache
->temporary
) {
968 free(cache
->tree_data
);
972 static int name_cmp_len(const char *name
)
975 for (i
= 0; name
[i
] && name
[i
] != '\n' && name
[i
] != '/'; i
++)
980 static void add_pbase_object(struct tree_desc
*tree
,
983 const char *fullname
)
985 struct name_entry entry
;
988 while (tree_entry(tree
,&entry
)) {
989 cmp
= tree_entry_len(entry
.path
, entry
.sha1
) != cmplen
? 1 :
990 memcmp(name
, entry
.path
, cmplen
);
995 if (name
[cmplen
] != '/') {
996 unsigned hash
= name_hash(fullname
);
997 add_object_entry(entry
.sha1
,
998 S_ISDIR(entry
.mode
) ? OBJ_TREE
: OBJ_BLOB
,
1002 if (S_ISDIR(entry
.mode
)) {
1003 struct tree_desc sub
;
1004 struct pbase_tree_cache
*tree
;
1005 const char *down
= name
+cmplen
+1;
1006 int downlen
= name_cmp_len(down
);
1008 tree
= pbase_tree_get(entry
.sha1
);
1011 init_tree_desc(&sub
, tree
->tree_data
, tree
->tree_size
);
1013 add_pbase_object(&sub
, down
, downlen
, fullname
);
1014 pbase_tree_put(tree
);
1019 static unsigned *done_pbase_paths
;
1020 static int done_pbase_paths_num
;
1021 static int done_pbase_paths_alloc
;
1022 static int done_pbase_path_pos(unsigned hash
)
1025 int hi
= done_pbase_paths_num
;
1027 int mi
= (hi
+ lo
) / 2;
1028 if (done_pbase_paths
[mi
] == hash
)
1030 if (done_pbase_paths
[mi
] < hash
)
1038 static int check_pbase_path(unsigned hash
)
1040 int pos
= (!done_pbase_paths
) ? -1 : done_pbase_path_pos(hash
);
1044 if (done_pbase_paths_alloc
<= done_pbase_paths_num
) {
1045 done_pbase_paths_alloc
= alloc_nr(done_pbase_paths_alloc
);
1046 done_pbase_paths
= xrealloc(done_pbase_paths
,
1047 done_pbase_paths_alloc
*
1050 done_pbase_paths_num
++;
1051 if (pos
< done_pbase_paths_num
)
1052 memmove(done_pbase_paths
+ pos
+ 1,
1053 done_pbase_paths
+ pos
,
1054 (done_pbase_paths_num
- pos
- 1) * sizeof(unsigned));
1055 done_pbase_paths
[pos
] = hash
;
1059 static void add_preferred_base_object(const char *name
, unsigned hash
)
1061 struct pbase_tree
*it
;
1064 if (!num_preferred_base
|| check_pbase_path(hash
))
1067 cmplen
= name_cmp_len(name
);
1068 for (it
= pbase_tree
; it
; it
= it
->next
) {
1070 add_object_entry(it
->pcache
.sha1
, OBJ_TREE
, 0, 1);
1073 struct tree_desc tree
;
1074 init_tree_desc(&tree
, it
->pcache
.tree_data
, it
->pcache
.tree_size
);
1075 add_pbase_object(&tree
, name
, cmplen
, name
);
1080 static void add_preferred_base(unsigned char *sha1
)
1082 struct pbase_tree
*it
;
1085 unsigned char tree_sha1
[20];
1087 if (window
<= num_preferred_base
++)
1090 data
= read_object_with_reference(sha1
, tree_type
, &size
, tree_sha1
);
1094 for (it
= pbase_tree
; it
; it
= it
->next
) {
1095 if (!hashcmp(it
->pcache
.sha1
, tree_sha1
)) {
1101 it
= xcalloc(1, sizeof(*it
));
1102 it
->next
= pbase_tree
;
1105 hashcpy(it
->pcache
.sha1
, tree_sha1
);
1106 it
->pcache
.tree_data
= data
;
1107 it
->pcache
.tree_size
= size
;
1110 static void check_object(struct object_entry
*entry
)
1112 if (entry
->in_pack
) {
1113 struct packed_git
*p
= entry
->in_pack
;
1114 struct pack_window
*w_curs
= NULL
;
1115 const unsigned char *base_ref
= NULL
;
1116 struct object_entry
*base_entry
;
1117 unsigned long used
, used_0
;
1120 unsigned char *buf
, c
;
1122 buf
= use_pack(p
, &w_curs
, entry
->in_pack_offset
, &avail
);
1125 * We want in_pack_type even if we do not reuse delta.
1126 * There is no point not reusing non-delta representations.
1128 used
= unpack_object_header_gently(buf
, avail
,
1129 &entry
->in_pack_type
,
1133 * Determine if this is a delta and if so whether we can
1134 * reuse it or not. Otherwise let's find out as cheaply as
1135 * possible what the actual type and size for this object is.
1137 switch (entry
->in_pack_type
) {
1139 /* Not a delta hence we've already got all we need. */
1140 entry
->type
= entry
->in_pack_type
;
1141 entry
->in_pack_header_size
= used
;
1142 unuse_pack(&w_curs
);
1145 if (!no_reuse_delta
&& !entry
->preferred_base
)
1146 base_ref
= use_pack(p
, &w_curs
,
1147 entry
->in_pack_offset
+ used
, NULL
);
1148 entry
->in_pack_header_size
= used
+ 20;
1151 buf
= use_pack(p
, &w_curs
,
1152 entry
->in_pack_offset
+ used
, NULL
);
1158 if (!ofs
|| MSB(ofs
, 7))
1159 die("delta base offset overflow in pack for %s",
1160 sha1_to_hex(entry
->sha1
));
1162 ofs
= (ofs
<< 7) + (c
& 127);
1164 if (ofs
>= entry
->in_pack_offset
)
1165 die("delta base offset out of bound for %s",
1166 sha1_to_hex(entry
->sha1
));
1167 ofs
= entry
->in_pack_offset
- ofs
;
1168 if (!no_reuse_delta
&& !entry
->preferred_base
)
1169 base_ref
= find_packed_object_name(p
, ofs
);
1170 entry
->in_pack_header_size
= used
+ used_0
;
1174 if (base_ref
&& (base_entry
= locate_object_entry(base_ref
))) {
1176 * If base_ref was set above that means we wish to
1177 * reuse delta data, and we even found that base
1178 * in the list of objects we want to pack. Goodie!
1180 * Depth value does not matter - find_deltas() will
1181 * never consider reused delta as the base object to
1182 * deltify other objects against, in order to avoid
1185 entry
->type
= entry
->in_pack_type
;
1186 entry
->delta
= base_entry
;
1187 entry
->delta_sibling
= base_entry
->delta_child
;
1188 base_entry
->delta_child
= entry
;
1189 unuse_pack(&w_curs
);
1195 * This must be a delta and we already know what the
1196 * final object type is. Let's extract the actual
1197 * object size from the delta header.
1199 entry
->size
= get_size_from_delta(p
, &w_curs
,
1200 entry
->in_pack_offset
+ entry
->in_pack_header_size
);
1201 unuse_pack(&w_curs
);
1206 * No choice but to fall back to the recursive delta walk
1207 * with sha1_object_info() to find about the object type
1210 unuse_pack(&w_curs
);
1213 entry
->type
= sha1_object_info(entry
->sha1
, &entry
->size
);
1214 if (entry
->type
< 0)
1215 die("unable to get type of object %s",
1216 sha1_to_hex(entry
->sha1
));
1219 static int pack_offset_sort(const void *_a
, const void *_b
)
1221 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1222 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1224 /* avoid filesystem trashing with loose objects */
1225 if (!a
->in_pack
&& !b
->in_pack
)
1226 return hashcmp(a
->sha1
, b
->sha1
);
1228 if (a
->in_pack
< b
->in_pack
)
1230 if (a
->in_pack
> b
->in_pack
)
1232 return a
->in_pack_offset
< b
->in_pack_offset
? -1 :
1233 (a
->in_pack_offset
> b
->in_pack_offset
);
1236 static void get_object_details(void)
1239 struct object_entry
**sorted_by_offset
;
1241 sorted_by_offset
= xcalloc(nr_objects
, sizeof(struct object_entry
*));
1242 for (i
= 0; i
< nr_objects
; i
++)
1243 sorted_by_offset
[i
] = objects
+ i
;
1244 qsort(sorted_by_offset
, nr_objects
, sizeof(*sorted_by_offset
), pack_offset_sort
);
1247 for (i
= 0; i
< nr_objects
; i
++)
1248 check_object(sorted_by_offset
[i
]);
1249 free(sorted_by_offset
);
1252 static int type_size_sort(const void *_a
, const void *_b
)
1254 const struct object_entry
*a
= *(struct object_entry
**)_a
;
1255 const struct object_entry
*b
= *(struct object_entry
**)_b
;
1257 if (a
->type
< b
->type
)
1259 if (a
->type
> b
->type
)
1261 if (a
->hash
< b
->hash
)
1263 if (a
->hash
> b
->hash
)
1265 if (a
->preferred_base
< b
->preferred_base
)
1267 if (a
->preferred_base
> b
->preferred_base
)
1269 if (a
->size
< b
->size
)
1271 if (a
->size
> b
->size
)
1273 return a
> b
? -1 : (a
< b
); /* newest last */
1277 struct object_entry
*entry
;
1279 struct delta_index
*index
;
1283 * We search for deltas _backwards_ in a list sorted by type and
1284 * by size, so that we see progressively smaller and smaller files.
1285 * That's because we prefer deltas to be from the bigger file
1286 * to the smaller - deletes are potentially cheaper, but perhaps
1287 * more importantly, the bigger file is likely the more recent
1290 static int try_delta(struct unpacked
*trg
, struct unpacked
*src
,
1293 struct object_entry
*trg_entry
= trg
->entry
;
1294 struct object_entry
*src_entry
= src
->entry
;
1295 unsigned long trg_size
, src_size
, delta_size
, sizediff
, max_size
, sz
;
1296 enum object_type type
;
1299 /* Don't bother doing diffs between different types */
1300 if (trg_entry
->type
!= src_entry
->type
)
1303 /* We do not compute delta to *create* objects we are not
1306 if (trg_entry
->preferred_base
)
1310 * We do not bother to try a delta that we discarded
1311 * on an earlier try, but only when reusing delta data.
1313 if (!no_reuse_delta
&& trg_entry
->in_pack
&&
1314 trg_entry
->in_pack
== src_entry
->in_pack
&&
1315 trg_entry
->in_pack_type
!= OBJ_REF_DELTA
&&
1316 trg_entry
->in_pack_type
!= OBJ_OFS_DELTA
)
1319 /* Let's not bust the allowed depth. */
1320 if (src_entry
->depth
>= max_depth
)
1323 /* Now some size filtering heuristics. */
1324 trg_size
= trg_entry
->size
;
1325 max_size
= trg_size
/2 - 20;
1326 max_size
= max_size
* (max_depth
- src_entry
->depth
) / max_depth
;
1329 if (trg_entry
->delta
&& trg_entry
->delta_size
<= max_size
)
1330 max_size
= trg_entry
->delta_size
-1;
1331 src_size
= src_entry
->size
;
1332 sizediff
= src_size
< trg_size
? trg_size
- src_size
: 0;
1333 if (sizediff
>= max_size
)
1336 /* Load data if not already done */
1338 trg
->data
= read_sha1_file(trg_entry
->sha1
, &type
, &sz
);
1340 die("object %s inconsistent object length (%lu vs %lu)",
1341 sha1_to_hex(trg_entry
->sha1
), sz
, trg_size
);
1344 src
->data
= read_sha1_file(src_entry
->sha1
, &type
, &sz
);
1346 die("object %s inconsistent object length (%lu vs %lu)",
1347 sha1_to_hex(src_entry
->sha1
), sz
, src_size
);
1350 src
->index
= create_delta_index(src
->data
, src_size
);
1352 die("out of memory");
1355 delta_buf
= create_delta(src
->index
, trg
->data
, trg_size
, &delta_size
, max_size
);
1359 trg_entry
->delta
= src_entry
;
1360 trg_entry
->delta_size
= delta_size
;
1361 trg_entry
->depth
= src_entry
->depth
+ 1;
1366 static unsigned int check_delta_limit(struct object_entry
*me
, unsigned int n
)
1368 struct object_entry
*child
= me
->delta_child
;
1371 unsigned int c
= check_delta_limit(child
, n
+ 1);
1374 child
= child
->delta_sibling
;
1379 static void find_deltas(struct object_entry
**list
, int window
, int depth
)
1381 uint32_t i
= nr_objects
, idx
= 0, processed
= 0;
1382 unsigned int array_size
= window
* sizeof(struct unpacked
);
1383 struct unpacked
*array
;
1388 array
= xmalloc(array_size
);
1389 memset(array
, 0, array_size
);
1391 start_progress(&progress_state
, "Deltifying %u objects...", "", nr_result
);
1394 struct object_entry
*entry
= list
[--i
];
1395 struct unpacked
*n
= array
+ idx
;
1398 if (!entry
->preferred_base
)
1402 display_progress(&progress_state
, processed
);
1405 /* This happens if we decided to reuse existing
1406 * delta from a pack. "!no_reuse_delta &&" is implied.
1410 if (entry
->size
< 50)
1412 free_delta_index(n
->index
);
1419 * If the current object is at pack edge, take the depth the
1420 * objects that depend on the current object into account
1421 * otherwise they would become too deep.
1424 if (entry
->delta_child
) {
1425 max_depth
-= check_delta_limit(entry
, 0);
1432 uint32_t other_idx
= idx
+ j
;
1434 if (other_idx
>= window
)
1435 other_idx
-= window
;
1436 m
= array
+ other_idx
;
1439 if (try_delta(n
, m
, max_depth
) < 0)
1443 /* if we made n a delta, and if n is already at max
1444 * depth, leaving it in the window is pointless. we
1445 * should evict it first.
1447 if (entry
->delta
&& depth
<= entry
->depth
)
1457 stop_progress(&progress_state
);
1459 for (i
= 0; i
< window
; ++i
) {
1460 free_delta_index(array
[i
].index
);
1461 free(array
[i
].data
);
1466 static void prepare_pack(int window
, int depth
)
1468 struct object_entry
**delta_list
;
1471 get_object_details();
1473 if (!window
|| !depth
)
1476 delta_list
= xmalloc(nr_objects
* sizeof(*delta_list
));
1477 for (i
= 0; i
< nr_objects
; i
++)
1478 delta_list
[i
] = objects
+ i
;
1479 qsort(delta_list
, nr_objects
, sizeof(*delta_list
), type_size_sort
);
1480 find_deltas(delta_list
, window
+1, depth
);
1484 static int git_pack_config(const char *k
, const char *v
)
1486 if(!strcmp(k
, "pack.window")) {
1487 window
= git_config_int(k
, v
);
1490 return git_default_config(k
, v
);
1493 static void read_object_list_from_stdin(void)
1495 char line
[40 + 1 + PATH_MAX
+ 2];
1496 unsigned char sha1
[20];
1500 if (!fgets(line
, sizeof(line
), stdin
)) {
1504 die("fgets returned NULL, not EOF, not error!");
1506 die("fgets: %s", strerror(errno
));
1510 if (line
[0] == '-') {
1511 if (get_sha1_hex(line
+1, sha1
))
1512 die("expected edge sha1, got garbage:\n %s",
1514 add_preferred_base(sha1
);
1517 if (get_sha1_hex(line
, sha1
))
1518 die("expected sha1, got garbage:\n %s", line
);
1520 hash
= name_hash(line
+41);
1521 add_preferred_base_object(line
+41, hash
);
1522 add_object_entry(sha1
, 0, hash
, 0);
1526 static void show_commit(struct commit
*commit
)
1528 add_object_entry(commit
->object
.sha1
, OBJ_COMMIT
, 0, 0);
1531 static void show_object(struct object_array_entry
*p
)
1533 unsigned hash
= name_hash(p
->name
);
1534 add_preferred_base_object(p
->name
, hash
);
1535 add_object_entry(p
->item
->sha1
, p
->item
->type
, hash
, 0);
1538 static void show_edge(struct commit
*commit
)
1540 add_preferred_base(commit
->object
.sha1
);
1543 static void get_object_list(int ac
, const char **av
)
1545 struct rev_info revs
;
1549 init_revisions(&revs
, NULL
);
1550 save_commit_buffer
= 0;
1551 track_object_refs
= 0;
1552 setup_revisions(ac
, av
, &revs
, NULL
);
1554 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
1555 int len
= strlen(line
);
1556 if (line
[len
- 1] == '\n')
1561 if (!strcmp(line
, "--not")) {
1562 flags
^= UNINTERESTING
;
1565 die("not a rev '%s'", line
);
1567 if (handle_revision_arg(line
, &revs
, flags
, 1))
1568 die("bad revision '%s'", line
);
1571 prepare_revision_walk(&revs
);
1572 mark_edges_uninteresting(revs
.commits
, &revs
, show_edge
);
1573 traverse_commit_list(&revs
, show_commit
, show_object
);
1576 static int adjust_perm(const char *path
, mode_t mode
)
1578 if (chmod(path
, mode
))
1580 return adjust_shared_perm(path
);
1583 int cmd_pack_objects(int argc
, const char **argv
, const char *prefix
)
1586 int use_internal_rev_list
= 0;
1589 off_t last_obj_offset
;
1590 const char *base_name
= NULL
;
1592 int rp_ac_alloc
= 64;
1595 rp_av
= xcalloc(rp_ac_alloc
, sizeof(*rp_av
));
1597 rp_av
[0] = "pack-objects";
1598 rp_av
[1] = "--objects"; /* --thin will make it --objects-edge */
1601 git_config(git_pack_config
);
1603 progress
= isatty(2);
1604 for (i
= 1; i
< argc
; i
++) {
1605 const char *arg
= argv
[i
];
1610 if (!strcmp("--non-empty", arg
)) {
1614 if (!strcmp("--local", arg
)) {
1618 if (!strcmp("--incremental", arg
)) {
1622 if (!prefixcmp(arg
, "--window=")) {
1624 window
= strtoul(arg
+9, &end
, 0);
1625 if (!arg
[9] || *end
)
1629 if (!prefixcmp(arg
, "--depth=")) {
1631 depth
= strtoul(arg
+8, &end
, 0);
1632 if (!arg
[8] || *end
)
1636 if (!strcmp("--progress", arg
)) {
1640 if (!strcmp("--all-progress", arg
)) {
1644 if (!strcmp("-q", arg
)) {
1648 if (!strcmp("--no-reuse-delta", arg
)) {
1652 if (!strcmp("--delta-base-offset", arg
)) {
1653 allow_ofs_delta
= 1;
1656 if (!strcmp("--stdout", arg
)) {
1660 if (!strcmp("--revs", arg
)) {
1661 use_internal_rev_list
= 1;
1664 if (!strcmp("--unpacked", arg
) ||
1665 !prefixcmp(arg
, "--unpacked=") ||
1666 !strcmp("--reflog", arg
) ||
1667 !strcmp("--all", arg
)) {
1668 use_internal_rev_list
= 1;
1669 if (rp_ac
>= rp_ac_alloc
- 1) {
1670 rp_ac_alloc
= alloc_nr(rp_ac_alloc
);
1671 rp_av
= xrealloc(rp_av
,
1672 rp_ac_alloc
* sizeof(*rp_av
));
1674 rp_av
[rp_ac
++] = arg
;
1677 if (!strcmp("--thin", arg
)) {
1678 use_internal_rev_list
= 1;
1680 rp_av
[1] = "--objects-edge";
1683 if (!prefixcmp(arg
, "--index-version=")) {
1685 index_default_version
= strtoul(arg
+ 16, &c
, 10);
1686 if (index_default_version
> 2)
1689 index_off32_limit
= strtoul(c
+1, &c
, 0);
1690 if (*c
|| index_off32_limit
& 0x80000000)
1697 /* Traditionally "pack-objects [options] base extra" failed;
1698 * we would however want to take refs parameter that would
1699 * have been given to upstream rev-list ourselves, which means
1700 * we somehow want to say what the base name is. So the
1703 * pack-objects [options] base <refs...>
1705 * in other words, we would treat the first non-option as the
1706 * base_name and send everything else to the internal revision
1710 if (!pack_to_stdout
)
1711 base_name
= argv
[i
++];
1713 if (pack_to_stdout
!= !base_name
)
1716 if (!pack_to_stdout
&& thin
)
1717 die("--thin cannot be used to build an indexable pack.");
1719 prepare_packed_git();
1722 start_progress(&progress_state
, "Generating pack...",
1723 "Counting objects: ", 0);
1724 if (!use_internal_rev_list
)
1725 read_object_list_from_stdin();
1727 rp_av
[rp_ac
] = NULL
;
1728 get_object_list(rp_ac
, rp_av
);
1731 stop_progress(&progress_state
);
1732 fprintf(stderr
, "Done counting %u objects.\n", nr_objects
);
1735 if (non_empty
&& !nr_result
)
1737 if (progress
&& (nr_objects
!= nr_result
))
1738 fprintf(stderr
, "Result has %u objects.\n", nr_result
);
1740 prepare_pack(window
, depth
);
1741 last_obj_offset
= write_pack_file();
1742 if (!pack_to_stdout
) {
1743 unsigned char object_list_sha1
[20];
1744 mode_t mode
= umask(0);
1747 mode
= 0444 & ~mode
;
1749 write_index_file(last_obj_offset
, object_list_sha1
);
1750 snprintf(tmpname
, sizeof(tmpname
), "%s-%s.pack",
1751 base_name
, sha1_to_hex(object_list_sha1
));
1752 if (adjust_perm(pack_tmp_name
, mode
))
1753 die("unable to make temporary pack file readable: %s",
1755 if (rename(pack_tmp_name
, tmpname
))
1756 die("unable to rename temporary pack file: %s",
1758 snprintf(tmpname
, sizeof(tmpname
), "%s-%s.idx",
1759 base_name
, sha1_to_hex(object_list_sha1
));
1760 if (adjust_perm(idx_tmp_name
, mode
))
1761 die("unable to make temporary index file readable: %s",
1763 if (rename(idx_tmp_name
, tmpname
))
1764 die("unable to rename temporary index file: %s",
1766 puts(sha1_to_hex(object_list_sha1
));
1769 fprintf(stderr
, "Total %u (delta %u), reused %u (delta %u)\n",
1770 written
, written_delta
, reused
, reused_delta
);