Make git-send-pack exit with error when some refs couldn't be pushed out
[git/dscho.git] / pack-redundant.c
blob0a43278924edae9d6e3ecdf4bb100bea10faef97
1 /*
3 * Copyright 2005, Lukas Sandstrom <lukass@etek.chalmers.se>
5 * This file is licensed under the GPL v2.
7 */
9 #include "cache.h"
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;
16 struct llist_item {
17 struct llist_item *next;
18 unsigned char *sha1;
20 static struct llist {
21 struct llist_item *front;
22 struct llist_item *back;
23 size_t size;
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;
33 struct pll {
34 struct pll *next;
35 struct pack_list *pl;
36 size_t pl_size;
39 static struct llist_item *free_nodes = NULL;
41 static inline struct llist_item *llist_item_get()
43 struct llist_item *new;
44 if ( free_nodes ) {
45 new = free_nodes;
46 free_nodes = free_nodes->next;
47 } else
48 new = xmalloc(sizeof(struct llist_item));
50 return new;
53 static inline void llist_item_put(struct llist_item *item)
55 item->next = free_nodes;
56 free_nodes = item;
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);
65 free(list);
68 static inline void llist_init(struct llist **list)
70 *list = xmalloc(sizeof(struct llist));
71 (*list)->front = (*list)->back = NULL;
72 (*list)->size = 0;
75 static struct llist * llist_copy(struct llist *list)
77 struct llist *ret;
78 struct llist_item *new, *old, *prev;
80 llist_init(&ret);
82 if ((ret->size = list->size) == 0)
83 return ret;
85 new = ret->front = llist_item_get();
86 new->sha1 = list->front->sha1;
88 old = list->front->next;
89 while (old) {
90 prev = new;
91 new = llist_item_get();
92 prev->next = new;
93 new->sha1 = old->sha1;
94 old = old->next;
96 new->next = NULL;
97 ret->back = new;
99 return ret;
102 static inline struct llist_item * llist_insert(struct llist *list,
103 struct llist_item *after,
104 unsigned char *sha1)
106 struct llist_item *new = llist_item_get();
107 new->sha1 = sha1;
108 new->next = NULL;
110 if (after != NULL) {
111 new->next = after->next;
112 after->next = new;
113 if (after == list->back)
114 list->back = new;
115 } else {/* insert in front */
116 if (list->size == 0)
117 list->back = new;
118 else
119 new->next = list->front;
120 list->front = new;
122 list->size++;
123 return new;
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;
136 while (l) {
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 */
142 return l;
144 prev = l;
145 l = l->next;
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;
156 redo_from_start:
157 l = (hint == NULL) ? list->front : hint;
158 prev = NULL;
159 while (l) {
160 int cmp = memcmp(l->sha1, sha1, 20);
161 if (cmp > 0) /* not in list, since sorted */
162 return prev;
163 if(!cmp) { /* found */
164 if (prev == NULL) {
165 if (hint != NULL && hint != list->front) {
166 /* we don't know the previous element */
167 hint = NULL;
168 goto redo_from_start;
170 list->front = l->next;
171 } else
172 prev->next = l->next;
173 if (l == list->back)
174 list->back = prev;
175 llist_item_put(l);
176 list->size--;
177 return prev;
179 prev = l;
180 l = l->next;
182 return prev;
185 /* computes A\B */
186 static void llist_sorted_difference_inplace(struct llist *A,
187 struct llist *B)
189 struct llist_item *hint, *b;
191 hint = NULL;
192 b = B->front;
194 while (b) {
195 hint = llist_sorted_remove(A, b->sha1, hint);
196 b = b->next;
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));
205 p->next = *pl;
206 *pl = p;
207 return p;
210 static inline size_t pack_list_size(struct pack_list *pl)
212 size_t ret = 0;
213 while(pl) {
214 ret++;
215 pl = pl->next;
217 return ret;
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;
226 if (A == NULL)
227 return NULL;
229 pl = B;
230 while (pl != NULL) {
231 if (A->pack == pl->pack)
232 return pack_list_difference(A->next, B);
233 pl = pl->next;
235 ret = xmalloc(sizeof(struct pack_list));
236 memcpy(ret, A, sizeof(struct pack_list));
237 ret->next = pack_list_difference(A->next, B);
238 return ret;
241 static void cmp_two_packs(struct pack_list *p1, struct pack_list *p2)
243 int p1_off, p2_off;
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);
255 /* cmp ~ p1 - p2 */
256 if (cmp == 0) {
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);
261 p1_off+=24;
262 p2_off+=24;
263 continue;
265 if (cmp < 0) { /* p1 has the object, p2 doesn't */
266 p1_off+=24;
267 } else { /* p2 has the object, p1 doesn't */
268 p2_off+=24;
273 static void pll_insert(struct pll **pll, struct pll **hint_table)
275 struct pll *prev;
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)
282 break;
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)
290 prev = prev->next;
292 (*pll)->next = prev->next;
293 prev->next = *pll;
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;
303 if (hint == NULL)
304 hint = xcalloc(pack_list_size(list), sizeof(struct pll *));
306 if (list == NULL)
307 return NULL;
309 if (list->next == NULL) {
310 new_pll = xmalloc(sizeof(struct pll));
311 hint[0] = new_pll;
312 new_pll->next = NULL;
313 new_pll->pl = list;
314 new_pll->pl_size = 1;
315 return new_pll;
318 pll = subset = get_all_permutations(list->next);
319 while (pll) {
320 if (pll->pl->pack == list->pack) {
321 pll = pll->next;
322 continue;
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);
333 pll = pll->next;
335 /* add ourself */
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);
343 return hint[0];
346 static int is_superset(struct pack_list *pl, struct llist *list)
348 struct llist *diff;
350 diff = llist_copy(list);
352 while (pl) {
353 llist_sorted_difference_inplace(diff, pl->all_objects);
354 if (diff->size == 0) { /* we're done */
355 llist_free(diff);
356 return 1;
358 pl = pl->next;
360 llist_free(diff);
361 return 0;
364 static size_t sizeof_union(struct packed_git *p1, struct packed_git *p2)
366 size_t ret = 0;
367 int p1_off, p2_off;
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);
378 /* cmp ~ p1 - p2 */
379 if (cmp == 0) {
380 ret++;
381 p1_off+=24;
382 p2_off+=24;
383 continue;
385 if (cmp < 0) { /* p1 has the object, p2 doesn't */
386 p1_off+=24;
387 } else { /* p2 has the object, p1 doesn't */
388 p2_off+=24;
391 return ret;
394 /* another O(n^2) function ... */
395 static size_t get_pack_redundancy(struct pack_list *pl)
397 struct pack_list *subset;
398 size_t ret = 0;
400 if (pl == NULL)
401 return 0;
403 while ((subset = pl->next)) {
404 while(subset) {
405 ret += sizeof_union(pl->pack, subset->pack);
406 subset = subset->next;
408 pl = pl->next;
410 return ret;
413 static inline size_t pack_set_bytecount(struct pack_list *pl)
415 size_t ret = 0;
416 while (pl) {
417 ret += pl->pack->pack_size;
418 ret += pl->pack->index_size;
419 pl = pl->next;
421 return ret;
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;
432 pl = local_packs;
433 while (pl) {
434 if(pl->unique_objects->size)
435 pack_list_insert(&unique, pl);
436 else
437 pack_list_insert(&non_unique, pl);
438 pl = pl->next;
440 /* find out which objects are missing from the set of unique packs */
441 missing = llist_copy(all_objects);
442 pl = unique;
443 while (pl) {
444 llist_sorted_difference_inplace(missing,
445 pl->all_objects);
446 pl = pl->next;
449 /* return if there are no objects missing from the unique set */
450 if (missing->size == 0) {
451 *min = unique;
452 return;
455 /* find the permutations which contain all missing objects */
456 perm_all = perm = get_all_permutations(non_unique);
457 while (perm) {
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;
464 perm_ok = new_perm;
466 perm = perm->next;
469 if (perm_ok == NULL)
470 die("Internal error: No complete sets found!\n");
472 /* find the permutation with the smallest size */
473 perm = perm_ok;
474 while (perm) {
475 perm_size = pack_set_bytecount(perm->pl);
476 if (min_perm_size > perm_size) {
477 min_perm_size = perm_size;
478 min_perm = perm->pl;
480 perm = perm->next;
482 *min = min_perm;
483 /* add the unique packs to the list */
484 pl = unique;
485 while(pl) {
486 pack_list_insert(min, pl);
487 pl = pl->next;
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);
498 while (pl) {
499 hint = NULL;
500 l = pl->all_objects->front;
501 while (l) {
502 hint = llist_insert_sorted_unique(all_objects,
503 l->sha1, hint);
504 l = l->next;
506 pl = pl->next;
508 /* remove objects present in remote packs */
509 pl = altodb_packs;
510 while (pl) {
511 llist_sorted_difference_inplace(all_objects, pl->all_objects);
512 pl = pl->next;
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);
524 pl = pl->next;
528 static void scan_alt_odb_packs(void)
530 struct pack_list *local, *alt;
532 alt = altodb_packs;
533 while (alt) {
534 local = local_packs;
535 while (local) {
536 llist_sorted_difference_inplace(local->unique_objects,
537 alt->all_objects);
538 local = local->next;
540 alt = alt->next;
544 static struct pack_list * add_pack(struct packed_git *p)
546 struct pack_list l;
547 size_t off;
548 void *base;
550 if (!p->pack_local && !(alt_odb || verbose))
551 return NULL;
553 l.pack = p;
554 llist_init(&l.all_objects);
556 off = 256 * 4 + 4;
557 base = (void *)p->index_base;
558 while (off <= p->index_size - 3 * 20) {
559 llist_insert_back(l.all_objects, base + off);
560 off += 24;
562 /* this list will be pruned in cmp_two_packs later */
563 l.unique_objects = llist_copy(l.all_objects);
564 if (p->pack_local)
565 return pack_list_insert(&local_packs, &l);
566 else
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);
577 while (p) {
578 if (strstr(p->pack_name, filename))
579 return add_pack(p);
580 p = p->next;
582 die("Filename %s not found in packed_git\n", filename);
585 static void load_all(void)
587 struct packed_git *p = packed_git;
589 while (p) {
590 add_pack(p);
591 p = p->next;
595 int main(int argc, char **argv)
597 int i;
598 struct pack_list *min, *red, *pl;
599 struct llist *ignore;
600 unsigned char *sha1;
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, "--")) {
608 i++;
609 break;
611 if(!strcmp(arg, "--all")) {
612 load_all_packs = 1;
613 continue;
615 if(!strcmp(arg, "--verbose")) {
616 verbose = 1;
617 continue;
619 if(!strcmp(arg, "--alt-odb")) {
620 alt_odb = 1;
621 continue;
623 if(*arg == '-')
624 usage(pack_redundant_usage);
625 else
626 break;
629 prepare_packed_git();
631 if (load_all_packs)
632 load_all();
633 else
634 while (*(argv + i) != NULL)
635 add_pack_file(*(argv + i++));
637 if (local_packs == NULL)
638 die("Zero packs found!\n");
640 load_all_objects();
642 cmp_local_packs();
643 if (alt_odb)
644 scan_alt_odb_packs();
646 /* ignore objects given on stdin */
647 llist_init(&ignore);
648 if (!isatty(0)) {
649 while (fgets(buf, sizeof(buf), stdin)) {
650 sha1 = xmalloc(20);
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);
657 pl = local_packs;
658 while (pl) {
659 llist_sorted_difference_inplace(pl->unique_objects, ignore);
660 pl = pl->next;
663 minimize(&min);
665 if (verbose) {
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");
669 pl = min;
670 while (pl) {
671 fprintf(stderr, "\t%s\n", pl->pack->pack_name);
672 pl = pl->next;
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);
683 while (pl) {
684 printf("%s\n%s\n",
685 sha1_pack_index_name(pl->pack->sha1),
686 pl->pack->pack_name);
687 pl = pl->next;
689 if (verbose)
690 fprintf(stderr, "%luMB of redundant packs in total.\n",
691 (unsigned long)pack_set_bytecount(red)/(1024*1024));
693 return 0;