3 * Copyright 2005, Lukas Sandstrom <lukass@etek.chalmers.se>
5 * This file is licensed under the GPL v2.
12 #include "repository.h"
14 #include "object-store-ll.h"
18 static const char pack_redundant_usage
[] =
19 "git pack-redundant [--verbose] [--alt-odb] (--all | <pack-filename>...)";
21 static int load_all_packs
, verbose
, alt_odb
;
24 struct llist_item
*next
;
28 struct llist_item
*front
;
29 struct llist_item
*back
;
31 } *all_objects
; /* all objects which must be present in local packfiles */
33 static struct pack_list
{
34 struct pack_list
*next
;
35 struct packed_git
*pack
;
36 struct llist
*unique_objects
;
37 struct llist
*remaining_objects
;
38 size_t all_objects_size
;
39 } *local_packs
= NULL
, *altodb_packs
= NULL
;
41 static struct llist_item
*free_nodes
;
43 static inline void llist_item_put(struct llist_item
*item
)
45 item
->next
= free_nodes
;
49 static inline struct llist_item
*llist_item_get(void)
51 struct llist_item
*new_item
;
53 new_item
= free_nodes
;
54 free_nodes
= free_nodes
->next
;
57 ALLOC_ARRAY(new_item
, BLKSIZE
);
58 for (; i
< BLKSIZE
; i
++)
59 llist_item_put(&new_item
[i
]);
64 static inline void llist_init(struct llist
**list
)
66 *list
= xmalloc(sizeof(struct llist
));
67 (*list
)->front
= (*list
)->back
= NULL
;
71 static struct llist
* llist_copy(struct llist
*list
)
74 struct llist_item
*new_item
, *old_item
, *prev
;
78 if ((ret
->size
= list
->size
) == 0)
81 new_item
= ret
->front
= llist_item_get();
82 new_item
->oid
= list
->front
->oid
;
84 old_item
= list
->front
->next
;
87 new_item
= llist_item_get();
88 prev
->next
= new_item
;
89 new_item
->oid
= old_item
->oid
;
90 old_item
= old_item
->next
;
92 new_item
->next
= NULL
;
98 static inline struct llist_item
*llist_insert(struct llist
*list
,
99 struct llist_item
*after
,
100 const unsigned char *oid
)
102 struct llist_item
*new_item
= llist_item_get();
103 oidread(&new_item
->oid
, oid
);
104 new_item
->next
= NULL
;
107 new_item
->next
= after
->next
;
108 after
->next
= new_item
;
109 if (after
== list
->back
)
110 list
->back
= new_item
;
111 } else {/* insert in front */
113 list
->back
= new_item
;
115 new_item
->next
= list
->front
;
116 list
->front
= new_item
;
122 static inline struct llist_item
*llist_insert_back(struct llist
*list
,
123 const unsigned char *oid
)
125 return llist_insert(list
, list
->back
, oid
);
128 static inline struct llist_item
*llist_insert_sorted_unique(struct llist
*list
,
129 const struct object_id
*oid
, struct llist_item
*hint
)
131 struct llist_item
*prev
= NULL
, *l
;
133 l
= (hint
== NULL
) ? list
->front
: hint
;
135 int cmp
= oidcmp(&l
->oid
, oid
);
136 if (cmp
> 0) { /* we insert before this entry */
137 return llist_insert(list
, prev
, oid
->hash
);
139 if (!cmp
) { /* already exists */
145 /* insert at the end */
146 return llist_insert_back(list
, oid
->hash
);
149 /* returns a pointer to an item in front of sha1 */
150 static inline struct llist_item
* llist_sorted_remove(struct llist
*list
, const unsigned char *oid
, struct llist_item
*hint
)
152 struct llist_item
*prev
, *l
;
155 l
= (hint
== NULL
) ? list
->front
: hint
;
158 const int cmp
= hashcmp(l
->oid
.hash
, oid
);
159 if (cmp
> 0) /* not in list, since sorted */
161 if (!cmp
) { /* found */
163 if (hint
!= NULL
&& hint
!= list
->front
) {
164 /* we don't know the previous element */
166 goto redo_from_start
;
168 list
->front
= l
->next
;
170 prev
->next
= l
->next
;
184 static void llist_sorted_difference_inplace(struct llist
*A
,
187 struct llist_item
*hint
, *b
;
193 hint
= llist_sorted_remove(A
, b
->oid
.hash
, hint
);
198 static inline struct pack_list
* pack_list_insert(struct pack_list
**pl
,
199 struct pack_list
*entry
)
201 struct pack_list
*p
= xmalloc(sizeof(struct pack_list
));
202 memcpy(p
, entry
, sizeof(struct pack_list
));
208 static inline size_t pack_list_size(struct pack_list
*pl
)
218 static struct pack_list
* pack_list_difference(const struct pack_list
*A
,
219 const struct pack_list
*B
)
221 struct pack_list
*ret
;
222 const struct pack_list
*pl
;
229 if (A
->pack
== pl
->pack
)
230 return pack_list_difference(A
->next
, B
);
233 ret
= xmalloc(sizeof(struct pack_list
));
234 memcpy(ret
, A
, sizeof(struct pack_list
));
235 ret
->next
= pack_list_difference(A
->next
, B
);
239 static void cmp_two_packs(struct pack_list
*p1
, struct pack_list
*p2
)
241 size_t p1_off
= 0, p2_off
= 0, p1_step
, p2_step
;
242 const unsigned char *p1_base
, *p2_base
;
243 struct llist_item
*p1_hint
= NULL
, *p2_hint
= NULL
;
244 const unsigned int hashsz
= the_hash_algo
->rawsz
;
246 if (!p1
->unique_objects
)
247 p1
->unique_objects
= llist_copy(p1
->remaining_objects
);
248 if (!p2
->unique_objects
)
249 p2
->unique_objects
= llist_copy(p2
->remaining_objects
);
251 p1_base
= p1
->pack
->index_data
;
252 p2_base
= p2
->pack
->index_data
;
253 p1_base
+= 256 * 4 + ((p1
->pack
->index_version
< 2) ? 4 : 8);
254 p2_base
+= 256 * 4 + ((p2
->pack
->index_version
< 2) ? 4 : 8);
255 p1_step
= hashsz
+ ((p1
->pack
->index_version
< 2) ? 4 : 0);
256 p2_step
= hashsz
+ ((p2
->pack
->index_version
< 2) ? 4 : 0);
258 while (p1_off
< p1
->pack
->num_objects
* p1_step
&&
259 p2_off
< p2
->pack
->num_objects
* p2_step
)
261 const int cmp
= hashcmp(p1_base
+ p1_off
, p2_base
+ p2_off
);
264 p1_hint
= llist_sorted_remove(p1
->unique_objects
,
267 p2_hint
= llist_sorted_remove(p2
->unique_objects
,
274 if (cmp
< 0) { /* p1 has the object, p2 doesn't */
276 } else { /* p2 has the object, p1 doesn't */
282 static size_t sizeof_union(struct packed_git
*p1
, struct packed_git
*p2
)
285 size_t p1_off
= 0, p2_off
= 0, p1_step
, p2_step
;
286 const unsigned char *p1_base
, *p2_base
;
287 const unsigned int hashsz
= the_hash_algo
->rawsz
;
289 p1_base
= p1
->index_data
;
290 p2_base
= p2
->index_data
;
291 p1_base
+= 256 * 4 + ((p1
->index_version
< 2) ? 4 : 8);
292 p2_base
+= 256 * 4 + ((p2
->index_version
< 2) ? 4 : 8);
293 p1_step
= hashsz
+ ((p1
->index_version
< 2) ? 4 : 0);
294 p2_step
= hashsz
+ ((p2
->index_version
< 2) ? 4 : 0);
296 while (p1_off
< p1
->num_objects
* p1_step
&&
297 p2_off
< p2
->num_objects
* p2_step
)
299 int cmp
= hashcmp(p1_base
+ p1_off
, p2_base
+ p2_off
);
307 if (cmp
< 0) { /* p1 has the object, p2 doesn't */
309 } else { /* p2 has the object, p1 doesn't */
316 /* another O(n^2) function ... */
317 static size_t get_pack_redundancy(struct pack_list
*pl
)
319 struct pack_list
*subset
;
325 while ((subset
= pl
->next
)) {
327 ret
+= sizeof_union(pl
->pack
, subset
->pack
);
328 subset
= subset
->next
;
335 static inline off_t
pack_set_bytecount(struct pack_list
*pl
)
339 ret
+= pl
->pack
->pack_size
;
340 ret
+= pl
->pack
->index_size
;
346 static int cmp_remaining_objects(const void *a
, const void *b
)
348 struct pack_list
*pl_a
= *((struct pack_list
**)a
);
349 struct pack_list
*pl_b
= *((struct pack_list
**)b
);
351 if (pl_a
->remaining_objects
->size
== pl_b
->remaining_objects
->size
) {
352 /* have the same remaining_objects, big pack first */
353 if (pl_a
->all_objects_size
== pl_b
->all_objects_size
)
355 else if (pl_a
->all_objects_size
< pl_b
->all_objects_size
)
359 } else if (pl_a
->remaining_objects
->size
< pl_b
->remaining_objects
->size
) {
360 /* sort by remaining objects, more objects first */
367 /* Sort pack_list, greater size of remaining_objects first */
368 static void sort_pack_list(struct pack_list
**pl
)
370 struct pack_list
**ary
, *p
;
372 size_t n
= pack_list_size(*pl
);
377 /* prepare an array of packed_list for easier sorting */
378 CALLOC_ARRAY(ary
, n
);
379 for (n
= 0, p
= *pl
; p
; p
= p
->next
)
382 QSORT(ary
, n
, cmp_remaining_objects
);
384 /* link them back again */
385 for (i
= 0; i
< n
- 1; i
++)
386 ary
[i
]->next
= ary
[i
+ 1];
387 ary
[n
- 1]->next
= NULL
;
394 static void minimize(struct pack_list
**min
)
396 struct pack_list
*pl
, *unique
= NULL
, *non_unique
= NULL
;
397 struct llist
*missing
, *unique_pack_objects
;
401 if (pl
->unique_objects
->size
)
402 pack_list_insert(&unique
, pl
);
404 pack_list_insert(&non_unique
, pl
);
407 /* find out which objects are missing from the set of unique packs */
408 missing
= llist_copy(all_objects
);
411 llist_sorted_difference_inplace(missing
, pl
->remaining_objects
);
417 /* return if there are no objects missing from the unique set */
418 if (missing
->size
== 0) {
423 unique_pack_objects
= llist_copy(all_objects
);
424 llist_sorted_difference_inplace(unique_pack_objects
, missing
);
426 /* remove unique pack objects from the non_unique packs */
429 llist_sorted_difference_inplace(pl
->remaining_objects
, unique_pack_objects
);
434 /* sort the non_unique packs, greater size of remaining_objects first */
435 sort_pack_list(&non_unique
);
436 if (non_unique
->remaining_objects
->size
== 0)
439 pack_list_insert(min
, non_unique
);
441 for (pl
= non_unique
->next
; pl
&& pl
->remaining_objects
->size
> 0; pl
= pl
->next
)
442 llist_sorted_difference_inplace(pl
->remaining_objects
, non_unique
->remaining_objects
);
444 non_unique
= non_unique
->next
;
448 static void load_all_objects(void)
450 struct pack_list
*pl
= local_packs
;
451 struct llist_item
*hint
, *l
;
453 llist_init(&all_objects
);
457 l
= pl
->remaining_objects
->front
;
459 hint
= llist_insert_sorted_unique(all_objects
,
465 /* remove objects present in remote packs */
468 llist_sorted_difference_inplace(all_objects
, pl
->remaining_objects
);
473 /* this scales like O(n^2) */
474 static void cmp_local_packs(void)
476 struct pack_list
*subset
, *pl
= local_packs
;
478 /* only one packfile */
480 llist_init(&pl
->unique_objects
);
484 while ((subset
= pl
)) {
485 while ((subset
= subset
->next
))
486 cmp_two_packs(pl
, subset
);
491 static void scan_alt_odb_packs(void)
493 struct pack_list
*local
, *alt
;
499 llist_sorted_difference_inplace(local
->remaining_objects
,
500 alt
->remaining_objects
);
507 static struct pack_list
* add_pack(struct packed_git
*p
)
510 size_t off
= 0, step
;
511 const unsigned char *base
;
513 if (!p
->pack_local
&& !(alt_odb
|| verbose
))
517 llist_init(&l
.remaining_objects
);
519 if (open_pack_index(p
))
522 base
= p
->index_data
;
523 base
+= 256 * 4 + ((p
->index_version
< 2) ? 4 : 8);
524 step
= the_hash_algo
->rawsz
+ ((p
->index_version
< 2) ? 4 : 0);
525 while (off
< p
->num_objects
* step
) {
526 llist_insert_back(l
.remaining_objects
, base
+ off
);
529 l
.all_objects_size
= l
.remaining_objects
->size
;
530 l
.unique_objects
= NULL
;
532 return pack_list_insert(&local_packs
, &l
);
534 return pack_list_insert(&altodb_packs
, &l
);
537 static struct pack_list
* add_pack_file(const char *filename
)
539 struct packed_git
*p
= get_all_packs(the_repository
);
541 if (strlen(filename
) < 40)
542 die("Bad pack filename: %s", filename
);
545 if (strstr(p
->pack_name
, filename
))
549 die("Filename %s not found in packed_git", filename
);
552 static void load_all(void)
554 struct packed_git
*p
= get_all_packs(the_repository
);
562 int cmd_pack_redundant(int argc
, const char **argv
, const char *prefix UNUSED
)
565 int i_still_use_this
= 0;
566 struct pack_list
*min
= NULL
, *red
, *pl
;
567 struct llist
*ignore
;
568 struct object_id
*oid
;
569 char buf
[GIT_MAX_HEXSZ
+ 2]; /* hex hash + \n + \0 */
571 if (argc
== 2 && !strcmp(argv
[1], "-h"))
572 usage(pack_redundant_usage
);
574 for (i
= 1; i
< argc
; i
++) {
575 const char *arg
= argv
[i
];
576 if (!strcmp(arg
, "--")) {
580 if (!strcmp(arg
, "--all")) {
584 if (!strcmp(arg
, "--verbose")) {
588 if (!strcmp(arg
, "--alt-odb")) {
592 if (!strcmp(arg
, "--i-still-use-this")) {
593 i_still_use_this
= 1;
597 usage(pack_redundant_usage
);
602 if (!i_still_use_this
) {
603 fputs(_("'git pack-redundant' is nominated for removal.\n"
604 "If you still use this command, please add an extra\n"
605 "option, '--i-still-use-this', on the command line\n"
606 "and let us know you still use it by sending an e-mail\n"
607 "to <git@vger.kernel.org>. Thanks.\n"), stderr
);
608 die(_("refusing to run without --i-still-use-this"));
614 while (*(argv
+ i
) != NULL
)
615 add_pack_file(*(argv
+ i
++));
618 die("Zero packs found!");
623 scan_alt_odb_packs();
625 /* ignore objects given on stdin */
628 while (fgets(buf
, sizeof(buf
), stdin
)) {
629 oid
= xmalloc(sizeof(*oid
));
630 if (get_oid_hex(buf
, oid
))
631 die("Bad object ID on stdin: %s", buf
);
632 llist_insert_sorted_unique(ignore
, oid
, NULL
);
635 llist_sorted_difference_inplace(all_objects
, ignore
);
638 llist_sorted_difference_inplace(pl
->remaining_objects
, ignore
);
647 fprintf(stderr
, "There are %lu packs available in alt-odbs.\n",
648 (unsigned long)pack_list_size(altodb_packs
));
649 fprintf(stderr
, "The smallest (bytewise) set of packs is:\n");
652 fprintf(stderr
, "\t%s\n", pl
->pack
->pack_name
);
655 fprintf(stderr
, "containing %lu duplicate objects "
656 "with a total size of %lukb.\n",
657 (unsigned long)get_pack_redundancy(min
),
658 (unsigned long)pack_set_bytecount(min
)/1024);
659 fprintf(stderr
, "A total of %lu unique objects were considered.\n",
660 (unsigned long)all_objects
->size
);
661 fprintf(stderr
, "Redundant packs (with indexes):\n");
663 pl
= red
= pack_list_difference(local_packs
, min
);
666 sha1_pack_index_name(pl
->pack
->hash
),
667 pl
->pack
->pack_name
);
671 fprintf(stderr
, "%luMB of redundant packs in total.\n",
672 (unsigned long)pack_set_bytecount(red
)/(1024*1024));