3 * Copyright 2005, Lukas Sandstrom <lukass@etek.chalmers.se>
5 * This file is licensed under the GPL v2.
13 static const char pack_redundant_usage[] =
14 "git pack-redundant [--verbose] [--alt-odb] (--all | <filename.pack>...)";
16 static int load_all_packs, verbose, alt_odb;
19 struct llist_item *next;
20 const unsigned char *sha1;
23 struct llist_item *front;
24 struct llist_item *back;
26 } *all_objects; /* all objects which must be present in local packfiles */
28 static struct pack_list {
29 struct pack_list *next;
30 struct packed_git *pack;
31 struct llist *unique_objects;
32 struct llist *all_objects;
33 } *local_packs = NULL, *altodb_packs = NULL;
40 static struct llist_item *free_nodes;
42 static inline void llist_item_put(struct llist_item *item)
44 item->next = free_nodes;
48 static inline struct llist_item *llist_item_get(void)
50 struct llist_item *new;
53 free_nodes = free_nodes->next;
56 ALLOC_ARRAY(new, BLKSIZE);
57 for (; i < BLKSIZE; i++)
58 llist_item_put(&new[i]);
63 static void llist_free(struct llist *list)
65 while ((list->back = list->front)) {
66 list->front = list->front->next;
67 llist_item_put(list->back);
72 static inline void llist_init(struct llist **list)
74 *list = xmalloc(sizeof(struct llist));
75 (*list)->front = (*list)->back = NULL;
79 static struct llist * llist_copy(struct llist *list)
82 struct llist_item *new, *old, *prev;
86 if ((ret->size = list->size) == 0)
89 new = ret->front = llist_item_get();
90 new->sha1 = list->front->sha1;
92 old = list->front->next;
95 new = llist_item_get();
97 new->sha1 = old->sha1;
106 static inline struct llist_item *llist_insert(struct llist *list,
107 struct llist_item *after,
108 const unsigned char *sha1)
110 struct llist_item *new = llist_item_get();
115 new->next = after->next;
117 if (after == list->back)
119 } else {/* insert in front */
123 new->next = list->front;
130 static inline struct llist_item *llist_insert_back(struct llist *list,
131 const unsigned char *sha1)
133 return llist_insert(list, list->back, sha1);
136 static inline struct llist_item *llist_insert_sorted_unique(struct llist *list,
137 const unsigned char *sha1, struct llist_item *hint)
139 struct llist_item *prev = NULL, *l;
141 l = (hint == NULL) ? list->front : hint;
143 int cmp = hashcmp(l->sha1, sha1);
144 if (cmp > 0) { /* we insert before this entry */
145 return llist_insert(list, prev, sha1);
147 if (!cmp) { /* already exists */
153 /* insert at the end */
154 return llist_insert_back(list, sha1);
157 /* returns a pointer to an item in front of sha1 */
158 static inline struct llist_item * llist_sorted_remove(struct llist *list, const unsigned char *sha1, struct llist_item *hint)
160 struct llist_item *prev, *l;
163 l = (hint == NULL) ? list->front : hint;
166 int cmp = hashcmp(l->sha1, sha1);
167 if (cmp > 0) /* not in list, since sorted */
169 if (!cmp) { /* found */
171 if (hint != NULL && hint != list->front) {
172 /* we don't know the previous element */
174 goto redo_from_start;
176 list->front = l->next;
178 prev->next = l->next;
192 static void llist_sorted_difference_inplace(struct llist *A,
195 struct llist_item *hint, *b;
201 hint = llist_sorted_remove(A, b->sha1, hint);
206 static inline struct pack_list * pack_list_insert(struct pack_list **pl,
207 struct pack_list *entry)
209 struct pack_list *p = xmalloc(sizeof(struct pack_list));
210 memcpy(p, entry, sizeof(struct pack_list));
216 static inline size_t pack_list_size(struct pack_list *pl)
226 static struct pack_list * pack_list_difference(const struct pack_list *A,
227 const struct pack_list *B)
229 struct pack_list *ret;
230 const struct pack_list *pl;
237 if (A->pack == pl->pack)
238 return pack_list_difference(A->next, B);
241 ret = xmalloc(sizeof(struct pack_list));
242 memcpy(ret, A, sizeof(struct pack_list));
243 ret->next = pack_list_difference(A->next, B);
247 static void cmp_two_packs(struct pack_list *p1, struct pack_list *p2)
249 unsigned long p1_off = 0, p2_off = 0, p1_step, p2_step;
250 const unsigned char *p1_base, *p2_base;
251 struct llist_item *p1_hint = NULL, *p2_hint = NULL;
253 p1_base = p1->pack->index_data;
254 p2_base = p2->pack->index_data;
255 p1_base += 256 * 4 + ((p1->pack->index_version < 2) ? 4 : 8);
256 p2_base += 256 * 4 + ((p2->pack->index_version < 2) ? 4 : 8);
257 p1_step = (p1->pack->index_version < 2) ? 24 : 20;
258 p2_step = (p2->pack->index_version < 2) ? 24 : 20;
260 while (p1_off < p1->pack->num_objects * p1_step &&
261 p2_off < p2->pack->num_objects * p2_step)
263 int cmp = hashcmp(p1_base + p1_off, p2_base + p2_off);
266 p1_hint = llist_sorted_remove(p1->unique_objects,
267 p1_base + p1_off, p1_hint);
268 p2_hint = llist_sorted_remove(p2->unique_objects,
269 p1_base + p1_off, p2_hint);
274 if (cmp < 0) { /* p1 has the object, p2 doesn't */
276 } else { /* p2 has the object, p1 doesn't */
282 static void pll_free(struct pll *l)
285 struct pack_list *opl;
299 /* all the permutations have to be free()d at the same time,
300 * since they refer to each other
302 static struct pll * get_permutations(struct pack_list *list, int n)
304 struct pll *subset, *ret = NULL, *new_pll = NULL;
306 if (list == NULL || pack_list_size(list) < n || n == 0)
311 new_pll = xmalloc(sizeof(*new_pll));
313 pack_list_insert(&new_pll->pl, list);
322 subset = get_permutations(list->next, n - 1);
324 new_pll = xmalloc(sizeof(*new_pll));
325 new_pll->pl = subset->pl;
326 pack_list_insert(&new_pll->pl, list);
329 subset = subset->next;
336 static int is_superset(struct pack_list *pl, struct llist *list)
340 diff = llist_copy(list);
343 llist_sorted_difference_inplace(diff, pl->all_objects);
344 if (diff->size == 0) { /* we're done */
354 static size_t sizeof_union(struct packed_git *p1, struct packed_git *p2)
357 unsigned long p1_off = 0, p2_off = 0, p1_step, p2_step;
358 const unsigned char *p1_base, *p2_base;
360 p1_base = p1->index_data;
361 p2_base = p2->index_data;
362 p1_base += 256 * 4 + ((p1->index_version < 2) ? 4 : 8);
363 p2_base += 256 * 4 + ((p2->index_version < 2) ? 4 : 8);
364 p1_step = (p1->index_version < 2) ? 24 : 20;
365 p2_step = (p2->index_version < 2) ? 24 : 20;
367 while (p1_off < p1->num_objects * p1_step &&
368 p2_off < p2->num_objects * p2_step)
370 int cmp = hashcmp(p1_base + p1_off, p2_base + p2_off);
378 if (cmp < 0) { /* p1 has the object, p2 doesn't */
380 } else { /* p2 has the object, p1 doesn't */
387 /* another O(n^2) function ... */
388 static size_t get_pack_redundancy(struct pack_list *pl)
390 struct pack_list *subset;
396 while ((subset = pl->next)) {
398 ret += sizeof_union(pl->pack, subset->pack);
399 subset = subset->next;
406 static inline off_t pack_set_bytecount(struct pack_list *pl)
410 ret += pl->pack->pack_size;
411 ret += pl->pack->index_size;
417 static void minimize(struct pack_list **min)
419 struct pack_list *pl, *unique = NULL,
420 *non_unique = NULL, *min_perm = NULL;
421 struct pll *perm, *perm_all, *perm_ok = NULL, *new_perm;
422 struct llist *missing;
423 off_t min_perm_size = 0, perm_size;
428 if (pl->unique_objects->size)
429 pack_list_insert(&unique, pl);
431 pack_list_insert(&non_unique, pl);
434 /* find out which objects are missing from the set of unique packs */
435 missing = llist_copy(all_objects);
438 llist_sorted_difference_inplace(missing, pl->all_objects);
442 /* return if there are no objects missing from the unique set */
443 if (missing->size == 0) {
449 /* find the permutations which contain all missing objects */
450 for (n = 1; n <= pack_list_size(non_unique) && !perm_ok; n++) {
451 perm_all = perm = get_permutations(non_unique, n);
453 if (is_superset(perm->pl, missing)) {
454 new_perm = xmalloc(sizeof(struct pll));
455 memcpy(new_perm, perm, sizeof(struct pll));
456 new_perm->next = perm_ok;
466 die("Internal error: No complete sets found!");
468 /* find the permutation with the smallest size */
471 perm_size = pack_set_bytecount(perm->pl);
472 if (!min_perm_size || min_perm_size > perm_size) {
473 min_perm_size = perm_size;
479 /* add the unique packs to the list */
482 pack_list_insert(min, pl);
487 static void load_all_objects(void)
489 struct pack_list *pl = local_packs;
490 struct llist_item *hint, *l;
492 llist_init(&all_objects);
496 l = pl->all_objects->front;
498 hint = llist_insert_sorted_unique(all_objects,
504 /* remove objects present in remote packs */
507 llist_sorted_difference_inplace(all_objects, pl->all_objects);
512 /* this scales like O(n^2) */
513 static void cmp_local_packs(void)
515 struct pack_list *subset, *pl = local_packs;
517 while ((subset = pl)) {
518 while ((subset = subset->next))
519 cmp_two_packs(pl, subset);
524 static void scan_alt_odb_packs(void)
526 struct pack_list *local, *alt;
532 llist_sorted_difference_inplace(local->unique_objects,
536 llist_sorted_difference_inplace(all_objects, alt->all_objects);
541 static struct pack_list * add_pack(struct packed_git *p)
544 unsigned long off = 0, step;
545 const unsigned char *base;
547 if (!p->pack_local && !(alt_odb || verbose))
551 llist_init(&l.all_objects);
553 if (open_pack_index(p))
556 base = p->index_data;
557 base += 256 * 4 + ((p->index_version < 2) ? 4 : 8);
558 step = (p->index_version < 2) ? 24 : 20;
559 while (off < p->num_objects * step) {
560 llist_insert_back(l.all_objects, base + off);
563 /* this list will be pruned in cmp_two_packs later */
564 l.unique_objects = llist_copy(l.all_objects);
566 return pack_list_insert(&local_packs, &l);
568 return pack_list_insert(&altodb_packs, &l);
571 static struct pack_list * add_pack_file(const char *filename)
573 struct packed_git *p = packed_git;
575 if (strlen(filename) < 40)
576 die("Bad pack filename: %s", filename);
579 if (strstr(p->pack_name, filename))
583 die("Filename %s not found in packed_git", filename);
586 static void load_all(void)
588 struct packed_git *p = packed_git;
596 int cmd_pack_redundant(int argc, const char **argv, const char *prefix)
599 struct pack_list *min, *red, *pl;
600 struct llist *ignore;
602 char buf[42]; /* 40 byte sha1 + \n + \0 */
604 if (argc == 2 && !strcmp(argv[1], "-h"))
605 usage(pack_redundant_usage);
607 for (i = 1; i < argc; i++) {
608 const char *arg = argv[i];
609 if (!strcmp(arg, "--")) {
613 if (!strcmp(arg, "--all")) {
617 if (!strcmp(arg, "--verbose")) {
621 if (!strcmp(arg, "--alt-odb")) {
626 usage(pack_redundant_usage);
631 prepare_packed_git();
636 while (*(argv + i) != NULL)
637 add_pack_file(*(argv + i++));
639 if (local_packs == NULL)
640 die("Zero packs found!");
646 scan_alt_odb_packs();
648 /* ignore objects given on stdin */
651 while (fgets(buf, sizeof(buf), stdin)) {
653 if (get_sha1_hex(buf, sha1))
654 die("Bad sha1 on stdin: %s", buf);
655 llist_insert_sorted_unique(ignore, sha1, NULL);
658 llist_sorted_difference_inplace(all_objects, ignore);
661 llist_sorted_difference_inplace(pl->unique_objects, ignore);
668 fprintf(stderr, "There are %lu packs available in alt-odbs.\n",
669 (unsigned long)pack_list_size(altodb_packs));
670 fprintf(stderr, "The smallest (bytewise) set of packs is:\n");
673 fprintf(stderr, "\t%s\n", pl->pack->pack_name);
676 fprintf(stderr, "containing %lu duplicate objects "
677 "with a total size of %lukb.\n",
678 (unsigned long)get_pack_redundancy(min),
679 (unsigned long)pack_set_bytecount(min)/1024);
680 fprintf(stderr, "A total of %lu unique objects were considered.\n",
681 (unsigned long)all_objects->size);
682 fprintf(stderr, "Redundant packs (with indexes):\n");
684 pl = red = pack_list_difference(local_packs, min);
687 sha1_pack_index_name(pl->pack->sha1),
688 pl->pack->pack_name);
692 fprintf(stderr, "%luMB of redundant packs in total.\n",
693 (unsigned long)pack_set_bytecount(red)/(1024*1024));