3 * Copyright 2005, Lukas Sandstrom <lukass@etek.chalmers.se>
5 * This file is licensed under the GPL v2.
11 static const char pack_redundant_usage[] =
12 "git-pack-redundant [ --verbose ] [ --alt-odb ] < --all | <.pack filename> ...>";
14 static int load_all_packs = 0, verbose = 0, alt_odb = 0;
17 struct llist_item *next;
21 struct llist_item *front;
22 struct llist_item *back;
24 } *all_objects; /* all objects which must be present in local packfiles */
26 static struct pack_list {
27 struct pack_list *next;
28 struct packed_git *pack;
29 struct llist *unique_objects;
30 struct llist *all_objects;
31 } *local_packs = NULL, *altodb_packs = NULL;
39 static struct llist_item *free_nodes = NULL;
41 static inline struct llist_item *llist_item_get()
43 struct llist_item *new;
46 free_nodes = free_nodes->next;
48 new = xmalloc(sizeof(struct llist_item));
53 static inline void llist_item_put(struct llist_item *item)
55 item->next = free_nodes;
59 static void llist_free(struct llist *list)
61 while((list->back = list->front)) {
62 list->front = list->front->next;
63 llist_item_put(list->back);
68 static inline void llist_init(struct llist **list)
70 *list = xmalloc(sizeof(struct llist));
71 (*list)->front = (*list)->back = NULL;
75 static struct llist * llist_copy(struct llist *list)
78 struct llist_item *new, *old, *prev;
82 if ((ret->size = list->size) == 0)
85 new = ret->front = llist_item_get();
86 new->sha1 = list->front->sha1;
88 old = list->front->next;
91 new = llist_item_get();
93 new->sha1 = old->sha1;
102 static inline struct llist_item * llist_insert(struct llist *list,
103 struct llist_item *after,
106 struct llist_item *new = llist_item_get();
111 new->next = after->next;
113 if (after == list->back)
115 } else {/* insert in front */
119 new->next = list->front;
126 static inline struct llist_item *llist_insert_back(struct llist *list, unsigned char *sha1)
128 return llist_insert(list, list->back, sha1);
131 static inline struct llist_item *llist_insert_sorted_unique(struct llist *list, unsigned char *sha1, struct llist_item *hint)
133 struct llist_item *prev = NULL, *l;
135 l = (hint == NULL) ? list->front : hint;
137 int cmp = memcmp(l->sha1, sha1, 20);
138 if (cmp > 0) { /* we insert before this entry */
139 return llist_insert(list, prev, sha1);
141 if(!cmp) { /* already exists */
147 /* insert at the end */
148 return llist_insert_back(list, sha1);
151 /* returns a pointer to an item in front of sha1 */
152 static inline struct llist_item * llist_sorted_remove(struct llist *list, const unsigned char *sha1, struct llist_item *hint)
154 struct llist_item *prev, *l;
157 l = (hint == NULL) ? list->front : hint;
160 int cmp = memcmp(l->sha1, sha1, 20);
161 if (cmp > 0) /* not in list, since sorted */
163 if(!cmp) { /* found */
165 if (hint != NULL && hint != list->front) {
166 /* we don't know the previous element */
168 goto redo_from_start;
170 list->front = l->next;
172 prev->next = l->next;
186 static void llist_sorted_difference_inplace(struct llist *A,
189 struct llist_item *hint, *b;
195 hint = llist_sorted_remove(A, b->sha1, hint);
200 static inline struct pack_list * pack_list_insert(struct pack_list **pl,
201 struct pack_list *entry)
203 struct pack_list *p = xmalloc(sizeof(struct pack_list));
204 memcpy(p, entry, sizeof(struct pack_list));
210 static inline size_t pack_list_size(struct pack_list *pl)
220 static struct pack_list * pack_list_difference(const struct pack_list *A,
221 const struct pack_list *B)
223 struct pack_list *ret;
224 const struct pack_list *pl;
231 if (A->pack == pl->pack)
232 return pack_list_difference(A->next, B);
235 ret = xmalloc(sizeof(struct pack_list));
236 memcpy(ret, A, sizeof(struct pack_list));
237 ret->next = pack_list_difference(A->next, B);
241 static void cmp_two_packs(struct pack_list *p1, struct pack_list *p2)
244 void *p1_base, *p2_base;
245 struct llist_item *p1_hint = NULL, *p2_hint = NULL;
247 p1_off = p2_off = 256 * 4 + 4;
248 p1_base = (void *)p1->pack->index_base;
249 p2_base = (void *)p2->pack->index_base;
251 while (p1_off <= p1->pack->index_size - 3 * 20 &&
252 p2_off <= p2->pack->index_size - 3 * 20)
254 int cmp = memcmp(p1_base + p1_off, p2_base + p2_off, 20);
257 p1_hint = llist_sorted_remove(p1->unique_objects,
258 p1_base + p1_off, p1_hint);
259 p2_hint = llist_sorted_remove(p2->unique_objects,
260 p1_base + p1_off, p2_hint);
265 if (cmp < 0) { /* p1 has the object, p2 doesn't */
267 } else { /* p2 has the object, p1 doesn't */
273 static void pll_insert(struct pll **pll, struct pll **hint_table)
276 int i = (*pll)->pl_size - 1;
278 if (hint_table[i] == NULL) {
279 hint_table[i--] = *pll;
280 for (; i >= 0; --i) {
281 if (hint_table[i] != NULL)
284 if (hint_table[i] == NULL) /* no elements in list */
285 die("Why did this happen?");
288 prev = hint_table[i];
289 while (prev->next && prev->next->pl_size < (*pll)->pl_size)
292 (*pll)->next = prev->next;
296 /* all the permutations have to be free()d at the same time,
297 * since they refer to each other
299 static struct pll * get_all_permutations(struct pack_list *list)
301 struct pll *subset, *pll, *new_pll = NULL; /*silence warning*/
302 static struct pll **hint = NULL;
304 hint = xcalloc(pack_list_size(list), sizeof(struct pll *));
309 if (list->next == NULL) {
310 new_pll = xmalloc(sizeof(struct pll));
312 new_pll->next = NULL;
314 new_pll->pl_size = 1;
318 pll = subset = get_all_permutations(list->next);
320 if (pll->pl->pack == list->pack) {
324 new_pll = xmalloc(sizeof(struct pll));
326 new_pll->pl = xmalloc(sizeof(struct pack_list));
327 memcpy(new_pll->pl, list, sizeof(struct pack_list));
328 new_pll->pl->next = pll->pl;
329 new_pll->pl_size = pll->pl_size + 1;
331 pll_insert(&new_pll, hint);
336 new_pll = xmalloc(sizeof(struct pll));
337 new_pll->pl = xmalloc(sizeof(struct pack_list));
338 memcpy(new_pll->pl, list, sizeof(struct pack_list));
339 new_pll->pl->next = NULL;
340 new_pll->pl_size = 1;
341 pll_insert(&new_pll, hint);
346 static int is_superset(struct pack_list *pl, struct llist *list)
350 diff = llist_copy(list);
353 llist_sorted_difference_inplace(diff, pl->all_objects);
354 if (diff->size == 0) { /* we're done */
364 static size_t sizeof_union(struct packed_git *p1, struct packed_git *p2)
368 void *p1_base, *p2_base;
370 p1_off = p2_off = 256 * 4 + 4;
371 p1_base = (void *)p1->index_base;
372 p2_base = (void *)p2->index_base;
374 while (p1_off <= p1->index_size - 3 * 20 &&
375 p2_off <= p2->index_size - 3 * 20)
377 int cmp = memcmp(p1_base + p1_off, p2_base + p2_off, 20);
385 if (cmp < 0) { /* p1 has the object, p2 doesn't */
387 } else { /* p2 has the object, p1 doesn't */
394 /* another O(n^2) function ... */
395 static size_t get_pack_redundancy(struct pack_list *pl)
397 struct pack_list *subset;
403 while ((subset = pl->next)) {
405 ret += sizeof_union(pl->pack, subset->pack);
406 subset = subset->next;
413 static inline size_t pack_set_bytecount(struct pack_list *pl)
417 ret += pl->pack->pack_size;
418 ret += pl->pack->index_size;
424 static void minimize(struct pack_list **min)
426 struct pack_list *pl, *unique = NULL,
427 *non_unique = NULL, *min_perm = NULL;
428 struct pll *perm, *perm_all, *perm_ok = NULL, *new_perm;
429 struct llist *missing;
430 size_t min_perm_size = (size_t)-1, perm_size;
434 if(pl->unique_objects->size)
435 pack_list_insert(&unique, pl);
437 pack_list_insert(&non_unique, pl);
440 /* find out which objects are missing from the set of unique packs */
441 missing = llist_copy(all_objects);
444 llist_sorted_difference_inplace(missing,
449 /* return if there are no objects missing from the unique set */
450 if (missing->size == 0) {
455 /* find the permutations which contain all missing objects */
456 perm_all = perm = get_all_permutations(non_unique);
458 if (perm_ok && perm->pl_size > perm_ok->pl_size)
459 break; /* ignore all larger permutations */
460 if (is_superset(perm->pl, missing)) {
461 new_perm = xmalloc(sizeof(struct pll));
462 memcpy(new_perm, perm, sizeof(struct pll));
463 new_perm->next = perm_ok;
470 die("Internal error: No complete sets found!\n");
472 /* find the permutation with the smallest size */
475 perm_size = pack_set_bytecount(perm->pl);
476 if (min_perm_size > perm_size) {
477 min_perm_size = perm_size;
483 /* add the unique packs to the list */
486 pack_list_insert(min, pl);
491 static void load_all_objects(void)
493 struct pack_list *pl = local_packs;
494 struct llist_item *hint, *l;
496 llist_init(&all_objects);
500 l = pl->all_objects->front;
502 hint = llist_insert_sorted_unique(all_objects,
508 /* remove objects present in remote packs */
511 llist_sorted_difference_inplace(all_objects, pl->all_objects);
516 /* this scales like O(n^2) */
517 static void cmp_local_packs(void)
519 struct pack_list *subset, *pl = local_packs;
521 while ((subset = pl)) {
522 while((subset = subset->next))
523 cmp_two_packs(pl, subset);
528 static void scan_alt_odb_packs(void)
530 struct pack_list *local, *alt;
536 llist_sorted_difference_inplace(local->unique_objects,
544 static struct pack_list * add_pack(struct packed_git *p)
550 if (!p->pack_local && !(alt_odb || verbose))
554 llist_init(&l.all_objects);
557 base = (void *)p->index_base;
558 while (off <= p->index_size - 3 * 20) {
559 llist_insert_back(l.all_objects, base + off);
562 /* this list will be pruned in cmp_two_packs later */
563 l.unique_objects = llist_copy(l.all_objects);
565 return pack_list_insert(&local_packs, &l);
567 return pack_list_insert(&altodb_packs, &l);
570 static struct pack_list * add_pack_file(char *filename)
572 struct packed_git *p = packed_git;
574 if (strlen(filename) < 40)
575 die("Bad pack filename: %s\n", filename);
578 if (strstr(p->pack_name, filename))
582 die("Filename %s not found in packed_git\n", filename);
585 static void load_all(void)
587 struct packed_git *p = packed_git;
595 int main(int argc, char **argv)
598 struct pack_list *min, *red, *pl;
599 struct llist *ignore;
601 char buf[42]; /* 40 byte sha1 + \n + \0 */
603 setup_git_directory();
605 for (i = 1; i < argc; i++) {
606 const char *arg = argv[i];
607 if(!strcmp(arg, "--")) {
611 if(!strcmp(arg, "--all")) {
615 if(!strcmp(arg, "--verbose")) {
619 if(!strcmp(arg, "--alt-odb")) {
624 usage(pack_redundant_usage);
629 prepare_packed_git();
634 while (*(argv + i) != NULL)
635 add_pack_file(*(argv + i++));
637 if (local_packs == NULL)
638 die("Zero packs found!\n");
644 scan_alt_odb_packs();
646 /* ignore objects given on stdin */
649 while (fgets(buf, sizeof(buf), stdin)) {
651 if (get_sha1_hex(buf, sha1))
652 die("Bad sha1 on stdin: %s", buf);
653 llist_insert_sorted_unique(ignore, sha1, NULL);
656 llist_sorted_difference_inplace(all_objects, ignore);
659 llist_sorted_difference_inplace(pl->unique_objects, ignore);
666 fprintf(stderr, "There are %lu packs available in alt-odbs.\n",
667 (unsigned long)pack_list_size(altodb_packs));
668 fprintf(stderr, "The smallest (bytewise) set of packs is:\n");
671 fprintf(stderr, "\t%s\n", pl->pack->pack_name);
674 fprintf(stderr, "containing %lu duplicate objects "
675 "with a total size of %lukb.\n",
676 (unsigned long)get_pack_redundancy(min),
677 (unsigned long)pack_set_bytecount(min)/1024);
678 fprintf(stderr, "A total of %lu unique objects were considered.\n",
679 (unsigned long)all_objects->size);
680 fprintf(stderr, "Redundant packs (with indexes):\n");
682 pl = red = pack_list_difference(local_packs, min);
685 sha1_pack_index_name(pl->pack->sha1),
686 pl->pack->pack_name);
690 fprintf(stderr, "%luMB of redundant packs in total.\n",
691 (unsigned long)pack_set_bytecount(red)/(1024*1024));