blob: f854ca42562dd062c1294455229e46b6206f7a0d [file] [log] [blame]
Matthias Kestenholz5d4a6002006-08-03 17:24:36 +02001#include "builtin.h"
Linus Torvaldsc323ac72005-06-25 14:42:43 -07002#include "cache.h"
Junio C Hamanoa74db822007-05-19 00:39:31 -07003#include "attr.h"
Linus Torvaldsc323ac72005-06-25 14:42:43 -07004#include "object.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02005#include "blob.h"
6#include "commit.h"
7#include "tag.h"
8#include "tree.h"
Linus Torvaldsc323ac72005-06-25 14:42:43 -07009#include "delta.h"
Linus Torvaldsa733cb62005-06-28 14:21:02 -070010#include "pack.h"
Nicolas Pitre3449f8c2008-02-28 00:25:17 -050011#include "pack-revindex.h"
Linus Torvaldsc38138c2005-06-26 20:27:56 -070012#include "csum-file.h"
Junio C Hamano1b0c7172006-03-29 22:55:43 -080013#include "tree-walk.h"
Junio C Hamanob5d97e62006-09-04 23:47:39 -070014#include "diff.h"
15#include "revision.h"
16#include "list-objects.h"
Vicent Marti2834bc22013-10-24 14:01:06 -040017#include "pack-objects.h"
Nicolas Pitre96a02f82007-04-18 14:27:45 -040018#include "progress.h"
Shawn O. Pearcef0a24aa2008-03-03 22:27:20 -050019#include "refs.h"
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +070020#include "streaming.h"
Johannes Sixt93749192010-04-08 09:15:39 +020021#include "thread-utils.h"
Vicent Marti6b8fda22013-12-21 09:00:09 -050022#include "pack-bitmap.h"
Jeff Kingabcb8652014-10-15 18:42:09 -040023#include "reachable.h"
24#include "sha1-array.h"
Jeff Kingedfbb2a2014-10-16 20:44:35 -040025#include "argv-array.h"
Nicolas Pitre8ecce682007-09-06 02:13:11 -040026
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +070027static const char *pack_usage[] = {
Alex Henrieb8c1d272015-08-26 22:26:36 -060028 N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
29 N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +070030 NULL
31};
Linus Torvaldsc323ac72005-06-25 14:42:43 -070032
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080033/*
Vicent Marti2834bc22013-10-24 14:01:06 -040034 * Objects we are going to pack are collected in the `to_pack` structure.
35 * It contains an array (dynamically expanded) of the object data, and a map
36 * that can resolve SHA1s to their position in the array.
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080037 */
Vicent Marti2834bc22013-10-24 14:01:06 -040038static struct packing_data to_pack;
39
Nicolas Pitre79814f42007-11-01 23:43:24 -040040static struct pack_idx_entry **written_list;
Vicent Marti2834bc22013-10-24 14:01:06 -040041static uint32_t nr_result, nr_written;
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080042
David Rientjes96f1e582006-08-15 10:23:48 -070043static int non_empty;
Nicolas Pitrea7de7132008-05-02 15:11:46 -040044static int reuse_delta = 1, reuse_object = 1;
Junio C Hamanoe5e97142008-05-23 16:06:01 -070045static int keep_unreachable, unpack_unreachable, include_tag;
Jeff King7e52f562012-04-07 06:30:09 -040046static unsigned long unpack_unreachable_expiration;
David Rientjes96f1e582006-08-15 10:23:48 -070047static int local;
48static int incremental;
Brandon Caseye96fb9b2008-11-12 11:59:04 -060049static int ignore_packed_keep;
Nicolas Pitrebe6b1912006-09-21 00:09:44 -040050static int allow_ofs_delta;
Junio C Hamanoebcfb372011-02-25 15:43:25 -080051static struct pack_idx_option pack_idx_opts;
Dana L. Howd01fb922007-05-13 11:34:56 -070052static const char *base_name;
Junio C Hamano024701f2006-02-12 13:01:54 -080053static int progress = 1;
Jeff King4812a932006-07-23 01:50:30 -040054static int window = 10;
Junio C Hamano568508e2011-10-28 14:48:40 -070055static unsigned long pack_size_limit;
Theodore Ts'o618e6132007-05-08 09:28:26 -040056static int depth = 50;
Nicolas Pitre43cc2b42008-12-11 15:36:47 -050057static int delta_search_threads;
Junio C Hamanodf6d6102006-09-01 15:05:12 -070058static int pack_to_stdout;
Junio C Hamano8d1d8f82006-09-06 01:42:23 -070059static int num_preferred_base;
Nicolas Pitredc6a0752007-10-30 14:57:32 -040060static struct progress *progress_state;
Dana How960ccca2007-05-09 13:56:50 -070061static int pack_compression_level = Z_DEFAULT_COMPRESSION;
62static int pack_compression_seen;
Linus Torvaldsc323ac72005-06-25 14:42:43 -070063
Vicent Marti6b8fda22013-12-21 09:00:09 -050064static struct packed_git *reuse_packfile;
65static uint32_t reuse_packfile_objects;
66static off_t reuse_packfile_offset;
67
68static int use_bitmap_index = 1;
Vicent Marti7cc8f972013-12-21 09:00:16 -050069static int write_bitmap_index;
Vicent Martiae4f07f2013-12-21 09:00:45 -050070static uint16_t write_bitmap_options;
Vicent Marti6b8fda22013-12-21 09:00:09 -050071
Martin Koegler074b2ee2007-05-28 23:20:58 +020072static unsigned long delta_cache_size = 0;
Nicolas Pitre5749b0b2009-08-05 16:55:07 -040073static unsigned long max_delta_cache_size = 256 * 1024 * 1024;
Martin Koeglere3dfddb2007-05-28 23:20:59 +020074static unsigned long cache_max_small_delta_size = 1000;
Martin Koegler074b2ee2007-05-28 23:20:58 +020075
Brian Downinga97773c2007-07-12 08:07:46 -050076static unsigned long window_memory_limit = 0;
77
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080078/*
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080079 * stats
80 */
Shawn O. Pearce7cadf492007-03-06 20:44:24 -050081static uint32_t written, written_delta;
82static uint32_t reused, reused_delta;
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -080083
Vicent Marti7cc8f972013-12-21 09:00:16 -050084/*
85 * Indexed commits
86 */
87static struct commit **indexed_commits;
88static unsigned int indexed_commits_nr;
89static unsigned int indexed_commits_alloc;
90
91static void index_commit_for_bitmap(struct commit *commit)
92{
93 if (indexed_commits_nr >= indexed_commits_alloc) {
94 indexed_commits_alloc = (indexed_commits_alloc + 32) * 2;
René Scharfe2756ca42014-09-16 20:56:57 +020095 REALLOC_ARRAY(indexed_commits, indexed_commits_alloc);
Vicent Marti7cc8f972013-12-21 09:00:16 -050096 }
97
98 indexed_commits[indexed_commits_nr++] = commit;
99}
Nicolas Pitre780e6e72006-09-22 21:25:04 -0400100
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400101static void *get_delta(struct object_entry *entry)
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700102{
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400103 unsigned long size, base_size, delta_size;
104 void *buf, *base_buf, *delta_buf;
Nicolas Pitre21666f12007-02-26 14:55:59 -0500105 enum object_type type;
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700106
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400107 buf = read_sha1_file(entry->idx.sha1, &type, &size);
108 if (!buf)
109 die("unable to read %s", sha1_to_hex(entry->idx.sha1));
110 base_buf = read_sha1_file(entry->delta->idx.sha1, &type, &base_size);
111 if (!base_buf)
Geert Boschaa7e44b2007-06-01 15:18:05 -0400112 die("unable to read %s", sha1_to_hex(entry->delta->idx.sha1));
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400113 delta_buf = diff_delta(base_buf, base_size,
Nicolas Pitredcde55b2005-06-29 02:49:56 -0400114 buf, size, &delta_size, 0);
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400115 if (!delta_buf || delta_size != entry->delta_size)
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700116 die("delta size changed");
Nicolas Pitre3613f9b2008-05-02 15:11:45 -0400117 free(buf);
118 free(base_buf);
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700119 return delta_buf;
120}
121
Nicolas Pitre30ebb402008-05-02 15:11:49 -0400122static unsigned long do_compress(void **pptr, unsigned long size)
123{
Junio C Hamanoef49a7a2011-06-10 11:52:15 -0700124 git_zstream stream;
Nicolas Pitre30ebb402008-05-02 15:11:49 -0400125 void *in, *out;
126 unsigned long maxsize;
127
Junio C Hamano55bb5c92011-06-10 10:55:10 -0700128 git_deflate_init(&stream, pack_compression_level);
Junio C Hamano225a6f12011-06-10 11:18:17 -0700129 maxsize = git_deflate_bound(&stream, size);
Nicolas Pitre30ebb402008-05-02 15:11:49 -0400130
131 in = *pptr;
132 out = xmalloc(maxsize);
133 *pptr = out;
134
135 stream.next_in = in;
136 stream.avail_in = size;
137 stream.next_out = out;
138 stream.avail_out = maxsize;
Junio C Hamano55bb5c92011-06-10 10:55:10 -0700139 while (git_deflate(&stream, Z_FINISH) == Z_OK)
Nicolas Pitre30ebb402008-05-02 15:11:49 -0400140 ; /* nothing */
Junio C Hamano55bb5c92011-06-10 10:55:10 -0700141 git_deflate_end(&stream);
Nicolas Pitre30ebb402008-05-02 15:11:49 -0400142
143 free(in);
144 return stream.total_out;
145}
146
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700147static unsigned long write_large_blob_data(struct git_istream *st, struct sha1file *f,
148 const unsigned char *sha1)
149{
150 git_zstream stream;
151 unsigned char ibuf[1024 * 16];
152 unsigned char obuf[1024 * 16];
153 unsigned long olen = 0;
154
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700155 git_deflate_init(&stream, pack_compression_level);
156
157 for (;;) {
158 ssize_t readlen;
159 int zret = Z_OK;
160 readlen = read_istream(st, ibuf, sizeof(ibuf));
161 if (readlen == -1)
162 die(_("unable to read %s"), sha1_to_hex(sha1));
163
164 stream.next_in = ibuf;
165 stream.avail_in = readlen;
166 while ((stream.avail_in || readlen == 0) &&
167 (zret == Z_OK || zret == Z_BUF_ERROR)) {
168 stream.next_out = obuf;
169 stream.avail_out = sizeof(obuf);
170 zret = git_deflate(&stream, readlen ? 0 : Z_FINISH);
171 sha1write(f, obuf, stream.next_out - obuf);
172 olen += stream.next_out - obuf;
173 }
174 if (stream.avail_in)
175 die(_("deflate error (%d)"), zret);
176 if (readlen == 0) {
177 if (zret != Z_STREAM_END)
178 die(_("deflate error (%d)"), zret);
179 break;
180 }
181 }
182 git_deflate_end(&stream);
183 return olen;
184}
185
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700186/*
Nicolas Pitre780e6e72006-09-22 21:25:04 -0400187 * we are going to reuse the existing object data as is. make
188 * sure it is not corrupt.
189 */
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500190static int check_pack_inflate(struct packed_git *p,
191 struct pack_window **w_curs,
Shawn O. Pearce6777a592007-03-06 20:44:34 -0500192 off_t offset,
193 off_t len,
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500194 unsigned long expect)
195{
Junio C Hamanoef49a7a2011-06-10 11:52:15 -0700196 git_zstream stream;
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500197 unsigned char fakebuf[4096], *in;
198 int st;
199
200 memset(&stream, 0, sizeof(stream));
Linus Torvalds39c68542009-01-07 19:54:47 -0800201 git_inflate_init(&stream);
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500202 do {
203 in = use_pack(p, w_curs, offset, &stream.avail_in);
204 stream.next_in = in;
205 stream.next_out = fakebuf;
206 stream.avail_out = sizeof(fakebuf);
Linus Torvalds39c68542009-01-07 19:54:47 -0800207 st = git_inflate(&stream, Z_FINISH);
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500208 offset += stream.next_in - in;
209 } while (st == Z_OK || st == Z_BUF_ERROR);
Linus Torvalds39c68542009-01-07 19:54:47 -0800210 git_inflate_end(&stream);
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500211 return (st == Z_STREAM_END &&
212 stream.total_out == expect &&
213 stream.total_in == len) ? 0 : -1;
214}
215
216static void copy_pack_data(struct sha1file *f,
217 struct packed_git *p,
218 struct pack_window **w_curs,
Shawn O. Pearce6777a592007-03-06 20:44:34 -0500219 off_t offset,
220 off_t len)
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500221{
222 unsigned char *in;
Junio C Hamanoef49a7a2011-06-10 11:52:15 -0700223 unsigned long avail;
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500224
225 while (len) {
226 in = use_pack(p, w_curs, offset, &avail);
227 if (avail > len)
Junio C Hamanoef49a7a2011-06-10 11:52:15 -0700228 avail = (unsigned long)len;
Shawn O. Pearce079afb12006-12-23 02:34:13 -0500229 sha1write(f, in, avail);
230 offset += avail;
231 len -= avail;
232 }
233}
234
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700235/* Return 0 if we will bust the pack-size limit */
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700236static unsigned long write_no_reuse_object(struct sha1file *f, struct object_entry *entry,
237 unsigned long limit, int usable_delta)
238{
239 unsigned long size, datalen;
240 unsigned char header[10], dheader[10];
241 unsigned hdrlen;
242 enum object_type type;
243 void *buf;
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700244 struct git_istream *st = NULL;
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700245
246 if (!usable_delta) {
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700247 if (entry->type == OBJ_BLOB &&
248 entry->size > big_file_threshold &&
249 (st = open_istream(entry->idx.sha1, &type, &size, NULL)) != NULL)
250 buf = NULL;
251 else {
252 buf = read_sha1_file(entry->idx.sha1, &type, &size);
253 if (!buf)
254 die(_("unable to read %s"), sha1_to_hex(entry->idx.sha1));
255 }
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700256 /*
257 * make sure no cached delta data remains from a
258 * previous attempt before a pack split occurred.
259 */
260 free(entry->delta_data);
261 entry->delta_data = NULL;
262 entry->z_delta_size = 0;
263 } else if (entry->delta_data) {
264 size = entry->delta_size;
265 buf = entry->delta_data;
266 entry->delta_data = NULL;
267 type = (allow_ofs_delta && entry->delta->idx.offset) ?
268 OBJ_OFS_DELTA : OBJ_REF_DELTA;
269 } else {
270 buf = get_delta(entry);
271 size = entry->delta_size;
272 type = (allow_ofs_delta && entry->delta->idx.offset) ?
273 OBJ_OFS_DELTA : OBJ_REF_DELTA;
274 }
275
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700276 if (st) /* large blob case, just assume we don't compress well */
277 datalen = size;
278 else if (entry->z_delta_size)
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700279 datalen = entry->z_delta_size;
280 else
281 datalen = do_compress(&buf, size);
282
283 /*
284 * The object header is a byte of 'type' followed by zero or
285 * more bytes of length.
286 */
287 hdrlen = encode_in_pack_object_header(type, size, header);
288
289 if (type == OBJ_OFS_DELTA) {
290 /*
291 * Deltas with relative base contain an additional
292 * encoding of the relative offset for the delta
293 * base from this object's position in the pack.
294 */
295 off_t ofs = entry->idx.offset - entry->delta->idx.offset;
296 unsigned pos = sizeof(dheader) - 1;
297 dheader[pos] = ofs & 127;
298 while (ofs >>= 7)
299 dheader[--pos] = 128 | (--ofs & 127);
300 if (limit && hdrlen + sizeof(dheader) - pos + datalen + 20 >= limit) {
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700301 if (st)
302 close_istream(st);
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700303 free(buf);
304 return 0;
305 }
306 sha1write(f, header, hdrlen);
307 sha1write(f, dheader + pos, sizeof(dheader) - pos);
308 hdrlen += sizeof(dheader) - pos;
309 } else if (type == OBJ_REF_DELTA) {
310 /*
311 * Deltas with a base reference contain
312 * an additional 20 bytes for the base sha1.
313 */
314 if (limit && hdrlen + 20 + datalen + 20 >= limit) {
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700315 if (st)
316 close_istream(st);
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700317 free(buf);
318 return 0;
319 }
320 sha1write(f, header, hdrlen);
321 sha1write(f, entry->delta->idx.sha1, 20);
322 hdrlen += 20;
323 } else {
324 if (limit && hdrlen + datalen + 20 >= limit) {
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700325 if (st)
326 close_istream(st);
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700327 free(buf);
328 return 0;
329 }
330 sha1write(f, header, hdrlen);
331 }
Nguyễn Thái Ngọc Duycf2ba132012-05-26 17:28:01 +0700332 if (st) {
333 datalen = write_large_blob_data(st, f, entry->idx.sha1);
334 close_istream(st);
335 } else {
336 sha1write(f, buf, datalen);
337 free(buf);
338 }
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700339
340 return hdrlen + datalen;
341}
342
343/* Return 0 if we will bust the pack-size limit */
Nguyễn Thái Ngọc Duyaf92a642016-07-13 17:44:03 +0200344static off_t write_reuse_object(struct sha1file *f, struct object_entry *entry,
345 unsigned long limit, int usable_delta)
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700346{
347 struct packed_git *p = entry->in_pack;
348 struct pack_window *w_curs = NULL;
349 struct revindex_entry *revidx;
350 off_t offset;
351 enum object_type type = entry->type;
Nguyễn Thái Ngọc Duy211c61c2016-07-05 19:05:54 +0200352 off_t datalen;
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700353 unsigned char header[10], dheader[10];
354 unsigned hdrlen;
355
356 if (entry->delta)
357 type = (allow_ofs_delta && entry->delta->idx.offset) ?
358 OBJ_OFS_DELTA : OBJ_REF_DELTA;
359 hdrlen = encode_in_pack_object_header(type, entry->size, header);
360
361 offset = entry->in_pack_offset;
362 revidx = find_pack_revindex(p, offset);
363 datalen = revidx[1].offset - offset;
364 if (!pack_to_stdout && p->index_version > 1 &&
365 check_pack_crc(p, &w_curs, offset, datalen, revidx->nr)) {
366 error("bad packed object CRC for %s", sha1_to_hex(entry->idx.sha1));
367 unuse_pack(&w_curs);
368 return write_no_reuse_object(f, entry, limit, usable_delta);
369 }
370
371 offset += entry->in_pack_header_size;
372 datalen -= entry->in_pack_header_size;
373
374 if (!pack_to_stdout && p->index_version == 1 &&
375 check_pack_inflate(p, &w_curs, offset, datalen, entry->size)) {
376 error("corrupt packed object for %s", sha1_to_hex(entry->idx.sha1));
377 unuse_pack(&w_curs);
378 return write_no_reuse_object(f, entry, limit, usable_delta);
379 }
380
381 if (type == OBJ_OFS_DELTA) {
382 off_t ofs = entry->idx.offset - entry->delta->idx.offset;
383 unsigned pos = sizeof(dheader) - 1;
384 dheader[pos] = ofs & 127;
385 while (ofs >>= 7)
386 dheader[--pos] = 128 | (--ofs & 127);
387 if (limit && hdrlen + sizeof(dheader) - pos + datalen + 20 >= limit) {
388 unuse_pack(&w_curs);
389 return 0;
390 }
391 sha1write(f, header, hdrlen);
392 sha1write(f, dheader + pos, sizeof(dheader) - pos);
393 hdrlen += sizeof(dheader) - pos;
394 reused_delta++;
395 } else if (type == OBJ_REF_DELTA) {
396 if (limit && hdrlen + 20 + datalen + 20 >= limit) {
397 unuse_pack(&w_curs);
398 return 0;
399 }
400 sha1write(f, header, hdrlen);
401 sha1write(f, entry->delta->idx.sha1, 20);
402 hdrlen += 20;
403 reused_delta++;
404 } else {
405 if (limit && hdrlen + datalen + 20 >= limit) {
406 unuse_pack(&w_curs);
407 return 0;
408 }
409 sha1write(f, header, hdrlen);
410 }
411 copy_pack_data(f, p, &w_curs, offset, datalen);
412 unuse_pack(&w_curs);
413 reused++;
414 return hdrlen + datalen;
415}
416
417/* Return 0 if we will bust the pack-size limit */
Nguyễn Thái Ngọc Duyaf92a642016-07-13 17:44:03 +0200418static off_t write_object(struct sha1file *f,
419 struct object_entry *entry,
420 off_t write_offset)
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700421{
Nguyễn Thái Ngọc Duyaf92a642016-07-13 17:44:03 +0200422 unsigned long limit;
423 off_t len;
Nicolas Pitre2c5ef822008-05-02 15:11:48 -0400424 int usable_delta, to_reuse;
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700425
Nicolas Pitre78d1e842007-04-09 01:06:31 -0400426 if (!pack_to_stdout)
427 crc32_begin(f);
428
Nicolas Pitrea2430dd2010-02-03 22:48:27 -0500429 /* apply size limit if limited packsize and not first object */
Nicolas Pitrea1e47602008-11-12 13:23:58 -0500430 if (!pack_size_limit || !nr_written)
431 limit = 0;
432 else if (pack_size_limit <= write_offset)
433 /*
434 * the earlier object did not fit the limit; avoid
435 * mistaking this with unlimited (i.e. limit = 0).
436 */
437 limit = 1;
438 else
439 limit = pack_size_limit - write_offset;
Nicolas Pitre2c5ef822008-05-02 15:11:48 -0400440
441 if (!entry->delta)
442 usable_delta = 0; /* no delta */
443 else if (!pack_size_limit)
444 usable_delta = 1; /* unlimited packfile */
445 else if (entry->delta->idx.offset == (off_t)-1)
446 usable_delta = 0; /* base was written to another pack */
447 else if (entry->delta->idx.offset)
448 usable_delta = 1; /* base already exists in this pack */
449 else
450 usable_delta = 0; /* base could end up in another pack */
451
Nicolas Pitrea7de7132008-05-02 15:11:46 -0400452 if (!reuse_object)
Nicolas Pitrefa736f72007-05-09 12:31:28 -0400453 to_reuse = 0; /* explicit */
454 else if (!entry->in_pack)
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -0800455 to_reuse = 0; /* can't reuse what we don't have */
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700456 else if (entry->type == OBJ_REF_DELTA || entry->type == OBJ_OFS_DELTA)
Dana L. How17b08f22007-05-13 12:06:18 -0700457 /* check_object() decided it for us ... */
458 to_reuse = usable_delta;
459 /* ... but pack split may override that */
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700460 else if (entry->type != entry->in_pack_type)
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -0800461 to_reuse = 0; /* pack has delta which is unusable */
462 else if (entry->delta)
463 to_reuse = 0; /* we want to pack afresh */
464 else
465 to_reuse = 1; /* we have it in-pack undeltified,
466 * and we do not need to deltify it.
467 */
468
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700469 if (!to_reuse)
470 len = write_no_reuse_object(f, entry, limit, usable_delta);
471 else
472 len = write_reuse_object(f, entry, limit, usable_delta);
473 if (!len)
474 return 0;
Nicolas Pitreed4a9032008-05-02 15:11:50 -0400475
Dana L. How17b08f22007-05-13 12:06:18 -0700476 if (usable_delta)
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -0800477 written_delta++;
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -0800478 written++;
Nicolas Pitre78d1e842007-04-09 01:06:31 -0400479 if (!pack_to_stdout)
Geert Boschaa7e44b2007-06-01 15:18:05 -0400480 entry->idx.crc32 = crc32_end(f);
Nguyễn Thái Ngọc Duyc9018b02012-05-16 19:02:10 +0700481 return len;
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700482}
483
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800484enum write_one_status {
485 WRITE_ONE_SKIP = -1, /* already written */
486 WRITE_ONE_BREAK = 0, /* writing this will bust the limit; not written */
487 WRITE_ONE_WRITTEN = 1, /* normal */
488 WRITE_ONE_RECURSIVE = 2 /* already scheduled to be written */
489};
490
491static enum write_one_status write_one(struct sha1file *f,
492 struct object_entry *e,
493 off_t *offset)
Junio C Hamano9d5ab962005-06-28 17:49:27 -0700494{
Nguyễn Thái Ngọc Duyaf92a642016-07-13 17:44:03 +0200495 off_t size;
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800496 int recursing;
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400497
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800498 /*
499 * we set offset to 1 (which is an impossible value) to mark
500 * the fact that this object is involved in "write its base
501 * first before writing a deltified object" recursion.
502 */
503 recursing = (e->idx.offset == 1);
504 if (recursing) {
505 warning("recursive delta detected for object %s",
506 sha1_to_hex(e->idx.sha1));
507 return WRITE_ONE_RECURSIVE;
508 } else if (e->idx.offset || e->preferred_base) {
509 /* offset is non zero if object is written already. */
510 return WRITE_ONE_SKIP;
511 }
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400512
Nicolas Pitre720c9f72010-02-08 10:39:01 -0500513 /* if we are deltified, write out base object first. */
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800514 if (e->delta) {
515 e->idx.offset = 1; /* now recurse */
516 switch (write_one(f, e->delta, offset)) {
517 case WRITE_ONE_RECURSIVE:
518 /* we cannot depend on this one */
519 e->delta = NULL;
520 break;
521 default:
522 break;
523 case WRITE_ONE_BREAK:
524 e->idx.offset = recursing;
525 return WRITE_ONE_BREAK;
526 }
527 }
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400528
Nicolas Pitre6ed7f252008-08-29 16:07:58 -0400529 e->idx.offset = *offset;
530 size = write_object(f, e, *offset);
Dana L. How17b08f22007-05-13 12:06:18 -0700531 if (!size) {
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800532 e->idx.offset = recursing;
533 return WRITE_ONE_BREAK;
Dana L. How17b08f22007-05-13 12:06:18 -0700534 }
Nicolas Pitre79814f42007-11-01 23:43:24 -0400535 written_list[nr_written++] = &e->idx;
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400536
537 /* make sure off_t is sufficiently large not to wrap */
Erik Faye-Lundc03c8312010-10-05 09:24:10 +0200538 if (signed_add_overflows(*offset, size))
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400539 die("pack too large for current definition of off_t");
Nicolas Pitre6ed7f252008-08-29 16:07:58 -0400540 *offset += size;
Junio C Hamanof63c79d2011-11-16 22:04:03 -0800541 return WRITE_ONE_WRITTEN;
Junio C Hamano9d5ab962005-06-28 17:49:27 -0700542}
543
Michael Haggertyd1552542015-05-25 18:38:38 +0000544static int mark_tagged(const char *path, const struct object_id *oid, int flag,
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700545 void *cb_data)
546{
547 unsigned char peeled[20];
Michael Haggertyd1552542015-05-25 18:38:38 +0000548 struct object_entry *entry = packlist_find(&to_pack, oid->hash, NULL);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700549
550 if (entry)
551 entry->tagged = 1;
552 if (!peel_ref(path, peeled)) {
Vicent Marti2834bc22013-10-24 14:01:06 -0400553 entry = packlist_find(&to_pack, peeled, NULL);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700554 if (entry)
555 entry->tagged = 1;
556 }
557 return 0;
558}
559
Dan McGeebe126812011-10-18 00:21:21 -0500560static inline void add_to_write_order(struct object_entry **wo,
Dan McGee92bef1a2011-10-18 00:21:22 -0500561 unsigned int *endp,
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700562 struct object_entry *e)
563{
564 if (e->filled)
565 return;
566 wo[(*endp)++] = e;
567 e->filled = 1;
568}
569
570static void add_descendants_to_write_order(struct object_entry **wo,
Dan McGee92bef1a2011-10-18 00:21:22 -0500571 unsigned int *endp,
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700572 struct object_entry *e)
573{
Dan McGeef3808722011-10-18 00:21:24 -0500574 int add_to_order = 1;
575 while (e) {
576 if (add_to_order) {
577 struct object_entry *s;
578 /* add this node... */
579 add_to_write_order(wo, endp, e);
580 /* all its siblings... */
581 for (s = e->delta_sibling; s; s = s->delta_sibling) {
582 add_to_write_order(wo, endp, s);
583 }
584 }
585 /* drop down a level to add left subtree nodes if possible */
586 if (e->delta_child) {
587 add_to_order = 1;
588 e = e->delta_child;
589 } else {
590 add_to_order = 0;
591 /* our sibling might have some children, it is next */
592 if (e->delta_sibling) {
593 e = e->delta_sibling;
594 continue;
595 }
596 /* go back to our parent node */
597 e = e->delta;
598 while (e && !e->delta_sibling) {
599 /* we're on the right side of a subtree, keep
600 * going up until we can go right again */
601 e = e->delta;
602 }
603 if (!e) {
604 /* done- we hit our original root node */
605 return;
606 }
607 /* pass it off to sibling at this level */
608 e = e->delta_sibling;
609 }
610 };
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700611}
612
613static void add_family_to_write_order(struct object_entry **wo,
Dan McGee92bef1a2011-10-18 00:21:22 -0500614 unsigned int *endp,
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700615 struct object_entry *e)
616{
617 struct object_entry *root;
618
619 for (root = e; root->delta; root = root->delta)
620 ; /* nothing */
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700621 add_descendants_to_write_order(wo, endp, root);
622}
623
624static struct object_entry **compute_write_order(void)
625{
Dan McGee38d4deb2011-10-18 00:21:23 -0500626 unsigned int i, wo_end, last_untagged;
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700627
Jeff Kingb32fa952016-02-22 17:44:25 -0500628 struct object_entry **wo;
Vicent Marti2834bc22013-10-24 14:01:06 -0400629 struct object_entry *objects = to_pack.objects;
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700630
Vicent Marti2834bc22013-10-24 14:01:06 -0400631 for (i = 0; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700632 objects[i].tagged = 0;
633 objects[i].filled = 0;
634 objects[i].delta_child = NULL;
635 objects[i].delta_sibling = NULL;
636 }
637
638 /*
639 * Fully connect delta_child/delta_sibling network.
640 * Make sure delta_sibling is sorted in the original
641 * recency order.
642 */
Vicent Marti2834bc22013-10-24 14:01:06 -0400643 for (i = to_pack.nr_objects; i > 0;) {
Dan McGee92bef1a2011-10-18 00:21:22 -0500644 struct object_entry *e = &objects[--i];
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700645 if (!e->delta)
646 continue;
647 /* Mark me as the first child */
648 e->delta_sibling = e->delta->delta_child;
649 e->delta->delta_child = e;
650 }
651
652 /*
653 * Mark objects that are at the tip of tags.
654 */
Michael Haggertyd1552542015-05-25 18:38:38 +0000655 for_each_tag_ref(mark_tagged, NULL);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700656
657 /*
Dan McGee38d4deb2011-10-18 00:21:23 -0500658 * Give the objects in the original recency order until
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700659 * we see a tagged tip.
660 */
Jeff Kingb32fa952016-02-22 17:44:25 -0500661 ALLOC_ARRAY(wo, to_pack.nr_objects);
Vicent Marti2834bc22013-10-24 14:01:06 -0400662 for (i = wo_end = 0; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700663 if (objects[i].tagged)
664 break;
665 add_to_write_order(wo, &wo_end, &objects[i]);
666 }
Dan McGee38d4deb2011-10-18 00:21:23 -0500667 last_untagged = i;
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700668
669 /*
670 * Then fill all the tagged tips.
671 */
Vicent Marti2834bc22013-10-24 14:01:06 -0400672 for (; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700673 if (objects[i].tagged)
674 add_to_write_order(wo, &wo_end, &objects[i]);
675 }
676
677 /*
678 * And then all remaining commits and tags.
679 */
Vicent Marti2834bc22013-10-24 14:01:06 -0400680 for (i = last_untagged; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700681 if (objects[i].type != OBJ_COMMIT &&
682 objects[i].type != OBJ_TAG)
683 continue;
684 add_to_write_order(wo, &wo_end, &objects[i]);
685 }
686
687 /*
688 * And then all the trees.
689 */
Vicent Marti2834bc22013-10-24 14:01:06 -0400690 for (i = last_untagged; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700691 if (objects[i].type != OBJ_TREE)
692 continue;
693 add_to_write_order(wo, &wo_end, &objects[i]);
694 }
695
696 /*
697 * Finally all the rest in really tight order
698 */
Vicent Marti2834bc22013-10-24 14:01:06 -0400699 for (i = last_untagged; i < to_pack.nr_objects; i++) {
Dan McGee38d4deb2011-10-18 00:21:23 -0500700 if (!objects[i].filled)
701 add_family_to_write_order(wo, &wo_end, &objects[i]);
702 }
703
Vicent Marti2834bc22013-10-24 14:01:06 -0400704 if (wo_end != to_pack.nr_objects)
705 die("ordered %u objects, expected %"PRIu32, wo_end, to_pack.nr_objects);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700706
707 return wo;
708}
709
Vicent Marti6b8fda22013-12-21 09:00:09 -0500710static off_t write_reused_pack(struct sha1file *f)
711{
712 unsigned char buffer[8192];
Jeff King657673f2014-03-14 22:26:21 -0400713 off_t to_write, total;
Vicent Marti6b8fda22013-12-21 09:00:09 -0500714 int fd;
715
716 if (!is_pack_valid(reuse_packfile))
717 die("packfile is invalid: %s", reuse_packfile->pack_name);
718
719 fd = git_open_noatime(reuse_packfile->pack_name);
720 if (fd < 0)
721 die_errno("unable to open packfile for reuse: %s",
722 reuse_packfile->pack_name);
723
724 if (lseek(fd, sizeof(struct pack_header), SEEK_SET) == -1)
725 die_errno("unable to seek in reused packfile");
726
727 if (reuse_packfile_offset < 0)
728 reuse_packfile_offset = reuse_packfile->pack_size - 20;
729
Jeff King657673f2014-03-14 22:26:21 -0400730 total = to_write = reuse_packfile_offset - sizeof(struct pack_header);
Vicent Marti6b8fda22013-12-21 09:00:09 -0500731
732 while (to_write) {
733 int read_pack = xread(fd, buffer, sizeof(buffer));
734
735 if (read_pack <= 0)
736 die_errno("unable to read from reused packfile");
737
738 if (read_pack > to_write)
739 read_pack = to_write;
740
741 sha1write(f, buffer, read_pack);
742 to_write -= read_pack;
Jeff King657673f2014-03-14 22:26:21 -0400743
744 /*
745 * We don't know the actual number of objects written,
746 * only how many bytes written, how many bytes total, and
747 * how many objects total. So we can fake it by pretending all
748 * objects we are writing are the same size. This gives us a
749 * smooth progress meter, and at the end it matches the true
750 * answer.
751 */
752 written = reuse_packfile_objects *
753 (((double)(total - to_write)) / total);
754 display_progress(progress_state, written);
Vicent Marti6b8fda22013-12-21 09:00:09 -0500755 }
756
757 close(fd);
Jeff King657673f2014-03-14 22:26:21 -0400758 written = reuse_packfile_objects;
759 display_progress(progress_state, written);
Vicent Marti6b8fda22013-12-21 09:00:09 -0500760 return reuse_packfile_offset - sizeof(struct pack_header);
761}
762
Eric Wong9cea46c2016-04-28 07:28:55 +0000763static const char no_split_warning[] = N_(
764"disabling bitmap writing, packs are split due to pack.packSizeLimit"
765);
766
Dana L. Howd01fb922007-05-13 11:34:56 -0700767static void write_pack_file(void)
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700768{
Dana L. Howebe27b12007-05-13 12:09:16 -0700769 uint32_t i = 0, j;
Linus Torvaldsd22b9292005-06-28 11:10:48 -0700770 struct sha1file *f;
Nicolas Pitre6ed7f252008-08-29 16:07:58 -0400771 off_t offset;
Dana L. Howebe27b12007-05-13 12:09:16 -0700772 uint32_t nr_remaining = nr_result;
Nicolas Pitref746bae2008-03-13 14:59:29 -0400773 time_t last_mtime = 0;
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700774 struct object_entry **write_order;
Nicolas Pitre81a216a2007-04-16 12:31:05 -0400775
Nicolas Pitrebcd79542008-05-02 15:11:47 -0400776 if (progress > pack_to_stdout)
Nguyễn Thái Ngọc Duy754dbc42014-02-21 19:50:18 +0700777 progress_state = start_progress(_("Writing objects"), nr_result);
Jeff Kingb32fa952016-02-22 17:44:25 -0500778 ALLOC_ARRAY(written_list, to_pack.nr_objects);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700779 write_order = compute_write_order();
Junio C Hamano183bdb22006-02-22 16:02:59 -0800780
Dana L. Howebe27b12007-05-13 12:09:16 -0700781 do {
Geert Boschaa7e44b2007-06-01 15:18:05 -0400782 unsigned char sha1[20];
Nicolas Pitre7ba502c2007-10-16 21:55:48 -0400783 char *pack_tmp_name = NULL;
Geert Boschaa7e44b2007-06-01 15:18:05 -0400784
Junio C Hamanocdf9db32011-10-28 11:52:14 -0700785 if (pack_to_stdout)
Nicolas Pitre2a128d62007-10-30 17:06:21 -0400786 f = sha1fd_throughput(1, "<stdout>", progress_state);
Junio C Hamanocdf9db32011-10-28 11:52:14 -0700787 else
788 f = create_tmp_packfile(&pack_tmp_name);
Nicolas Pitrec553ca22007-04-09 01:06:33 -0400789
Junio C Hamanoc0ad4652011-10-28 11:40:48 -0700790 offset = write_pack_header(f, nr_remaining);
Vicent Marti6b8fda22013-12-21 09:00:09 -0500791
792 if (reuse_packfile) {
793 off_t packfile_size;
794 assert(pack_to_stdout);
795
796 packfile_size = write_reused_pack(f);
797 offset += packfile_size;
798 }
799
Dana L. Howebe27b12007-05-13 12:09:16 -0700800 nr_written = 0;
Vicent Marti2834bc22013-10-24 14:01:06 -0400801 for (; i < to_pack.nr_objects; i++) {
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700802 struct object_entry *e = write_order[i];
Junio C Hamanocddec4f2011-12-05 15:19:34 -0800803 if (write_one(f, e, &offset) == WRITE_ONE_BREAK)
Nicolas Pitre720c9f72010-02-08 10:39:01 -0500804 break;
805 display_progress(progress_state, written);
806 }
Dana L. Howebe27b12007-05-13 12:09:16 -0700807
808 /*
809 * Did we write the wrong # entries in the header?
810 * If so, rewrite it like in fast-import
811 */
Linus Torvalds54352bb2008-05-30 08:54:46 -0700812 if (pack_to_stdout) {
813 sha1close(f, sha1, CSUM_CLOSE);
814 } else if (nr_written == nr_remaining) {
815 sha1close(f, sha1, CSUM_FSYNC);
Dana L. Howebe27b12007-05-13 12:09:16 -0700816 } else {
Nicolas Pitreac0463e2008-08-29 16:08:00 -0400817 int fd = sha1close(f, sha1, 0);
Nicolas Pitreabeb40e2008-08-29 16:07:59 -0400818 fixup_pack_header_footer(fd, sha1, pack_tmp_name,
Nicolas Pitreac0463e2008-08-29 16:08:00 -0400819 nr_written, sha1, offset);
Nicolas Pitre7ba502c2007-10-16 21:55:48 -0400820 close(fd);
Eric Wong9cea46c2016-04-28 07:28:55 +0000821 if (write_bitmap_index) {
822 warning(_(no_split_warning));
823 write_bitmap_index = 0;
824 }
Dana L. Howebe27b12007-05-13 12:09:16 -0700825 }
826
827 if (!pack_to_stdout) {
Nicolas Pitref746bae2008-03-13 14:59:29 -0400828 struct stat st;
Sun He58892712014-03-03 17:24:29 +0800829 struct strbuf tmpname = STRBUF_INIT;
Dana L. Howd01fb922007-05-13 11:34:56 -0700830
Nicolas Pitref746bae2008-03-13 14:59:29 -0400831 /*
832 * Packs are runtime accessed in their mtime
833 * order since newer packs are more likely to contain
834 * younger objects. So if we are creating multiple
835 * packs then we should modify the mtime of later ones
836 * to preserve this property.
837 */
Junio C Hamano0e990532011-10-28 12:34:09 -0700838 if (stat(pack_tmp_name, &st) < 0) {
Nguyễn Thái Ngọc Duy54d47392016-05-08 16:47:30 +0700839 warning_errno("failed to stat %s", pack_tmp_name);
Nicolas Pitref746bae2008-03-13 14:59:29 -0400840 } else if (!last_mtime) {
841 last_mtime = st.st_mtime;
842 } else {
843 struct utimbuf utb;
844 utb.actime = st.st_atime;
845 utb.modtime = --last_mtime;
Junio C Hamano0e990532011-10-28 12:34:09 -0700846 if (utime(pack_tmp_name, &utb) < 0)
Nguyễn Thái Ngọc Duy54d47392016-05-08 16:47:30 +0700847 warning_errno("failed utime() on %s", pack_tmp_name);
Nicolas Pitref746bae2008-03-13 14:59:29 -0400848 }
849
Sun He58892712014-03-03 17:24:29 +0800850 strbuf_addf(&tmpname, "%s-", base_name);
Vicent Marti7cc8f972013-12-21 09:00:16 -0500851
852 if (write_bitmap_index) {
853 bitmap_writer_set_checksum(sha1);
854 bitmap_writer_build_type_index(written_list, nr_written);
855 }
856
Sun He58892712014-03-03 17:24:29 +0800857 finish_tmp_packfile(&tmpname, pack_tmp_name,
Junio C Hamano0e990532011-10-28 12:34:09 -0700858 written_list, nr_written,
859 &pack_idx_opts, sha1);
Vicent Marti7cc8f972013-12-21 09:00:16 -0500860
861 if (write_bitmap_index) {
Sun He58892712014-03-03 17:24:29 +0800862 strbuf_addf(&tmpname, "%s.bitmap", sha1_to_hex(sha1));
Vicent Marti7cc8f972013-12-21 09:00:16 -0500863
864 stop_progress(&progress_state);
865
866 bitmap_writer_show_progress(progress);
867 bitmap_writer_reuse_bitmaps(&to_pack);
868 bitmap_writer_select_commits(indexed_commits, indexed_commits_nr, -1);
869 bitmap_writer_build(&to_pack);
Vicent Martiae4f07f2013-12-21 09:00:45 -0500870 bitmap_writer_finish(written_list, nr_written,
Sun He58892712014-03-03 17:24:29 +0800871 tmpname.buf, write_bitmap_options);
Vicent Marti7cc8f972013-12-21 09:00:16 -0500872 write_bitmap_index = 0;
873 }
874
Sun He58892712014-03-03 17:24:29 +0800875 strbuf_release(&tmpname);
Nicolas Pitre7ba502c2007-10-16 21:55:48 -0400876 free(pack_tmp_name);
Geert Boschaa7e44b2007-06-01 15:18:05 -0400877 puts(sha1_to_hex(sha1));
Dana L. Howebe27b12007-05-13 12:09:16 -0700878 }
879
880 /* mark written objects as written to previous pack */
881 for (j = 0; j < nr_written; j++) {
Nicolas Pitre79814f42007-11-01 23:43:24 -0400882 written_list[j]->offset = (off_t)-1;
Dana L. Howebe27b12007-05-13 12:09:16 -0700883 }
884 nr_remaining -= nr_written;
Vicent Marti2834bc22013-10-24 14:01:06 -0400885 } while (nr_remaining && i < to_pack.nr_objects);
Dana L. Howebe27b12007-05-13 12:09:16 -0700886
887 free(written_list);
Junio C Hamano1b4bb162011-06-30 16:21:58 -0700888 free(write_order);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400889 stop_progress(&progress_state);
Nicolas Pitre67c08ce2006-11-29 17:15:48 -0500890 if (written != nr_result)
Ramsay Jones6e1c2342008-07-03 16:52:09 +0100891 die("wrote %"PRIu32" objects while expecting %"PRIu32,
892 written, nr_result);
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700893}
894
Junio C Hamanoa74db822007-05-19 00:39:31 -0700895static void setup_delta_attr_check(struct git_attr_check *check)
896{
897 static struct git_attr *attr_delta;
898
899 if (!attr_delta)
Junio C Hamano7fb0eaa2010-01-16 20:39:59 -0800900 attr_delta = git_attr("delta");
Junio C Hamanoa74db822007-05-19 00:39:31 -0700901
902 check[0].attr = attr_delta;
903}
904
905static int no_try_delta(const char *path)
906{
907 struct git_attr_check check[1];
908
909 setup_delta_attr_check(check);
Michael Haggertyd932f4e2011-08-04 06:36:33 +0200910 if (git_check_attr(path, ARRAY_SIZE(check), check))
Junio C Hamanoa74db822007-05-19 00:39:31 -0700911 return 0;
912 if (ATTR_FALSE(check->value))
913 return 1;
914 return 0;
915}
916
Jeff Kingce2bc422013-12-21 09:00:06 -0500917/*
918 * When adding an object, check whether we have already added it
919 * to our packing list. If so, we can skip. However, if we are
920 * being asked to excludei t, but the previous mention was to include
921 * it, make sure to adjust its flags and tweak our numbers accordingly.
922 *
923 * As an optimization, we pass out the index position where we would have
924 * found the item, since that saves us from having to look it up again a
925 * few lines later when we want to add the new entry.
926 */
927static int have_duplicate_entry(const unsigned char *sha1,
928 int exclude,
929 uint32_t *index_pos)
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700930{
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700931 struct object_entry *entry;
Nicolas Pitre29b734e2007-04-10 22:54:36 -0400932
Jeff Kingce2bc422013-12-21 09:00:06 -0500933 entry = packlist_find(&to_pack, sha1, index_pos);
934 if (!entry)
Nicolas Pitre29b734e2007-04-10 22:54:36 -0400935 return 0;
Jeff Kingce2bc422013-12-21 09:00:06 -0500936
937 if (exclude) {
938 if (!entry->preferred_base)
939 nr_result--;
940 entry->preferred_base = 1;
Nicolas Pitre29b734e2007-04-10 22:54:36 -0400941 }
Linus Torvaldsc323ac72005-06-25 14:42:43 -0700942
Jeff Kingce2bc422013-12-21 09:00:06 -0500943 return 1;
944}
945
946/*
947 * Check whether we want the object in the pack (e.g., we do not want
948 * objects found in non-local stores if the "--local" option was used).
949 *
950 * As a side effect of this check, we will find the packed version of this
951 * object, if any. We therefore pass out the pack information to avoid having
952 * to look it up again later.
953 */
954static int want_object_in_pack(const unsigned char *sha1,
955 int exclude,
956 struct packed_git **found_pack,
957 off_t *found_offset)
958{
959 struct packed_git *p;
960
Brandon Caseydaae0622008-11-09 23:59:58 -0600961 if (!exclude && local && has_loose_object_nonlocal(sha1))
962 return 0;
963
Jeff Kingce2bc422013-12-21 09:00:06 -0500964 *found_pack = NULL;
965 *found_offset = 0;
966
Nicolas Pitre5c49c112007-04-16 12:32:13 -0400967 for (p = packed_git; p; p = p->next) {
968 off_t offset = find_pack_entry_one(sha1, p);
969 if (offset) {
Jeff Kingce2bc422013-12-21 09:00:06 -0500970 if (!*found_pack) {
Jeff King319b6782015-03-30 20:47:38 -0400971 if (!is_pack_valid(p))
Jeff King4c080182011-10-14 14:03:48 -0400972 continue;
Jeff Kingce2bc422013-12-21 09:00:06 -0500973 *found_offset = offset;
974 *found_pack = p;
Linus Torvalds64560372005-10-13 15:38:28 -0700975 }
Nicolas Pitre5c49c112007-04-16 12:32:13 -0400976 if (exclude)
Jeff Kingce2bc422013-12-21 09:00:06 -0500977 return 1;
Nicolas Pitre5c49c112007-04-16 12:32:13 -0400978 if (incremental)
979 return 0;
980 if (local && !p->pack_local)
981 return 0;
Brandon Caseye96fb9b2008-11-12 11:59:04 -0600982 if (ignore_packed_keep && p->pack_local && p->pack_keep)
983 return 0;
Linus Torvalds64560372005-10-13 15:38:28 -0700984 }
985 }
Linus Torvaldseb019372005-07-03 13:08:40 -0700986
Jeff Kingce2bc422013-12-21 09:00:06 -0500987 return 1;
988}
Nicolas Pitre29b734e2007-04-10 22:54:36 -0400989
Jeff Kingce2bc422013-12-21 09:00:06 -0500990static void create_object_entry(const unsigned char *sha1,
991 enum object_type type,
992 uint32_t hash,
993 int exclude,
994 int no_try_delta,
995 uint32_t index_pos,
996 struct packed_git *found_pack,
997 off_t found_offset)
998{
999 struct object_entry *entry;
1000
Vicent Marti2834bc22013-10-24 14:01:06 -04001001 entry = packlist_alloc(&to_pack, sha1, index_pos);
Linus Torvalds27225f22005-06-26 15:27:28 -07001002 entry->hash = hash;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001003 if (type)
1004 entry->type = type;
Nicolas Pitre29b734e2007-04-10 22:54:36 -04001005 if (exclude)
1006 entry->preferred_base = 1;
Nicolas Pitre81a216a2007-04-16 12:31:05 -04001007 else
1008 nr_result++;
Nicolas Pitre29b734e2007-04-10 22:54:36 -04001009 if (found_pack) {
1010 entry->in_pack = found_pack;
1011 entry->in_pack_offset = found_offset;
1012 }
Junio C Hamano7a979d92006-02-19 14:47:21 -08001013
Jeff Kingce2bc422013-12-21 09:00:06 -05001014 entry->no_try_delta = no_try_delta;
1015}
Junio C Hamano7a979d92006-02-19 14:47:21 -08001016
Jeff King373c67d2014-03-14 22:38:29 -04001017static const char no_closure_warning[] = N_(
1018"disabling bitmap writing, as some objects are not being packed"
1019);
1020
Jeff Kingce2bc422013-12-21 09:00:06 -05001021static int add_object_entry(const unsigned char *sha1, enum object_type type,
1022 const char *name, int exclude)
1023{
1024 struct packed_git *found_pack;
1025 off_t found_offset;
1026 uint32_t index_pos;
Nicolas Pitre29b734e2007-04-10 22:54:36 -04001027
Jeff Kingce2bc422013-12-21 09:00:06 -05001028 if (have_duplicate_entry(sha1, exclude, &index_pos))
1029 return 0;
Junio C Hamanoa74db822007-05-19 00:39:31 -07001030
Jeff King373c67d2014-03-14 22:38:29 -04001031 if (!want_object_in_pack(sha1, exclude, &found_pack, &found_offset)) {
1032 /* The pack is missing an object, so it will not have closure */
1033 if (write_bitmap_index) {
1034 warning(_(no_closure_warning));
1035 write_bitmap_index = 0;
1036 }
Jeff Kingce2bc422013-12-21 09:00:06 -05001037 return 0;
Jeff King373c67d2014-03-14 22:38:29 -04001038 }
Jeff Kingce2bc422013-12-21 09:00:06 -05001039
1040 create_object_entry(sha1, type, pack_name_hash(name),
1041 exclude, name && no_try_delta(name),
1042 index_pos, found_pack, found_offset);
1043
Jeff King78d22142014-03-14 22:26:58 -04001044 display_progress(progress_state, nr_result);
Nicolas Pitre29b734e2007-04-10 22:54:36 -04001045 return 1;
Junio C Hamano7a979d92006-02-19 14:47:21 -08001046}
1047
Vicent Marti6b8fda22013-12-21 09:00:09 -05001048static int add_object_entry_from_bitmap(const unsigned char *sha1,
1049 enum object_type type,
1050 int flags, uint32_t name_hash,
1051 struct packed_git *pack, off_t offset)
1052{
1053 uint32_t index_pos;
1054
1055 if (have_duplicate_entry(sha1, 0, &index_pos))
1056 return 0;
1057
1058 create_object_entry(sha1, type, name_hash, 0, 0, index_pos, pack, offset);
1059
Jeff King78d22142014-03-14 22:26:58 -04001060 display_progress(progress_state, nr_result);
Junio C Hamano7a979d92006-02-19 14:47:21 -08001061 return 1;
1062}
1063
1064struct pbase_tree_cache {
1065 unsigned char sha1[20];
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001066 int ref;
1067 int temporary;
1068 void *tree_data;
1069 unsigned long tree_size;
1070};
1071
1072static struct pbase_tree_cache *(pbase_tree_cache[256]);
1073static int pbase_tree_cache_ix(const unsigned char *sha1)
1074{
1075 return sha1[0] % ARRAY_SIZE(pbase_tree_cache);
1076}
1077static int pbase_tree_cache_ix_incr(int ix)
1078{
1079 return (ix+1) % ARRAY_SIZE(pbase_tree_cache);
1080}
1081
1082static struct pbase_tree {
1083 struct pbase_tree *next;
1084 /* This is a phony "cache" entry; we are not
Justin Lebar01689902014-03-31 15:11:46 -07001085 * going to evict it or find it through _get()
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001086 * mechanism -- this is for the toplevel node that
1087 * would almost always change with any commit.
1088 */
1089 struct pbase_tree_cache pcache;
1090} *pbase_tree;
1091
1092static struct pbase_tree_cache *pbase_tree_get(const unsigned char *sha1)
1093{
1094 struct pbase_tree_cache *ent, *nent;
1095 void *data;
1096 unsigned long size;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001097 enum object_type type;
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001098 int neigh;
1099 int my_ix = pbase_tree_cache_ix(sha1);
1100 int available_ix = -1;
1101
1102 /* pbase-tree-cache acts as a limited hashtable.
1103 * your object will be found at your index or within a few
1104 * slots after that slot if it is cached.
1105 */
1106 for (neigh = 0; neigh < 8; neigh++) {
1107 ent = pbase_tree_cache[my_ix];
David Rientjesa89fccd2006-08-17 11:54:57 -07001108 if (ent && !hashcmp(ent->sha1, sha1)) {
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001109 ent->ref++;
1110 return ent;
1111 }
1112 else if (((available_ix < 0) && (!ent || !ent->ref)) ||
1113 ((0 <= available_ix) &&
1114 (!ent && pbase_tree_cache[available_ix])))
1115 available_ix = my_ix;
1116 if (!ent)
1117 break;
1118 my_ix = pbase_tree_cache_ix_incr(my_ix);
1119 }
1120
1121 /* Did not find one. Either we got a bogus request or
1122 * we need to read and perhaps cache.
1123 */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001124 data = read_sha1_file(sha1, &type, &size);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001125 if (!data)
1126 return NULL;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001127 if (type != OBJ_TREE) {
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001128 free(data);
1129 return NULL;
1130 }
1131
1132 /* We need to either cache or return a throwaway copy */
1133
1134 if (available_ix < 0)
1135 ent = NULL;
1136 else {
1137 ent = pbase_tree_cache[available_ix];
1138 my_ix = available_ix;
1139 }
1140
1141 if (!ent) {
1142 nent = xmalloc(sizeof(*nent));
1143 nent->temporary = (available_ix < 0);
1144 }
1145 else {
1146 /* evict and reuse */
1147 free(ent->tree_data);
1148 nent = ent;
1149 }
Shawn Pearcee7024962006-08-23 02:49:00 -04001150 hashcpy(nent->sha1, sha1);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001151 nent->tree_data = data;
1152 nent->tree_size = size;
1153 nent->ref = 1;
1154 if (!nent->temporary)
1155 pbase_tree_cache[my_ix] = nent;
1156 return nent;
1157}
1158
1159static void pbase_tree_put(struct pbase_tree_cache *cache)
1160{
1161 if (!cache->temporary) {
1162 cache->ref--;
1163 return;
1164 }
1165 free(cache->tree_data);
1166 free(cache);
1167}
1168
1169static int name_cmp_len(const char *name)
1170{
1171 int i;
1172 for (i = 0; name[i] && name[i] != '\n' && name[i] != '/'; i++)
1173 ;
1174 return i;
1175}
1176
1177static void add_pbase_object(struct tree_desc *tree,
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001178 const char *name,
Linus Torvaldsce0bd642006-06-05 12:03:31 -07001179 int cmplen,
1180 const char *fullname)
Junio C Hamano7a979d92006-02-19 14:47:21 -08001181{
Linus Torvalds4c068a92006-05-30 09:45:45 -07001182 struct name_entry entry;
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001183 int cmp;
Linus Torvalds4c068a92006-05-30 09:45:45 -07001184
1185 while (tree_entry(tree,&entry)) {
Linus Torvalds1211be62007-08-17 09:56:54 -07001186 if (S_ISGITLINK(entry.mode))
1187 continue;
Nguyễn Thái Ngọc Duy0de16332011-10-24 17:36:09 +11001188 cmp = tree_entry_len(&entry) != cmplen ? 1 :
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001189 memcmp(name, entry.path, cmplen);
1190 if (cmp > 0)
Junio C Hamano7a979d92006-02-19 14:47:21 -08001191 continue;
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001192 if (cmp < 0)
1193 return;
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001194 if (name[cmplen] != '/') {
brian m. carlson7d924c92016-04-17 23:10:39 +00001195 add_object_entry(entry.oid->hash,
Linus Torvalds4d1012c2007-11-11 23:35:23 +00001196 object_type(entry.mode),
Junio C Hamanobc32fed2007-05-19 00:19:23 -07001197 fullname, 1);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001198 return;
1199 }
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001200 if (S_ISDIR(entry.mode)) {
Junio C Hamano7a979d92006-02-19 14:47:21 -08001201 struct tree_desc sub;
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001202 struct pbase_tree_cache *tree;
1203 const char *down = name+cmplen+1;
1204 int downlen = name_cmp_len(down);
Junio C Hamano1d6b38c2006-02-22 22:10:24 -08001205
brian m. carlson7d924c92016-04-17 23:10:39 +00001206 tree = pbase_tree_get(entry.oid->hash);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001207 if (!tree)
1208 return;
Linus Torvalds6fda5e52007-03-21 10:08:25 -07001209 init_tree_desc(&sub, tree->tree_data, tree->tree_size);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001210
Linus Torvaldsce0bd642006-06-05 12:03:31 -07001211 add_pbase_object(&sub, down, downlen, fullname);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001212 pbase_tree_put(tree);
1213 }
1214 }
1215}
1216
1217static unsigned *done_pbase_paths;
1218static int done_pbase_paths_num;
1219static int done_pbase_paths_alloc;
1220static int done_pbase_path_pos(unsigned hash)
1221{
1222 int lo = 0;
1223 int hi = done_pbase_paths_num;
1224 while (lo < hi) {
1225 int mi = (hi + lo) / 2;
1226 if (done_pbase_paths[mi] == hash)
1227 return mi;
1228 if (done_pbase_paths[mi] < hash)
1229 hi = mi;
1230 else
1231 lo = mi + 1;
1232 }
1233 return -lo-1;
1234}
1235
1236static int check_pbase_path(unsigned hash)
1237{
1238 int pos = (!done_pbase_paths) ? -1 : done_pbase_path_pos(hash);
1239 if (0 <= pos)
1240 return 1;
1241 pos = -pos - 1;
Dmitry S. Dolzhenko25e19402014-03-04 02:31:49 +04001242 ALLOC_GROW(done_pbase_paths,
1243 done_pbase_paths_num + 1,
1244 done_pbase_paths_alloc);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001245 done_pbase_paths_num++;
1246 if (pos < done_pbase_paths_num)
1247 memmove(done_pbase_paths + pos + 1,
1248 done_pbase_paths + pos,
1249 (done_pbase_paths_num - pos - 1) * sizeof(unsigned));
1250 done_pbase_paths[pos] = hash;
1251 return 0;
1252}
1253
Junio C Hamanobc32fed2007-05-19 00:19:23 -07001254static void add_preferred_base_object(const char *name)
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001255{
1256 struct pbase_tree *it;
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001257 int cmplen;
Vicent Marti68fb36e2013-10-24 14:01:29 -04001258 unsigned hash = pack_name_hash(name);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001259
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001260 if (!num_preferred_base || check_pbase_path(hash))
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001261 return;
1262
Nicolas Pitre8a5a8d62007-04-16 12:28:10 -04001263 cmplen = name_cmp_len(name);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001264 for (it = pbase_tree; it; it = it->next) {
1265 if (cmplen == 0) {
Junio C Hamanobc32fed2007-05-19 00:19:23 -07001266 add_object_entry(it->pcache.sha1, OBJ_TREE, NULL, 1);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001267 }
1268 else {
1269 struct tree_desc tree;
Linus Torvalds6fda5e52007-03-21 10:08:25 -07001270 init_tree_desc(&tree, it->pcache.tree_data, it->pcache.tree_size);
Linus Torvaldsce0bd642006-06-05 12:03:31 -07001271 add_pbase_object(&tree, name, cmplen, name);
Junio C Hamano7a979d92006-02-19 14:47:21 -08001272 }
1273 }
1274}
1275
1276static void add_preferred_base(unsigned char *sha1)
1277{
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001278 struct pbase_tree *it;
1279 void *data;
1280 unsigned long size;
1281 unsigned char tree_sha1[20];
Junio C Hamano1d6b38c2006-02-22 22:10:24 -08001282
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07001283 if (window <= num_preferred_base++)
1284 return;
1285
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001286 data = read_object_with_reference(sha1, tree_type, &size, tree_sha1);
1287 if (!data)
Junio C Hamano7a979d92006-02-19 14:47:21 -08001288 return;
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001289
1290 for (it = pbase_tree; it; it = it->next) {
David Rientjesa89fccd2006-08-17 11:54:57 -07001291 if (!hashcmp(it->pcache.sha1, tree_sha1)) {
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001292 free(data);
1293 return;
1294 }
1295 }
1296
1297 it = xcalloc(1, sizeof(*it));
1298 it->next = pbase_tree;
1299 pbase_tree = it;
1300
Shawn Pearcee7024962006-08-23 02:49:00 -04001301 hashcpy(it->pcache.sha1, tree_sha1);
Junio C Hamano5379a5c2006-04-05 23:24:57 -07001302 it->pcache.tree_data = data;
1303 it->pcache.tree_size = size;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001304}
1305
Nicolas Pitre0ef95f72009-09-03 21:54:03 -04001306static void cleanup_preferred_base(void)
1307{
1308 struct pbase_tree *it;
1309 unsigned i;
1310
1311 it = pbase_tree;
1312 pbase_tree = NULL;
1313 while (it) {
1314 struct pbase_tree *this = it;
1315 it = this->next;
1316 free(this->pcache.tree_data);
1317 free(this);
1318 }
1319
1320 for (i = 0; i < ARRAY_SIZE(pbase_tree_cache); i++) {
1321 if (!pbase_tree_cache[i])
1322 continue;
1323 free(pbase_tree_cache[i]->tree_data);
1324 free(pbase_tree_cache[i]);
1325 pbase_tree_cache[i] = NULL;
1326 }
1327
1328 free(done_pbase_paths);
1329 done_pbase_paths = NULL;
1330 done_pbase_paths_num = done_pbase_paths_alloc = 0;
1331}
1332
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001333static void check_object(struct object_entry *entry)
1334{
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001335 if (entry->in_pack) {
Nicolas Pitre780e6e72006-09-22 21:25:04 -04001336 struct packed_git *p = entry->in_pack;
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001337 struct pack_window *w_curs = NULL;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001338 const unsigned char *base_ref = NULL;
1339 struct object_entry *base_entry;
1340 unsigned long used, used_0;
Junio C Hamanoef49a7a2011-06-10 11:52:15 -07001341 unsigned long avail;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001342 off_t ofs;
1343 unsigned char *buf, c;
Nicolas Pitre780e6e72006-09-22 21:25:04 -04001344
Shawn O. Pearce6777a592007-03-06 20:44:34 -05001345 buf = use_pack(p, &w_curs, entry->in_pack_offset, &avail);
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08001346
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001347 /*
Nicolas Pitrefa736f72007-05-09 12:31:28 -04001348 * We want in_pack_type even if we do not reuse delta
1349 * since non-delta representations could still be reused.
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08001350 */
Nicolas Pitre09ded042008-10-29 19:02:46 -04001351 used = unpack_object_header_buffer(buf, avail,
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001352 &entry->in_pack_type,
1353 &entry->size);
Nicolas Pitre03d66012008-10-29 19:02:48 -04001354 if (used == 0)
1355 goto give_up;
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08001356
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001357 /*
1358 * Determine if this is a delta and if so whether we can
1359 * reuse it or not. Otherwise let's find out as cheaply as
1360 * possible what the actual type and size for this object is.
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -08001361 */
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001362 switch (entry->in_pack_type) {
1363 default:
1364 /* Not a delta hence we've already got all we need. */
Nicolas Pitre780e6e72006-09-22 21:25:04 -04001365 entry->type = entry->in_pack_type;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001366 entry->in_pack_header_size = used;
Nicolas Pitre03d66012008-10-29 19:02:48 -04001367 if (entry->type < OBJ_COMMIT || entry->type > OBJ_BLOB)
1368 goto give_up;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001369 unuse_pack(&w_curs);
1370 return;
1371 case OBJ_REF_DELTA:
Nicolas Pitrea7de7132008-05-02 15:11:46 -04001372 if (reuse_delta && !entry->preferred_base)
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001373 base_ref = use_pack(p, &w_curs,
1374 entry->in_pack_offset + used, NULL);
1375 entry->in_pack_header_size = used + 20;
1376 break;
1377 case OBJ_OFS_DELTA:
1378 buf = use_pack(p, &w_curs,
1379 entry->in_pack_offset + used, NULL);
1380 used_0 = 0;
1381 c = buf[used_0++];
1382 ofs = c & 127;
1383 while (c & 128) {
1384 ofs += 1;
Nicolas Pitre03d66012008-10-29 19:02:48 -04001385 if (!ofs || MSB(ofs, 7)) {
1386 error("delta base offset overflow in pack for %s",
1387 sha1_to_hex(entry->idx.sha1));
1388 goto give_up;
1389 }
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001390 c = buf[used_0++];
1391 ofs = (ofs << 7) + (c & 127);
1392 }
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001393 ofs = entry->in_pack_offset - ofs;
Nicolas Pitre03d66012008-10-29 19:02:48 -04001394 if (ofs <= 0 || ofs >= entry->in_pack_offset) {
1395 error("delta base offset out of bound for %s",
1396 sha1_to_hex(entry->idx.sha1));
1397 goto give_up;
1398 }
Nicolas Pitrea7de7132008-05-02 15:11:46 -04001399 if (reuse_delta && !entry->preferred_base) {
Nicolas Pitre3449f8c2008-02-28 00:25:17 -05001400 struct revindex_entry *revidx;
1401 revidx = find_pack_revindex(p, ofs);
Nicolas Pitre08698b12008-10-29 19:02:49 -04001402 if (!revidx)
1403 goto give_up;
Nicolas Pitre3449f8c2008-02-28 00:25:17 -05001404 base_ref = nth_packed_object_sha1(p, revidx->nr);
1405 }
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001406 entry->in_pack_header_size = used + used_0;
1407 break;
1408 }
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08001409
Vicent Marti2834bc22013-10-24 14:01:06 -04001410 if (base_ref && (base_entry = packlist_find(&to_pack, base_ref, NULL))) {
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001411 /*
1412 * If base_ref was set above that means we wish to
1413 * reuse delta data, and we even found that base
1414 * in the list of objects we want to pack. Goodie!
1415 *
1416 * Depth value does not matter - find_deltas() will
1417 * never consider reused delta as the base object to
1418 * deltify other objects against, in order to avoid
1419 * circular deltas.
1420 */
1421 entry->type = entry->in_pack_type;
1422 entry->delta = base_entry;
Nicolas Pitre64bd76b2008-10-29 19:02:50 -04001423 entry->delta_size = entry->size;
Junio C Hamano15b4d572006-02-17 20:58:45 -08001424 entry->delta_sibling = base_entry->delta_child;
1425 base_entry->delta_child = entry;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001426 unuse_pack(&w_curs);
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -08001427 return;
1428 }
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001429
1430 if (entry->type) {
1431 /*
1432 * This must be a delta and we already know what the
1433 * final object type is. Let's extract the actual
1434 * object size from the delta header.
1435 */
1436 entry->size = get_size_from_delta(p, &w_curs,
1437 entry->in_pack_offset + entry->in_pack_header_size);
Nicolas Pitre03d66012008-10-29 19:02:48 -04001438 if (entry->size == 0)
1439 goto give_up;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001440 unuse_pack(&w_curs);
1441 return;
1442 }
1443
1444 /*
1445 * No choice but to fall back to the recursive delta walk
1446 * with sha1_object_info() to find about the object type
1447 * at this point...
1448 */
Nicolas Pitre03d66012008-10-29 19:02:48 -04001449 give_up:
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001450 unuse_pack(&w_curs);
Junio C Hamano36e4d742005-06-27 03:34:06 -07001451 }
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -08001452
Geert Boschaa7e44b2007-06-01 15:18:05 -04001453 entry->type = sha1_object_info(entry->idx.sha1, &entry->size);
Shawn O. Pearce6d6f9cd2008-08-12 11:31:06 -07001454 /*
1455 * The error condition is checked in prepare_pack(). This is
1456 * to permit a missing preferred base object to be ignored
1457 * as a preferred base. Doing so can result in a larger
1458 * pack file, but the transfer will still take place.
1459 */
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -08001460}
1461
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001462static int pack_offset_sort(const void *_a, const void *_b)
1463{
1464 const struct object_entry *a = *(struct object_entry **)_a;
1465 const struct object_entry *b = *(struct object_entry **)_b;
1466
1467 /* avoid filesystem trashing with loose objects */
1468 if (!a->in_pack && !b->in_pack)
Geert Boschaa7e44b2007-06-01 15:18:05 -04001469 return hashcmp(a->idx.sha1, b->idx.sha1);
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001470
1471 if (a->in_pack < b->in_pack)
1472 return -1;
1473 if (a->in_pack > b->in_pack)
1474 return 1;
1475 return a->in_pack_offset < b->in_pack_offset ? -1 :
1476 (a->in_pack_offset > b->in_pack_offset);
1477}
1478
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001479static void get_object_details(void)
1480{
Shawn O. Pearce7cadf492007-03-06 20:44:24 -05001481 uint32_t i;
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001482 struct object_entry **sorted_by_offset;
1483
Vicent Marti2834bc22013-10-24 14:01:06 -04001484 sorted_by_offset = xcalloc(to_pack.nr_objects, sizeof(struct object_entry *));
1485 for (i = 0; i < to_pack.nr_objects; i++)
1486 sorted_by_offset[i] = to_pack.objects + i;
1487 qsort(sorted_by_offset, to_pack.nr_objects, sizeof(*sorted_by_offset), pack_offset_sort);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001488
Vicent Marti2834bc22013-10-24 14:01:06 -04001489 for (i = 0; i < to_pack.nr_objects; i++) {
Junio C Hamano15366282011-04-05 10:44:11 -07001490 struct object_entry *entry = sorted_by_offset[i];
1491 check_object(entry);
Nguyễn Thái Ngọc Duy754980d2012-05-16 19:02:09 +07001492 if (big_file_threshold < entry->size)
Junio C Hamano15366282011-04-05 10:44:11 -07001493 entry->no_try_delta = 1;
1494 }
Nicolas Pitre3449f8c2008-02-28 00:25:17 -05001495
Nicolas Pitre5c49c112007-04-16 12:32:13 -04001496 free(sorted_by_offset);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001497}
1498
Nicolas Pitreb9041662007-12-08 00:00:08 -05001499/*
1500 * We search for deltas in a list sorted by type, by filename hash, and then
1501 * by size, so that we see progressively smaller and smaller files.
1502 * That's because we prefer deltas to be from the bigger file
1503 * to the smaller -- deletes are potentially cheaper, but perhaps
1504 * more importantly, the bigger file is likely the more recent
1505 * one. The deepest deltas are therefore the oldest objects which are
1506 * less susceptible to be accessed often.
1507 */
Nicolas Pitre9668cf52007-04-16 12:29:54 -04001508static int type_size_sort(const void *_a, const void *_b)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001509{
Nicolas Pitre9668cf52007-04-16 12:29:54 -04001510 const struct object_entry *a = *(struct object_entry **)_a;
1511 const struct object_entry *b = *(struct object_entry **)_b;
1512
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001513 if (a->type > b->type)
Linus Torvalds27225f22005-06-26 15:27:28 -07001514 return -1;
Nicolas Pitreb9041662007-12-08 00:00:08 -05001515 if (a->type < b->type)
1516 return 1;
Linus Torvalds27225f22005-06-26 15:27:28 -07001517 if (a->hash > b->hash)
Junio C Hamano7a979d92006-02-19 14:47:21 -08001518 return -1;
Nicolas Pitreb9041662007-12-08 00:00:08 -05001519 if (a->hash < b->hash)
1520 return 1;
Junio C Hamano7a979d92006-02-19 14:47:21 -08001521 if (a->preferred_base > b->preferred_base)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001522 return -1;
Nicolas Pitreb9041662007-12-08 00:00:08 -05001523 if (a->preferred_base < b->preferred_base)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001524 return 1;
Nicolas Pitreb9041662007-12-08 00:00:08 -05001525 if (a->size > b->size)
1526 return -1;
1527 if (a->size < b->size)
1528 return 1;
1529 return a < b ? -1 : (a > b); /* newest first */
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001530}
1531
1532struct unpacked {
1533 struct object_entry *entry;
1534 void *data;
Nicolas Pitref6c70812006-04-26 23:58:00 -04001535 struct delta_index *index;
Nicolas Pitre5a235b52007-07-12 17:07:59 -04001536 unsigned depth;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001537};
1538
Nicolas Pitred2506262007-08-15 22:46:01 -04001539static int delta_cacheable(unsigned long src_size, unsigned long trg_size,
1540 unsigned long delta_size)
Martin Koegler074b2ee2007-05-28 23:20:58 +02001541{
1542 if (max_delta_cache_size && delta_cache_size + delta_size > max_delta_cache_size)
1543 return 0;
1544
Martin Koeglere3dfddb2007-05-28 23:20:59 +02001545 if (delta_size < cache_max_small_delta_size)
1546 return 1;
1547
Martin Koegler074b2ee2007-05-28 23:20:58 +02001548 /* cache delta, if objects are large enough compared to delta size */
1549 if ((src_size >> 20) + (trg_size >> 21) > (delta_size >> 10))
1550 return 1;
1551
1552 return 0;
1553}
1554
Dan McGee7eb151d2010-01-29 19:22:19 -06001555#ifndef NO_PTHREADS
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001556
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001557static pthread_mutex_t read_mutex;
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001558#define read_lock() pthread_mutex_lock(&read_mutex)
1559#define read_unlock() pthread_mutex_unlock(&read_mutex)
1560
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001561static pthread_mutex_t cache_mutex;
Nicolas Pitre3c701832007-09-10 11:10:11 -04001562#define cache_lock() pthread_mutex_lock(&cache_mutex)
1563#define cache_unlock() pthread_mutex_unlock(&cache_mutex)
1564
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001565static pthread_mutex_t progress_mutex;
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001566#define progress_lock() pthread_mutex_lock(&progress_mutex)
1567#define progress_unlock() pthread_mutex_unlock(&progress_mutex)
1568
1569#else
1570
Junio C Hamanoe1ef8672007-09-14 22:30:20 -07001571#define read_lock() (void)0
1572#define read_unlock() (void)0
1573#define cache_lock() (void)0
1574#define cache_unlock() (void)0
1575#define progress_lock() (void)0
1576#define progress_unlock() (void)0
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001577
1578#endif
1579
Nicolas Pitref6c70812006-04-26 23:58:00 -04001580static int try_delta(struct unpacked *trg, struct unpacked *src,
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001581 unsigned max_depth, unsigned long *mem_usage)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001582{
Nicolas Pitref6c70812006-04-26 23:58:00 -04001583 struct object_entry *trg_entry = trg->entry;
1584 struct object_entry *src_entry = src->entry;
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001585 unsigned long trg_size, src_size, delta_size, sizediff, max_size, sz;
Nicolas Pitrec83f0322007-07-12 14:33:21 -04001586 unsigned ref_depth;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001587 enum object_type type;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001588 void *delta_buf;
1589
1590 /* Don't bother doing diffs between different types */
Nicolas Pitref6c70812006-04-26 23:58:00 -04001591 if (trg_entry->type != src_entry->type)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001592 return -1;
1593
Nicolas Pitref6c70812006-04-26 23:58:00 -04001594 /*
Jeff King15f07e02012-01-12 17:32:34 -05001595 * We do not bother to try a delta that we discarded on an
1596 * earlier try, but only when reusing delta data. Note that
1597 * src_entry that is marked as the preferred_base should always
1598 * be considered, as even if we produce a suboptimal delta against
1599 * it, we will still save the transfer cost, as we already know
1600 * the other side has it and we won't send src_entry at all.
Linus Torvalds51d1e832006-06-29 14:04:01 -07001601 */
Nicolas Pitrea7de7132008-05-02 15:11:46 -04001602 if (reuse_delta && trg_entry->in_pack &&
Junio C Hamanoe9195b52006-11-14 22:18:31 -08001603 trg_entry->in_pack == src_entry->in_pack &&
Jeff King15f07e02012-01-12 17:32:34 -05001604 !src_entry->preferred_base &&
Junio C Hamanoe9195b52006-11-14 22:18:31 -08001605 trg_entry->in_pack_type != OBJ_REF_DELTA &&
1606 trg_entry->in_pack_type != OBJ_OFS_DELTA)
Linus Torvalds51d1e832006-06-29 14:04:01 -07001607 return 0;
1608
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001609 /* Let's not bust the allowed depth. */
Nicolas Pitre5a235b52007-07-12 17:07:59 -04001610 if (src->depth >= max_depth)
Linus Torvaldsd116a452005-06-25 20:17:59 -07001611 return 0;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001612
Nicolas Pitrec3b06a62006-05-16 16:29:14 -04001613 /* Now some size filtering heuristics. */
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001614 trg_size = trg_entry->size;
Nicolas Pitrec83f0322007-07-12 14:33:21 -04001615 if (!trg_entry->delta) {
1616 max_size = trg_size/2 - 20;
1617 ref_depth = 1;
1618 } else {
1619 max_size = trg_entry->delta_size;
Nicolas Pitre5a235b52007-07-12 17:07:59 -04001620 ref_depth = trg->depth;
Nicolas Pitrec83f0322007-07-12 14:33:21 -04001621 }
Nicolas Pitre720fe222009-03-24 15:56:12 -04001622 max_size = (uint64_t)max_size * (max_depth - src->depth) /
Nicolas Pitrec83f0322007-07-12 14:33:21 -04001623 (max_depth - ref_depth + 1);
Nicolas Pitrec3b06a62006-05-16 16:29:14 -04001624 if (max_size == 0)
1625 return 0;
Nicolas Pitref6c70812006-04-26 23:58:00 -04001626 src_size = src_entry->size;
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001627 sizediff = src_size < trg_size ? trg_size - src_size : 0;
Linus Torvalds27225f22005-06-26 15:27:28 -07001628 if (sizediff >= max_size)
Junio C Hamanof527cb82006-04-20 23:36:22 -07001629 return 0;
Brian Downinga1dab412007-07-12 07:55:47 -05001630 if (trg_size < src_size / 32)
1631 return 0;
Nicolas Pitref6c70812006-04-26 23:58:00 -04001632
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001633 /* Load data if not already done */
1634 if (!trg->data) {
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001635 read_lock();
Geert Boschaa7e44b2007-06-01 15:18:05 -04001636 trg->data = read_sha1_file(trg_entry->idx.sha1, &type, &sz);
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001637 read_unlock();
Junio C Hamano2e3404c2007-08-25 01:26:47 -07001638 if (!trg->data)
1639 die("object %s cannot be read",
1640 sha1_to_hex(trg_entry->idx.sha1));
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001641 if (sz != trg_size)
1642 die("object %s inconsistent object length (%lu vs %lu)",
Geert Boschaa7e44b2007-06-01 15:18:05 -04001643 sha1_to_hex(trg_entry->idx.sha1), sz, trg_size);
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001644 *mem_usage += sz;
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001645 }
1646 if (!src->data) {
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001647 read_lock();
Geert Boschaa7e44b2007-06-01 15:18:05 -04001648 src->data = read_sha1_file(src_entry->idx.sha1, &type, &sz);
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001649 read_unlock();
Nicolas Pitre71064a92010-10-22 16:26:23 -04001650 if (!src->data) {
1651 if (src_entry->preferred_base) {
1652 static int warned = 0;
1653 if (!warned++)
1654 warning("object %s cannot be read",
1655 sha1_to_hex(src_entry->idx.sha1));
1656 /*
1657 * Those objects are not included in the
1658 * resulting pack. Be resilient and ignore
1659 * them if they can't be read, in case the
1660 * pack could be created nevertheless.
1661 */
1662 return 0;
1663 }
Junio C Hamano2e3404c2007-08-25 01:26:47 -07001664 die("object %s cannot be read",
1665 sha1_to_hex(src_entry->idx.sha1));
Nicolas Pitre71064a92010-10-22 16:26:23 -04001666 }
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001667 if (sz != src_size)
1668 die("object %s inconsistent object length (%lu vs %lu)",
Geert Boschaa7e44b2007-06-01 15:18:05 -04001669 sha1_to_hex(src_entry->idx.sha1), sz, src_size);
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001670 *mem_usage += sz;
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001671 }
1672 if (!src->index) {
1673 src->index = create_delta_index(src->data, src_size);
Martin Koeglera588d882007-05-28 23:20:57 +02001674 if (!src->index) {
1675 static int warned = 0;
1676 if (!warned++)
1677 warning("suboptimal pack - out of memory");
1678 return 0;
1679 }
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001680 *mem_usage += sizeof_delta_index(src->index);
Nicolas Pitre560b25a2006-06-30 22:55:30 -04001681 }
1682
1683 delta_buf = create_delta(src->index, trg->data, trg_size, &delta_size, max_size);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001684 if (!delta_buf)
Linus Torvalds75c42d82005-06-25 19:30:20 -07001685 return 0;
Nicolas Pitref6c70812006-04-26 23:58:00 -04001686
Nicolas Pitre9e2d57a2007-08-29 21:17:17 -04001687 if (trg_entry->delta) {
Brian Downing848d7322007-07-08 23:45:21 -05001688 /* Prefer only shallower same-sized deltas. */
1689 if (delta_size == trg_entry->delta_size &&
Nicolas Pitre5a235b52007-07-12 17:07:59 -04001690 src->depth + 1 >= trg->depth) {
Brian Downing848d7322007-07-08 23:45:21 -05001691 free(delta_buf);
1692 return 0;
1693 }
Nicolas Pitre9e2d57a2007-08-29 21:17:17 -04001694 }
1695
Nicolas Pitre3c701832007-09-10 11:10:11 -04001696 /*
1697 * Handle memory allocation outside of the cache
1698 * accounting lock. Compiler will optimize the strangeness
Dan McGee7eb151d2010-01-29 19:22:19 -06001699 * away when NO_PTHREADS is defined.
Nicolas Pitre3c701832007-09-10 11:10:11 -04001700 */
Jim Meyering8e0f7002008-01-31 18:26:32 +01001701 free(trg_entry->delta_data);
Nicolas Pitre3c701832007-09-10 11:10:11 -04001702 cache_lock();
Nicolas Pitre9e2d57a2007-08-29 21:17:17 -04001703 if (trg_entry->delta_data) {
Martin Koegler074b2ee2007-05-28 23:20:58 +02001704 delta_cache_size -= trg_entry->delta_size;
Nicolas Pitre5a235b52007-07-12 17:07:59 -04001705 trg_entry->delta_data = NULL;
Martin Koegler074b2ee2007-05-28 23:20:58 +02001706 }
Nicolas Pitred2506262007-08-15 22:46:01 -04001707 if (delta_cacheable(src_size, trg_size, delta_size)) {
Nicolas Pitreb7a28f72007-12-07 20:27:52 -05001708 delta_cache_size += delta_size;
Nicolas Pitre3c701832007-09-10 11:10:11 -04001709 cache_unlock();
1710 trg_entry->delta_data = xrealloc(delta_buf, delta_size);
1711 } else {
1712 cache_unlock();
Martin Koegler074b2ee2007-05-28 23:20:58 +02001713 free(delta_buf);
Nicolas Pitre3c701832007-09-10 11:10:11 -04001714 }
1715
Nicolas Pitreb7a28f72007-12-07 20:27:52 -05001716 trg_entry->delta = src_entry;
1717 trg_entry->delta_size = delta_size;
1718 trg->depth = src->depth + 1;
1719
Nicolas Pitref6c70812006-04-26 23:58:00 -04001720 return 1;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001721}
1722
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001723static unsigned int check_delta_limit(struct object_entry *me, unsigned int n)
Nicolas Pitreb2504a02006-02-22 16:00:08 -05001724{
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001725 struct object_entry *child = me->delta_child;
1726 unsigned int m = n;
1727 while (child) {
1728 unsigned int c = check_delta_limit(child, n + 1);
1729 if (m < c)
1730 m = c;
1731 child = child->delta_sibling;
1732 }
1733 return m;
Nicolas Pitreb2504a02006-02-22 16:00:08 -05001734}
1735
Junio C Hamano75ad2352008-02-12 23:39:03 -08001736static unsigned long free_unpacked(struct unpacked *n)
Brian Downinga97773c2007-07-12 08:07:46 -05001737{
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001738 unsigned long freed_mem = sizeof_delta_index(n->index);
Brian Downinga97773c2007-07-12 08:07:46 -05001739 free_delta_index(n->index);
1740 n->index = NULL;
1741 if (n->data) {
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001742 freed_mem += n->entry->size;
Brian Downinga97773c2007-07-12 08:07:46 -05001743 free(n->data);
1744 n->data = NULL;
Brian Downinga97773c2007-07-12 08:07:46 -05001745 }
1746 n->entry = NULL;
Nicolas Pitre7d7baa52007-07-12 22:27:12 -04001747 n->depth = 0;
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001748 return freed_mem;
Brian Downinga97773c2007-07-12 08:07:46 -05001749}
1750
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001751static void find_deltas(struct object_entry **list, unsigned *list_size,
Nicolas Pitree3349772007-09-06 02:13:10 -04001752 int window, int depth, unsigned *processed)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001753{
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001754 uint32_t i, idx = 0, count = 0;
Shawn O. Pearce7cadf492007-03-06 20:44:24 -05001755 struct unpacked *array;
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001756 unsigned long mem_usage = 0;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001757
Brandon Casey19d4b412008-10-06 18:39:10 -05001758 array = xcalloc(window, sizeof(struct unpacked));
Junio C Hamano21fcd1b2006-02-11 17:54:18 -08001759
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001760 for (;;) {
Jeff King421b4882008-10-23 04:31:03 +00001761 struct object_entry *entry;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001762 struct unpacked *n = array + idx;
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001763 int j, max_depth, best_base = -1;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001764
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001765 progress_lock();
1766 if (!*list_size) {
1767 progress_unlock();
1768 break;
1769 }
Jeff King421b4882008-10-23 04:31:03 +00001770 entry = *list++;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001771 (*list_size)--;
1772 if (!entry->preferred_base) {
1773 (*processed)++;
1774 display_progress(progress_state, *processed);
1775 }
1776 progress_unlock();
1777
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001778 mem_usage -= free_unpacked(n);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001779 n->entry = entry;
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08001780
Brian Downinga97773c2007-07-12 08:07:46 -05001781 while (window_memory_limit &&
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001782 mem_usage > window_memory_limit &&
Brian Downinga97773c2007-07-12 08:07:46 -05001783 count > 1) {
1784 uint32_t tail = (idx + window - count) % window;
Junio C Hamano75ad2352008-02-12 23:39:03 -08001785 mem_usage -= free_unpacked(array + tail);
Brian Downinga97773c2007-07-12 08:07:46 -05001786 count--;
1787 }
1788
Nicolas Pitre75d39852007-09-06 02:13:08 -04001789 /* We do not compute delta to *create* objects we are not
1790 * going to pack.
1791 */
1792 if (entry->preferred_base)
1793 goto next;
1794
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001795 /*
1796 * If the current object is at pack edge, take the depth the
1797 * objects that depend on the current object into account
1798 * otherwise they would become too deep.
1799 */
1800 max_depth = depth;
1801 if (entry->delta_child) {
1802 max_depth -= check_delta_limit(entry, 0);
1803 if (max_depth <= 0)
1804 goto next;
1805 }
1806
Linus Torvalds78817c12005-06-25 18:29:23 -07001807 j = window;
1808 while (--j > 0) {
Junio C Hamano77639872007-09-01 23:53:47 -07001809 int ret;
Shawn O. Pearce7cadf492007-03-06 20:44:24 -05001810 uint32_t other_idx = idx + j;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001811 struct unpacked *m;
Linus Torvalds78817c12005-06-25 18:29:23 -07001812 if (other_idx >= window)
1813 other_idx -= window;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001814 m = array + other_idx;
1815 if (!m->entry)
1816 break;
Nicolas Pitreef0316f2007-09-06 02:13:09 -04001817 ret = try_delta(n, m, max_depth, &mem_usage);
Junio C Hamano77639872007-09-01 23:53:47 -07001818 if (ret < 0)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001819 break;
Junio C Hamano77639872007-09-01 23:53:47 -07001820 else if (ret > 0)
1821 best_base = other_idx;
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001822 }
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001823
Nicolas Pitreed4a9032008-05-02 15:11:50 -04001824 /*
1825 * If we decided to cache the delta data, then it is best
1826 * to compress it right away. First because we have to do
1827 * it anyway, and doing it here while we're threaded will
1828 * save a lot of time in the non threaded write phase,
1829 * as well as allow for caching more deltas within
1830 * the same cache size limit.
1831 * ...
1832 * But only if not writing to stdout, since in that case
1833 * the network is most likely throttling writes anyway,
1834 * and therefore it is best to go to the write phase ASAP
1835 * instead, as we can afford spending more time compressing
1836 * between writes at that moment.
1837 */
1838 if (entry->delta_data && !pack_to_stdout) {
1839 entry->z_delta_size = do_compress(&entry->delta_data,
1840 entry->delta_size);
1841 cache_lock();
1842 delta_cache_size -= entry->delta_size;
1843 delta_cache_size += entry->z_delta_size;
1844 cache_unlock();
1845 }
1846
Junio C Hamano70ca1a32006-03-05 11:22:57 -08001847 /* if we made n a delta, and if n is already at max
1848 * depth, leaving it in the window is pointless. we
1849 * should evict it first.
Junio C Hamano70ca1a32006-03-05 11:22:57 -08001850 */
Nicolas Pitre70baf5d2008-05-02 15:11:51 -04001851 if (entry->delta && max_depth <= n->depth)
Junio C Hamano70ca1a32006-03-05 11:22:57 -08001852 continue;
Nicolas Pitreff457152006-05-15 13:47:16 -04001853
Junio C Hamano77639872007-09-01 23:53:47 -07001854 /*
1855 * Move the best delta base up in the window, after the
1856 * currently deltified object, to keep it longer. It will
1857 * be the first base object to be attempted next.
1858 */
1859 if (entry->delta) {
1860 struct unpacked swap = array[best_base];
1861 int dist = (window + idx - best_base) % window;
1862 int dst = best_base;
1863 while (dist--) {
1864 int src = (dst + 1) % window;
1865 array[dst] = array[src];
1866 dst = src;
1867 }
1868 array[dst] = swap;
1869 }
1870
Nicolas Pitre898b14c2007-04-16 12:29:16 -04001871 next:
Linus Torvalds521a4f42005-06-26 13:43:41 -07001872 idx++;
Brian Downinga97773c2007-07-12 08:07:46 -05001873 if (count + 1 < window)
1874 count++;
Linus Torvalds521a4f42005-06-26 13:43:41 -07001875 if (idx >= window)
1876 idx = 0;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001877 }
Sergey Vlasovadee7bd2005-08-08 22:46:58 +04001878
Nicolas Pitref6c70812006-04-26 23:58:00 -04001879 for (i = 0; i < window; ++i) {
Nicolas Pitreff457152006-05-15 13:47:16 -04001880 free_delta_index(array[i].index);
Sergey Vlasovadee7bd2005-08-08 22:46:58 +04001881 free(array[i].data);
Nicolas Pitref6c70812006-04-26 23:58:00 -04001882 }
Sergey Vlasovadee7bd2005-08-08 22:46:58 +04001883 free(array);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07001884}
1885
Dan McGee7eb151d2010-01-29 19:22:19 -06001886#ifndef NO_PTHREADS
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001887
Nicolas Pitrea9a74632010-03-24 16:22:34 -04001888static void try_to_free_from_threads(size_t size)
1889{
1890 read_lock();
Brandon Casey7c3ecb32013-07-31 12:51:37 -07001891 release_pack_memory(size);
Nicolas Pitrea9a74632010-03-24 16:22:34 -04001892 read_unlock();
1893}
1894
Jonathan Niederbc9b2172010-11-06 06:47:57 -05001895static try_to_free_t old_try_to_free_routine;
Johannes Sixt851c34b2010-05-08 17:13:49 +02001896
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001897/*
1898 * The main thread waits on the condition that (at least) one of the workers
1899 * has stopped working (which is indicated in the .working member of
1900 * struct thread_params).
1901 * When a work thread has completed its work, it sets .working to 0 and
1902 * signals the main thread and waits on the condition that .data_ready
1903 * becomes 1.
1904 */
1905
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001906struct thread_params {
1907 pthread_t thread;
1908 struct object_entry **list;
1909 unsigned list_size;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001910 unsigned remaining;
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001911 int window;
1912 int depth;
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001913 int working;
1914 int data_ready;
1915 pthread_mutex_t mutex;
1916 pthread_cond_t cond;
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001917 unsigned *processed;
1918};
1919
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001920static pthread_cond_t progress_cond;
1921
1922/*
1923 * Mutex and conditional variable can't be statically-initialized on Windows.
1924 */
1925static void init_threaded_search(void)
1926{
Johannes Sixt93749192010-04-08 09:15:39 +02001927 init_recursive_mutex(&read_mutex);
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001928 pthread_mutex_init(&cache_mutex, NULL);
1929 pthread_mutex_init(&progress_mutex, NULL);
1930 pthread_cond_init(&progress_cond, NULL);
Johannes Sixt851c34b2010-05-08 17:13:49 +02001931 old_try_to_free_routine = set_try_to_free_routine(try_to_free_from_threads);
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001932}
1933
1934static void cleanup_threaded_search(void)
1935{
Johannes Sixt851c34b2010-05-08 17:13:49 +02001936 set_try_to_free_routine(old_try_to_free_routine);
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001937 pthread_cond_destroy(&progress_cond);
1938 pthread_mutex_destroy(&read_mutex);
1939 pthread_mutex_destroy(&cache_mutex);
1940 pthread_mutex_destroy(&progress_mutex);
1941}
Nicolas Pitrec2a33672007-09-10 00:06:09 -04001942
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001943static void *threaded_find_deltas(void *arg)
1944{
Nicolas Pitrec2a33672007-09-10 00:06:09 -04001945 struct thread_params *me = arg;
1946
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001947 while (me->remaining) {
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001948 find_deltas(me->list, &me->remaining,
Nicolas Pitrec2a33672007-09-10 00:06:09 -04001949 me->window, me->depth, me->processed);
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001950
1951 progress_lock();
1952 me->working = 0;
1953 pthread_cond_signal(&progress_cond);
1954 progress_unlock();
1955
1956 /*
1957 * We must not set ->data_ready before we wait on the
1958 * condition because the main thread may have set it to 1
1959 * before we get here. In order to be sure that new
1960 * work is available if we see 1 in ->data_ready, it
1961 * was initialized to 0 before this thread was spawned
1962 * and we reset it to 0 right away.
1963 */
1964 pthread_mutex_lock(&me->mutex);
1965 while (!me->data_ready)
1966 pthread_cond_wait(&me->cond, &me->mutex);
1967 me->data_ready = 0;
1968 pthread_mutex_unlock(&me->mutex);
Nicolas Pitrec2a33672007-09-10 00:06:09 -04001969 }
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001970 /* leave ->working 1 so that this doesn't get more work assigned */
1971 return NULL;
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001972}
1973
Nicolas Pitre8ecce682007-09-06 02:13:11 -04001974static void ll_find_deltas(struct object_entry **list, unsigned list_size,
1975 int window, int depth, unsigned *processed)
1976{
Junio C Hamanodcda3612009-09-01 02:18:52 -07001977 struct thread_params *p;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001978 int i, ret, active_threads = 0;
Nicolas Pitrec2a33672007-09-10 00:06:09 -04001979
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001980 init_threaded_search();
1981
Nicolas Pitre367f4a42007-09-10 00:06:11 -04001982 if (delta_search_threads <= 1) {
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001983 find_deltas(list, &list_size, window, depth, processed);
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01001984 cleanup_threaded_search();
Nicolas Pitre367f4a42007-09-10 00:06:11 -04001985 return;
1986 }
Nicolas Pitre43cc2b42008-12-11 15:36:47 -05001987 if (progress > pack_to_stdout)
Dan McGeeb6c29912009-04-09 10:45:39 -05001988 fprintf(stderr, "Delta compression using up to %d threads.\n",
Nicolas Pitre43cc2b42008-12-11 15:36:47 -05001989 delta_search_threads);
Junio C Hamanodcda3612009-09-01 02:18:52 -07001990 p = xcalloc(delta_search_threads, sizeof(*p));
Nicolas Pitre367f4a42007-09-10 00:06:11 -04001991
Johannes Sixt50f22ad2007-12-16 20:45:34 +01001992 /* Partition the work amongst work threads. */
Nicolas Pitre384b32c2007-12-08 00:03:17 -05001993 for (i = 0; i < delta_search_threads; i++) {
1994 unsigned sub_size = list_size / (delta_search_threads - i);
Nicolas Pitre59921b42007-09-10 00:06:10 -04001995
Nicolas Pitrebf874892008-12-13 15:06:40 -05001996 /* don't use too small segments or no deltas will be found */
1997 if (sub_size < 2*window && i+1 < delta_search_threads)
1998 sub_size = 0;
1999
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002000 p[i].window = window;
2001 p[i].depth = depth;
2002 p[i].processed = processed;
2003 p[i].working = 1;
2004 p[i].data_ready = 0;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002005
2006 /* try to split chunks on "path" boundaries */
Nicolas Pitre6fc74702008-01-21 11:07:15 -05002007 while (sub_size && sub_size < list_size &&
2008 list[sub_size]->hash &&
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002009 list[sub_size]->hash == list[sub_size-1]->hash)
2010 sub_size++;
2011
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002012 p[i].list = list;
2013 p[i].list_size = sub_size;
2014 p[i].remaining = sub_size;
Nicolas Pitrec2a33672007-09-10 00:06:09 -04002015
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002016 list += sub_size;
2017 list_size -= sub_size;
2018 }
2019
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002020 /* Start work threads. */
2021 for (i = 0; i < delta_search_threads; i++) {
2022 if (!p[i].list_size)
2023 continue;
Johannes Sixt68e6a4f2007-12-17 20:12:52 +01002024 pthread_mutex_init(&p[i].mutex, NULL);
2025 pthread_cond_init(&p[i].cond, NULL);
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002026 ret = pthread_create(&p[i].thread, NULL,
2027 threaded_find_deltas, &p[i]);
2028 if (ret)
2029 die("unable to create thread: %s", strerror(ret));
2030 active_threads++;
2031 }
2032
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002033 /*
2034 * Now let's wait for work completion. Each time a thread is done
2035 * with its work, we steal half of the remaining work from the
2036 * thread with the largest number of unprocessed objects and give
2037 * it to that newly idle thread. This ensure good load balancing
2038 * until the remaining object list segments are simply too short
2039 * to be worth splitting anymore.
2040 */
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002041 while (active_threads) {
2042 struct thread_params *target = NULL;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002043 struct thread_params *victim = NULL;
2044 unsigned sub_size = 0;
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002045
2046 progress_lock();
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002047 for (;;) {
2048 for (i = 0; !target && i < delta_search_threads; i++)
2049 if (!p[i].working)
2050 target = &p[i];
2051 if (target)
2052 break;
2053 pthread_cond_wait(&progress_cond, &progress_mutex);
2054 }
2055
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002056 for (i = 0; i < delta_search_threads; i++)
2057 if (p[i].remaining > 2*window &&
2058 (!victim || victim->remaining < p[i].remaining))
2059 victim = &p[i];
2060 if (victim) {
2061 sub_size = victim->remaining / 2;
2062 list = victim->list + victim->list_size - sub_size;
2063 while (sub_size && list[0]->hash &&
2064 list[0]->hash == list[-1]->hash) {
2065 list++;
2066 sub_size--;
2067 }
Nicolas Pitreeb9688f2007-12-10 14:19:32 -05002068 if (!sub_size) {
2069 /*
2070 * It is possible for some "paths" to have
2071 * so many objects that no hash boundary
2072 * might be found. Let's just steal the
2073 * exact half in that case.
2074 */
2075 sub_size = victim->remaining / 2;
2076 list -= sub_size;
2077 }
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002078 target->list = list;
2079 victim->list_size -= sub_size;
2080 victim->remaining -= sub_size;
Nicolas Pitrec2a33672007-09-10 00:06:09 -04002081 }
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002082 target->list_size = sub_size;
2083 target->remaining = sub_size;
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002084 target->working = 1;
2085 progress_unlock();
2086
2087 pthread_mutex_lock(&target->mutex);
2088 target->data_ready = 1;
2089 pthread_cond_signal(&target->cond);
2090 pthread_mutex_unlock(&target->mutex);
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002091
2092 if (!sub_size) {
2093 pthread_join(target->thread, NULL);
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002094 pthread_cond_destroy(&target->cond);
2095 pthread_mutex_destroy(&target->mutex);
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002096 active_threads--;
2097 }
Johannes Sixt50f22ad2007-12-16 20:45:34 +01002098 }
Andrzej K. Haczewski44626dc2010-01-15 21:12:20 +01002099 cleanup_threaded_search();
Junio C Hamanodcda3612009-09-01 02:18:52 -07002100 free(p);
Nicolas Pitre8ecce682007-09-06 02:13:11 -04002101}
2102
2103#else
Nicolas Pitre384b32c2007-12-08 00:03:17 -05002104#define ll_find_deltas(l, s, w, d, p) find_deltas(l, &s, w, d, p)
Nicolas Pitre8ecce682007-09-06 02:13:11 -04002105#endif
2106
Michael Haggertyd1552542015-05-25 18:38:38 +00002107static int add_ref_tag(const char *path, const struct object_id *oid, int flag, void *cb_data)
Shawn O. Pearcef0a24aa2008-03-03 22:27:20 -05002108{
Michael Haggertyd1552542015-05-25 18:38:38 +00002109 struct object_id peeled;
Shawn O. Pearcef0a24aa2008-03-03 22:27:20 -05002110
Christian Couder59556542013-11-30 21:55:40 +01002111 if (starts_with(path, "refs/tags/") && /* is a tag? */
Michael Haggertyd1552542015-05-25 18:38:38 +00002112 !peel_ref(path, peeled.hash) && /* peelable? */
2113 packlist_find(&to_pack, peeled.hash, NULL)) /* object packed? */
2114 add_object_entry(oid->hash, OBJ_TAG, NULL, 0);
Shawn O. Pearcef0a24aa2008-03-03 22:27:20 -05002115 return 0;
2116}
2117
Junio C Hamanof3123c42005-10-22 01:28:13 -07002118static void prepare_pack(int window, int depth)
2119{
Nicolas Pitre9668cf52007-04-16 12:29:54 -04002120 struct object_entry **delta_list;
Ramsay Jones6e1c2342008-07-03 16:52:09 +01002121 uint32_t i, nr_deltas;
2122 unsigned n;
Nicolas Pitre9668cf52007-04-16 12:29:54 -04002123
Junio C Hamano3f9ac8d2006-02-15 17:34:29 -08002124 get_object_details();
Nicolas Pitre9668cf52007-04-16 12:29:54 -04002125
Nicolas Pitre0e8189e2008-10-31 11:31:08 -04002126 /*
2127 * If we're locally repacking then we need to be doubly careful
2128 * from now on in order to make sure no stealth corruption gets
2129 * propagated to the new pack. Clients receiving streamed packs
2130 * should validate everything they get anyway so no need to incur
2131 * the additional cost here in that case.
2132 */
2133 if (!pack_to_stdout)
2134 do_check_packed_object_crc = 1;
2135
Vicent Marti2834bc22013-10-24 14:01:06 -04002136 if (!to_pack.nr_objects || !window || !depth)
Nicolas Pitre9668cf52007-04-16 12:29:54 -04002137 return;
2138
Jeff Kingb32fa952016-02-22 17:44:25 -05002139 ALLOC_ARRAY(delta_list, to_pack.nr_objects);
Nicolas Pitre75d39852007-09-06 02:13:08 -04002140 nr_deltas = n = 0;
2141
Vicent Marti2834bc22013-10-24 14:01:06 -04002142 for (i = 0; i < to_pack.nr_objects; i++) {
2143 struct object_entry *entry = to_pack.objects + i;
Nicolas Pitre75d39852007-09-06 02:13:08 -04002144
2145 if (entry->delta)
2146 /* This happens if we decided to reuse existing
Nicolas Pitrea7de7132008-05-02 15:11:46 -04002147 * delta from a pack. "reuse_delta &&" is implied.
Nicolas Pitre75d39852007-09-06 02:13:08 -04002148 */
2149 continue;
2150
2151 if (entry->size < 50)
2152 continue;
2153
2154 if (entry->no_try_delta)
2155 continue;
2156
Shawn O. Pearce6d6f9cd2008-08-12 11:31:06 -07002157 if (!entry->preferred_base) {
Nicolas Pitre75d39852007-09-06 02:13:08 -04002158 nr_deltas++;
Shawn O. Pearce6d6f9cd2008-08-12 11:31:06 -07002159 if (entry->type < 0)
2160 die("unable to get type of object %s",
2161 sha1_to_hex(entry->idx.sha1));
Nicolas Pitreeede9f42008-09-02 10:22:21 -04002162 } else {
2163 if (entry->type < 0) {
2164 /*
2165 * This object is not found, but we
2166 * don't have to include it anyway.
2167 */
2168 continue;
2169 }
Shawn O. Pearce6d6f9cd2008-08-12 11:31:06 -07002170 }
Nicolas Pitre75d39852007-09-06 02:13:08 -04002171
2172 delta_list[n++] = entry;
2173 }
2174
Nicolas Pitre2f8b8942007-10-16 21:55:47 -04002175 if (nr_deltas && n > 1) {
Nicolas Pitree3349772007-09-06 02:13:10 -04002176 unsigned nr_done = 0;
2177 if (progress)
Nguyễn Thái Ngọc Duy754dbc42014-02-21 19:50:18 +07002178 progress_state = start_progress(_("Compressing objects"),
Nicolas Pitredc6a0752007-10-30 14:57:32 -04002179 nr_deltas);
Nicolas Pitre75d39852007-09-06 02:13:08 -04002180 qsort(delta_list, n, sizeof(*delta_list), type_size_sort);
Nicolas Pitre8ecce682007-09-06 02:13:11 -04002181 ll_find_deltas(delta_list, n, window+1, depth, &nr_done);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -04002182 stop_progress(&progress_state);
Nicolas Pitree3349772007-09-06 02:13:10 -04002183 if (nr_done != nr_deltas)
2184 die("inconsistency with delta count");
Nicolas Pitre75d39852007-09-06 02:13:08 -04002185 }
Nicolas Pitre9668cf52007-04-16 12:29:54 -04002186 free(delta_list);
Junio C Hamanof3123c42005-10-22 01:28:13 -07002187}
2188
Johannes Schindelinef90d6d2008-05-14 18:46:53 +01002189static int git_pack_config(const char *k, const char *v, void *cb)
Jeff King4812a932006-07-23 01:50:30 -04002190{
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -04002191 if (!strcmp(k, "pack.window")) {
Jeff King4812a932006-07-23 01:50:30 -04002192 window = git_config_int(k, v);
2193 return 0;
2194 }
Brian Downinga97773c2007-07-12 08:07:46 -05002195 if (!strcmp(k, "pack.windowmemory")) {
2196 window_memory_limit = git_config_ulong(k, v);
2197 return 0;
2198 }
2199 if (!strcmp(k, "pack.depth")) {
Theodore Ts'o842aaf92007-05-08 09:28:26 -04002200 depth = git_config_int(k, v);
2201 return 0;
2202 }
Dana How960ccca2007-05-09 13:56:50 -07002203 if (!strcmp(k, "pack.compression")) {
2204 int level = git_config_int(k, v);
2205 if (level == -1)
2206 level = Z_DEFAULT_COMPRESSION;
2207 else if (level < 0 || level > Z_BEST_COMPRESSION)
2208 die("bad pack compression level %d", level);
2209 pack_compression_level = level;
2210 pack_compression_seen = 1;
2211 return 0;
2212 }
Martin Koegler074b2ee2007-05-28 23:20:58 +02002213 if (!strcmp(k, "pack.deltacachesize")) {
2214 max_delta_cache_size = git_config_int(k, v);
2215 return 0;
2216 }
Martin Koeglere3dfddb2007-05-28 23:20:59 +02002217 if (!strcmp(k, "pack.deltacachelimit")) {
2218 cache_max_small_delta_size = git_config_int(k, v);
2219 return 0;
2220 }
Vicent Martiae4f07f2013-12-21 09:00:45 -05002221 if (!strcmp(k, "pack.writebitmaphashcache")) {
2222 if (git_config_bool(k, v))
2223 write_bitmap_options |= BITMAP_OPT_HASH_CACHE;
2224 else
2225 write_bitmap_options &= ~BITMAP_OPT_HASH_CACHE;
2226 }
Vicent Marti6b8fda22013-12-21 09:00:09 -05002227 if (!strcmp(k, "pack.usebitmaps")) {
2228 use_bitmap_index = git_config_bool(k, v);
2229 return 0;
2230 }
Nicolas Pitre693b86f2007-09-10 11:51:34 -04002231 if (!strcmp(k, "pack.threads")) {
2232 delta_search_threads = git_config_int(k, v);
Andreas Ericsson833e3df2008-02-22 20:11:56 -06002233 if (delta_search_threads < 0)
Nicolas Pitre693b86f2007-09-10 11:51:34 -04002234 die("invalid number of threads specified (%d)",
2235 delta_search_threads);
Dan McGee7eb151d2010-01-29 19:22:19 -06002236#ifdef NO_PTHREADS
Andreas Ericsson833e3df2008-02-22 20:11:56 -06002237 if (delta_search_threads != 1)
Nicolas Pitre693b86f2007-09-10 11:51:34 -04002238 warning("no threads support, ignoring %s", k);
2239#endif
2240 return 0;
2241 }
Nicolas Pitre4d00bda2007-11-01 23:26:04 -04002242 if (!strcmp(k, "pack.indexversion")) {
Junio C Hamanoebcfb372011-02-25 15:43:25 -08002243 pack_idx_opts.version = git_config_int(k, v);
2244 if (pack_idx_opts.version > 2)
Ramsay Jones6e1c2342008-07-03 16:52:09 +01002245 die("bad pack.indexversion=%"PRIu32,
Junio C Hamanoebcfb372011-02-25 15:43:25 -08002246 pack_idx_opts.version);
Nicolas Pitre4d00bda2007-11-01 23:26:04 -04002247 return 0;
2248 }
Johannes Schindelinef90d6d2008-05-14 18:46:53 +01002249 return git_default_config(k, v, cb);
Jeff King4812a932006-07-23 01:50:30 -04002250}
2251
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002252static void read_object_list_from_stdin(void)
Linus Torvaldsc323ac72005-06-25 14:42:43 -07002253{
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002254 char line[40 + 1 + PATH_MAX + 2];
2255 unsigned char sha1[20];
Nicolas Pitreb2504a02006-02-22 16:00:08 -05002256
Linus Torvaldsda93d122006-04-02 13:31:54 -07002257 for (;;) {
Linus Torvaldsda93d122006-04-02 13:31:54 -07002258 if (!fgets(line, sizeof(line), stdin)) {
2259 if (feof(stdin))
2260 break;
2261 if (!ferror(stdin))
2262 die("fgets returned NULL, not EOF, not error!");
Junio C Hamano687dd752006-04-03 23:41:09 -07002263 if (errno != EINTR)
Thomas Rastd824cbb2009-06-27 17:58:46 +02002264 die_errno("fgets");
Junio C Hamano687dd752006-04-03 23:41:09 -07002265 clearerr(stdin);
2266 continue;
Linus Torvaldsda93d122006-04-02 13:31:54 -07002267 }
Junio C Hamano7a979d92006-02-19 14:47:21 -08002268 if (line[0] == '-') {
2269 if (get_sha1_hex(line+1, sha1))
2270 die("expected edge sha1, got garbage:\n %s",
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002271 line);
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002272 add_preferred_base(sha1);
Junio C Hamano7a979d92006-02-19 14:47:21 -08002273 continue;
Junio C Hamano21fcd1b2006-02-11 17:54:18 -08002274 }
Linus Torvaldsc323ac72005-06-25 14:42:43 -07002275 if (get_sha1_hex(line, sha1))
Linus Torvaldsef076182005-11-21 12:38:31 -08002276 die("expected sha1, got garbage:\n %s", line);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002277
Junio C Hamanobc32fed2007-05-19 00:19:23 -07002278 add_preferred_base_object(line+41);
2279 add_object_entry(sha1, 0, line+41, 0);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07002280 }
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002281}
2282
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002283#define OBJECT_ADDED (1u<<20)
2284
Christian Couder11c211f2009-04-06 21:28:36 +02002285static void show_commit(struct commit *commit, void *data)
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002286{
brian m. carlsoned1c9972015-11-10 02:22:29 +00002287 add_object_entry(commit->object.oid.hash, OBJ_COMMIT, NULL, 0);
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002288 commit->object.flags |= OBJECT_ADDED;
Vicent Marti7cc8f972013-12-21 09:00:16 -05002289
2290 if (write_bitmap_index)
2291 index_commit_for_bitmap(commit);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002292}
2293
Jeff Kingde1e67d2016-02-11 17:28:36 -05002294static void show_object(struct object *obj, const char *name, void *data)
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002295{
Linus Torvalds8d2dfc42009-04-10 17:27:58 -07002296 add_preferred_base_object(name);
brian m. carlsoned1c9972015-11-10 02:22:29 +00002297 add_object_entry(obj->oid.hash, obj->type, name, 0);
Linus Torvalds8d2dfc42009-04-10 17:27:58 -07002298 obj->flags |= OBJECT_ADDED;
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002299}
2300
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002301static void show_edge(struct commit *commit)
2302{
brian m. carlsoned1c9972015-11-10 02:22:29 +00002303 add_preferred_base(commit->object.oid.hash);
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002304}
2305
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002306struct in_pack_object {
2307 off_t offset;
2308 struct object *object;
2309};
2310
2311struct in_pack {
2312 int alloc;
2313 int nr;
2314 struct in_pack_object *array;
2315};
2316
2317static void mark_in_pack_object(struct object *object, struct packed_git *p, struct in_pack *in_pack)
2318{
brian m. carlsoned1c9972015-11-10 02:22:29 +00002319 in_pack->array[in_pack->nr].offset = find_pack_entry_one(object->oid.hash, p);
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002320 in_pack->array[in_pack->nr].object = object;
2321 in_pack->nr++;
2322}
2323
2324/*
2325 * Compare the objects in the offset order, in order to emulate the
Heikki Orsilaf18d2442008-09-13 20:18:36 +03002326 * "git rev-list --objects" output that produced the pack originally.
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002327 */
2328static int ofscmp(const void *a_, const void *b_)
2329{
2330 struct in_pack_object *a = (struct in_pack_object *)a_;
2331 struct in_pack_object *b = (struct in_pack_object *)b_;
2332
2333 if (a->offset < b->offset)
2334 return -1;
2335 else if (a->offset > b->offset)
2336 return 1;
2337 else
brian m. carlsonf2fd0762015-11-10 02:22:28 +00002338 return oidcmp(&a->object->oid, &b->object->oid);
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002339}
2340
2341static void add_objects_in_unpacked_packs(struct rev_info *revs)
2342{
2343 struct packed_git *p;
2344 struct in_pack in_pack;
2345 uint32_t i;
2346
2347 memset(&in_pack, 0, sizeof(in_pack));
2348
2349 for (p = packed_git; p; p = p->next) {
2350 const unsigned char *sha1;
2351 struct object *o;
2352
Brandon Casey79bc4c72009-03-19 22:47:52 -05002353 if (!p->pack_local || p->pack_keep)
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002354 continue;
2355 if (open_pack_index(p))
2356 die("cannot open pack index");
2357
2358 ALLOC_GROW(in_pack.array,
2359 in_pack.nr + p->num_objects,
2360 in_pack.alloc);
2361
2362 for (i = 0; i < p->num_objects; i++) {
2363 sha1 = nth_packed_object_sha1(p, i);
2364 o = lookup_unknown_object(sha1);
2365 if (!(o->flags & OBJECT_ADDED))
2366 mark_in_pack_object(o, p, &in_pack);
2367 o->flags |= OBJECT_ADDED;
2368 }
2369 }
2370
2371 if (in_pack.nr) {
2372 qsort(in_pack.array, in_pack.nr, sizeof(in_pack.array[0]),
2373 ofscmp);
2374 for (i = 0; i < in_pack.nr; i++) {
2375 struct object *o = in_pack.array[i].object;
brian m. carlsoned1c9972015-11-10 02:22:29 +00002376 add_object_entry(o->oid.hash, o->type, "", 0);
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002377 }
2378 }
2379 free(in_pack.array);
2380}
2381
Brandon Casey094085e2009-03-21 17:26:11 -05002382static int has_sha1_pack_kept_or_nonlocal(const unsigned char *sha1)
2383{
2384 static struct packed_git *last_found = (void *)1;
2385 struct packed_git *p;
2386
2387 p = (last_found != (void *)1) ? last_found : packed_git;
2388
2389 while (p) {
2390 if ((!p->pack_local || p->pack_keep) &&
2391 find_pack_entry_one(sha1, p)) {
2392 last_found = p;
2393 return 1;
2394 }
2395 if (p == last_found)
2396 p = packed_git;
2397 else
2398 p = p->next;
2399 if (p == last_found)
2400 p = p->next;
2401 }
2402 return 0;
2403}
2404
Jeff Kingabcb8652014-10-15 18:42:09 -04002405/*
2406 * Store a list of sha1s that are should not be discarded
2407 * because they are either written too recently, or are
2408 * reachable from another object that was.
2409 *
2410 * This is filled by get_object_list.
2411 */
2412static struct sha1_array recent_objects;
2413
Jeff Kingd0d46ab2014-10-15 18:41:53 -04002414static int loosened_object_can_be_discarded(const unsigned char *sha1,
2415 unsigned long mtime)
2416{
2417 if (!unpack_unreachable_expiration)
2418 return 0;
2419 if (mtime > unpack_unreachable_expiration)
2420 return 0;
Jeff Kingabcb8652014-10-15 18:42:09 -04002421 if (sha1_array_lookup(&recent_objects, sha1) >= 0)
2422 return 0;
Jeff Kingd0d46ab2014-10-15 18:41:53 -04002423 return 1;
2424}
2425
Nicolas Pitreca11b212008-05-14 01:33:53 -04002426static void loosen_unused_packed_objects(struct rev_info *revs)
2427{
2428 struct packed_git *p;
2429 uint32_t i;
2430 const unsigned char *sha1;
2431
2432 for (p = packed_git; p; p = p->next) {
Brandon Casey79bc4c72009-03-19 22:47:52 -05002433 if (!p->pack_local || p->pack_keep)
Nicolas Pitreca11b212008-05-14 01:33:53 -04002434 continue;
2435
2436 if (open_pack_index(p))
2437 die("cannot open pack index");
2438
2439 for (i = 0; i < p->num_objects; i++) {
2440 sha1 = nth_packed_object_sha1(p, i);
Vicent Marti2834bc22013-10-24 14:01:06 -04002441 if (!packlist_find(&to_pack, sha1, NULL) &&
Jeff Kingd0d46ab2014-10-15 18:41:53 -04002442 !has_sha1_pack_kept_or_nonlocal(sha1) &&
2443 !loosened_object_can_be_discarded(sha1, p->mtime))
Nicolas Pitreca11b212008-05-14 01:33:53 -04002444 if (force_object_loose(sha1, p->mtime))
2445 die("unable to force loose object");
2446 }
2447 }
2448}
2449
Jeff King69e4b342014-04-02 02:39:17 -04002450/*
2451 * This tracks any options which a reader of the pack might
2452 * not understand, and which would therefore prevent blind reuse
2453 * of what we have on disk.
2454 */
2455static int pack_options_allow_reuse(void)
2456{
2457 return allow_ofs_delta;
2458}
2459
Vicent Marti6b8fda22013-12-21 09:00:09 -05002460static int get_object_list_from_bitmap(struct rev_info *revs)
2461{
2462 if (prepare_bitmap_walk(revs) < 0)
2463 return -1;
2464
Jeff King69e4b342014-04-02 02:39:17 -04002465 if (pack_options_allow_reuse() &&
2466 !reuse_partial_packfile_from_bitmap(
Vicent Marti6b8fda22013-12-21 09:00:09 -05002467 &reuse_packfile,
2468 &reuse_packfile_objects,
2469 &reuse_packfile_offset)) {
2470 assert(reuse_packfile_objects);
2471 nr_result += reuse_packfile_objects;
Jeff King78d22142014-03-14 22:26:58 -04002472 display_progress(progress_state, nr_result);
Vicent Marti6b8fda22013-12-21 09:00:09 -05002473 }
2474
2475 traverse_bitmap_commit_list(&add_object_entry_from_bitmap);
2476 return 0;
2477}
2478
Jeff Kingabcb8652014-10-15 18:42:09 -04002479static void record_recent_object(struct object *obj,
Jeff Kingde1e67d2016-02-11 17:28:36 -05002480 const char *name,
Jeff Kingabcb8652014-10-15 18:42:09 -04002481 void *data)
2482{
brian m. carlsoned1c9972015-11-10 02:22:29 +00002483 sha1_array_append(&recent_objects, obj->oid.hash);
Jeff Kingabcb8652014-10-15 18:42:09 -04002484}
2485
2486static void record_recent_commit(struct commit *commit, void *data)
2487{
brian m. carlsoned1c9972015-11-10 02:22:29 +00002488 sha1_array_append(&recent_objects, commit->object.oid.hash);
Jeff Kingabcb8652014-10-15 18:42:09 -04002489}
2490
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002491static void get_object_list(int ac, const char **av)
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002492{
2493 struct rev_info revs;
2494 char line[1000];
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002495 int flags = 0;
2496
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002497 init_revisions(&revs, NULL);
2498 save_commit_buffer = 0;
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002499 setup_revisions(ac, av, &revs, NULL);
2500
Nguyễn Thái Ngọc Duyb790e0f2014-03-11 19:59:46 +07002501 /* make sure shallows are read */
2502 is_repository_shallow();
2503
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002504 while (fgets(line, sizeof(line), stdin) != NULL) {
2505 int len = strlen(line);
Jim Meyering872c9302008-01-04 18:37:41 +01002506 if (len && line[len - 1] == '\n')
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002507 line[--len] = 0;
2508 if (!len)
2509 break;
2510 if (*line == '-') {
2511 if (!strcmp(line, "--not")) {
2512 flags ^= UNINTERESTING;
Vicent Marti7cc8f972013-12-21 09:00:16 -05002513 write_bitmap_index = 0;
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002514 continue;
2515 }
Nguyễn Thái Ngọc Duyb790e0f2014-03-11 19:59:46 +07002516 if (starts_with(line, "--shallow ")) {
2517 unsigned char sha1[20];
2518 if (get_sha1_hex(line + 10, sha1))
2519 die("not an SHA-1 '%s'", line + 10);
2520 register_shallow(sha1);
Jeff Kingf7f91082014-08-12 00:34:53 -04002521 use_bitmap_index = 0;
Nguyễn Thái Ngọc Duyb790e0f2014-03-11 19:59:46 +07002522 continue;
2523 }
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002524 die("not a rev '%s'", line);
2525 }
Junio C Hamano8e676e82012-07-02 12:33:52 -07002526 if (handle_revision_arg(line, &revs, flags, REVARG_CANNOT_BE_FILENAME))
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002527 die("bad revision '%s'", line);
2528 }
2529
Vicent Marti6b8fda22013-12-21 09:00:09 -05002530 if (use_bitmap_index && !get_object_list_from_bitmap(&revs))
2531 return;
2532
Martin Koegler3d51e1b2008-02-18 08:31:56 +01002533 if (prepare_revision_walk(&revs))
2534 die("revision walk setup failed");
Nguyễn Thái Ngọc Duye76a5fb2013-08-16 16:52:06 +07002535 mark_edges_uninteresting(&revs, show_edge);
Christian Couder11c211f2009-04-06 21:28:36 +02002536 traverse_commit_list(&revs, show_commit, show_object, NULL);
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002537
Jeff Kingabcb8652014-10-15 18:42:09 -04002538 if (unpack_unreachable_expiration) {
2539 revs.ignore_missing_links = 1;
2540 if (add_unseen_recent_objects_to_traversal(&revs,
2541 unpack_unreachable_expiration))
2542 die("unable to add recent objects");
2543 if (prepare_revision_walk(&revs))
2544 die("revision walk setup failed");
2545 traverse_commit_list(&revs, record_recent_commit,
2546 record_recent_object, NULL);
2547 }
2548
Junio C Hamano08cdfb12007-09-16 23:20:07 -07002549 if (keep_unreachable)
2550 add_objects_in_unpacked_packs(&revs);
Nicolas Pitreca11b212008-05-14 01:33:53 -04002551 if (unpack_unreachable)
2552 loosen_unused_packed_objects(&revs);
Jeff Kingabcb8652014-10-15 18:42:09 -04002553
2554 sha1_array_clear(&recent_objects);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002555}
2556
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002557static int option_parse_index_version(const struct option *opt,
2558 const char *arg, int unset)
2559{
2560 char *c;
2561 const char *val = arg;
2562 pack_idx_opts.version = strtoul(val, &c, 10);
2563 if (pack_idx_opts.version > 2)
2564 die(_("unsupported index version %s"), val);
2565 if (*c == ',' && c[1])
2566 pack_idx_opts.off32_limit = strtoul(c+1, &c, 0);
2567 if (*c || pack_idx_opts.off32_limit & 0x80000000)
2568 die(_("bad index version '%s'"), val);
2569 return 0;
2570}
2571
Jeff King7e52f562012-04-07 06:30:09 -04002572static int option_parse_unpack_unreachable(const struct option *opt,
2573 const char *arg, int unset)
2574{
2575 if (unset) {
2576 unpack_unreachable = 0;
2577 unpack_unreachable_expiration = 0;
2578 }
2579 else {
2580 unpack_unreachable = 1;
2581 if (arg)
2582 unpack_unreachable_expiration = approxidate(arg);
2583 }
2584 return 0;
2585}
2586
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002587int cmd_pack_objects(int argc, const char **argv, const char *prefix)
2588{
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002589 int use_internal_rev_list = 0;
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002590 int thin = 0;
brian m. carlson2dacf262014-12-24 23:05:40 +00002591 int shallow = 0;
Nicolas Pitre4f366272009-11-23 12:43:50 -05002592 int all_progress_implied = 0;
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002593 struct argv_array rp = ARGV_ARRAY_INIT;
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002594 int rev_list_unpacked = 0, rev_list_all = 0, rev_list_reflog = 0;
Jeff Kingc90f9e12014-10-16 20:44:49 -04002595 int rev_list_index = 0;
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002596 struct option pack_objects_options[] = {
2597 OPT_SET_INT('q', "quiet", &progress,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002598 N_("do not show progress meter"), 0),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002599 OPT_SET_INT(0, "progress", &progress,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002600 N_("show progress meter"), 1),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002601 OPT_SET_INT(0, "all-progress", &progress,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002602 N_("show progress meter during object writing phase"), 2),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002603 OPT_BOOL(0, "all-progress-implied",
2604 &all_progress_implied,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002605 N_("similar to --all-progress when progress meter is shown")),
2606 { OPTION_CALLBACK, 0, "index-version", NULL, N_("version[,offset]"),
2607 N_("write the pack index file in the specified idx format version"),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002608 0, option_parse_index_version },
Charles Bailey2a514ed2015-06-21 19:25:44 +01002609 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit,
2610 N_("maximum size of each output pack file")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002611 OPT_BOOL(0, "local", &local,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002612 N_("ignore borrowed objects from alternate object store")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002613 OPT_BOOL(0, "incremental", &incremental,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002614 N_("ignore packed objects")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002615 OPT_INTEGER(0, "window", &window,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002616 N_("limit pack window by objects")),
Charles Bailey2a514ed2015-06-21 19:25:44 +01002617 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit,
2618 N_("limit pack window by memory in addition to object limit")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002619 OPT_INTEGER(0, "depth", &depth,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002620 N_("maximum length of delta chain allowed in the resulting pack")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002621 OPT_BOOL(0, "reuse-delta", &reuse_delta,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002622 N_("reuse existing deltas")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002623 OPT_BOOL(0, "reuse-object", &reuse_object,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002624 N_("reuse existing objects")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002625 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002626 N_("use OFS_DELTA objects")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002627 OPT_INTEGER(0, "threads", &delta_search_threads,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002628 N_("use threads when searching for best delta matches")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002629 OPT_BOOL(0, "non-empty", &non_empty,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002630 N_("do not create an empty pack output")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002631 OPT_BOOL(0, "revs", &use_internal_rev_list,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002632 N_("read revision arguments from standard input")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002633 { OPTION_SET_INT, 0, "unpacked", &rev_list_unpacked, NULL,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002634 N_("limit the objects to those that are not yet packed"),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002635 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1 },
2636 { OPTION_SET_INT, 0, "all", &rev_list_all, NULL,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002637 N_("include objects reachable from any reference"),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002638 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1 },
2639 { OPTION_SET_INT, 0, "reflog", &rev_list_reflog, NULL,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002640 N_("include objects referred by reflog entries"),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002641 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1 },
Jeff Kingc90f9e12014-10-16 20:44:49 -04002642 { OPTION_SET_INT, 0, "indexed-objects", &rev_list_index, NULL,
2643 N_("include objects referred to by the index"),
2644 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1 },
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002645 OPT_BOOL(0, "stdout", &pack_to_stdout,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002646 N_("output pack to stdout")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002647 OPT_BOOL(0, "include-tag", &include_tag,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002648 N_("include tag objects that refer to objects to be packed")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002649 OPT_BOOL(0, "keep-unreachable", &keep_unreachable,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002650 N_("keep unreachable objects")),
2651 { OPTION_CALLBACK, 0, "unpack-unreachable", NULL, N_("time"),
2652 N_("unpack unreachable objects newer than <time>"),
Jeff King7e52f562012-04-07 06:30:09 -04002653 PARSE_OPT_OPTARG, option_parse_unpack_unreachable },
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002654 OPT_BOOL(0, "thin", &thin,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002655 N_("create thin packs")),
brian m. carlson2dacf262014-12-24 23:05:40 +00002656 OPT_BOOL(0, "shallow", &shallow,
2657 N_("create packs suitable for shallow fetches")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002658 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002659 N_("ignore packs that have companion .keep file")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002660 OPT_INTEGER(0, "compression", &pack_compression_level,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002661 N_("pack compression level")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002662 OPT_SET_INT(0, "keep-true-parents", &grafts_replace_parents,
Nguyễn Thái Ngọc Duy4c688122012-08-20 19:32:29 +07002663 N_("do not hide commits by grafts"), 0),
Vicent Marti6b8fda22013-12-21 09:00:09 -05002664 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index,
2665 N_("use a bitmap index if available to speed up counting objects")),
Vicent Marti7cc8f972013-12-21 09:00:16 -05002666 OPT_BOOL(0, "write-bitmap-index", &write_bitmap_index,
2667 N_("write a bitmap index together with the pack index")),
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002668 OPT_END(),
2669 };
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002670
Michael Haggertyafc711b2014-02-18 12:24:55 +01002671 check_replace_refs = 0;
Christian Couderdae556b2009-01-23 10:07:46 +01002672
Junio C Hamanoebcfb372011-02-25 15:43:25 -08002673 reset_pack_idx_option(&pack_idx_opts);
Johannes Schindelinef90d6d2008-05-14 18:46:53 +01002674 git_config(git_pack_config, NULL);
Dana How960ccca2007-05-09 13:56:50 -07002675 if (!pack_compression_seen && core_compression_seen)
2676 pack_compression_level = core_compression_level;
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002677
2678 progress = isatty(2);
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002679 argc = parse_options(argc, argv, prefix, pack_objects_options,
2680 pack_usage, 0);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002681
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002682 if (argc) {
2683 base_name = argv[0];
2684 argc--;
2685 }
2686 if (pack_to_stdout != !base_name || argc)
2687 usage_with_options(pack_usage, pack_objects_options);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002688
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002689 argv_array_push(&rp, "pack-objects");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002690 if (thin) {
2691 use_internal_rev_list = 1;
brian m. carlson2dacf262014-12-24 23:05:40 +00002692 argv_array_push(&rp, shallow
2693 ? "--objects-edge-aggressive"
2694 : "--objects-edge");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002695 } else
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002696 argv_array_push(&rp, "--objects");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002697
2698 if (rev_list_all) {
2699 use_internal_rev_list = 1;
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002700 argv_array_push(&rp, "--all");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002701 }
2702 if (rev_list_reflog) {
2703 use_internal_rev_list = 1;
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002704 argv_array_push(&rp, "--reflog");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002705 }
Jeff Kingc90f9e12014-10-16 20:44:49 -04002706 if (rev_list_index) {
2707 use_internal_rev_list = 1;
2708 argv_array_push(&rp, "--indexed-objects");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002709 }
2710 if (rev_list_unpacked) {
2711 use_internal_rev_list = 1;
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002712 argv_array_push(&rp, "--unpacked");
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002713 }
2714
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002715 if (!reuse_object)
2716 reuse_delta = 0;
2717 if (pack_compression_level == -1)
2718 pack_compression_level = Z_DEFAULT_COMPRESSION;
2719 else if (pack_compression_level < 0 || pack_compression_level > Z_BEST_COMPRESSION)
2720 die("bad pack compression level %d", pack_compression_level);
Junio C Hamano0c45d252014-10-13 12:46:14 -07002721
2722 if (!delta_search_threads) /* --threads=0 means autodetect */
2723 delta_search_threads = online_cpus();
2724
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002725#ifdef NO_PTHREADS
2726 if (delta_search_threads != 1)
Michał Kiedrowicz2b34e482012-02-25 09:16:09 +01002727 warning("no threads support, ignoring --threads");
Nguyễn Thái Ngọc Duy99fb6e02012-02-01 22:17:20 +07002728#endif
Johannes Schindelin2b84b5a2008-02-05 14:25:04 +00002729 if (!pack_to_stdout && !pack_size_limit)
2730 pack_size_limit = pack_size_limit_cfg;
Dana How01c12a22007-05-23 10:11:33 -07002731 if (pack_to_stdout && pack_size_limit)
2732 die("--max-pack-size cannot be used to build a pack for transfer.");
Nicolas Pitre07cf0f22010-02-03 22:48:28 -05002733 if (pack_size_limit && pack_size_limit < 1024*1024) {
2734 warning("minimum pack size limit is 1 MiB");
2735 pack_size_limit = 1024*1024;
2736 }
Dana How01c12a22007-05-23 10:11:33 -07002737
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002738 if (!pack_to_stdout && thin)
2739 die("--thin cannot be used to build an indexable pack.");
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002740
Nicolas Pitreca11b212008-05-14 01:33:53 -04002741 if (keep_unreachable && unpack_unreachable)
2742 die("--keep-unreachable and --unpack-unreachable are incompatible.");
Jeff Kingb1e757f2014-10-16 20:44:54 -04002743 if (!rev_list_all || !rev_list_reflog || !rev_list_index)
2744 unpack_unreachable_expiration = 0;
Nicolas Pitreca11b212008-05-14 01:33:53 -04002745
Vicent Marti6b8fda22013-12-21 09:00:09 -05002746 if (!use_internal_rev_list || !pack_to_stdout || is_repository_shallow())
2747 use_bitmap_index = 0;
2748
Vicent Marti7cc8f972013-12-21 09:00:16 -05002749 if (pack_to_stdout || !rev_list_all)
2750 write_bitmap_index = 0;
2751
Nicolas Pitre4f366272009-11-23 12:43:50 -05002752 if (progress && all_progress_implied)
2753 progress = 2;
2754
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002755 prepare_packed_git();
2756
Nicolas Pitre13aaf142007-04-20 14:10:07 -04002757 if (progress)
Nguyễn Thái Ngọc Duy754dbc42014-02-21 19:50:18 +07002758 progress_state = start_progress(_("Counting objects"), 0);
Junio C Hamanob5d97e62006-09-04 23:47:39 -07002759 if (!use_internal_rev_list)
2760 read_object_list_from_stdin();
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002761 else {
Jeff Kingedfbb2a2014-10-16 20:44:35 -04002762 get_object_list(rp.argc, rp.argv);
2763 argv_array_clear(&rp);
Junio C Hamano8d1d8f82006-09-06 01:42:23 -07002764 }
Nicolas Pitre0ef95f72009-09-03 21:54:03 -04002765 cleanup_preferred_base();
Michael Haggertyd1552542015-05-25 18:38:38 +00002766 if (include_tag && nr_result)
2767 for_each_ref(add_ref_tag, NULL);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -04002768 stop_progress(&progress_state);
Nicolas Pitre96a02f82007-04-18 14:27:45 -04002769
Junio C Hamanof0b0af12006-02-24 21:55:23 -08002770 if (non_empty && !nr_result)
Linus Torvalds1c4a2912005-07-03 13:36:58 -07002771 return 0;
Nicolas Pitref7ae6a92007-04-16 12:30:15 -04002772 if (nr_result)
2773 prepare_pack(window, depth);
Dana L. Howd01fb922007-05-13 11:34:56 -07002774 write_pack_file();
Junio C Hamanoab7cd7b2006-02-16 11:55:51 -08002775 if (progress)
Ramsay Jones6e1c2342008-07-03 16:52:09 +01002776 fprintf(stderr, "Total %"PRIu32" (delta %"PRIu32"),"
2777 " reused %"PRIu32" (delta %"PRIu32")\n",
Nicolas Pitre67c08ce2006-11-29 17:15:48 -05002778 written, written_delta, reused, reused_delta);
Linus Torvaldsc323ac72005-06-25 14:42:43 -07002779 return 0;
2780}