Add generic commit "pretty print" function.
[git.git] / rev-list.c
blob6f76b9dd52c5576ac456c95484cc1833096d55c8
1 #include "cache.h"
2 #include "commit.h"
4 #define SEEN (1u << 0)
5 #define INTERESTING (1u << 1)
6 #define UNINTERESTING (1u << 2)
8 static const char rev_list_usage[] =
9 "usage: git-rev-list [OPTION] commit-id <commit-id>\n"
10 " --max-count=nr\n"
11 " --max-age=epoch\n"
12 " --min-age=epoch\n"
13 " --header";
15 static void mark_parents_uninteresting(struct commit *commit)
17 struct commit_list *parents = commit->parents;
19 while (parents) {
20 struct commit *commit = parents->item;
21 commit->object.flags |= UNINTERESTING;
22 parents = parents->next;
26 static int everybody_uninteresting(struct commit_list *list)
28 while (list) {
29 struct commit *commit = list->item;
30 list = list->next;
31 if (commit->object.flags & UNINTERESTING)
32 continue;
33 return 0;
35 return 1;
38 int main(int argc, char **argv)
40 int nr_sha;
41 unsigned char sha1[2][20];
42 struct commit_list *list = NULL;
43 struct commit *commit, *end;
44 int i, verbose_header = 0, show_parents = 0;
45 unsigned long max_age = -1;
46 unsigned long min_age = -1;
47 int max_count = -1;
49 nr_sha = 0;
50 for (i = 1 ; i < argc; i++) {
51 char *arg = argv[i];
53 if (!strncmp(arg, "--max-count=", 12)) {
54 max_count = atoi(arg + 12);
55 continue;
57 if (!strncmp(arg, "--max-age=", 10)) {
58 max_age = atoi(arg + 10);
59 continue;
61 if (!strncmp(arg, "--min-age=", 10)) {
62 min_age = atoi(arg + 10);
63 continue;
65 if (!strcmp(arg, "--header")) {
66 verbose_header = 1;
67 continue;
69 if (!strcmp(arg, "--parents")) {
70 show_parents = 1;
71 continue;
74 if (nr_sha > 2 || get_sha1(arg, sha1[nr_sha]))
75 usage(rev_list_usage);
76 nr_sha++;
79 if (!nr_sha)
80 usage(rev_list_usage);
82 commit = lookup_commit_reference(sha1[0]);
83 if (!commit || parse_commit(commit) < 0)
84 die("bad starting commit object");
86 end = NULL;
87 if (nr_sha > 1) {
88 end = lookup_commit_reference(sha1[1]);
89 if (!end || parse_commit(end) < 0)
90 die("bad ending commit object");
93 commit_list_insert(commit, &list);
94 if (end) {
95 struct commit_list *newlist = NULL;
96 struct commit_list **p = &newlist;
97 do {
98 struct commit *commit = pop_most_recent_commit(&list, SEEN);
99 struct object *obj = &commit->object;
101 if (commit == end || (obj->flags & UNINTERESTING)) {
102 mark_parents_uninteresting(commit);
103 if (everybody_uninteresting(list))
104 break;
105 continue;
107 p = &commit_list_insert(commit, p)->next;
108 } while (list);
109 list = newlist;
112 while (list) {
113 struct commit *commit = pop_most_recent_commit(&list, SEEN);
115 if (commit->object.flags & UNINTERESTING)
116 continue;
117 if (min_age != -1 && (commit->date > min_age))
118 continue;
119 if (max_age != -1 && (commit->date < max_age))
120 break;
121 if (max_count != -1 && !max_count--)
122 break;
123 printf("%s", sha1_to_hex(commit->object.sha1));
124 if (show_parents) {
125 struct commit_list *parents = commit->parents;
126 while (parents) {
127 printf(" %s", sha1_to_hex(parents->item->object.sha1));
128 parents = parents->next;
131 putchar('\n');
132 if (verbose_header)
133 printf("%s%c", commit->buffer, 0);
135 return 0;