[PATCH] Cleanup: git-verify-tag-script
[git.git] / rev-list.c
1 #include "cache.h"
2 #include "tag.h"
3 #include "commit.h"
4 #include "tree.h"
5 #include "blob.h"
6 #include "epoch.h"
7
8 #define SEEN            (1u << 0)
9 #define INTERESTING     (1u << 1)
10 #define COUNTED         (1u << 2)
11 #define SHOWN           (1u << 3)
12
13 static const char rev_list_usage[] =
14         "usage: git-rev-list [OPTION] commit-id <commit-id>\n"
15                       "  --max-count=nr\n"
16                       "  --max-age=epoch\n"
17                       "  --min-age=epoch\n"
18                       "  --bisect\n"
19                       "  --objects\n"
20                       "  --unpacked\n"
21                       "  --header\n"
22                       "  --pretty\n"
23                       "  --merge-order [ --show-breaks ]";
24
25 static int unpacked = 0;
26 static int bisect_list = 0;
27 static int tag_objects = 0;
28 static int tree_objects = 0;
29 static int blob_objects = 0;
30 static int verbose_header = 0;
31 static int show_parents = 0;
32 static int hdr_termination = 0;
33 static const char *prefix = "";
34 static unsigned long max_age = -1;
35 static unsigned long min_age = -1;
36 static int max_count = -1;
37 static enum cmit_fmt commit_format = CMIT_FMT_RAW;
38 static int merge_order = 0;
39 static int show_breaks = 0;
40 static int stop_traversal = 0;
41 static int topo_order = 0;
42
43 static void show_commit(struct commit *commit)
44 {
45         commit->object.flags |= SHOWN;
46         if (show_breaks) {
47                 prefix = "| ";
48                 if (commit->object.flags & DISCONTINUITY) {
49                         prefix = "^ ";     
50                 } else if (commit->object.flags & BOUNDARY) {
51                         prefix = "= ";
52                 } 
53         }                       
54         printf("%s%s", prefix, sha1_to_hex(commit->object.sha1));
55         if (show_parents) {
56                 struct commit_list *parents = commit->parents;
57                 while (parents) {
58                         printf(" %s", sha1_to_hex(parents->item->object.sha1));
59                         parents = parents->next;
60                 }
61         }
62         putchar('\n');
63         if (verbose_header) {
64                 static char pretty_header[16384];
65                 pretty_print_commit(commit_format, commit->buffer, ~0, pretty_header, sizeof(pretty_header));
66                 printf("%s%c", pretty_header, hdr_termination);
67         }
68         fflush(stdout);
69 }
70
71 static int filter_commit(struct commit * commit)
72 {
73         if (stop_traversal && (commit->object.flags & BOUNDARY))
74                 return STOP;
75         if (commit->object.flags & (UNINTERESTING|SHOWN))
76                 return CONTINUE;
77         if (min_age != -1 && (commit->date > min_age))
78                 return CONTINUE;
79         if (max_age != -1 && (commit->date < max_age)) {
80                 stop_traversal=1;
81                 return merge_order?CONTINUE:STOP;
82         }
83         if (max_count != -1 && !max_count--)
84                 return STOP;
85         return DO;
86 }
87
88 static int process_commit(struct commit * commit)
89 {
90         int action=filter_commit(commit);
91
92         if (action == STOP) {
93                 return STOP;
94         }
95
96         if (action == CONTINUE) {
97                 return CONTINUE;
98         }
99
100         show_commit(commit);
101
102         return CONTINUE;
103 }
104
105 static struct object_list **add_object(struct object *obj, struct object_list **p, const char *name)
106 {
107         struct object_list *entry = xmalloc(sizeof(*entry));
108         entry->item = obj;
109         entry->next = *p;
110         entry->name = name;
111         *p = entry;
112         return &entry->next;
113 }
114
115 static struct object_list **process_blob(struct blob *blob, struct object_list **p, const char *name)
116 {
117         struct object *obj = &blob->object;
118
119         if (!blob_objects)
120                 return p;
121         if (obj->flags & (UNINTERESTING | SEEN))
122                 return p;
123         obj->flags |= SEEN;
124         return add_object(obj, p, name);
125 }
126
127 static struct object_list **process_tree(struct tree *tree, struct object_list **p, const char *name)
128 {
129         struct object *obj = &tree->object;
130         struct tree_entry_list *entry;
131
132         if (!tree_objects)
133                 return p;
134         if (obj->flags & (UNINTERESTING | SEEN))
135                 return p;
136         if (parse_tree(tree) < 0)
137                 die("bad tree object %s", sha1_to_hex(obj->sha1));
138         obj->flags |= SEEN;
139         p = add_object(obj, p, name);
140         for (entry = tree->entries ; entry ; entry = entry->next) {
141                 if (entry->directory)
142                         p = process_tree(entry->item.tree, p, entry->name);
143                 else
144                         p = process_blob(entry->item.blob, p, entry->name);
145         }
146         return p;
147 }
148
149 static struct object_list *pending_objects = NULL;
150
151 static void show_commit_list(struct commit_list *list)
152 {
153         struct object_list *objects = NULL, **p = &objects, *pending;
154         while (list) {
155                 struct commit *commit = pop_most_recent_commit(&list, SEEN);
156
157                 p = process_tree(commit->tree, p, "");
158                 if (process_commit(commit) == STOP)
159                         break;
160         }
161         for (pending = pending_objects; pending; pending = pending->next) {
162                 struct object *obj = pending->item;
163                 const char *name = pending->name;
164                 if (obj->flags & (UNINTERESTING | SEEN))
165                         continue;
166                 if (obj->type == tag_type) {
167                         obj->flags |= SEEN;
168                         p = add_object(obj, p, name);
169                         continue;
170                 }
171                 if (obj->type == tree_type) {
172                         p = process_tree((struct tree *)obj, p, name);
173                         continue;
174                 }
175                 if (obj->type == blob_type) {
176                         p = process_blob((struct blob *)obj, p, name);
177                         continue;
178                 }
179                 die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
180         }
181         while (objects) {
182                 printf("%s %s\n", sha1_to_hex(objects->item->sha1), objects->name);
183                 objects = objects->next;
184         }
185 }
186
187 static void mark_blob_uninteresting(struct blob *blob)
188 {
189         if (!blob_objects)
190                 return;
191         if (blob->object.flags & UNINTERESTING)
192                 return;
193         blob->object.flags |= UNINTERESTING;
194 }
195
196 static void mark_tree_uninteresting(struct tree *tree)
197 {
198         struct object *obj = &tree->object;
199         struct tree_entry_list *entry;
200
201         if (!tree_objects)
202                 return;
203         if (obj->flags & UNINTERESTING)
204                 return;
205         obj->flags |= UNINTERESTING;
206         if (!has_sha1_file(obj->sha1))
207                 return;
208         if (parse_tree(tree) < 0)
209                 die("bad tree %s", sha1_to_hex(obj->sha1));
210         entry = tree->entries;
211         while (entry) {
212                 if (entry->directory)
213                         mark_tree_uninteresting(entry->item.tree);
214                 else
215                         mark_blob_uninteresting(entry->item.blob);
216                 entry = entry->next;
217         }
218 }
219
220 static void mark_parents_uninteresting(struct commit *commit)
221 {
222         struct commit_list *parents = commit->parents;
223
224         if (tree_objects)
225                 mark_tree_uninteresting(commit->tree);
226         while (parents) {
227                 struct commit *commit = parents->item;
228                 commit->object.flags |= UNINTERESTING;
229
230                 /*
231                  * A missing commit is ok iff its parent is marked 
232                  * uninteresting.
233                  *
234                  * We just mark such a thing parsed, so that when
235                  * it is popped next time around, we won't be trying
236                  * to parse it and get an error.
237                  */
238                 if (!has_sha1_file(commit->object.sha1))
239                         commit->object.parsed = 1;
240                 parents = parents->next;
241         }
242 }
243
244 static int everybody_uninteresting(struct commit_list *list)
245 {
246         while (list) {
247                 struct commit *commit = list->item;
248                 list = list->next;
249                 if (commit->object.flags & UNINTERESTING)
250                         continue;
251                 return 0;
252         }
253         return 1;
254 }
255
256 /*
257  * This is a truly stupid algorithm, but it's only
258  * used for bisection, and we just don't care enough.
259  *
260  * We care just barely enough to avoid recursing for
261  * non-merge entries.
262  */
263 static int count_distance(struct commit_list *entry)
264 {
265         int nr = 0;
266
267         while (entry) {
268                 struct commit *commit = entry->item;
269                 struct commit_list *p;
270
271                 if (commit->object.flags & (UNINTERESTING | COUNTED))
272                         break;
273                 nr++;
274                 commit->object.flags |= COUNTED;
275                 p = commit->parents;
276                 entry = p;
277                 if (p) {
278                         p = p->next;
279                         while (p) {
280                                 nr += count_distance(p);
281                                 p = p->next;
282                         }
283                 }
284         }
285         return nr;
286 }
287
288 static void clear_distance(struct commit_list *list)
289 {
290         while (list) {
291                 struct commit *commit = list->item;
292                 commit->object.flags &= ~COUNTED;
293                 list = list->next;
294         }
295 }
296
297 static struct commit_list *find_bisection(struct commit_list *list)
298 {
299         int nr, closest;
300         struct commit_list *p, *best;
301
302         nr = 0;
303         p = list;
304         while (p) {
305                 nr++;
306                 p = p->next;
307         }
308         closest = 0;
309         best = list;
310
311         p = list;
312         while (p) {
313                 int distance = count_distance(p);
314                 clear_distance(list);
315                 if (nr - distance < distance)
316                         distance = nr - distance;
317                 if (distance > closest) {
318                         best = p;
319                         closest = distance;
320                 }
321                 p = p->next;
322         }
323         if (best)
324                 best->next = NULL;
325         return best;
326 }
327
328 static struct commit_list *limit_list(struct commit_list *list)
329 {
330         struct commit_list *newlist = NULL;
331         struct commit_list **p = &newlist;
332         while (list) {
333                 struct commit *commit = pop_most_recent_commit(&list, SEEN);
334                 struct object *obj = &commit->object;
335
336                 if (unpacked && has_sha1_pack(obj->sha1))
337                         obj->flags |= UNINTERESTING;
338                 if (obj->flags & UNINTERESTING) {
339                         mark_parents_uninteresting(commit);
340                         if (everybody_uninteresting(list))
341                                 break;
342                         continue;
343                 }
344                 p = &commit_list_insert(commit, p)->next;
345         }
346         if (bisect_list)
347                 newlist = find_bisection(newlist);
348         return newlist;
349 }
350
351 static void add_pending_object(struct object *obj, const char *name)
352 {
353         add_object(obj, &pending_objects, name);
354 }
355
356 static struct commit *get_commit_reference(const char *name, unsigned int flags)
357 {
358         unsigned char sha1[20];
359         struct object *object;
360
361         if (get_sha1(name, sha1))
362                 usage(rev_list_usage);
363         object = parse_object(sha1);
364         if (!object)
365                 die("bad object %s", name);
366
367         /*
368          * Tag object? Look what it points to..
369          */
370         while (object->type == tag_type) {
371                 struct tag *tag = (struct tag *) object;
372                 object->flags |= flags;
373                 if (tag_objects && !(object->flags & UNINTERESTING))
374                         add_pending_object(object, tag->tag);
375                 object = parse_object(tag->tagged->sha1);
376         }
377
378         /*
379          * Commit object? Just return it, we'll do all the complex
380          * reachability crud.
381          */
382         if (object->type == commit_type) {
383                 struct commit *commit = (struct commit *)object;
384                 object->flags |= flags;
385                 if (parse_commit(commit) < 0)
386                         die("unable to parse commit %s", name);
387                 if (flags & UNINTERESTING)
388                         mark_parents_uninteresting(commit);
389                 return commit;
390         }
391
392         /*
393          * Tree object? Either mark it uniniteresting, or add it
394          * to the list of objects to look at later..
395          */
396         if (object->type == tree_type) {
397                 struct tree *tree = (struct tree *)object;
398                 if (!tree_objects)
399                         return NULL;
400                 if (flags & UNINTERESTING) {
401                         mark_tree_uninteresting(tree);
402                         return NULL;
403                 }
404                 add_pending_object(object, "");
405                 return NULL;
406         }
407
408         /*
409          * Blob object? You know the drill by now..
410          */
411         if (object->type == blob_type) {
412                 struct blob *blob = (struct blob *)object;
413                 if (!blob_objects)
414                         return NULL;
415                 if (flags & UNINTERESTING) {
416                         mark_blob_uninteresting(blob);
417                         return NULL;
418                 }
419                 add_pending_object(object, "");
420                 return NULL;
421         }
422         die("%s is unknown object", name);
423 }
424
425 int main(int argc, char **argv)
426 {
427         struct commit_list *list = NULL;
428         int i, limited = 0;
429
430         for (i = 1 ; i < argc; i++) {
431                 int flags;
432                 char *arg = argv[i];
433                 struct commit *commit;
434
435                 if (!strncmp(arg, "--max-count=", 12)) {
436                         max_count = atoi(arg + 12);
437                         continue;
438                 }
439                 if (!strncmp(arg, "--max-age=", 10)) {
440                         max_age = atoi(arg + 10);
441                         continue;
442                 }
443                 if (!strncmp(arg, "--min-age=", 10)) {
444                         min_age = atoi(arg + 10);
445                         continue;
446                 }
447                 if (!strcmp(arg, "--header")) {
448                         verbose_header = 1;
449                         continue;
450                 }
451                 if (!strncmp(arg, "--pretty", 8)) {
452                         commit_format = get_commit_format(arg+8);
453                         verbose_header = 1;
454                         hdr_termination = '\n';
455                         prefix = "commit ";
456                         continue;
457                 }
458                 if (!strcmp(arg, "--parents")) {
459                         show_parents = 1;
460                         continue;
461                 }
462                 if (!strcmp(arg, "--bisect")) {
463                         bisect_list = 1;
464                         continue;
465                 }
466                 if (!strcmp(arg, "--objects")) {
467                         tag_objects = 1;
468                         tree_objects = 1;
469                         blob_objects = 1;
470                         continue;
471                 }
472                 if (!strcmp(arg, "--unpacked")) {
473                         unpacked = 1;
474                         limited = 1;
475                         continue;
476                 }
477                 if (!strcmp(arg, "--merge-order")) {
478                         merge_order = 1;
479                         continue;
480                 }
481                 if (!strcmp(arg, "--show-breaks")) {
482                         show_breaks = 1;
483                         continue;
484                 }
485                 if (!strcmp(arg, "--topo-order")) {
486                         topo_order = 1;
487                         limited = 1;
488                         continue;
489                 }
490
491                 flags = 0;
492                 if (*arg == '^') {
493                         flags = UNINTERESTING;
494                         arg++;
495                         limited = 1;
496                 }
497                 if (show_breaks && !merge_order)
498                         usage(rev_list_usage);
499                 commit = get_commit_reference(arg, flags);
500                 if (!commit)
501                         continue;
502                 if (commit->object.flags & SEEN)
503                         continue;
504                 commit->object.flags |= SEEN;
505                 commit_list_insert(commit, &list);
506         }
507
508         if (!merge_order) {             
509                 sort_by_date(&list);
510                 if (limited)
511                         list = limit_list(list);
512                 if (topo_order)
513                         sort_in_topological_order(&list);
514                 show_commit_list(list);
515         } else {
516                 if (sort_list_in_merge_order(list, &process_commit)) {
517                           die("merge order sort failed\n");
518                 }
519         }
520
521         return 0;
522 }