Code

git-commit: "read-tree -m HEAD" is not the right way to read-tree quickly
[git.git] / builtin-rev-list.c
1 #include "cache.h"
2 #include "refs.h"
3 #include "tag.h"
4 #include "commit.h"
5 #include "tree.h"
6 #include "blob.h"
7 #include "tree-walk.h"
8 #include "diff.h"
9 #include "revision.h"
10 #include "list-objects.h"
11 #include "builtin.h"
13 /* bits #0-15 in revision.h */
15 #define COUNTED         (1u<<16)
17 static const char rev_list_usage[] =
18 "git-rev-list [OPTION] <commit-id>... [ -- paths... ]\n"
19 "  limiting output:\n"
20 "    --max-count=nr\n"
21 "    --max-age=epoch\n"
22 "    --min-age=epoch\n"
23 "    --sparse\n"
24 "    --no-merges\n"
25 "    --remove-empty\n"
26 "    --all\n"
27 "    --stdin\n"
28 "  ordering output:\n"
29 "    --topo-order\n"
30 "    --date-order\n"
31 "  formatting output:\n"
32 "    --parents\n"
33 "    --objects | --objects-edge\n"
34 "    --unpacked\n"
35 "    --header | --pretty\n"
36 "    --abbrev=nr | --no-abbrev\n"
37 "    --abbrev-commit\n"
38 "  special purpose:\n"
39 "    --bisect"
40 ;
42 static struct rev_info revs;
44 static int bisect_list;
45 static int show_timestamp;
46 static int hdr_termination;
47 static const char *header_prefix;
49 static void show_commit(struct commit *commit)
50 {
51         if (show_timestamp)
52                 printf("%lu ", commit->date);
53         if (header_prefix)
54                 fputs(header_prefix, stdout);
55         if (commit->object.flags & BOUNDARY)
56                 putchar('-');
57         else if (revs.left_right) {
58                 if (commit->object.flags & SYMMETRIC_LEFT)
59                         putchar('<');
60                 else
61                         putchar('>');
62         }
63         if (revs.abbrev_commit && revs.abbrev)
64                 fputs(find_unique_abbrev(commit->object.sha1, revs.abbrev),
65                       stdout);
66         else
67                 fputs(sha1_to_hex(commit->object.sha1), stdout);
68         if (revs.parents) {
69                 struct commit_list *parents = commit->parents;
70                 while (parents) {
71                         struct object *o = &(parents->item->object);
72                         parents = parents->next;
73                         if (o->flags & TMP_MARK)
74                                 continue;
75                         printf(" %s", sha1_to_hex(o->sha1));
76                         o->flags |= TMP_MARK;
77                 }
78                 /* TMP_MARK is a general purpose flag that can
79                  * be used locally, but the user should clean
80                  * things up after it is done with them.
81                  */
82                 for (parents = commit->parents;
83                      parents;
84                      parents = parents->next)
85                         parents->item->object.flags &= ~TMP_MARK;
86         }
87         if (revs.commit_format == CMIT_FMT_ONELINE)
88                 putchar(' ');
89         else
90                 putchar('\n');
92         if (revs.verbose_header) {
93                 static char pretty_header[16384];
94                 pretty_print_commit(revs.commit_format, commit, ~0,
95                                     pretty_header, sizeof(pretty_header),
96                                     revs.abbrev, NULL, NULL, revs.relative_date);
97                 printf("%s%c", pretty_header, hdr_termination);
98         }
99         fflush(stdout);
100         if (commit->parents) {
101                 free_commit_list(commit->parents);
102                 commit->parents = NULL;
103         }
104         free(commit->buffer);
105         commit->buffer = NULL;
108 static void show_object(struct object_array_entry *p)
110         /* An object with name "foo\n0000000..." can be used to
111          * confuse downstream git-pack-objects very badly.
112          */
113         const char *ep = strchr(p->name, '\n');
114         if (ep) {
115                 printf("%s %.*s\n", sha1_to_hex(p->item->sha1),
116                        (int) (ep - p->name),
117                        p->name);
118         }
119         else
120                 printf("%s %s\n", sha1_to_hex(p->item->sha1), p->name);
123 static void show_edge(struct commit *commit)
125         printf("-%s\n", sha1_to_hex(commit->object.sha1));
128 /*
129  * This is a truly stupid algorithm, but it's only
130  * used for bisection, and we just don't care enough.
131  *
132  * We care just barely enough to avoid recursing for
133  * non-merge entries.
134  */
135 static int count_distance(struct commit_list *entry)
137         int nr = 0;
139         while (entry) {
140                 struct commit *commit = entry->item;
141                 struct commit_list *p;
143                 if (commit->object.flags & (UNINTERESTING | COUNTED))
144                         break;
145                 if (!revs.prune_fn || (commit->object.flags & TREECHANGE))
146                         nr++;
147                 commit->object.flags |= COUNTED;
148                 p = commit->parents;
149                 entry = p;
150                 if (p) {
151                         p = p->next;
152                         while (p) {
153                                 nr += count_distance(p);
154                                 p = p->next;
155                         }
156                 }
157         }
159         return nr;
162 static void clear_distance(struct commit_list *list)
164         while (list) {
165                 struct commit *commit = list->item;
166                 commit->object.flags &= ~COUNTED;
167                 list = list->next;
168         }
171 static struct commit_list *find_bisection(struct commit_list *list)
173         int nr, closest;
174         struct commit_list *p, *best;
176         nr = 0;
177         p = list;
178         while (p) {
179                 if (!revs.prune_fn || (p->item->object.flags & TREECHANGE))
180                         nr++;
181                 p = p->next;
182         }
183         closest = 0;
184         best = list;
186         for (p = list; p; p = p->next) {
187                 int distance;
189                 if (revs.prune_fn && !(p->item->object.flags & TREECHANGE))
190                         continue;
192                 distance = count_distance(p);
193                 clear_distance(list);
194                 if (nr - distance < distance)
195                         distance = nr - distance;
196                 if (distance > closest) {
197                         best = p;
198                         closest = distance;
199                 }
200         }
201         if (best)
202                 best->next = NULL;
203         return best;
206 static void read_revisions_from_stdin(struct rev_info *revs)
208         char line[1000];
210         while (fgets(line, sizeof(line), stdin) != NULL) {
211                 int len = strlen(line);
212                 if (line[len - 1] == '\n')
213                         line[--len] = 0;
214                 if (!len)
215                         break;
216                 if (line[0] == '-')
217                         die("options not supported in --stdin mode");
218                 if (handle_revision_arg(line, revs, 0, 1))
219                         die("bad revision '%s'", line);
220         }
223 int cmd_rev_list(int argc, const char **argv, const char *prefix)
225         struct commit_list *list;
226         int i;
227         int read_from_stdin = 0;
229         git_config(git_default_config);
230         init_revisions(&revs, prefix);
231         revs.abbrev = 0;
232         revs.commit_format = CMIT_FMT_UNSPECIFIED;
233         argc = setup_revisions(argc, argv, &revs, NULL);
235         for (i = 1 ; i < argc; i++) {
236                 const char *arg = argv[i];
238                 if (!strcmp(arg, "--header")) {
239                         revs.verbose_header = 1;
240                         continue;
241                 }
242                 if (!strcmp(arg, "--timestamp")) {
243                         show_timestamp = 1;
244                         continue;
245                 }
246                 if (!strcmp(arg, "--bisect")) {
247                         bisect_list = 1;
248                         continue;
249                 }
250                 if (!strcmp(arg, "--stdin")) {
251                         if (read_from_stdin++)
252                                 die("--stdin given twice?");
253                         read_revisions_from_stdin(&revs);
254                         continue;
255                 }
256                 usage(rev_list_usage);
258         }
259         if (revs.commit_format != CMIT_FMT_UNSPECIFIED) {
260                 /* The command line has a --pretty  */
261                 hdr_termination = '\n';
262                 if (revs.commit_format == CMIT_FMT_ONELINE)
263                         header_prefix = "";
264                 else
265                         header_prefix = "commit ";
266         }
267         else if (revs.verbose_header)
268                 /* Only --header was specified */
269                 revs.commit_format = CMIT_FMT_RAW;
271         list = revs.commits;
273         if ((!list &&
274              (!(revs.tag_objects||revs.tree_objects||revs.blob_objects) &&
275               !revs.pending.nr)) ||
276             revs.diff)
277                 usage(rev_list_usage);
279         save_commit_buffer = revs.verbose_header || revs.grep_filter;
280         track_object_refs = 0;
281         if (bisect_list)
282                 revs.limited = 1;
284         prepare_revision_walk(&revs);
285         if (revs.tree_objects)
286                 mark_edges_uninteresting(revs.commits, &revs, show_edge);
288         if (bisect_list)
289                 revs.commits = find_bisection(revs.commits);
291         traverse_commit_list(&revs, show_commit, show_object);
293         return 0;