]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/pack-redundant.c
Merge branch 'en/ort-perf-batch-9'
[thirdparty/git.git] / builtin / pack-redundant.c
CommitLineData
c283ab21
LS
1/*
2*
3* Copyright 2005, Lukas Sandstrom <lukass@etek.chalmers.se>
4*
5* This file is licensed under the GPL v2.
6*
7*/
8
c2e86add 9#include "builtin.h"
a80d72db 10#include "repository.h"
4f39cd82 11#include "packfile.h"
a80d72db 12#include "object-store.h"
c283ab21 13
6d016c9c
LS
14#define BLKSIZE 512
15
9bc0f32c 16static const char pack_redundant_usage[] =
9c9b4f2f 17"git pack-redundant [--verbose] [--alt-odb] (--all | <filename.pack>...)";
c283ab21 18
96f1e58f 19static int load_all_packs, verbose, alt_odb;
c283ab21
LS
20
21struct llist_item {
22 struct llist_item *next;
6390fe20 23 const struct object_id *oid;
c283ab21 24};
bd22c904 25static struct llist {
c283ab21
LS
26 struct llist_item *front;
27 struct llist_item *back;
28 size_t size;
1c3039e8 29} *all_objects; /* all objects which must be present in local packfiles */
c283ab21 30
bd22c904 31static struct pack_list {
c283ab21
LS
32 struct pack_list *next;
33 struct packed_git *pack;
34 struct llist *unique_objects;
4bc0cc12 35 struct llist *remaining_objects;
0e37abd2 36 size_t all_objects_size;
1c3039e8 37} *local_packs = NULL, *altodb_packs = NULL;
c283ab21 38
96f1e58f 39static struct llist_item *free_nodes;
60435f68 40
6d016c9c
LS
41static inline void llist_item_put(struct llist_item *item)
42{
43 item->next = free_nodes;
44 free_nodes = item;
45}
46
962554c6 47static inline struct llist_item *llist_item_get(void)
60435f68 48{
b2e4bafb 49 struct llist_item *new_item;
60435f68 50 if ( free_nodes ) {
b2e4bafb 51 new_item = free_nodes;
60435f68 52 free_nodes = free_nodes->next;
6d016c9c
LS
53 } else {
54 int i = 1;
b2e4bafb 55 ALLOC_ARRAY(new_item, BLKSIZE);
eeefa7c9 56 for (; i < BLKSIZE; i++)
b2e4bafb 57 llist_item_put(&new_item[i]);
6d016c9c 58 }
b2e4bafb 59 return new_item;
60435f68
AR
60}
61
bd22c904 62static inline void llist_init(struct llist **list)
c283ab21
LS
63{
64 *list = xmalloc(sizeof(struct llist));
65 (*list)->front = (*list)->back = NULL;
66 (*list)->size = 0;
67}
68
bd22c904 69static struct llist * llist_copy(struct llist *list)
c283ab21
LS
70{
71 struct llist *ret;
b2e4bafb 72 struct llist_item *new_item, *old_item, *prev;
a6080a0a 73
c283ab21
LS
74 llist_init(&ret);
75
76 if ((ret->size = list->size) == 0)
77 return ret;
78
b2e4bafb 79 new_item = ret->front = llist_item_get();
6390fe20 80 new_item->oid = list->front->oid;
c283ab21 81
b2e4bafb
BW
82 old_item = list->front->next;
83 while (old_item) {
84 prev = new_item;
85 new_item = llist_item_get();
86 prev->next = new_item;
6390fe20 87 new_item->oid = old_item->oid;
b2e4bafb 88 old_item = old_item->next;
c283ab21 89 }
b2e4bafb
BW
90 new_item->next = NULL;
91 ret->back = new_item;
a6080a0a 92
c283ab21
LS
93 return ret;
94}
95
42873078
NP
96static inline struct llist_item *llist_insert(struct llist *list,
97 struct llist_item *after,
6390fe20 98 const struct object_id *oid)
c283ab21 99{
b2e4bafb 100 struct llist_item *new_item = llist_item_get();
6390fe20 101 new_item->oid = oid;
b2e4bafb 102 new_item->next = NULL;
c283ab21
LS
103
104 if (after != NULL) {
b2e4bafb
BW
105 new_item->next = after->next;
106 after->next = new_item;
c283ab21 107 if (after == list->back)
b2e4bafb 108 list->back = new_item;
c283ab21
LS
109 } else {/* insert in front */
110 if (list->size == 0)
b2e4bafb 111 list->back = new_item;
c283ab21 112 else
b2e4bafb
BW
113 new_item->next = list->front;
114 list->front = new_item;
c283ab21
LS
115 }
116 list->size++;
b2e4bafb 117 return new_item;
c283ab21
LS
118}
119
42873078 120static inline struct llist_item *llist_insert_back(struct llist *list,
6390fe20 121 const struct object_id *oid)
c283ab21 122{
6390fe20 123 return llist_insert(list, list->back, oid);
c283ab21
LS
124}
125
42873078 126static inline struct llist_item *llist_insert_sorted_unique(struct llist *list,
6390fe20 127 const struct object_id *oid, struct llist_item *hint)
c283ab21
LS
128{
129 struct llist_item *prev = NULL, *l;
130
131 l = (hint == NULL) ? list->front : hint;
132 while (l) {
6390fe20 133 int cmp = oidcmp(l->oid, oid);
c283ab21 134 if (cmp > 0) { /* we insert before this entry */
6390fe20 135 return llist_insert(list, prev, oid);
c283ab21 136 }
eeefa7c9 137 if (!cmp) { /* already exists */
c283ab21
LS
138 return l;
139 }
140 prev = l;
141 l = l->next;
142 }
143 /* insert at the end */
6390fe20 144 return llist_insert_back(list, oid);
c283ab21
LS
145}
146
c283ab21 147/* returns a pointer to an item in front of sha1 */
6390fe20 148static inline struct llist_item * llist_sorted_remove(struct llist *list, const struct object_id *oid, struct llist_item *hint)
c283ab21
LS
149{
150 struct llist_item *prev, *l;
151
152redo_from_start:
153 l = (hint == NULL) ? list->front : hint;
154 prev = NULL;
155 while (l) {
33de80b1 156 const int cmp = oidcmp(l->oid, oid);
c283ab21
LS
157 if (cmp > 0) /* not in list, since sorted */
158 return prev;
eeefa7c9 159 if (!cmp) { /* found */
c283ab21
LS
160 if (prev == NULL) {
161 if (hint != NULL && hint != list->front) {
162 /* we don't know the previous element */
163 hint = NULL;
164 goto redo_from_start;
165 }
166 list->front = l->next;
167 } else
168 prev->next = l->next;
169 if (l == list->back)
170 list->back = prev;
60435f68 171 llist_item_put(l);
c283ab21
LS
172 list->size--;
173 return prev;
174 }
175 prev = l;
176 l = l->next;
177 }
178 return prev;
179}
180
1a41e743 181/* computes A\B */
bd22c904 182static void llist_sorted_difference_inplace(struct llist *A,
1a41e743
LS
183 struct llist *B)
184{
185 struct llist_item *hint, *b;
186
187 hint = NULL;
188 b = B->front;
189
190 while (b) {
6390fe20 191 hint = llist_sorted_remove(A, b->oid, hint);
1a41e743
LS
192 b = b->next;
193 }
194}
195
bd22c904 196static inline struct pack_list * pack_list_insert(struct pack_list **pl,
c283ab21
LS
197 struct pack_list *entry)
198{
199 struct pack_list *p = xmalloc(sizeof(struct pack_list));
200 memcpy(p, entry, sizeof(struct pack_list));
201 p->next = *pl;
202 *pl = p;
203 return p;
204}
205
bd22c904 206static inline size_t pack_list_size(struct pack_list *pl)
1c3039e8
LS
207{
208 size_t ret = 0;
eeefa7c9 209 while (pl) {
1c3039e8
LS
210 ret++;
211 pl = pl->next;
212 }
213 return ret;
214}
215
d1ab1577
AR
216static struct pack_list * pack_list_difference(const struct pack_list *A,
217 const struct pack_list *B)
c283ab21 218{
d1ab1577
AR
219 struct pack_list *ret;
220 const struct pack_list *pl;
c283ab21
LS
221
222 if (A == NULL)
223 return NULL;
224
225 pl = B;
226 while (pl != NULL) {
227 if (A->pack == pl->pack)
228 return pack_list_difference(A->next, B);
229 pl = pl->next;
230 }
231 ret = xmalloc(sizeof(struct pack_list));
232 memcpy(ret, A, sizeof(struct pack_list));
233 ret->next = pack_list_difference(A->next, B);
234 return ret;
235}
236
bd22c904 237static void cmp_two_packs(struct pack_list *p1, struct pack_list *p2)
c283ab21 238{
a9bc372e 239 size_t p1_off = 0, p2_off = 0, p1_step, p2_step;
42873078 240 const unsigned char *p1_base, *p2_base;
c283ab21 241 struct llist_item *p1_hint = NULL, *p2_hint = NULL;
00de6063 242 const unsigned int hashsz = the_hash_algo->rawsz;
1d7f171c 243
30111776 244 if (!p1->unique_objects)
4bc0cc12 245 p1->unique_objects = llist_copy(p1->remaining_objects);
30111776 246 if (!p2->unique_objects)
4bc0cc12 247 p2->unique_objects = llist_copy(p2->remaining_objects);
30111776 248
42873078
NP
249 p1_base = p1->pack->index_data;
250 p2_base = p2->pack->index_data;
8c681e07
NP
251 p1_base += 256 * 4 + ((p1->pack->index_version < 2) ? 4 : 8);
252 p2_base += 256 * 4 + ((p2->pack->index_version < 2) ? 4 : 8);
00de6063 253 p1_step = hashsz + ((p1->pack->index_version < 2) ? 4 : 0);
254 p2_step = hashsz + ((p2->pack->index_version < 2) ? 4 : 0);
c283ab21 255
8c681e07
NP
256 while (p1_off < p1->pack->num_objects * p1_step &&
257 p2_off < p2->pack->num_objects * p2_step)
c283ab21 258 {
33de80b1 259 const int cmp = hashcmp(p1_base + p1_off, p2_base + p2_off);
c283ab21
LS
260 /* cmp ~ p1 - p2 */
261 if (cmp == 0) {
262 p1_hint = llist_sorted_remove(p1->unique_objects,
6390fe20 263 (const struct object_id *)(p1_base + p1_off),
264 p1_hint);
c283ab21 265 p2_hint = llist_sorted_remove(p2->unique_objects,
6390fe20 266 (const struct object_id *)(p1_base + p1_off),
267 p2_hint);
8c681e07
NP
268 p1_off += p1_step;
269 p2_off += p2_step;
c283ab21
LS
270 continue;
271 }
272 if (cmp < 0) { /* p1 has the object, p2 doesn't */
8c681e07 273 p1_off += p1_step;
c283ab21 274 } else { /* p2 has the object, p1 doesn't */
8c681e07 275 p2_off += p2_step;
c283ab21
LS
276 }
277 }
278}
279
bd22c904 280static size_t sizeof_union(struct packed_git *p1, struct packed_git *p2)
c283ab21
LS
281{
282 size_t ret = 0;
a9bc372e 283 size_t p1_off = 0, p2_off = 0, p1_step, p2_step;
42873078 284 const unsigned char *p1_base, *p2_base;
00de6063 285 const unsigned int hashsz = the_hash_algo->rawsz;
c283ab21 286
42873078
NP
287 p1_base = p1->index_data;
288 p2_base = p2->index_data;
8c681e07
NP
289 p1_base += 256 * 4 + ((p1->index_version < 2) ? 4 : 8);
290 p2_base += 256 * 4 + ((p2->index_version < 2) ? 4 : 8);
00de6063 291 p1_step = hashsz + ((p1->index_version < 2) ? 4 : 0);
292 p2_step = hashsz + ((p2->index_version < 2) ? 4 : 0);
c283ab21 293
8c681e07
NP
294 while (p1_off < p1->num_objects * p1_step &&
295 p2_off < p2->num_objects * p2_step)
c283ab21 296 {
a89fccd2 297 int cmp = hashcmp(p1_base + p1_off, p2_base + p2_off);
c283ab21
LS
298 /* cmp ~ p1 - p2 */
299 if (cmp == 0) {
300 ret++;
8c681e07
NP
301 p1_off += p1_step;
302 p2_off += p2_step;
c283ab21
LS
303 continue;
304 }
305 if (cmp < 0) { /* p1 has the object, p2 doesn't */
8c681e07 306 p1_off += p1_step;
c283ab21 307 } else { /* p2 has the object, p1 doesn't */
8c681e07 308 p2_off += p2_step;
c283ab21
LS
309 }
310 }
311 return ret;
312}
313
314/* another O(n^2) function ... */
bd22c904 315static size_t get_pack_redundancy(struct pack_list *pl)
c283ab21
LS
316{
317 struct pack_list *subset;
bd22c904 318 size_t ret = 0;
1c3039e8
LS
319
320 if (pl == NULL)
321 return 0;
322
c283ab21 323 while ((subset = pl->next)) {
eeefa7c9 324 while (subset) {
c283ab21
LS
325 ret += sizeof_union(pl->pack, subset->pack);
326 subset = subset->next;
327 }
328 pl = pl->next;
329 }
330 return ret;
331}
332
c4001d92 333static inline off_t pack_set_bytecount(struct pack_list *pl)
c283ab21 334{
c4001d92 335 off_t ret = 0;
c283ab21
LS
336 while (pl) {
337 ret += pl->pack->pack_size;
338 ret += pl->pack->index_size;
339 pl = pl->next;
340 }
341 return ret;
342}
343
0e37abd2 344static int cmp_remaining_objects(const void *a, const void *b)
3084a01e
SC
345{
346 struct pack_list *pl_a = *((struct pack_list **)a);
347 struct pack_list *pl_b = *((struct pack_list **)b);
3084a01e 348
0e37abd2
JX
349 if (pl_a->remaining_objects->size == pl_b->remaining_objects->size) {
350 /* have the same remaining_objects, big pack first */
351 if (pl_a->all_objects_size == pl_b->all_objects_size)
352 return 0;
353 else if (pl_a->all_objects_size < pl_b->all_objects_size)
354 return 1;
355 else
356 return -1;
357 } else if (pl_a->remaining_objects->size < pl_b->remaining_objects->size) {
358 /* sort by remaining objects, more objects first */
3084a01e 359 return 1;
0e37abd2 360 } else {
3084a01e 361 return -1;
0e37abd2 362 }
3084a01e
SC
363}
364
4bc0cc12 365/* Sort pack_list, greater size of remaining_objects first */
3084a01e
SC
366static void sort_pack_list(struct pack_list **pl)
367{
368 struct pack_list **ary, *p;
369 int i;
370 size_t n = pack_list_size(*pl);
371
372 if (n < 2)
373 return;
374
375 /* prepare an array of packed_list for easier sorting */
ca56dadb 376 CALLOC_ARRAY(ary, n);
3084a01e
SC
377 for (n = 0, p = *pl; p; p = p->next)
378 ary[n++] = p;
379
0e37abd2 380 QSORT(ary, n, cmp_remaining_objects);
3084a01e
SC
381
382 /* link them back again */
383 for (i = 0; i < n - 1; i++)
384 ary[i]->next = ary[i + 1];
385 ary[n - 1]->next = NULL;
386 *pl = ary[0];
387
388 free(ary);
389}
390
391
bd22c904 392static void minimize(struct pack_list **min)
c283ab21 393{
3084a01e
SC
394 struct pack_list *pl, *unique = NULL, *non_unique = NULL;
395 struct llist *missing, *unique_pack_objects;
c283ab21 396
1c3039e8 397 pl = local_packs;
c283ab21 398 while (pl) {
eeefa7c9 399 if (pl->unique_objects->size)
c283ab21
LS
400 pack_list_insert(&unique, pl);
401 else
402 pack_list_insert(&non_unique, pl);
403 pl = pl->next;
404 }
405 /* find out which objects are missing from the set of unique packs */
406 missing = llist_copy(all_objects);
407 pl = unique;
408 while (pl) {
4bc0cc12 409 llist_sorted_difference_inplace(missing, pl->remaining_objects);
c283ab21
LS
410 pl = pl->next;
411 }
412
3084a01e
SC
413 *min = unique;
414
1c3039e8 415 /* return if there are no objects missing from the unique set */
c283ab21 416 if (missing->size == 0) {
077a34e0 417 free(missing);
c283ab21
LS
418 return;
419 }
420
3084a01e
SC
421 unique_pack_objects = llist_copy(all_objects);
422 llist_sorted_difference_inplace(unique_pack_objects, missing);
423
424 /* remove unique pack objects from the non_unique packs */
425 pl = non_unique;
eeefa7c9 426 while (pl) {
4bc0cc12 427 llist_sorted_difference_inplace(pl->remaining_objects, unique_pack_objects);
c283ab21
LS
428 pl = pl->next;
429 }
3084a01e
SC
430
431 while (non_unique) {
4bc0cc12 432 /* sort the non_unique packs, greater size of remaining_objects first */
3084a01e 433 sort_pack_list(&non_unique);
4bc0cc12 434 if (non_unique->remaining_objects->size == 0)
3084a01e
SC
435 break;
436
437 pack_list_insert(min, non_unique);
438
4bc0cc12
JX
439 for (pl = non_unique->next; pl && pl->remaining_objects->size > 0; pl = pl->next)
440 llist_sorted_difference_inplace(pl->remaining_objects, non_unique->remaining_objects);
3084a01e
SC
441
442 non_unique = non_unique->next;
443 }
c283ab21
LS
444}
445
bd22c904 446static void load_all_objects(void)
c283ab21 447{
1c3039e8 448 struct pack_list *pl = local_packs;
c283ab21 449 struct llist_item *hint, *l;
c283ab21
LS
450
451 llist_init(&all_objects);
452
453 while (pl) {
c283ab21 454 hint = NULL;
4bc0cc12 455 l = pl->remaining_objects->front;
c283ab21
LS
456 while (l) {
457 hint = llist_insert_sorted_unique(all_objects,
6390fe20 458 l->oid, hint);
c283ab21
LS
459 l = l->next;
460 }
461 pl = pl->next;
462 }
1c3039e8
LS
463 /* remove objects present in remote packs */
464 pl = altodb_packs;
465 while (pl) {
4bc0cc12 466 llist_sorted_difference_inplace(all_objects, pl->remaining_objects);
1c3039e8
LS
467 pl = pl->next;
468 }
c283ab21
LS
469}
470
471/* this scales like O(n^2) */
bd22c904 472static void cmp_local_packs(void)
c283ab21 473{
1c3039e8 474 struct pack_list *subset, *pl = local_packs;
c283ab21 475
06962323
JX
476 /* only one packfile */
477 if (!pl->next) {
478 llist_init(&pl->unique_objects);
479 return;
480 }
481
1c3039e8 482 while ((subset = pl)) {
eeefa7c9 483 while ((subset = subset->next))
1c3039e8
LS
484 cmp_two_packs(pl, subset);
485 pl = pl->next;
486 }
06a45c8c 487}
1c3039e8 488
bd22c904 489static void scan_alt_odb_packs(void)
06a45c8c
LS
490{
491 struct pack_list *local, *alt;
492
493 alt = altodb_packs;
494 while (alt) {
495 local = local_packs;
496 while (local) {
4bc0cc12
JX
497 llist_sorted_difference_inplace(local->remaining_objects,
498 alt->remaining_objects);
06a45c8c 499 local = local->next;
1c3039e8 500 }
06a45c8c 501 alt = alt->next;
c283ab21
LS
502 }
503}
504
bd22c904 505static struct pack_list * add_pack(struct packed_git *p)
c283ab21
LS
506{
507 struct pack_list l;
a9bc372e 508 size_t off = 0, step;
42873078 509 const unsigned char *base;
c283ab21 510
06a45c8c
LS
511 if (!p->pack_local && !(alt_odb || verbose))
512 return NULL;
513
c283ab21 514 l.pack = p;
4bc0cc12 515 llist_init(&l.remaining_objects);
c283ab21 516
eaa86770 517 if (open_pack_index(p))
d079837e
SP
518 return NULL;
519
42873078 520 base = p->index_data;
8c681e07 521 base += 256 * 4 + ((p->index_version < 2) ? 4 : 8);
00de6063 522 step = the_hash_algo->rawsz + ((p->index_version < 2) ? 4 : 0);
8c681e07 523 while (off < p->num_objects * step) {
4bc0cc12 524 llist_insert_back(l.remaining_objects, (const struct object_id *)(base + off));
8c681e07 525 off += step;
c283ab21 526 }
0e37abd2 527 l.all_objects_size = l.remaining_objects->size;
30111776 528 l.unique_objects = NULL;
1c3039e8
LS
529 if (p->pack_local)
530 return pack_list_insert(&local_packs, &l);
531 else
06a45c8c 532 return pack_list_insert(&altodb_packs, &l);
c283ab21
LS
533}
534
377d0276 535static struct pack_list * add_pack_file(const char *filename)
c283ab21 536{
454ea2e4 537 struct packed_git *p = get_all_packs(the_repository);
c283ab21
LS
538
539 if (strlen(filename) < 40)
d7530708 540 die("Bad pack filename: %s", filename);
c283ab21
LS
541
542 while (p) {
543 if (strstr(p->pack_name, filename))
c283ab21
LS
544 return add_pack(p);
545 p = p->next;
546 }
d7530708 547 die("Filename %s not found in packed_git", filename);
c283ab21
LS
548}
549
bd22c904 550static void load_all(void)
c283ab21 551{
454ea2e4 552 struct packed_git *p = get_all_packs(the_repository);
c283ab21
LS
553
554 while (p) {
1c3039e8 555 add_pack(p);
c283ab21
LS
556 p = p->next;
557 }
558}
559
377d0276 560int cmd_pack_redundant(int argc, const char **argv, const char *prefix)
c283ab21
LS
561{
562 int i;
c3b58472 563 int i_still_use_this = 0;
3084a01e 564 struct pack_list *min = NULL, *red, *pl;
bb931cf9 565 struct llist *ignore;
6390fe20 566 struct object_id *oid;
567 char buf[GIT_MAX_HEXSZ + 2]; /* hex hash + \n + \0 */
c283ab21 568
99caeed0
JN
569 if (argc == 2 && !strcmp(argv[1], "-h"))
570 usage(pack_redundant_usage);
571
c283ab21
LS
572 for (i = 1; i < argc; i++) {
573 const char *arg = argv[i];
eeefa7c9 574 if (!strcmp(arg, "--")) {
9bc0f32c 575 i++;
c283ab21 576 break;
9bc0f32c 577 }
eeefa7c9 578 if (!strcmp(arg, "--all")) {
1c3039e8 579 load_all_packs = 1;
c283ab21
LS
580 continue;
581 }
eeefa7c9 582 if (!strcmp(arg, "--verbose")) {
c283ab21
LS
583 verbose = 1;
584 continue;
585 }
eeefa7c9 586 if (!strcmp(arg, "--alt-odb")) {
1c3039e8
LS
587 alt_odb = 1;
588 continue;
589 }
c3b58472
JH
590 if (!strcmp(arg, "--i-still-use-this")) {
591 i_still_use_this = 1;
592 continue;
593 }
eeefa7c9 594 if (*arg == '-')
9bc0f32c 595 usage(pack_redundant_usage);
c283ab21
LS
596 else
597 break;
598 }
599
c3b58472
JH
600 if (!i_still_use_this) {
601 fputs(_("'git pack-redundant' is nominated for removal.\n"
602 "If you still use this command, please add an extra\n"
603 "option, '--i-still-use-this', on the command line\n"
604 "and let us know you still use it by sending an e-mail\n"
605 "to <git@vger.kernel.org>. Thanks.\n"), stderr);
606 }
607
1c3039e8 608 if (load_all_packs)
c283ab21
LS
609 load_all();
610 else
611 while (*(argv + i) != NULL)
612 add_pack_file(*(argv + i++));
613
1c3039e8 614 if (local_packs == NULL)
d7530708 615 die("Zero packs found!");
c283ab21 616
c283ab21
LS
617 load_all_objects();
618
06a45c8c
LS
619 if (alt_odb)
620 scan_alt_odb_packs();
621
bb931cf9
LS
622 /* ignore objects given on stdin */
623 llist_init(&ignore);
624 if (!isatty(0)) {
625 while (fgets(buf, sizeof(buf), stdin)) {
6390fe20 626 oid = xmalloc(sizeof(*oid));
627 if (get_oid_hex(buf, oid))
628 die("Bad object ID on stdin: %s", buf);
629 llist_insert_sorted_unique(ignore, oid, NULL);
bb931cf9
LS
630 }
631 }
632 llist_sorted_difference_inplace(all_objects, ignore);
633 pl = local_packs;
634 while (pl) {
4bc0cc12 635 llist_sorted_difference_inplace(pl->remaining_objects, ignore);
bb931cf9
LS
636 pl = pl->next;
637 }
638
30111776
JX
639 cmp_local_packs();
640
c283ab21 641 minimize(&min);
06a45c8c 642
c283ab21 643 if (verbose) {
abacbe41
KR
644 fprintf(stderr, "There are %lu packs available in alt-odbs.\n",
645 (unsigned long)pack_list_size(altodb_packs));
c283ab21
LS
646 fprintf(stderr, "The smallest (bytewise) set of packs is:\n");
647 pl = min;
648 while (pl) {
649 fprintf(stderr, "\t%s\n", pl->pack->pack_name);
650 pl = pl->next;
651 }
abacbe41
KR
652 fprintf(stderr, "containing %lu duplicate objects "
653 "with a total size of %lukb.\n",
654 (unsigned long)get_pack_redundancy(min),
655 (unsigned long)pack_set_bytecount(min)/1024);
656 fprintf(stderr, "A total of %lu unique objects were considered.\n",
657 (unsigned long)all_objects->size);
c283ab21
LS
658 fprintf(stderr, "Redundant packs (with indexes):\n");
659 }
1c3039e8 660 pl = red = pack_list_difference(local_packs, min);
c283ab21
LS
661 while (pl) {
662 printf("%s\n%s\n",
538b1523 663 sha1_pack_index_name(pl->pack->hash),
1c3039e8 664 pl->pack->pack_name);
c283ab21
LS
665 pl = pl->next;
666 }
bb931cf9 667 if (verbose)
b99a394c
JH
668 fprintf(stderr, "%luMB of redundant packs in total.\n",
669 (unsigned long)pack_set_bytecount(red)/(1024*1024));
c283ab21
LS
670
671 return 0;
672}