blob: 95d21e6472921ab993373ef1848357379440d46e [file] [log] [blame]
Linus Torvaldsae563542006-02-25 16:19:46 -08001#include "cache.h"
2#include "tag.h"
3#include "blob.h"
4#include "tree.h"
5#include "commit.h"
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08006#include "diff.h"
Linus Torvaldsae563542006-02-25 16:19:46 -08007#include "refs.h"
8#include "revision.h"
Adam Simpkins7fefda52008-05-04 03:36:54 -07009#include "graph.h"
Junio C Hamano8ecae9b2006-09-17 15:43:40 -070010#include "grep.h"
Johannes Schindelin8860fd42007-01-11 11:47:48 +010011#include "reflog-walk.h"
Junio C Hamanod7a17ca2007-04-09 03:40:38 -070012#include "patch-ids.h"
Junio C Hamanof35f5602008-04-03 02:12:06 -070013#include "decorate.h"
Linus Torvalds78892e32008-11-03 11:25:46 -080014#include "log-tree.h"
Thomas Rast894a9d32010-03-12 18:04:26 +010015#include "string-list.h"
Linus Torvaldsae563542006-02-25 16:19:46 -080016
Linus Torvaldscdcefbc2007-11-03 11:11:10 -070017volatile show_early_output_fn_t show_early_output;
18
Linus Torvaldscf2ab912009-04-10 18:15:26 -070019char *path_name(const struct name_path *path, const char *name)
Linus Torvaldsae563542006-02-25 16:19:46 -080020{
Linus Torvaldscf2ab912009-04-10 18:15:26 -070021 const struct name_path *p;
Linus Torvaldsae563542006-02-25 16:19:46 -080022 char *n, *m;
23 int nlen = strlen(name);
24 int len = nlen + 1;
25
26 for (p = path; p; p = p->up) {
27 if (p->elem_len)
28 len += p->elem_len + 1;
29 }
30 n = xmalloc(len);
31 m = n + len - (nlen + 1);
32 strcpy(m, name);
33 for (p = path; p; p = p->up) {
34 if (p->elem_len) {
35 m -= p->elem_len + 1;
36 memcpy(m, p->elem, p->elem_len);
37 m[p->elem_len] = '/';
38 }
39 }
40 return n;
41}
42
Junio C Hamanobeba25a2011-08-17 14:30:35 -070043static int show_path_component_truncated(FILE *out, const char *name, int len)
44{
45 int cnt;
46 for (cnt = 0; cnt < len; cnt++) {
47 int ch = name[cnt];
48 if (!ch || ch == '\n')
49 return -1;
50 fputc(ch, out);
51 }
52 return len;
53}
54
55static int show_path_truncated(FILE *out, const struct name_path *path)
56{
57 int emitted, ours;
58
59 if (!path)
60 return 0;
61 emitted = show_path_truncated(out, path->up);
62 if (emitted < 0)
63 return emitted;
64 if (emitted)
65 fputc('/', out);
66 ours = show_path_component_truncated(out, path->elem, path->elem_len);
67 if (ours < 0)
68 return ours;
69 return ours || emitted;
70}
71
Junio C Hamano91f17512011-08-17 14:30:34 -070072void show_object_with_name(FILE *out, struct object *obj, const struct name_path *path, const char *component)
73{
Junio C Hamanobeba25a2011-08-17 14:30:35 -070074 struct name_path leaf;
75 leaf.up = (struct name_path *)path;
76 leaf.elem = component;
77 leaf.elem_len = strlen(component);
Junio C Hamano91f17512011-08-17 14:30:34 -070078
Junio C Hamanobeba25a2011-08-17 14:30:35 -070079 fprintf(out, "%s ", sha1_to_hex(obj->sha1));
80 show_path_truncated(out, &leaf);
81 fputc('\n', out);
Junio C Hamano91f17512011-08-17 14:30:34 -070082}
83
Linus Torvalds1f1e8952006-06-19 17:42:35 -070084void add_object(struct object *obj,
85 struct object_array *p,
86 struct name_path *path,
87 const char *name)
Linus Torvaldsae563542006-02-25 16:19:46 -080088{
Linus Torvalds1f1e8952006-06-19 17:42:35 -070089 add_object_array(obj, path_name(path, name), p);
Linus Torvaldsae563542006-02-25 16:19:46 -080090}
91
92static void mark_blob_uninteresting(struct blob *blob)
93{
Martin Koeglerc1ee9012008-02-18 21:47:54 +010094 if (!blob)
95 return;
Linus Torvaldsae563542006-02-25 16:19:46 -080096 if (blob->object.flags & UNINTERESTING)
97 return;
98 blob->object.flags |= UNINTERESTING;
99}
100
101void mark_tree_uninteresting(struct tree *tree)
102{
Linus Torvaldsf75e53e2006-05-29 12:20:14 -0700103 struct tree_desc desc;
Linus Torvalds4c068a92006-05-30 09:45:45 -0700104 struct name_entry entry;
Linus Torvaldsae563542006-02-25 16:19:46 -0800105 struct object *obj = &tree->object;
Linus Torvaldsae563542006-02-25 16:19:46 -0800106
Martin Koeglerc1ee9012008-02-18 21:47:54 +0100107 if (!tree)
108 return;
Linus Torvaldsae563542006-02-25 16:19:46 -0800109 if (obj->flags & UNINTERESTING)
110 return;
111 obj->flags |= UNINTERESTING;
112 if (!has_sha1_file(obj->sha1))
113 return;
114 if (parse_tree(tree) < 0)
115 die("bad tree %s", sha1_to_hex(obj->sha1));
Linus Torvaldsf75e53e2006-05-29 12:20:14 -0700116
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700117 init_tree_desc(&desc, tree->buffer, tree->size);
Linus Torvalds4c068a92006-05-30 09:45:45 -0700118 while (tree_entry(&desc, &entry)) {
Linus Torvalds4d1012c2007-11-11 23:35:23 +0000119 switch (object_type(entry.mode)) {
120 case OBJ_TREE:
Linus Torvalds4c068a92006-05-30 09:45:45 -0700121 mark_tree_uninteresting(lookup_tree(entry.sha1));
Linus Torvalds4d1012c2007-11-11 23:35:23 +0000122 break;
123 case OBJ_BLOB:
Linus Torvalds4c068a92006-05-30 09:45:45 -0700124 mark_blob_uninteresting(lookup_blob(entry.sha1));
Linus Torvalds4d1012c2007-11-11 23:35:23 +0000125 break;
126 default:
127 /* Subproject commit - not in this repository */
128 break;
129 }
Linus Torvaldsae563542006-02-25 16:19:46 -0800130 }
Linus Torvaldsf75e53e2006-05-29 12:20:14 -0700131
132 /*
133 * We don't care about the tree any more
134 * after it has been marked uninteresting.
135 */
136 free(tree->buffer);
137 tree->buffer = NULL;
Linus Torvaldsae563542006-02-25 16:19:46 -0800138}
139
140void mark_parents_uninteresting(struct commit *commit)
141{
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700142 struct commit_list *parents = NULL, *l;
143
144 for (l = commit->parents; l; l = l->next)
145 commit_list_insert(l->item, &parents);
Linus Torvaldsae563542006-02-25 16:19:46 -0800146
147 while (parents) {
148 struct commit *commit = parents->item;
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700149 l = parents;
150 parents = parents->next;
151 free(l);
152
153 while (commit) {
154 /*
155 * A missing commit is ok iff its parent is marked
156 * uninteresting.
157 *
158 * We just mark such a thing parsed, so that when
159 * it is popped next time around, we won't be trying
160 * to parse it and get an error.
161 */
162 if (!has_sha1_file(commit->object.sha1))
163 commit->object.parsed = 1;
164
165 if (commit->object.flags & UNINTERESTING)
166 break;
167
Matthias Urlichsd2c4af72006-03-09 05:04:36 +0100168 commit->object.flags |= UNINTERESTING;
Linus Torvaldsae563542006-02-25 16:19:46 -0800169
Matthias Urlichsd2c4af72006-03-09 05:04:36 +0100170 /*
171 * Normally we haven't parsed the parent
172 * yet, so we won't have a parent of a parent
173 * here. However, it may turn out that we've
174 * reached this commit some other way (where it
175 * wasn't uninteresting), in which case we need
176 * to mark its parents recursively too..
177 */
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700178 if (!commit->parents)
179 break;
Linus Torvaldsae563542006-02-25 16:19:46 -0800180
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700181 for (l = commit->parents->next; l; l = l->next)
182 commit_list_insert(l->item, &parents);
183 commit = commit->parents->item;
184 }
Linus Torvaldsae563542006-02-25 16:19:46 -0800185 }
186}
187
Junio C Hamano2d93b9f2007-06-08 02:24:58 -0700188static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode)
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +0200189{
Junio C Hamanocc243c32011-05-18 18:08:09 -0700190 if (!obj)
191 return;
Linus Torvaldsaa27e462007-02-27 16:22:52 -0800192 if (revs->no_walk && (obj->flags & UNINTERESTING))
Linus Torvaldsf222abd2009-07-13 14:41:12 -0700193 revs->no_walk = 0;
Junio C Hamano105e4732010-01-26 13:48:28 -0800194 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
195 struct strbuf buf = STRBUF_INIT;
196 int len = interpret_branch_name(name, &buf);
197 int st;
198
199 if (0 < len && name[len] && buf.len)
200 strbuf_addstr(&buf, name + len);
201 st = add_reflog_for_walk(revs->reflog_info,
202 (struct commit *)obj,
203 buf.buf[0] ? buf.buf: name);
204 strbuf_release(&buf);
205 if (st)
206 return;
207 }
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +0200208 add_object_array_with_mode(obj, name, &revs->pending, mode);
Linus Torvaldsae563542006-02-25 16:19:46 -0800209}
210
Junio C Hamano2d93b9f2007-06-08 02:24:58 -0700211void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
212{
213 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
214}
215
Junio C Hamano3384a2d2007-12-11 10:09:04 -0800216void add_head_to_pending(struct rev_info *revs)
217{
218 unsigned char sha1[20];
219 struct object *obj;
220 if (get_sha1("HEAD", sha1))
221 return;
222 obj = parse_object(sha1);
223 if (!obj)
224 return;
225 add_pending_object(revs, obj, "HEAD");
226}
227
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700228static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags)
Linus Torvaldsae563542006-02-25 16:19:46 -0800229{
230 struct object *object;
231
232 object = parse_object(sha1);
Junio C Hamanocc243c32011-05-18 18:08:09 -0700233 if (!object) {
234 if (revs->ignore_missing)
235 return object;
Linus Torvaldsae563542006-02-25 16:19:46 -0800236 die("bad object %s", name);
Junio C Hamanocc243c32011-05-18 18:08:09 -0700237 }
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700238 object->flags |= flags;
239 return object;
240}
241
René Scharfe26c31772011-10-01 17:43:52 +0200242void add_pending_sha1(struct rev_info *revs, const char *name,
243 const unsigned char *sha1, unsigned int flags)
244{
245 struct object *object = get_reference(revs, name, sha1, flags);
246 add_pending_object(revs, object, name);
247}
248
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700249static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
250{
251 unsigned long flags = object->flags;
Linus Torvaldsae563542006-02-25 16:19:46 -0800252
253 /*
254 * Tag object? Look what it points to..
255 */
Linus Torvalds19746322006-07-11 20:45:31 -0700256 while (object->type == OBJ_TAG) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800257 struct tag *tag = (struct tag *) object;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700258 if (revs->tag_objects && !(flags & UNINTERESTING))
Linus Torvaldsae563542006-02-25 16:19:46 -0800259 add_pending_object(revs, object, tag->tag);
Martin Koegler9684afd2008-02-18 21:48:01 +0100260 if (!tag->tagged)
261 die("bad tag");
Linus Torvaldsae563542006-02-25 16:19:46 -0800262 object = parse_object(tag->tagged->sha1);
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800263 if (!object) {
264 if (flags & UNINTERESTING)
265 return NULL;
Linus Torvaldsae563542006-02-25 16:19:46 -0800266 die("bad object %s", sha1_to_hex(tag->tagged->sha1));
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800267 }
Linus Torvaldsae563542006-02-25 16:19:46 -0800268 }
269
270 /*
271 * Commit object? Just return it, we'll do all the complex
272 * reachability crud.
273 */
Linus Torvalds19746322006-07-11 20:45:31 -0700274 if (object->type == OBJ_COMMIT) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800275 struct commit *commit = (struct commit *)object;
Linus Torvaldsae563542006-02-25 16:19:46 -0800276 if (parse_commit(commit) < 0)
277 die("unable to parse commit %s", name);
Linus Torvaldsd9a83682006-02-27 08:54:36 -0800278 if (flags & UNINTERESTING) {
Linus Torvalds4262c1b2006-04-18 20:31:41 -0700279 commit->object.flags |= UNINTERESTING;
Linus Torvaldsae563542006-02-25 16:19:46 -0800280 mark_parents_uninteresting(commit);
Linus Torvaldsd9a83682006-02-27 08:54:36 -0800281 revs->limited = 1;
282 }
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700283 if (revs->show_source && !commit->util)
284 commit->util = (void *) name;
Linus Torvaldsae563542006-02-25 16:19:46 -0800285 return commit;
286 }
287
288 /*
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100289 * Tree object? Either mark it uninteresting, or add it
Linus Torvaldsae563542006-02-25 16:19:46 -0800290 * to the list of objects to look at later..
291 */
Linus Torvalds19746322006-07-11 20:45:31 -0700292 if (object->type == OBJ_TREE) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800293 struct tree *tree = (struct tree *)object;
294 if (!revs->tree_objects)
295 return NULL;
296 if (flags & UNINTERESTING) {
297 mark_tree_uninteresting(tree);
298 return NULL;
299 }
300 add_pending_object(revs, object, "");
301 return NULL;
302 }
303
304 /*
305 * Blob object? You know the drill by now..
306 */
Linus Torvalds19746322006-07-11 20:45:31 -0700307 if (object->type == OBJ_BLOB) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800308 struct blob *blob = (struct blob *)object;
309 if (!revs->blob_objects)
310 return NULL;
311 if (flags & UNINTERESTING) {
312 mark_blob_uninteresting(blob);
313 return NULL;
314 }
315 add_pending_object(revs, object, "");
316 return NULL;
317 }
318 die("%s is unknown object", name);
319}
320
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800321static int everybody_uninteresting(struct commit_list *orig)
322{
323 struct commit_list *list = orig;
324 while (list) {
325 struct commit *commit = list->item;
326 list = list->next;
327 if (commit->object.flags & UNINTERESTING)
328 continue;
329 return 0;
330 }
331 return 1;
332}
333
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700334/*
335 * The goal is to get REV_TREE_NEW as the result only if the
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700336 * diff consists of all '+' (and no other changes), REV_TREE_OLD
337 * if the whole diff is removal of old data, and otherwise
338 * REV_TREE_DIFFERENT (of course if the trees are the same we
339 * want REV_TREE_SAME).
340 * That means that once we get to REV_TREE_DIFFERENT, we do not
341 * have to look any further.
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700342 */
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100343static int tree_difference = REV_TREE_SAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800344
345static void file_add_remove(struct diff_options *options,
346 int addremove, unsigned mode,
347 const unsigned char *sha1,
Jeff Kinge5450102012-07-28 11:03:01 -0400348 int sha1_valid,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100349 const char *fullpath, unsigned dirty_submodule)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800350{
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700351 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800352
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700353 tree_difference |= diff;
Junio C Hamanodd47aa32007-03-14 13:18:15 -0700354 if (tree_difference == REV_TREE_DIFFERENT)
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100355 DIFF_OPT_SET(options, HAS_CHANGES);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800356}
357
358static void file_change(struct diff_options *options,
359 unsigned old_mode, unsigned new_mode,
360 const unsigned char *old_sha1,
361 const unsigned char *new_sha1,
Jeff Kinge5450102012-07-28 11:03:01 -0400362 int old_sha1_valid, int new_sha1_valid,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100363 const char *fullpath,
364 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800365{
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100366 tree_difference = REV_TREE_DIFFERENT;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100367 DIFF_OPT_SET(options, HAS_CHANGES);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800368}
369
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800370static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800371{
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800372 struct tree *t1 = parent->tree;
373 struct tree *t2 = commit->tree;
374
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800375 if (!t1)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100376 return REV_TREE_NEW;
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700377 if (!t2)
378 return REV_TREE_OLD;
Linus Torvalds78892e32008-11-03 11:25:46 -0800379
380 if (revs->simplify_by_decoration) {
381 /*
382 * If we are simplifying by decoration, then the commit
383 * is worth showing if it has a tag pointing at it.
384 */
385 if (lookup_decoration(&name_decoration, &commit->object))
386 return REV_TREE_DIFFERENT;
387 /*
388 * A commit that is not pointed by a tag is uninteresting
389 * if we are not limited by path. This means that you will
390 * see the usual "commits that touch the paths" plus any
391 * tagged commit by specifying both --simplify-by-decoration
392 * and pathspec.
393 */
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +0700394 if (!revs->prune_data.nr)
Linus Torvalds78892e32008-11-03 11:25:46 -0800395 return REV_TREE_SAME;
396 }
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700397
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100398 tree_difference = REV_TREE_SAME;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100399 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
Junio C Hamanoc4e05b12006-04-10 18:14:54 -0700400 if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700401 &revs->pruning) < 0)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100402 return REV_TREE_DIFFERENT;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800403 return tree_difference;
404}
405
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800406static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800407{
408 int retval;
409 void *tree;
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700410 unsigned long size;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800411 struct tree_desc empty, real;
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800412 struct tree *t1 = commit->tree;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800413
414 if (!t1)
415 return 0;
416
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700417 tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800418 if (!tree)
419 return 0;
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700420 init_tree_desc(&real, tree, size);
421 init_tree_desc(&empty, "", 0);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800422
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700423 tree_difference = REV_TREE_SAME;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100424 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700425 retval = diff_tree(&empty, &real, "", &revs->pruning);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800426 free(tree);
427
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700428 return retval >= 0 && (tree_difference == REV_TREE_SAME);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800429}
430
431static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
432{
433 struct commit_list **pp, *parent;
Junio C Hamano36ed1912012-01-19 11:58:45 -0800434 int tree_changed = 0, tree_same = 0, nth_parent = 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800435
Linus Torvalds53b2c822007-11-05 13:22:34 -0800436 /*
437 * If we don't do pruning, everything is interesting
438 */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800439 if (!revs->prune)
Linus Torvalds53b2c822007-11-05 13:22:34 -0800440 return;
Linus Torvalds53b2c822007-11-05 13:22:34 -0800441
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800442 if (!commit->tree)
443 return;
444
445 if (!commit->parents) {
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800446 if (rev_same_tree_as_empty(revs, commit))
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800447 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800448 return;
449 }
450
Linus Torvalds53b2c822007-11-05 13:22:34 -0800451 /*
452 * Normal non-merge commit? If we don't want to make the
453 * history dense, we consider it always to be a change..
454 */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800455 if (!revs->dense && !commit->parents->next)
Linus Torvalds53b2c822007-11-05 13:22:34 -0800456 return;
Linus Torvalds53b2c822007-11-05 13:22:34 -0800457
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800458 pp = &commit->parents;
459 while ((parent = *pp) != NULL) {
460 struct commit *p = parent->item;
461
Junio C Hamano36ed1912012-01-19 11:58:45 -0800462 /*
463 * Do not compare with later parents when we care only about
464 * the first parent chain, in order to avoid derailing the
465 * traversal to follow a side branch that brought everything
466 * in the path we are limited to by the pathspec.
467 */
468 if (revs->first_parent_only && nth_parent++)
469 break;
Alex Riesencc0e6c52007-05-04 23:54:57 +0200470 if (parse_commit(p) < 0)
471 die("cannot simplify commit %s (because of %s)",
472 sha1_to_hex(commit->object.sha1),
473 sha1_to_hex(p->object.sha1));
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800474 switch (rev_compare_tree(revs, p, commit)) {
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100475 case REV_TREE_SAME:
Linus Torvalds6631c732006-06-30 20:21:59 -0700476 tree_same = 1;
Linus Torvalds92024342006-06-11 10:57:35 -0700477 if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
Junio C Hamanof3219fb2006-03-10 21:59:37 -0800478 /* Even if a merge with an uninteresting
479 * side branch brought the entire change
480 * we are interested in, we do not want
481 * to lose the other branches of this
482 * merge, so we just keep going.
483 */
484 pp = &parent->next;
485 continue;
486 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800487 parent->next = NULL;
488 commit->parents = parent;
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800489 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800490 return;
491
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100492 case REV_TREE_NEW:
493 if (revs->remove_empty_trees &&
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800494 rev_same_tree_as_empty(revs, p)) {
Junio C Hamanoc348f312006-03-12 13:39:31 -0800495 /* We are adding all the specified
496 * paths from this parent, so the
497 * history beyond this parent is not
498 * interesting. Remove its parents
499 * (they are grandparents for us).
500 * IOW, we pretend this parent is a
501 * "root" commit.
Junio C Hamanoa41e1092006-03-12 13:39:31 -0800502 */
Alex Riesencc0e6c52007-05-04 23:54:57 +0200503 if (parse_commit(p) < 0)
504 die("cannot simplify commit %s (invalid %s)",
505 sha1_to_hex(commit->object.sha1),
506 sha1_to_hex(p->object.sha1));
Junio C Hamanoc348f312006-03-12 13:39:31 -0800507 p->parents = NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800508 }
509 /* fallthrough */
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700510 case REV_TREE_OLD:
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100511 case REV_TREE_DIFFERENT:
Junio C Hamanof3219fb2006-03-10 21:59:37 -0800512 tree_changed = 1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800513 pp = &parent->next;
514 continue;
515 }
516 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
517 }
Linus Torvalds6631c732006-06-30 20:21:59 -0700518 if (tree_changed && !tree_same)
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800519 return;
520 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800521}
522
Thiago Farina47e44ed2010-11-26 23:58:14 -0200523static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400524 struct commit_list *cached_base, struct commit_list **cache)
525{
526 struct commit_list *new_entry;
527
528 if (cached_base && p->date < cached_base->item->date)
Thiago Farina47e44ed2010-11-26 23:58:14 -0200529 new_entry = commit_list_insert_by_date(p, &cached_base->next);
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400530 else
Thiago Farina47e44ed2010-11-26 23:58:14 -0200531 new_entry = commit_list_insert_by_date(p, head);
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400532
533 if (cache && (!*cache || p->date < (*cache)->item->date))
534 *cache = new_entry;
535}
536
537static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
538 struct commit_list **list, struct commit_list **cache_ptr)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800539{
540 struct commit_list *parent = commit->parents;
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700541 unsigned left_flag;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400542 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800543
Linus Torvalds3381c792006-04-08 17:05:58 -0700544 if (commit->object.flags & ADDED)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200545 return 0;
Linus Torvalds3381c792006-04-08 17:05:58 -0700546 commit->object.flags |= ADDED;
547
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800548 /*
549 * If the commit is uninteresting, don't try to
550 * prune parents - we want the maximal uninteresting
551 * set.
552 *
553 * Normally we haven't parsed the parent
554 * yet, so we won't have a parent of a parent
555 * here. However, it may turn out that we've
556 * reached this commit some other way (where it
557 * wasn't uninteresting), in which case we need
558 * to mark its parents recursively too..
559 */
560 if (commit->object.flags & UNINTERESTING) {
561 while (parent) {
562 struct commit *p = parent->item;
563 parent = parent->next;
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800564 if (p)
565 p->object.flags |= UNINTERESTING;
Alex Riesencc0e6c52007-05-04 23:54:57 +0200566 if (parse_commit(p) < 0)
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800567 continue;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800568 if (p->parents)
569 mark_parents_uninteresting(p);
570 if (p->object.flags & SEEN)
571 continue;
572 p->object.flags |= SEEN;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200573 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800574 }
Alex Riesencc0e6c52007-05-04 23:54:57 +0200575 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800576 }
577
578 /*
579 * Ok, the commit wasn't uninteresting. Try to
580 * simplify the commit history and find the parent
581 * that has no differences in the path set if one exists.
582 */
Linus Torvalds53b2c822007-11-05 13:22:34 -0800583 try_to_simplify_commit(revs, commit);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800584
Linus Torvaldsba1d4502006-04-15 12:09:56 -0700585 if (revs->no_walk)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200586 return 0;
Linus Torvaldsba1d4502006-04-15 12:09:56 -0700587
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700588 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
Junio C Hamano0053e902007-03-13 01:57:22 -0700589
Stephen R. van den Bergd9c292e2008-04-27 19:32:46 +0200590 for (parent = commit->parents; parent; parent = parent->next) {
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800591 struct commit *p = parent->item;
592
Alex Riesencc0e6c52007-05-04 23:54:57 +0200593 if (parse_commit(p) < 0)
594 return -1;
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700595 if (revs->show_source && !p->util)
596 p->util = commit->util;
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700597 p->object.flags |= left_flag;
Lars Hjemliad1012e2008-05-12 17:12:36 +0200598 if (!(p->object.flags & SEEN)) {
599 p->object.flags |= SEEN;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200600 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
Lars Hjemliad1012e2008-05-12 17:12:36 +0200601 }
Junio C Hamano60d30b02008-07-31 22:17:13 -0700602 if (revs->first_parent_only)
Stephen R. van den Bergd9c292e2008-04-27 19:32:46 +0200603 break;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800604 }
Alex Riesencc0e6c52007-05-04 23:54:57 +0200605 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800606}
607
Johannes Schindelin36d56de2007-07-10 14:50:49 +0100608static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700609{
610 struct commit_list *p;
611 int left_count = 0, right_count = 0;
612 int left_first;
613 struct patch_ids ids;
Michael J Gruberadbbb312011-03-07 13:31:40 +0100614 unsigned cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700615
616 /* First count the commits on the left and on the right */
617 for (p = list; p; p = p->next) {
618 struct commit *commit = p->item;
619 unsigned flags = commit->object.flags;
620 if (flags & BOUNDARY)
621 ;
622 else if (flags & SYMMETRIC_LEFT)
623 left_count++;
624 else
625 right_count++;
626 }
627
Thomas Rast36c07972010-02-20 12:42:04 +0100628 if (!left_count || !right_count)
629 return;
630
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700631 left_first = left_count < right_count;
632 init_patch_ids(&ids);
Nguyễn Thái Ngọc Duy66f13622010-12-15 22:02:38 +0700633 ids.diffopts.pathspec = revs->diffopt.pathspec;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700634
635 /* Compute patch-ids for one side */
636 for (p = list; p; p = p->next) {
637 struct commit *commit = p->item;
638 unsigned flags = commit->object.flags;
639
640 if (flags & BOUNDARY)
641 continue;
642 /*
643 * If we have fewer left, left_first is set and we omit
644 * commits on the right branch in this loop. If we have
645 * fewer right, we skip the left ones.
646 */
647 if (left_first != !!(flags & SYMMETRIC_LEFT))
648 continue;
649 commit->util = add_commit_patch_id(commit, &ids);
650 }
651
Michael J Gruberadbbb312011-03-07 13:31:40 +0100652 /* either cherry_mark or cherry_pick are true */
653 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
654
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700655 /* Check the other side */
656 for (p = list; p; p = p->next) {
657 struct commit *commit = p->item;
658 struct patch_id *id;
659 unsigned flags = commit->object.flags;
660
661 if (flags & BOUNDARY)
662 continue;
663 /*
664 * If we have fewer left, left_first is set and we omit
665 * commits on the left branch in this loop.
666 */
667 if (left_first == !!(flags & SYMMETRIC_LEFT))
668 continue;
669
670 /*
671 * Have we seen the same patch id?
672 */
673 id = has_commit_patch_id(commit, &ids);
674 if (!id)
675 continue;
676 id->seen = 1;
Michael J Gruberadbbb312011-03-07 13:31:40 +0100677 commit->object.flags |= cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700678 }
679
680 /* Now check the original side for seen ones */
681 for (p = list; p; p = p->next) {
682 struct commit *commit = p->item;
683 struct patch_id *ent;
684
685 ent = commit->util;
686 if (!ent)
687 continue;
688 if (ent->seen)
Michael J Gruberadbbb312011-03-07 13:31:40 +0100689 commit->object.flags |= cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700690 commit->util = NULL;
691 }
692
693 free_patch_ids(&ids);
694}
695
Linus Torvalds7d004192008-03-17 18:56:33 -0700696/* How many extra uninteresting commits we want to see.. */
697#define SLOP 5
698
699static int still_interesting(struct commit_list *src, unsigned long date, int slop)
Linus Torvalds3131b712008-02-09 14:02:07 -0800700{
Linus Torvalds7d004192008-03-17 18:56:33 -0700701 /*
702 * No source list at all? We're definitely done..
703 */
704 if (!src)
705 return 0;
706
707 /*
708 * Does the destination list contain entries with a date
709 * before the source list? Definitely _not_ done.
710 */
711 if (date < src->item->date)
712 return SLOP;
713
714 /*
715 * Does the source list still have interesting commits in
716 * it? Definitely not done..
717 */
718 if (!everybody_uninteresting(src))
719 return SLOP;
720
721 /* Ok, we're closing in.. */
722 return slop-1;
Linus Torvalds3131b712008-02-09 14:02:07 -0800723}
724
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700725/*
726 * "rev-list --ancestry-path A..B" computes commits that are ancestors
727 * of B but not ancestors of A but further limits the result to those
728 * that are descendants of A. This takes the list of bottom commits and
729 * the result of "A..B" without --ancestry-path, and limits the latter
730 * further to the ones that can reach one of the commits in "bottom".
731 */
732static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
733{
734 struct commit_list *p;
735 struct commit_list *rlist = NULL;
736 int made_progress;
737
738 /*
739 * Reverse the list so that it will be likely that we would
740 * process parents before children.
741 */
742 for (p = list; p; p = p->next)
743 commit_list_insert(p->item, &rlist);
744
745 for (p = bottom; p; p = p->next)
746 p->item->object.flags |= TMP_MARK;
747
748 /*
749 * Mark the ones that can reach bottom commits in "list",
750 * in a bottom-up fashion.
751 */
752 do {
753 made_progress = 0;
754 for (p = rlist; p; p = p->next) {
755 struct commit *c = p->item;
756 struct commit_list *parents;
757 if (c->object.flags & (TMP_MARK | UNINTERESTING))
758 continue;
759 for (parents = c->parents;
760 parents;
761 parents = parents->next) {
762 if (!(parents->item->object.flags & TMP_MARK))
763 continue;
764 c->object.flags |= TMP_MARK;
765 made_progress = 1;
766 break;
767 }
768 }
769 } while (made_progress);
770
771 /*
772 * NEEDSWORK: decide if we want to remove parents that are
773 * not marked with TMP_MARK from commit->parents for commits
774 * in the resulting list. We may not want to do that, though.
775 */
776
777 /*
778 * The ones that are not marked with TMP_MARK are uninteresting
779 */
780 for (p = list; p; p = p->next) {
781 struct commit *c = p->item;
782 if (c->object.flags & TMP_MARK)
783 continue;
784 c->object.flags |= UNINTERESTING;
785 }
786
787 /* We are done with the TMP_MARK */
788 for (p = list; p; p = p->next)
789 p->item->object.flags &= ~TMP_MARK;
790 for (p = bottom; p; p = p->next)
791 p->item->object.flags &= ~TMP_MARK;
792 free_commit_list(rlist);
793}
794
795/*
796 * Before walking the history, keep the set of "negative" refs the
797 * caller has asked to exclude.
798 *
799 * This is used to compute "rev-list --ancestry-path A..B", as we need
800 * to filter the result of "A..B" further to the ones that can actually
801 * reach A.
802 */
Junio C Hamanoc3502fa2011-08-25 17:51:50 -0700803static struct commit_list *collect_bottom_commits(struct rev_info *revs)
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700804{
Junio C Hamanoc3502fa2011-08-25 17:51:50 -0700805 struct commit_list *bottom = NULL;
806 int i;
807 for (i = 0; i < revs->cmdline.nr; i++) {
808 struct rev_cmdline_entry *elem = &revs->cmdline.rev[i];
809 if ((elem->flags & UNINTERESTING) &&
810 elem->item->type == OBJ_COMMIT)
811 commit_list_insert((struct commit *)elem->item, &bottom);
812 }
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700813 return bottom;
814}
815
Michael J Gruber60adf7d2011-02-21 17:09:11 +0100816/* Assumes either left_only or right_only is set */
817static void limit_left_right(struct commit_list *list, struct rev_info *revs)
818{
819 struct commit_list *p;
820
821 for (p = list; p; p = p->next) {
822 struct commit *commit = p->item;
823
824 if (revs->right_only) {
825 if (commit->object.flags & SYMMETRIC_LEFT)
826 commit->object.flags |= SHOWN;
827 } else /* revs->left_only is set */
828 if (!(commit->object.flags & SYMMETRIC_LEFT))
829 commit->object.flags |= SHOWN;
830 }
831}
832
Alex Riesencc0e6c52007-05-04 23:54:57 +0200833static int limit_list(struct rev_info *revs)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800834{
Linus Torvalds7d004192008-03-17 18:56:33 -0700835 int slop = SLOP;
836 unsigned long date = ~0ul;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800837 struct commit_list *list = revs->commits;
838 struct commit_list *newlist = NULL;
839 struct commit_list **p = &newlist;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700840 struct commit_list *bottom = NULL;
841
842 if (revs->ancestry_path) {
Junio C Hamanoc3502fa2011-08-25 17:51:50 -0700843 bottom = collect_bottom_commits(revs);
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700844 if (!bottom)
Johan Herland97b03c32010-06-04 01:17:36 +0200845 die("--ancestry-path given but there are no bottom commits");
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700846 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800847
848 while (list) {
849 struct commit_list *entry = list;
850 struct commit *commit = list->item;
851 struct object *obj = &commit->object;
Linus Torvaldscdcefbc2007-11-03 11:11:10 -0700852 show_early_output_fn_t show;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800853
854 list = list->next;
855 free(entry);
856
857 if (revs->max_age != -1 && (commit->date < revs->max_age))
858 obj->flags |= UNINTERESTING;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400859 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200860 return -1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800861 if (obj->flags & UNINTERESTING) {
862 mark_parents_uninteresting(commit);
Linus Torvalds7d004192008-03-17 18:56:33 -0700863 if (revs->show_all)
864 p = &commit_list_insert(commit, p)->next;
865 slop = still_interesting(list, date, slop);
866 if (slop)
Linus Torvalds3131b712008-02-09 14:02:07 -0800867 continue;
Linus Torvalds7d004192008-03-17 18:56:33 -0700868 /* If showing all, add the whole pending list to the end */
869 if (revs->show_all)
870 *p = list;
871 break;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800872 }
873 if (revs->min_age != -1 && (commit->date > revs->min_age))
874 continue;
Linus Torvalds7d004192008-03-17 18:56:33 -0700875 date = commit->date;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800876 p = &commit_list_insert(commit, p)->next;
Linus Torvaldscdcefbc2007-11-03 11:11:10 -0700877
878 show = show_early_output;
879 if (!show)
880 continue;
881
882 show(revs, newlist);
883 show_early_output = NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800884 }
Michael J Gruberadbbb312011-03-07 13:31:40 +0100885 if (revs->cherry_pick || revs->cherry_mark)
Johannes Schindelin36d56de2007-07-10 14:50:49 +0100886 cherry_pick_list(newlist, revs);
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700887
Michael J Gruber60adf7d2011-02-21 17:09:11 +0100888 if (revs->left_only || revs->right_only)
889 limit_left_right(newlist, revs);
890
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700891 if (bottom) {
892 limit_to_ancestry(bottom, newlist);
893 free_commit_list(bottom);
894 }
895
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800896 revs->commits = newlist;
Alex Riesencc0e6c52007-05-04 23:54:57 +0200897 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800898}
899
Junio C Hamano281eee42011-08-25 17:35:39 -0700900static void add_rev_cmdline(struct rev_info *revs,
901 struct object *item,
902 const char *name,
903 int whence,
904 unsigned flags)
905{
906 struct rev_cmdline_info *info = &revs->cmdline;
907 int nr = info->nr;
908
909 ALLOC_GROW(info->rev, nr + 1, info->alloc);
910 info->rev[nr].item = item;
911 info->rev[nr].name = name;
912 info->rev[nr].whence = whence;
913 info->rev[nr].flags = flags;
914 info->nr++;
915}
916
Junio C Hamano63049292006-12-18 17:25:28 -0800917struct all_refs_cb {
918 int all_flags;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500919 int warned_bad_reflog;
Junio C Hamano63049292006-12-18 17:25:28 -0800920 struct rev_info *all_revs;
921 const char *name_for_errormsg;
922};
Linus Torvaldsae563542006-02-25 16:19:46 -0800923
Junio C Hamano8da19772006-09-20 22:02:01 -0700924static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
Linus Torvaldsae563542006-02-25 16:19:46 -0800925{
Junio C Hamano63049292006-12-18 17:25:28 -0800926 struct all_refs_cb *cb = cb_data;
927 struct object *object = get_reference(cb->all_revs, path, sha1,
928 cb->all_flags);
Junio C Hamano281eee42011-08-25 17:35:39 -0700929 add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
René Scharfe26c31772011-10-01 17:43:52 +0200930 add_pending_sha1(cb->all_revs, path, sha1, cb->all_flags);
Linus Torvaldsae563542006-02-25 16:19:46 -0800931 return 0;
932}
933
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200934static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
935 unsigned flags)
936{
937 cb->all_revs = revs;
938 cb->all_flags = flags;
939}
940
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200941static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags,
942 int (*for_each)(const char *, each_ref_fn, void *))
Linus Torvaldsae563542006-02-25 16:19:46 -0800943{
Junio C Hamano63049292006-12-18 17:25:28 -0800944 struct all_refs_cb cb;
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200945 init_all_refs_cb(&cb, revs, flags);
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200946 for_each(submodule, handle_one_ref, &cb);
Junio C Hamano63049292006-12-18 17:25:28 -0800947}
948
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500949static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
Junio C Hamano63049292006-12-18 17:25:28 -0800950{
951 struct all_refs_cb *cb = cb_data;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500952 if (!is_null_sha1(sha1)) {
953 struct object *o = parse_object(sha1);
954 if (o) {
955 o->flags |= cb->all_flags;
Junio C Hamano281eee42011-08-25 17:35:39 -0700956 /* ??? CMDLINEFLAGS ??? */
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500957 add_pending_object(cb->all_revs, o, "");
958 }
959 else if (!cb->warned_bad_reflog) {
Theodore Ts'o46efd2d2007-03-30 19:07:05 -0400960 warning("reflog of '%s' references pruned commits",
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500961 cb->name_for_errormsg);
962 cb->warned_bad_reflog = 1;
963 }
Junio C Hamano63049292006-12-18 17:25:28 -0800964 }
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500965}
966
Johannes Schindelin883d60f2007-01-08 01:59:54 +0100967static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
968 const char *email, unsigned long timestamp, int tz,
969 const char *message, void *cb_data)
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500970{
971 handle_one_reflog_commit(osha1, cb_data);
972 handle_one_reflog_commit(nsha1, cb_data);
Junio C Hamano63049292006-12-18 17:25:28 -0800973 return 0;
974}
975
976static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
977{
978 struct all_refs_cb *cb = cb_data;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500979 cb->warned_bad_reflog = 0;
Junio C Hamano63049292006-12-18 17:25:28 -0800980 cb->name_for_errormsg = path;
981 for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
982 return 0;
983}
984
985static void handle_reflog(struct rev_info *revs, unsigned flags)
986{
987 struct all_refs_cb cb;
988 cb.all_revs = revs;
989 cb.all_flags = flags;
Junio C Hamano25b51e22007-02-12 23:06:54 -0800990 for_each_reflog(handle_one_reflog, &cb);
Linus Torvaldsae563542006-02-25 16:19:46 -0800991}
992
Junio C Hamano281eee42011-08-25 17:35:39 -0700993static int add_parents_only(struct rev_info *revs, const char *arg_, int flags)
Junio C Hamanoea4a19e2006-04-30 00:54:29 -0700994{
995 unsigned char sha1[20];
996 struct object *it;
997 struct commit *commit;
998 struct commit_list *parents;
Junio C Hamano281eee42011-08-25 17:35:39 -0700999 const char *arg = arg_;
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001000
1001 if (*arg == '^') {
1002 flags ^= UNINTERESTING;
1003 arg++;
1004 }
Junio C Hamanocd74e472012-07-02 12:04:52 -07001005 if (get_sha1_committish(arg, sha1))
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001006 return 0;
1007 while (1) {
1008 it = get_reference(revs, arg, sha1, 0);
Junio C Hamanocc243c32011-05-18 18:08:09 -07001009 if (!it && revs->ignore_missing)
1010 return 0;
Linus Torvalds19746322006-07-11 20:45:31 -07001011 if (it->type != OBJ_TAG)
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001012 break;
Martin Koegler9684afd2008-02-18 21:48:01 +01001013 if (!((struct tag*)it)->tagged)
1014 return 0;
Shawn Pearcee7024962006-08-23 02:49:00 -04001015 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001016 }
Linus Torvalds19746322006-07-11 20:45:31 -07001017 if (it->type != OBJ_COMMIT)
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001018 return 0;
1019 commit = (struct commit *)it;
1020 for (parents = commit->parents; parents; parents = parents->next) {
1021 it = &parents->item->object;
1022 it->flags |= flags;
Junio C Hamano281eee42011-08-25 17:35:39 -07001023 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
Junio C Hamanoea4a19e2006-04-30 00:54:29 -07001024 add_pending_object(revs, it, arg);
1025 }
1026 return 1;
1027}
1028
Linus Torvaldsdb6296a2006-07-28 21:21:48 -07001029void init_revisions(struct rev_info *revs, const char *prefix)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001030{
1031 memset(revs, 0, sizeof(*revs));
Junio C Hamano8e8f9982006-04-14 22:19:38 -07001032
Junio C Hamano6b9c58f2006-04-15 23:46:36 -07001033 revs->abbrev = DEFAULT_ABBREV;
Junio C Hamano8e8f9982006-04-14 22:19:38 -07001034 revs->ignore_merges = 1;
Linus Torvalds92024342006-06-11 10:57:35 -07001035 revs->simplify_history = 1;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +01001036 DIFF_OPT_SET(&revs->pruning, RECURSIVE);
Junio C Hamano90b19942009-05-23 01:15:35 -07001037 DIFF_OPT_SET(&revs->pruning, QUICK);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001038 revs->pruning.add_remove = file_add_remove;
1039 revs->pruning.change = file_change;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001040 revs->lifo = 1;
1041 revs->dense = 1;
Linus Torvaldsdb6296a2006-07-28 21:21:48 -07001042 revs->prefix = prefix;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001043 revs->max_age = -1;
1044 revs->min_age = -1;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08001045 revs->skip_count = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001046 revs->max_count = -1;
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001047 revs->max_parents = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001048
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001049 revs->commit_format = CMIT_FMT_DEFAULT;
1050
Junio C Hamano918d4e12012-10-09 16:40:03 -07001051 init_grep_defaults();
1052 grep_init(&revs->grep_filter, prefix);
Jeff King0843acf2008-08-25 02:15:05 -04001053 revs->grep_filter.status_only = 1;
Jeff King0843acf2008-08-25 02:15:05 -04001054 revs->grep_filter.regflags = REG_NEWLINE;
1055
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001056 diff_setup(&revs->diffopt);
Junio C Hamanoc0cb4a02008-02-13 00:34:39 -08001057 if (prefix && !revs->diffopt.prefix) {
Junio C Hamanocd676a52008-02-12 14:26:02 -08001058 revs->diffopt.prefix = prefix;
1059 revs->diffopt.prefix_length = strlen(prefix);
1060 }
Jeff King3a03cf62011-03-29 16:57:27 -04001061
1062 revs->notes_opt.use_default_notes = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001063}
1064
Rene Scharfe0d2c9d62006-07-02 01:29:37 +02001065static void add_pending_commit_list(struct rev_info *revs,
1066 struct commit_list *commit_list,
1067 unsigned int flags)
1068{
1069 while (commit_list) {
1070 struct object *object = &commit_list->item->object;
1071 object->flags |= flags;
1072 add_pending_object(revs, object, sha1_to_hex(object->sha1));
1073 commit_list = commit_list->next;
1074 }
1075}
1076
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001077static void prepare_show_merge(struct rev_info *revs)
1078{
1079 struct commit_list *bases;
1080 struct commit *head, *other;
1081 unsigned char sha1[20];
1082 const char **prune = NULL;
1083 int i, prune_num = 1; /* counting terminating NULL */
1084
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +10001085 if (get_sha1("HEAD", sha1))
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001086 die("--merge without HEAD?");
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +10001087 head = lookup_commit_or_die(sha1, "HEAD");
1088 if (get_sha1("MERGE_HEAD", sha1))
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001089 die("--merge without MERGE_HEAD?");
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +10001090 other = lookup_commit_or_die(sha1, "MERGE_HEAD");
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001091 add_pending_object(revs, &head->object, "HEAD");
1092 add_pending_object(revs, &other->object, "MERGE_HEAD");
1093 bases = get_merge_bases(head, other, 1);
Junio C Hamanoe82447b2008-02-26 23:18:38 -08001094 add_pending_commit_list(revs, bases, UNINTERESTING);
1095 free_commit_list(bases);
1096 head->object.flags |= SYMMETRIC_LEFT;
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001097
1098 if (!active_nr)
1099 read_cache();
1100 for (i = 0; i < active_nr; i++) {
1101 struct cache_entry *ce = active_cache[i];
1102 if (!ce_stage(ce))
1103 continue;
Nguyễn Thái Ngọc Duyeb9cb552010-12-17 19:43:07 +07001104 if (ce_path_match(ce, &revs->prune_data)) {
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001105 prune_num++;
1106 prune = xrealloc(prune, sizeof(*prune) * prune_num);
1107 prune[prune_num-2] = ce->name;
1108 prune[prune_num-1] = NULL;
1109 }
1110 while ((i+1 < active_nr) &&
1111 ce_same_name(ce, active_cache[i+1]))
1112 i++;
1113 }
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001114 free_pathspec(&revs->prune_data);
1115 init_pathspec(&revs->prune_data, prune);
Junio C Hamanoe82447b2008-02-26 23:18:38 -08001116 revs->limited = 1;
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001117}
1118
Junio C Hamano8e676e82012-07-02 12:33:52 -07001119int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001120{
Junio C Hamano249c8f42012-07-02 12:56:44 -07001121 struct object_context oc;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001122 char *dotdot;
1123 struct object *object;
1124 unsigned char sha1[20];
1125 int local_flags;
Junio C Hamano281eee42011-08-25 17:35:39 -07001126 const char *arg = arg_;
Junio C Hamano8e676e82012-07-02 12:33:52 -07001127 int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
Junio C Hamanod5f6b1d2012-07-02 12:43:05 -07001128 unsigned get_sha1_flags = 0;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001129
1130 dotdot = strstr(arg, "..");
1131 if (dotdot) {
1132 unsigned char from_sha1[20];
1133 const char *next = dotdot + 2;
1134 const char *this = arg;
1135 int symmetric = *next == '.';
1136 unsigned int flags_exclude = flags ^ UNINTERESTING;
Junio C Hamano003c84f2011-05-02 13:39:16 -07001137 static const char head_by_default[] = "HEAD";
Junio C Hamano281eee42011-08-25 17:35:39 -07001138 unsigned int a_flags;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001139
1140 *dotdot = 0;
1141 next += symmetric;
1142
1143 if (!*next)
Junio C Hamano003c84f2011-05-02 13:39:16 -07001144 next = head_by_default;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001145 if (dotdot == arg)
Junio C Hamano003c84f2011-05-02 13:39:16 -07001146 this = head_by_default;
1147 if (this == head_by_default && next == head_by_default &&
1148 !symmetric) {
1149 /*
1150 * Just ".."? That is not a range but the
1151 * pathspec for the parent directory.
1152 */
1153 if (!cant_be_filename) {
1154 *dotdot = '.';
1155 return -1;
1156 }
1157 }
Junio C Hamanocd74e472012-07-02 12:04:52 -07001158 if (!get_sha1_committish(this, from_sha1) &&
1159 !get_sha1_committish(next, sha1)) {
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001160 struct commit *a, *b;
1161 struct commit_list *exclude;
1162
1163 a = lookup_commit_reference(from_sha1);
1164 b = lookup_commit_reference(sha1);
1165 if (!a || !b) {
Junio C Hamanocc243c32011-05-18 18:08:09 -07001166 if (revs->ignore_missing)
1167 return 0;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001168 die(symmetric ?
1169 "Invalid symmetric difference expression %s...%s" :
1170 "Invalid revision range %s..%s",
1171 arg, next);
1172 }
1173
1174 if (!cant_be_filename) {
1175 *dotdot = '.';
1176 verify_non_filename(revs->prefix, arg);
1177 }
1178
1179 if (symmetric) {
1180 exclude = get_merge_bases(a, b, 1);
1181 add_pending_commit_list(revs, exclude,
1182 flags_exclude);
1183 free_commit_list(exclude);
Junio C Hamano281eee42011-08-25 17:35:39 -07001184 a_flags = flags | SYMMETRIC_LEFT;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001185 } else
Junio C Hamano281eee42011-08-25 17:35:39 -07001186 a_flags = flags_exclude;
1187 a->object.flags |= a_flags;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001188 b->object.flags |= flags;
Junio C Hamano281eee42011-08-25 17:35:39 -07001189 add_rev_cmdline(revs, &a->object, this,
1190 REV_CMD_LEFT, a_flags);
1191 add_rev_cmdline(revs, &b->object, next,
1192 REV_CMD_RIGHT, flags);
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001193 add_pending_object(revs, &a->object, this);
1194 add_pending_object(revs, &b->object, next);
1195 return 0;
1196 }
1197 *dotdot = '.';
1198 }
1199 dotdot = strstr(arg, "^@");
1200 if (dotdot && !dotdot[2]) {
1201 *dotdot = 0;
1202 if (add_parents_only(revs, arg, flags))
1203 return 0;
1204 *dotdot = '^';
1205 }
Junio C Hamano62476c82006-10-31 14:22:34 -08001206 dotdot = strstr(arg, "^!");
1207 if (dotdot && !dotdot[2]) {
1208 *dotdot = 0;
1209 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1210 *dotdot = '^';
1211 }
1212
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001213 local_flags = 0;
1214 if (*arg == '^') {
1215 local_flags = UNINTERESTING;
1216 arg++;
1217 }
Junio C Hamanod5f6b1d2012-07-02 12:43:05 -07001218
1219 if (revarg_opt & REVARG_COMMITTISH)
1220 get_sha1_flags = GET_SHA1_COMMITTISH;
1221
1222 if (get_sha1_with_context(arg, get_sha1_flags, sha1, &oc))
Junio C Hamanocc243c32011-05-18 18:08:09 -07001223 return revs->ignore_missing ? 0 : -1;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001224 if (!cant_be_filename)
1225 verify_non_filename(revs->prefix, arg);
1226 object = get_reference(revs, arg, sha1, flags ^ local_flags);
Junio C Hamano281eee42011-08-25 17:35:39 -07001227 add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
Junio C Hamano249c8f42012-07-02 12:56:44 -07001228 add_pending_object_with_mode(revs, object, arg, oc.mode);
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001229 return 0;
1230}
1231
Junio C Hamano4da5af32011-05-11 14:01:19 -07001232struct cmdline_pathspec {
1233 int alloc;
1234 int nr;
1235 const char **path;
1236};
1237
1238static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
Adam Brewster1fc561d2008-07-05 17:26:39 -04001239{
Junio C Hamano4da5af32011-05-11 14:01:19 -07001240 while (*av) {
1241 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1242 prune->path[prune->nr++] = *(av++);
1243 }
1244}
Adam Brewster1fc561d2008-07-05 17:26:39 -04001245
Junio C Hamano4da5af32011-05-11 14:01:19 -07001246static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1247 struct cmdline_pathspec *prune)
1248{
Junio C Hamano60da8b12009-11-20 02:50:21 -08001249 while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1250 int len = sb->len;
1251 if (len && sb->buf[len - 1] == '\n')
1252 sb->buf[--len] = '\0';
Junio C Hamano4da5af32011-05-11 14:01:19 -07001253 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1254 prune->path[prune->nr++] = xstrdup(sb->buf);
Junio C Hamano60da8b12009-11-20 02:50:21 -08001255 }
Junio C Hamano60da8b12009-11-20 02:50:21 -08001256}
1257
Junio C Hamano4da5af32011-05-11 14:01:19 -07001258static void read_revisions_from_stdin(struct rev_info *revs,
1259 struct cmdline_pathspec *prune)
Adam Brewster1fc561d2008-07-05 17:26:39 -04001260{
Junio C Hamano63d564b2009-11-20 02:00:40 -08001261 struct strbuf sb;
Junio C Hamano60da8b12009-11-20 02:50:21 -08001262 int seen_dashdash = 0;
Adam Brewster1fc561d2008-07-05 17:26:39 -04001263
Junio C Hamano63d564b2009-11-20 02:00:40 -08001264 strbuf_init(&sb, 1000);
1265 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1266 int len = sb.len;
1267 if (len && sb.buf[len - 1] == '\n')
1268 sb.buf[--len] = '\0';
Adam Brewster1fc561d2008-07-05 17:26:39 -04001269 if (!len)
1270 break;
Junio C Hamano60da8b12009-11-20 02:50:21 -08001271 if (sb.buf[0] == '-') {
1272 if (len == 2 && sb.buf[1] == '-') {
1273 seen_dashdash = 1;
1274 break;
1275 }
Adam Brewster1fc561d2008-07-05 17:26:39 -04001276 die("options not supported in --stdin mode");
Junio C Hamano60da8b12009-11-20 02:50:21 -08001277 }
Junio C Hamano8e676e82012-07-02 12:33:52 -07001278 if (handle_revision_arg(sb.buf, revs, 0, REVARG_CANNOT_BE_FILENAME))
Junio C Hamano63d564b2009-11-20 02:00:40 -08001279 die("bad revision '%s'", sb.buf);
Adam Brewster1fc561d2008-07-05 17:26:39 -04001280 }
Junio C Hamano60da8b12009-11-20 02:50:21 -08001281 if (seen_dashdash)
1282 read_pathspec_from_stdin(revs, &sb, prune);
Junio C Hamano63d564b2009-11-20 02:00:40 -08001283 strbuf_release(&sb);
Adam Brewster1fc561d2008-07-05 17:26:39 -04001284}
1285
Junio C Hamano2d10c552006-09-20 13:21:56 -07001286static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1287{
Jeff King0843acf2008-08-25 02:15:05 -04001288 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
Junio C Hamano2d10c552006-09-20 13:21:56 -07001289}
1290
Junio C Hamanoa4d7d2c2008-09-04 22:15:02 -07001291static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001292{
Junio C Hamanoa4d7d2c2008-09-04 22:15:02 -07001293 append_header_grep_pattern(&revs->grep_filter, field, pattern);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001294}
1295
1296static void add_message_grep(struct rev_info *revs, const char *pattern)
1297{
Junio C Hamano2d10c552006-09-20 13:21:56 -07001298 add_grep(revs, pattern, GREP_PATTERN_BODY);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001299}
1300
Pierre Habouzit6b61ec02008-07-09 23:38:34 +02001301static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1302 int *unkc, const char **unkv)
Pierre Habouzit02e54222008-07-08 15:19:33 +02001303{
1304 const char *arg = argv[0];
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001305 const char *optarg;
1306 int argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001307
1308 /* pseudo revision arguments */
1309 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1310 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1311 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001312 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
Jonathan Nieder0fc63ec2011-04-21 05:48:24 -05001313 !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") ||
1314 !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") ||
Martin von Zweigbergkca92e592012-08-28 23:15:54 -07001315 !prefixcmp(arg, "--remotes=") || !prefixcmp(arg, "--no-walk="))
Pierre Habouzit02e54222008-07-08 15:19:33 +02001316 {
1317 unkv[(*unkc)++] = arg;
Pierre Habouzit0fe8c132008-07-31 12:22:23 +02001318 return 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001319 }
1320
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001321 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1322 revs->max_count = atoi(optarg);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001323 revs->no_walk = 0;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001324 return argcount;
1325 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1326 revs->skip_count = atoi(optarg);
1327 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001328 } else if ((*arg == '-') && isdigit(arg[1])) {
1329 /* accept -<digit>, like traditional "head" */
1330 revs->max_count = atoi(arg + 1);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001331 revs->no_walk = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001332 } else if (!strcmp(arg, "-n")) {
1333 if (argc <= 1)
1334 return error("-n requires an argument");
1335 revs->max_count = atoi(argv[1]);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001336 revs->no_walk = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001337 return 2;
1338 } else if (!prefixcmp(arg, "-n")) {
1339 revs->max_count = atoi(arg + 2);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001340 revs->no_walk = 0;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001341 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1342 revs->max_age = atoi(optarg);
1343 return argcount;
1344 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1345 revs->max_age = approxidate(optarg);
1346 return argcount;
1347 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1348 revs->max_age = approxidate(optarg);
1349 return argcount;
1350 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1351 revs->min_age = atoi(optarg);
1352 return argcount;
1353 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1354 revs->min_age = approxidate(optarg);
1355 return argcount;
1356 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1357 revs->min_age = approxidate(optarg);
1358 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001359 } else if (!strcmp(arg, "--first-parent")) {
1360 revs->first_parent_only = 1;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -07001361 } else if (!strcmp(arg, "--ancestry-path")) {
1362 revs->ancestry_path = 1;
Johan Herlandcb7529e2010-06-04 01:17:37 +02001363 revs->simplify_history = 0;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -07001364 revs->limited = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001365 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1366 init_reflog_walk(&revs->reflog_info);
1367 } else if (!strcmp(arg, "--default")) {
1368 if (argc <= 1)
1369 return error("bad --default argument");
1370 revs->def = argv[1];
1371 return 2;
1372 } else if (!strcmp(arg, "--merge")) {
1373 revs->show_merge = 1;
1374 } else if (!strcmp(arg, "--topo-order")) {
1375 revs->lifo = 1;
1376 revs->topo_order = 1;
Junio C Hamano6546b592008-07-31 01:17:41 -07001377 } else if (!strcmp(arg, "--simplify-merges")) {
1378 revs->simplify_merges = 1;
Junio C Hamanoa52f0072012-06-08 14:47:08 -07001379 revs->topo_order = 1;
Junio C Hamano6546b592008-07-31 01:17:41 -07001380 revs->rewrite_parents = 1;
1381 revs->simplify_history = 0;
1382 revs->limited = 1;
Linus Torvalds78892e32008-11-03 11:25:46 -08001383 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1384 revs->simplify_merges = 1;
Junio C Hamanoa52f0072012-06-08 14:47:08 -07001385 revs->topo_order = 1;
Linus Torvalds78892e32008-11-03 11:25:46 -08001386 revs->rewrite_parents = 1;
1387 revs->simplify_history = 0;
1388 revs->simplify_by_decoration = 1;
1389 revs->limited = 1;
1390 revs->prune = 1;
Lars Hjemli33e70182009-08-15 16:23:12 +02001391 load_ref_decorations(DECORATE_SHORT_REFS);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001392 } else if (!strcmp(arg, "--date-order")) {
1393 revs->lifo = 0;
1394 revs->topo_order = 1;
1395 } else if (!prefixcmp(arg, "--early-output")) {
1396 int count = 100;
1397 switch (arg[14]) {
1398 case '=':
1399 count = atoi(arg+15);
1400 /* Fallthrough */
1401 case 0:
1402 revs->topo_order = 1;
1403 revs->early_output = count;
1404 }
1405 } else if (!strcmp(arg, "--parents")) {
1406 revs->rewrite_parents = 1;
1407 revs->print_parents = 1;
1408 } else if (!strcmp(arg, "--dense")) {
1409 revs->dense = 1;
1410 } else if (!strcmp(arg, "--sparse")) {
1411 revs->dense = 0;
1412 } else if (!strcmp(arg, "--show-all")) {
1413 revs->show_all = 1;
1414 } else if (!strcmp(arg, "--remove-empty")) {
1415 revs->remove_empty_trees = 1;
Linus Torvaldsb8e8db22009-06-29 10:28:25 -07001416 } else if (!strcmp(arg, "--merges")) {
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001417 revs->min_parents = 2;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001418 } else if (!strcmp(arg, "--no-merges")) {
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001419 revs->max_parents = 1;
1420 } else if (!prefixcmp(arg, "--min-parents=")) {
1421 revs->min_parents = atoi(arg+14);
1422 } else if (!prefixcmp(arg, "--no-min-parents")) {
1423 revs->min_parents = 0;
1424 } else if (!prefixcmp(arg, "--max-parents=")) {
1425 revs->max_parents = atoi(arg+14);
1426 } else if (!prefixcmp(arg, "--no-max-parents")) {
1427 revs->max_parents = -1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001428 } else if (!strcmp(arg, "--boundary")) {
1429 revs->boundary = 1;
1430 } else if (!strcmp(arg, "--left-right")) {
1431 revs->left_right = 1;
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001432 } else if (!strcmp(arg, "--left-only")) {
Junio C Hamano24852d92011-02-21 16:58:37 -08001433 if (revs->right_only)
Michael J Gruber94f605e2011-03-07 13:31:42 +01001434 die("--left-only is incompatible with --right-only"
1435 " or --cherry");
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001436 revs->left_only = 1;
1437 } else if (!strcmp(arg, "--right-only")) {
Junio C Hamano24852d92011-02-21 16:58:37 -08001438 if (revs->left_only)
1439 die("--right-only is incompatible with --left-only");
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001440 revs->right_only = 1;
Michael J Gruber94f605e2011-03-07 13:31:42 +01001441 } else if (!strcmp(arg, "--cherry")) {
1442 if (revs->left_only)
1443 die("--cherry is incompatible with --left-only");
1444 revs->cherry_mark = 1;
1445 revs->right_only = 1;
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001446 revs->max_parents = 1;
Michael J Gruber94f605e2011-03-07 13:31:42 +01001447 revs->limited = 1;
Thomas Rastf69c5012010-06-10 13:47:23 +02001448 } else if (!strcmp(arg, "--count")) {
1449 revs->count = 1;
Michael J Gruberadbbb312011-03-07 13:31:40 +01001450 } else if (!strcmp(arg, "--cherry-mark")) {
1451 if (revs->cherry_pick)
1452 die("--cherry-mark is incompatible with --cherry-pick");
1453 revs->cherry_mark = 1;
1454 revs->limited = 1; /* needs limit_list() */
Pierre Habouzit02e54222008-07-08 15:19:33 +02001455 } else if (!strcmp(arg, "--cherry-pick")) {
Michael J Gruberadbbb312011-03-07 13:31:40 +01001456 if (revs->cherry_mark)
1457 die("--cherry-pick is incompatible with --cherry-mark");
Pierre Habouzit02e54222008-07-08 15:19:33 +02001458 revs->cherry_pick = 1;
1459 revs->limited = 1;
1460 } else if (!strcmp(arg, "--objects")) {
1461 revs->tag_objects = 1;
1462 revs->tree_objects = 1;
1463 revs->blob_objects = 1;
1464 } else if (!strcmp(arg, "--objects-edge")) {
1465 revs->tag_objects = 1;
1466 revs->tree_objects = 1;
1467 revs->blob_objects = 1;
1468 revs->edge_hint = 1;
Junio C Hamano5a48d242011-09-01 15:43:34 -07001469 } else if (!strcmp(arg, "--verify-objects")) {
1470 revs->tag_objects = 1;
1471 revs->tree_objects = 1;
1472 revs->blob_objects = 1;
1473 revs->verify_objects = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001474 } else if (!strcmp(arg, "--unpacked")) {
1475 revs->unpacked = 1;
Junio C Hamano03a96832009-02-28 00:00:21 -08001476 } else if (!prefixcmp(arg, "--unpacked=")) {
1477 die("--unpacked=<packfile> no longer supported.");
Pierre Habouzit02e54222008-07-08 15:19:33 +02001478 } else if (!strcmp(arg, "-r")) {
1479 revs->diff = 1;
1480 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1481 } else if (!strcmp(arg, "-t")) {
1482 revs->diff = 1;
1483 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1484 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1485 } else if (!strcmp(arg, "-m")) {
1486 revs->ignore_merges = 0;
1487 } else if (!strcmp(arg, "-c")) {
1488 revs->diff = 1;
1489 revs->dense_combined_merges = 0;
1490 revs->combine_merges = 1;
1491 } else if (!strcmp(arg, "--cc")) {
1492 revs->diff = 1;
1493 revs->dense_combined_merges = 1;
1494 revs->combine_merges = 1;
1495 } else if (!strcmp(arg, "-v")) {
1496 revs->verbose_header = 1;
1497 } else if (!strcmp(arg, "--pretty")) {
1498 revs->verbose_header = 1;
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001499 revs->pretty_given = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001500 get_commit_format(arg+8, revs);
Nanako Shiraishi3a4c1a52009-02-24 18:59:14 +09001501 } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001502 /*
1503 * Detached form ("--pretty X" as opposed to "--pretty=X")
1504 * not allowed, since the argument is optional.
1505 */
Pierre Habouzit02e54222008-07-08 15:19:33 +02001506 revs->verbose_header = 1;
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001507 revs->pretty_given = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001508 get_commit_format(arg+9, revs);
Jeff King7249e912011-03-29 16:57:47 -04001509 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001510 revs->show_notes = 1;
1511 revs->show_notes_given = 1;
Jeff King3a03cf62011-03-29 16:57:27 -04001512 revs->notes_opt.use_default_notes = 1;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001513 } else if (!strcmp(arg, "--show-signature")) {
1514 revs->show_signature = 1;
Jeff King7249e912011-03-29 16:57:47 -04001515 } else if (!prefixcmp(arg, "--show-notes=") ||
1516 !prefixcmp(arg, "--notes=")) {
Thomas Rast894a9d32010-03-12 18:04:26 +01001517 struct strbuf buf = STRBUF_INIT;
1518 revs->show_notes = 1;
1519 revs->show_notes_given = 1;
Jeff King7249e912011-03-29 16:57:47 -04001520 if (!prefixcmp(arg, "--show-notes")) {
1521 if (revs->notes_opt.use_default_notes < 0)
1522 revs->notes_opt.use_default_notes = 1;
1523 strbuf_addstr(&buf, arg+13);
1524 }
1525 else
1526 strbuf_addstr(&buf, arg+8);
Jeff Kingc063f0a2011-03-29 16:56:04 -04001527 expand_notes_ref(&buf);
Jeff King304cc112011-03-29 16:56:53 -04001528 string_list_append(&revs->notes_opt.extra_notes_refs,
Julian Phillips1d2f80f2010-06-26 00:41:38 +01001529 strbuf_detach(&buf, NULL));
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001530 } else if (!strcmp(arg, "--no-notes")) {
1531 revs->show_notes = 0;
1532 revs->show_notes_given = 1;
Jeff King92e0d422011-03-29 16:59:42 -04001533 revs->notes_opt.use_default_notes = -1;
1534 /* we have been strdup'ing ourselves, so trick
1535 * string_list into free()ing strings */
1536 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1537 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1538 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
Thomas Rast894a9d32010-03-12 18:04:26 +01001539 } else if (!strcmp(arg, "--standard-notes")) {
1540 revs->show_notes_given = 1;
Jeff King3a03cf62011-03-29 16:57:27 -04001541 revs->notes_opt.use_default_notes = 1;
Thomas Rast894a9d32010-03-12 18:04:26 +01001542 } else if (!strcmp(arg, "--no-standard-notes")) {
Jeff King3a03cf62011-03-29 16:57:27 -04001543 revs->notes_opt.use_default_notes = 0;
Nanako Shiraishide84acc2009-02-24 18:59:16 +09001544 } else if (!strcmp(arg, "--oneline")) {
1545 revs->verbose_header = 1;
1546 get_commit_format("oneline", revs);
Junio C Hamano7dccadf2010-01-21 14:57:41 -08001547 revs->pretty_given = 1;
Nanako Shiraishide84acc2009-02-24 18:59:16 +09001548 revs->abbrev_commit = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001549 } else if (!strcmp(arg, "--graph")) {
1550 revs->topo_order = 1;
1551 revs->rewrite_parents = 1;
1552 revs->graph = graph_init(revs);
1553 } else if (!strcmp(arg, "--root")) {
1554 revs->show_root_diff = 1;
1555 } else if (!strcmp(arg, "--no-commit-id")) {
1556 revs->no_commit_id = 1;
1557 } else if (!strcmp(arg, "--always")) {
1558 revs->always_show_header = 1;
1559 } else if (!strcmp(arg, "--no-abbrev")) {
1560 revs->abbrev = 0;
1561 } else if (!strcmp(arg, "--abbrev")) {
1562 revs->abbrev = DEFAULT_ABBREV;
1563 } else if (!prefixcmp(arg, "--abbrev=")) {
1564 revs->abbrev = strtoul(arg + 9, NULL, 10);
1565 if (revs->abbrev < MINIMUM_ABBREV)
1566 revs->abbrev = MINIMUM_ABBREV;
1567 else if (revs->abbrev > 40)
1568 revs->abbrev = 40;
1569 } else if (!strcmp(arg, "--abbrev-commit")) {
1570 revs->abbrev_commit = 1;
Jay Soffian0c476952011-05-18 13:56:04 -04001571 revs->abbrev_commit_given = 1;
1572 } else if (!strcmp(arg, "--no-abbrev-commit")) {
1573 revs->abbrev_commit = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001574 } else if (!strcmp(arg, "--full-diff")) {
1575 revs->diff = 1;
1576 revs->full_diff = 1;
1577 } else if (!strcmp(arg, "--full-history")) {
1578 revs->simplify_history = 0;
1579 } else if (!strcmp(arg, "--relative-date")) {
1580 revs->date_mode = DATE_RELATIVE;
Jeff Kingf4ea32f2009-09-24 04:28:15 -04001581 revs->date_mode_explicit = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001582 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1583 revs->date_mode = parse_date_format(optarg);
Jeff Kingf4ea32f2009-09-24 04:28:15 -04001584 revs->date_mode_explicit = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001585 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001586 } else if (!strcmp(arg, "--log-size")) {
1587 revs->show_log_size = 1;
1588 }
1589 /*
1590 * Grepping the commit log
1591 */
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001592 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1593 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1594 return argcount;
1595 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1596 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1597 return argcount;
Nguyễn Thái Ngọc Duy72fd13f2012-09-29 11:41:28 +07001598 } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
1599 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
1600 return argcount;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001601 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1602 add_message_grep(revs, optarg);
1603 return argcount;
Junio C Hamano17bf35a2012-09-13 14:21:44 -07001604 } else if (!strcmp(arg, "--grep-debug")) {
1605 revs->grep_filter.debug = 1;
Junio C Hamano727b6fc2012-10-03 15:01:34 -07001606 } else if (!strcmp(arg, "--basic-regexp")) {
1607 grep_set_pattern_type_option(GREP_PATTERN_TYPE_BRE, &revs->grep_filter);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001608 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
Junio C Hamano34a4ae52012-10-03 14:50:51 -07001609 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, &revs->grep_filter);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001610 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
Jeff King0843acf2008-08-25 02:15:05 -04001611 revs->grep_filter.regflags |= REG_ICASE;
Junio C Hamanoaccccde2012-02-21 01:02:46 -08001612 DIFF_OPT_SET(&revs->diffopt, PICKAXE_IGNORE_CASE);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001613 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
Junio C Hamano34a4ae52012-10-03 14:50:51 -07001614 grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED, &revs->grep_filter);
Junio C Hamano727b6fc2012-10-03 15:01:34 -07001615 } else if (!strcmp(arg, "--perl-regexp")) {
1616 grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE, &revs->grep_filter);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001617 } else if (!strcmp(arg, "--all-match")) {
Jeff King0843acf2008-08-25 02:15:05 -04001618 revs->grep_filter.all_match = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001619 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1620 if (strcmp(optarg, "none"))
1621 git_log_output_encoding = xstrdup(optarg);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001622 else
1623 git_log_output_encoding = "";
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001624 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001625 } else if (!strcmp(arg, "--reverse")) {
1626 revs->reverse ^= 1;
1627 } else if (!strcmp(arg, "--children")) {
1628 revs->children.name = "children";
1629 revs->limited = 1;
Junio C Hamanocc243c32011-05-18 18:08:09 -07001630 } else if (!strcmp(arg, "--ignore-missing")) {
1631 revs->ignore_missing = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001632 } else {
1633 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1634 if (!opts)
1635 unkv[(*unkc)++] = arg;
1636 return opts;
1637 }
1638
1639 return 1;
1640}
1641
Pierre Habouzit6b61ec02008-07-09 23:38:34 +02001642void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1643 const struct option *options,
1644 const char * const usagestr[])
1645{
1646 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1647 &ctx->cpidx, ctx->out);
1648 if (n <= 0) {
1649 error("unknown option `%s'", ctx->argv[0]);
1650 usage_with_options(usagestr, options);
1651 }
1652 ctx->argv += n;
1653 ctx->argc -= n;
1654}
1655
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001656static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001657{
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001658 return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001659}
1660
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001661static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001662{
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001663 return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001664}
1665
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001666static int handle_revision_pseudo_opt(const char *submodule,
1667 struct rev_info *revs,
1668 int argc, const char **argv, int *flags)
1669{
1670 const char *arg = argv[0];
1671 const char *optarg;
1672 int argcount;
1673
Jonathan Nieder0fc63ec2011-04-21 05:48:24 -05001674 /*
1675 * NOTE!
1676 *
1677 * Commands like "git shortlog" will not accept the options below
1678 * unless parse_revision_opt queues them (as opposed to erroring
1679 * out).
1680 *
1681 * When implementing your new pseudo-option, remember to
1682 * register it in the list at the top of handle_revision_opt.
1683 */
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001684 if (!strcmp(arg, "--all")) {
1685 handle_refs(submodule, revs, *flags, for_each_ref_submodule);
1686 handle_refs(submodule, revs, *flags, head_ref_submodule);
1687 } else if (!strcmp(arg, "--branches")) {
1688 handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
1689 } else if (!strcmp(arg, "--bisect")) {
1690 handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
1691 handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref);
1692 revs->bisect = 1;
1693 } else if (!strcmp(arg, "--tags")) {
1694 handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
1695 } else if (!strcmp(arg, "--remotes")) {
1696 handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
1697 } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
1698 struct all_refs_cb cb;
1699 init_all_refs_cb(&cb, revs, *flags);
1700 for_each_glob_ref(handle_one_ref, optarg, &cb);
1701 return argcount;
1702 } else if (!prefixcmp(arg, "--branches=")) {
1703 struct all_refs_cb cb;
1704 init_all_refs_cb(&cb, revs, *flags);
1705 for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1706 } else if (!prefixcmp(arg, "--tags=")) {
1707 struct all_refs_cb cb;
1708 init_all_refs_cb(&cb, revs, *flags);
1709 for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1710 } else if (!prefixcmp(arg, "--remotes=")) {
1711 struct all_refs_cb cb;
1712 init_all_refs_cb(&cb, revs, *flags);
1713 for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1714 } else if (!strcmp(arg, "--reflog")) {
1715 handle_reflog(revs, *flags);
1716 } else if (!strcmp(arg, "--not")) {
1717 *flags ^= UNINTERESTING;
1718 } else if (!strcmp(arg, "--no-walk")) {
Martin von Zweigbergkca92e592012-08-28 23:15:54 -07001719 revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
1720 } else if (!prefixcmp(arg, "--no-walk=")) {
1721 /*
1722 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
1723 * not allowed, since the argument is optional.
1724 */
1725 if (!strcmp(arg + 10, "sorted"))
1726 revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
1727 else if (!strcmp(arg + 10, "unsorted"))
1728 revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
1729 else
1730 return error("invalid argument to --no-walk");
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001731 } else if (!strcmp(arg, "--do-walk")) {
1732 revs->no_walk = 0;
1733 } else {
1734 return 0;
1735 }
1736
1737 return 1;
1738}
1739
Linus Torvaldsae563542006-02-25 16:19:46 -08001740/*
1741 * Parse revision information, filling in the "rev_info" structure,
1742 * and removing the used arguments from the argument list.
1743 *
Linus Torvalds765ac8e2006-02-28 15:07:20 -08001744 * Returns the number of arguments left that weren't recognized
1745 * (which are also moved to the head of the argument list)
Linus Torvaldsae563542006-02-25 16:19:46 -08001746 */
Junio C Hamano32962c92010-03-08 22:58:09 -08001747int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
Linus Torvaldsae563542006-02-25 16:19:46 -08001748{
Junio C Hamano8e676e82012-07-02 12:33:52 -07001749 int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0, revarg_opt;
Junio C Hamano4da5af32011-05-11 14:01:19 -07001750 struct cmdline_pathspec prune_data;
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001751 const char *submodule = NULL;
1752
Junio C Hamano4da5af32011-05-11 14:01:19 -07001753 memset(&prune_data, 0, sizeof(prune_data));
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001754 if (opt)
1755 submodule = opt->submodule;
Linus Torvaldsae563542006-02-25 16:19:46 -08001756
Linus Torvaldsae563542006-02-25 16:19:46 -08001757 /* First, search for "--" */
Clemens Buchacher6d5b93f2012-04-14 21:04:48 +02001758 if (opt && opt->assume_dashdash) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001759 seen_dashdash = 1;
Clemens Buchacher6d5b93f2012-04-14 21:04:48 +02001760 } else {
1761 seen_dashdash = 0;
1762 for (i = 1; i < argc; i++) {
1763 const char *arg = argv[i];
1764 if (strcmp(arg, "--"))
1765 continue;
1766 argv[i] = NULL;
1767 argc = i;
1768 if (argv[i + 1])
1769 append_prune_data(&prune_data, argv + i + 1);
1770 seen_dashdash = 1;
1771 break;
1772 }
Linus Torvaldsae563542006-02-25 16:19:46 -08001773 }
1774
Pierre Habouzit02e54222008-07-08 15:19:33 +02001775 /* Second, deal with arguments and options */
1776 flags = 0;
Junio C Hamanod5f6b1d2012-07-02 12:43:05 -07001777 revarg_opt = opt ? opt->revarg_opt : 0;
1778 if (seen_dashdash)
1779 revarg_opt |= REVARG_CANNOT_BE_FILENAME;
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001780 read_from_stdin = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001781 for (left = i = 1; i < argc; i++) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001782 const char *arg = argv[i];
Linus Torvaldsae563542006-02-25 16:19:46 -08001783 if (*arg == '-') {
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001784 int opts;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001785
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001786 opts = handle_revision_pseudo_opt(submodule,
1787 revs, argc - i, argv + i,
1788 &flags);
1789 if (opts > 0) {
1790 i += opts - 1;
Uwe Kleine-Königa5aa9302008-02-28 08:24:25 +01001791 continue;
1792 }
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001793
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001794 if (!strcmp(arg, "--stdin")) {
1795 if (revs->disable_stdin) {
1796 argv[left++] = arg;
1797 continue;
1798 }
1799 if (read_from_stdin++)
1800 die("--stdin given twice?");
Junio C Hamano60da8b12009-11-20 02:50:21 -08001801 read_revisions_from_stdin(revs, &prune_data);
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001802 continue;
1803 }
Junio C Hamano2d10c552006-09-20 13:21:56 -07001804
Pierre Habouzit02e54222008-07-08 15:19:33 +02001805 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001806 if (opts > 0) {
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001807 i += opts - 1;
1808 continue;
1809 }
Pierre Habouzit02e54222008-07-08 15:19:33 +02001810 if (opts < 0)
1811 exit(128);
Linus Torvaldsae563542006-02-25 16:19:46 -08001812 continue;
1813 }
Rene Scharfe0d2c9d62006-07-02 01:29:37 +02001814
Junio C Hamano8e676e82012-07-02 12:33:52 -07001815
1816 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001817 int j;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001818 if (seen_dashdash || *arg == '^')
Linus Torvaldsae563542006-02-25 16:19:46 -08001819 die("bad revision '%s'", arg);
1820
Junio C Hamanoea92f412006-04-26 15:09:27 -07001821 /* If we didn't have a "--":
1822 * (1) all filenames must exist;
1823 * (2) all rev-args must not be interpretable
1824 * as a valid filename.
1825 * but the latter we have checked in the main loop.
1826 */
Linus Torvaldse23d0b42006-04-26 10:15:54 -07001827 for (j = i; j < argc; j++)
Matthieu Moy023e37c2012-06-18 20:18:21 +02001828 verify_filename(revs->prefix, argv[j], j == i);
Linus Torvaldse23d0b42006-04-26 10:15:54 -07001829
Junio C Hamano60da8b12009-11-20 02:50:21 -08001830 append_prune_data(&prune_data, argv + i);
Linus Torvaldsae563542006-02-25 16:19:46 -08001831 break;
1832 }
Dave Olszewski8fcaca32010-03-13 14:47:05 -08001833 else
1834 got_rev_arg = 1;
Linus Torvaldsae563542006-02-25 16:19:46 -08001835 }
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001836
Junio C Hamano4da5af32011-05-11 14:01:19 -07001837 if (prune_data.nr) {
Junio C Hamano93e7d672011-05-11 15:23:25 -07001838 /*
1839 * If we need to introduce the magic "a lone ':' means no
1840 * pathspec whatsoever", here is the place to do so.
1841 *
1842 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1843 * prune_data.nr = 0;
1844 * prune_data.alloc = 0;
1845 * free(prune_data.path);
1846 * prune_data.path = NULL;
1847 * } else {
1848 * terminate prune_data.alloc with NULL and
1849 * call init_pathspec() to set revs->prune_data here.
1850 * }
1851 */
Junio C Hamano4da5af32011-05-11 14:01:19 -07001852 ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc);
1853 prune_data.path[prune_data.nr++] = NULL;
Junio C Hamano8f2d4b12011-05-11 15:05:01 -07001854 init_pathspec(&revs->prune_data,
1855 get_pathspec(revs->prefix, prune_data.path));
Junio C Hamano4da5af32011-05-11 14:01:19 -07001856 }
Junio C Hamano5486ef02009-11-20 02:33:28 -08001857
Pierre Habouzit02e54222008-07-08 15:19:33 +02001858 if (revs->def == NULL)
Junio C Hamano32962c92010-03-08 22:58:09 -08001859 revs->def = opt ? opt->def : NULL;
Junio C Hamanob4490052010-03-08 23:27:25 -08001860 if (opt && opt->tweak)
1861 opt->tweak(revs, opt);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001862 if (revs->show_merge)
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001863 prepare_show_merge(revs);
Dave Olszewski8fcaca32010-03-13 14:47:05 -08001864 if (revs->def && !revs->pending.nr && !got_rev_arg) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001865 unsigned char sha1[20];
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001866 struct object *object;
Junio C Hamano249c8f42012-07-02 12:56:44 -07001867 struct object_context oc;
Junio C Hamano33bd5982012-07-02 10:32:11 -07001868 if (get_sha1_with_context(revs->def, 0, sha1, &oc))
Pierre Habouzit02e54222008-07-08 15:19:33 +02001869 die("bad default revision '%s'", revs->def);
1870 object = get_reference(revs, revs->def, sha1, 0);
Junio C Hamano249c8f42012-07-02 12:56:44 -07001871 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
Linus Torvaldsae563542006-02-25 16:19:46 -08001872 }
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001873
Linus Torvaldsb7bb7602007-09-29 09:50:39 -07001874 /* Did the user ask for any diff output? Run the diff! */
1875 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1876 revs->diff = 1;
1877
Arjen Laarhoven0faf2da2007-12-25 12:06:47 +01001878 /* Pickaxe, diff-filter and rename following need diffs */
1879 if (revs->diffopt.pickaxe ||
1880 revs->diffopt.filter ||
1881 DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
Linus Torvaldsb7bb7602007-09-29 09:50:39 -07001882 revs->diff = 1;
1883
Junio C Hamano9dad9d22006-10-30 18:58:03 -08001884 if (revs->topo_order)
Junio C Hamano53069682006-04-01 18:38:25 -08001885 revs->limited = 1;
1886
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001887 if (revs->prune_data.nr) {
1888 diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning);
Linus Torvalds750f7b62007-06-19 14:22:46 -07001889 /* Can't prune commits with rename following: the paths change.. */
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +01001890 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
Linus Torvalds53b2c822007-11-05 13:22:34 -08001891 revs->prune = 1;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001892 if (!revs->full_diff)
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001893 diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt);
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001894 }
Junio C Hamanob4490052010-03-08 23:27:25 -08001895 if (revs->combine_merges)
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001896 revs->ignore_merges = 0;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001897 revs->diffopt.abbrev = revs->abbrev;
Thomas Rast28452652012-08-03 14:16:24 +02001898 diff_setup_done(&revs->diffopt);
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001899
Junio C Hamano918d4e12012-10-09 16:40:03 -07001900 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
1901 &revs->grep_filter);
Jeff King0843acf2008-08-25 02:15:05 -04001902 compile_grep_patterns(&revs->grep_filter);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001903
Shawn O. Pearced56651c2007-08-19 22:33:43 -04001904 if (revs->reverse && revs->reflog_info)
1905 die("cannot combine --reverse with --walk-reflogs");
Junio C Hamano8bb65882008-07-08 15:25:44 -07001906 if (revs->rewrite_parents && revs->children.name)
Junio C Hamanof35f5602008-04-03 02:12:06 -07001907 die("cannot combine --parents and --children");
Shawn O. Pearced56651c2007-08-19 22:33:43 -04001908
Adam Simpkins7fefda52008-05-04 03:36:54 -07001909 /*
1910 * Limitations on the graph functionality
1911 */
1912 if (revs->reverse && revs->graph)
1913 die("cannot combine --reverse with --graph");
1914
1915 if (revs->reflog_info && revs->graph)
1916 die("cannot combine --walk-reflogs with --graph");
Junio C Hamanobaa63782012-09-29 11:59:52 -07001917 if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
1918 die("cannot use --grep-reflog without --walk-reflogs");
Adam Simpkins7fefda52008-05-04 03:36:54 -07001919
Linus Torvaldsae563542006-02-25 16:19:46 -08001920 return left;
1921}
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001922
Junio C Hamanof35f5602008-04-03 02:12:06 -07001923static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1924{
1925 struct commit_list *l = xcalloc(1, sizeof(*l));
1926
1927 l->item = child;
1928 l->next = add_decoration(&revs->children, &parent->object, l);
1929}
1930
Junio C Hamano6546b592008-07-31 01:17:41 -07001931static int remove_duplicate_parents(struct commit *commit)
1932{
1933 struct commit_list **pp, *p;
1934 int surviving_parents;
1935
1936 /* Examine existing parents while marking ones we have seen... */
1937 pp = &commit->parents;
1938 while ((p = *pp) != NULL) {
1939 struct commit *parent = p->item;
1940 if (parent->object.flags & TMP_MARK) {
1941 *pp = p->next;
1942 continue;
1943 }
1944 parent->object.flags |= TMP_MARK;
1945 pp = &p->next;
1946 }
1947 /* count them while clearing the temporary mark */
1948 surviving_parents = 0;
1949 for (p = commit->parents; p; p = p->next) {
1950 p->item->object.flags &= ~TMP_MARK;
1951 surviving_parents++;
1952 }
1953 return surviving_parents;
1954}
1955
Junio C Hamanofaf01562008-08-14 10:59:44 -07001956struct merge_simplify_state {
1957 struct commit *simplified;
1958};
1959
1960static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1961{
1962 struct merge_simplify_state *st;
1963
1964 st = lookup_decoration(&revs->merge_simplification, &commit->object);
1965 if (!st) {
1966 st = xcalloc(1, sizeof(*st));
1967 add_decoration(&revs->merge_simplification, &commit->object, st);
1968 }
1969 return st;
1970}
1971
1972static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
Junio C Hamano6546b592008-07-31 01:17:41 -07001973{
1974 struct commit_list *p;
Junio C Hamanofaf01562008-08-14 10:59:44 -07001975 struct merge_simplify_state *st, *pst;
Junio C Hamano6546b592008-07-31 01:17:41 -07001976 int cnt;
1977
Junio C Hamanofaf01562008-08-14 10:59:44 -07001978 st = locate_simplify_state(revs, commit);
1979
Junio C Hamano6546b592008-07-31 01:17:41 -07001980 /*
Junio C Hamano6546b592008-07-31 01:17:41 -07001981 * Have we handled this one?
1982 */
Junio C Hamanofaf01562008-08-14 10:59:44 -07001983 if (st->simplified)
Junio C Hamano6546b592008-07-31 01:17:41 -07001984 return tail;
1985
1986 /*
1987 * An UNINTERESTING commit simplifies to itself, so does a
1988 * root commit. We do not rewrite parents of such commit
1989 * anyway.
1990 */
1991 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
Junio C Hamanofaf01562008-08-14 10:59:44 -07001992 st->simplified = commit;
Junio C Hamano6546b592008-07-31 01:17:41 -07001993 return tail;
1994 }
1995
1996 /*
Junio C Hamano6e513ba2012-06-08 14:56:03 -07001997 * Do we know what commit all of our parents that matter
1998 * should be rewritten to? Otherwise we are not ready to
1999 * rewrite this one yet.
Junio C Hamano6546b592008-07-31 01:17:41 -07002000 */
2001 for (cnt = 0, p = commit->parents; p; p = p->next) {
Junio C Hamanofaf01562008-08-14 10:59:44 -07002002 pst = locate_simplify_state(revs, p->item);
2003 if (!pst->simplified) {
Junio C Hamano6546b592008-07-31 01:17:41 -07002004 tail = &commit_list_insert(p->item, tail)->next;
2005 cnt++;
2006 }
Junio C Hamano6e513ba2012-06-08 14:56:03 -07002007 if (revs->first_parent_only)
2008 break;
Junio C Hamano6546b592008-07-31 01:17:41 -07002009 }
Junio C Hamano53030f82008-08-18 00:37:34 -07002010 if (cnt) {
2011 tail = &commit_list_insert(commit, tail)->next;
Junio C Hamano6546b592008-07-31 01:17:41 -07002012 return tail;
Junio C Hamano53030f82008-08-18 00:37:34 -07002013 }
Junio C Hamano6546b592008-07-31 01:17:41 -07002014
2015 /*
2016 * Rewrite our list of parents.
2017 */
Junio C Hamanofaf01562008-08-14 10:59:44 -07002018 for (p = commit->parents; p; p = p->next) {
2019 pst = locate_simplify_state(revs, p->item);
2020 p->item = pst->simplified;
Junio C Hamano6e513ba2012-06-08 14:56:03 -07002021 if (revs->first_parent_only)
2022 break;
Junio C Hamanofaf01562008-08-14 10:59:44 -07002023 }
Junio C Hamano6e513ba2012-06-08 14:56:03 -07002024 if (!revs->first_parent_only)
2025 cnt = remove_duplicate_parents(commit);
2026 else
2027 cnt = 1;
Junio C Hamano6546b592008-07-31 01:17:41 -07002028
2029 /*
2030 * It is possible that we are a merge and one side branch
2031 * does not have any commit that touches the given paths;
2032 * in such a case, the immediate parents will be rewritten
2033 * to different commits.
2034 *
2035 * o----X X: the commit we are looking at;
2036 * / / o: a commit that touches the paths;
2037 * ---o----'
2038 *
2039 * Further reduce the parents by removing redundant parents.
2040 */
2041 if (1 < cnt) {
2042 struct commit_list *h = reduce_heads(commit->parents);
2043 cnt = commit_list_count(h);
2044 free_commit_list(commit->parents);
2045 commit->parents = h;
2046 }
2047
2048 /*
2049 * A commit simplifies to itself if it is a root, if it is
2050 * UNINTERESTING, if it touches the given paths, or if it is a
2051 * merge and its parents simplifies to more than one commits
2052 * (the first two cases are already handled at the beginning of
2053 * this function).
2054 *
2055 * Otherwise, it simplifies to what its sole parent simplifies to.
2056 */
2057 if (!cnt ||
2058 (commit->object.flags & UNINTERESTING) ||
2059 !(commit->object.flags & TREESAME) ||
2060 (1 < cnt))
Junio C Hamanofaf01562008-08-14 10:59:44 -07002061 st->simplified = commit;
2062 else {
2063 pst = locate_simplify_state(revs, commit->parents->item);
2064 st->simplified = pst->simplified;
2065 }
Junio C Hamano6546b592008-07-31 01:17:41 -07002066 return tail;
2067}
2068
2069static void simplify_merges(struct rev_info *revs)
2070{
Junio C Hamanoab9d75a2012-06-08 14:50:22 -07002071 struct commit_list *list, *next;
Junio C Hamano6546b592008-07-31 01:17:41 -07002072 struct commit_list *yet_to_do, **tail;
Junio C Hamanoab9d75a2012-06-08 14:50:22 -07002073 struct commit *commit;
Junio C Hamano6546b592008-07-31 01:17:41 -07002074
Junio C Hamano5eac7392008-08-14 13:52:36 -07002075 if (!revs->prune)
2076 return;
Junio C Hamano65347032008-08-03 17:47:16 -07002077
Junio C Hamano6546b592008-07-31 01:17:41 -07002078 /* feed the list reversed */
2079 yet_to_do = NULL;
Junio C Hamanoab9d75a2012-06-08 14:50:22 -07002080 for (list = revs->commits; list; list = next) {
2081 commit = list->item;
2082 next = list->next;
2083 /*
2084 * Do not free(list) here yet; the original list
2085 * is used later in this function.
2086 */
2087 commit_list_insert(commit, &yet_to_do);
2088 }
Junio C Hamano6546b592008-07-31 01:17:41 -07002089 while (yet_to_do) {
2090 list = yet_to_do;
2091 yet_to_do = NULL;
2092 tail = &yet_to_do;
2093 while (list) {
Junio C Hamanoab9d75a2012-06-08 14:50:22 -07002094 commit = list->item;
2095 next = list->next;
Junio C Hamano6546b592008-07-31 01:17:41 -07002096 free(list);
2097 list = next;
Junio C Hamanofaf01562008-08-14 10:59:44 -07002098 tail = simplify_one(revs, commit, tail);
Junio C Hamano6546b592008-07-31 01:17:41 -07002099 }
2100 }
2101
2102 /* clean up the result, removing the simplified ones */
2103 list = revs->commits;
2104 revs->commits = NULL;
2105 tail = &revs->commits;
2106 while (list) {
Junio C Hamanofaf01562008-08-14 10:59:44 -07002107 struct merge_simplify_state *st;
Junio C Hamanoab9d75a2012-06-08 14:50:22 -07002108
2109 commit = list->item;
2110 next = list->next;
Junio C Hamano6546b592008-07-31 01:17:41 -07002111 free(list);
2112 list = next;
Junio C Hamanofaf01562008-08-14 10:59:44 -07002113 st = locate_simplify_state(revs, commit);
2114 if (st->simplified == commit)
Junio C Hamano6546b592008-07-31 01:17:41 -07002115 tail = &commit_list_insert(commit, tail)->next;
2116 }
Junio C Hamano6546b592008-07-31 01:17:41 -07002117}
2118
Junio C Hamanof35f5602008-04-03 02:12:06 -07002119static void set_children(struct rev_info *revs)
2120{
2121 struct commit_list *l;
2122 for (l = revs->commits; l; l = l->next) {
2123 struct commit *commit = l->item;
2124 struct commit_list *p;
2125
2126 for (p = commit->parents; p; p = p->next)
2127 add_child(revs, p->item, commit);
2128 }
2129}
2130
Heiko Voigtbcc0a3e2012-03-29 09:21:21 +02002131void reset_revision_walk(void)
2132{
2133 clear_object_flags(SEEN | ADDED | SHOWN);
2134}
2135
Alex Riesencc0e6c52007-05-04 23:54:57 +02002136int prepare_revision_walk(struct rev_info *revs)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002137{
Linus Torvalds1f1e8952006-06-19 17:42:35 -07002138 int nr = revs->pending.nr;
Junio C Hamano94d23672007-01-10 22:36:16 -08002139 struct object_array_entry *e, *list;
René Scharfe2e7da8e2012-04-25 22:35:41 +02002140 struct commit_list **next = &revs->commits;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07002141
Junio C Hamano94d23672007-01-10 22:36:16 -08002142 e = list = revs->pending.objects;
Linus Torvalds1f1e8952006-06-19 17:42:35 -07002143 revs->pending.nr = 0;
2144 revs->pending.alloc = 0;
2145 revs->pending.objects = NULL;
2146 while (--nr >= 0) {
Junio C Hamano94d23672007-01-10 22:36:16 -08002147 struct commit *commit = handle_commit(revs, e->item, e->name);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07002148 if (commit) {
2149 if (!(commit->object.flags & SEEN)) {
2150 commit->object.flags |= SEEN;
René Scharfe2e7da8e2012-04-25 22:35:41 +02002151 next = commit_list_append(commit, next);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07002152 }
2153 }
Junio C Hamano94d23672007-01-10 22:36:16 -08002154 e++;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07002155 }
René Scharfe4a43d372011-10-01 17:56:08 +02002156 if (!revs->leak_pending)
2157 free(list);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07002158
Martin von Zweigbergkca92e592012-08-28 23:15:54 -07002159 if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
2160 commit_list_sort_by_date(&revs->commits);
Linus Torvaldsba1d4502006-04-15 12:09:56 -07002161 if (revs->no_walk)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002162 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002163 if (revs->limited)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002164 if (limit_list(revs) < 0)
2165 return -1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002166 if (revs->topo_order)
Linus Torvalds23c17d42007-11-02 13:32:58 -07002167 sort_in_topological_order(&revs->commits, revs->lifo);
Junio C Hamano6546b592008-07-31 01:17:41 -07002168 if (revs->simplify_merges)
2169 simplify_merges(revs);
Junio C Hamanof35f5602008-04-03 02:12:06 -07002170 if (revs->children.name)
2171 set_children(revs);
Alex Riesencc0e6c52007-05-04 23:54:57 +02002172 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002173}
2174
Alex Riesencc0e6c52007-05-04 23:54:57 +02002175enum rewrite_result {
2176 rewrite_one_ok,
2177 rewrite_one_noparents,
Gary V. Vaughan4b055482010-05-14 09:31:35 +00002178 rewrite_one_error
Alex Riesencc0e6c52007-05-04 23:54:57 +02002179};
2180
2181static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002182{
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04002183 struct commit_list *cache = NULL;
2184
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002185 for (;;) {
2186 struct commit *p = *pp;
Linus Torvalds3381c792006-04-08 17:05:58 -07002187 if (!revs->limited)
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04002188 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002189 return rewrite_one_error;
Linus Torvalds6631c732006-06-30 20:21:59 -07002190 if (p->parents && p->parents->next)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002191 return rewrite_one_ok;
Linus Torvalds7dc0fe32007-11-12 23:16:08 -08002192 if (p->object.flags & UNINTERESTING)
2193 return rewrite_one_ok;
2194 if (!(p->object.flags & TREESAME))
Alex Riesencc0e6c52007-05-04 23:54:57 +02002195 return rewrite_one_ok;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002196 if (!p->parents)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002197 return rewrite_one_noparents;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002198 *pp = p->parents->item;
2199 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002200}
2201
Alex Riesencc0e6c52007-05-04 23:54:57 +02002202static int rewrite_parents(struct rev_info *revs, struct commit *commit)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002203{
2204 struct commit_list **pp = &commit->parents;
2205 while (*pp) {
2206 struct commit_list *parent = *pp;
Alex Riesencc0e6c52007-05-04 23:54:57 +02002207 switch (rewrite_one(revs, &parent->item)) {
2208 case rewrite_one_ok:
2209 break;
2210 case rewrite_one_noparents:
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002211 *pp = parent->next;
2212 continue;
Alex Riesencc0e6c52007-05-04 23:54:57 +02002213 case rewrite_one_error:
2214 return -1;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002215 }
2216 pp = &parent->next;
2217 }
Junio C Hamano11d65962007-07-08 19:03:19 -07002218 remove_duplicate_parents(commit);
Alex Riesencc0e6c52007-05-04 23:54:57 +02002219 return 0;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002220}
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002221
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002222static int commit_match(struct commit *commit, struct rev_info *opt)
2223{
Nguyễn Thái Ngọc Duy72fd13f2012-09-29 11:41:28 +07002224 int retval;
2225 struct strbuf buf = STRBUF_INIT;
Junio C Hamano80235ba2010-01-17 20:09:06 -08002226 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002227 return 1;
Junio C Hamanobaa63782012-09-29 11:59:52 -07002228
2229 /* Prepend "fake" headers as needed */
2230 if (opt->grep_filter.use_reflog_filter) {
Nguyễn Thái Ngọc Duy72fd13f2012-09-29 11:41:28 +07002231 strbuf_addstr(&buf, "reflog ");
2232 get_reflog_message(&buf, opt->reflog_info);
2233 strbuf_addch(&buf, '\n');
Nguyễn Thái Ngọc Duy72fd13f2012-09-29 11:41:28 +07002234 }
Junio C Hamanobaa63782012-09-29 11:59:52 -07002235
2236 /* Copy the commit to temporary if we are using "fake" headers */
2237 if (buf.len)
2238 strbuf_addstr(&buf, commit->buffer);
2239
Nguyễn Thái Ngọc Duy38cfe912012-09-29 11:41:29 +07002240 /* Append "fake" message parts as needed */
2241 if (opt->show_notes) {
2242 if (!buf.len)
2243 strbuf_addstr(&buf, commit->buffer);
2244 format_display_notes(commit->object.sha1, &buf,
Junio C Hamano76141e22012-10-17 21:41:54 -07002245 get_log_output_encoding(), 1);
Nguyễn Thái Ngọc Duy38cfe912012-09-29 11:41:29 +07002246 }
2247
Junio C Hamanobaa63782012-09-29 11:59:52 -07002248 /* Find either in the commit object, or in the temporary */
Nguyễn Thái Ngọc Duy72fd13f2012-09-29 11:41:28 +07002249 if (buf.len)
2250 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
2251 else
2252 retval = grep_buffer(&opt->grep_filter,
2253 commit->buffer, strlen(commit->buffer));
2254 strbuf_release(&buf);
2255 return retval;
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002256}
2257
Junio C Hamanof35f5602008-04-03 02:12:06 -07002258static inline int want_ancestry(struct rev_info *revs)
2259{
Junio C Hamano8bb65882008-07-08 15:25:44 -07002260 return (revs->rewrite_parents || revs->children.name);
Junio C Hamanof35f5602008-04-03 02:12:06 -07002261}
2262
Adam Simpkinsbeb5af42009-08-18 19:34:33 -07002263enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
Linus Torvalds252a7c02007-11-04 12:12:05 -08002264{
2265 if (commit->object.flags & SHOWN)
2266 return commit_ignore;
Brandon Casey4d6acb72009-03-19 22:47:54 -05002267 if (revs->unpacked && has_sha1_pack(commit->object.sha1))
Linus Torvalds252a7c02007-11-04 12:12:05 -08002268 return commit_ignore;
Linus Torvalds3131b712008-02-09 14:02:07 -08002269 if (revs->show_all)
2270 return commit_show;
Linus Torvalds252a7c02007-11-04 12:12:05 -08002271 if (commit->object.flags & UNINTERESTING)
2272 return commit_ignore;
2273 if (revs->min_age != -1 && (commit->date > revs->min_age))
2274 return commit_ignore;
Michael J Gruberad5aeed2011-03-21 11:14:06 +01002275 if (revs->min_parents || (revs->max_parents >= 0)) {
2276 int n = 0;
2277 struct commit_list *p;
2278 for (p = commit->parents; p; p = p->next)
2279 n++;
2280 if ((n < revs->min_parents) ||
2281 ((revs->max_parents >= 0) && (n > revs->max_parents)))
2282 return commit_ignore;
2283 }
Linus Torvalds252a7c02007-11-04 12:12:05 -08002284 if (!commit_match(commit, revs))
2285 return commit_ignore;
Linus Torvalds53b2c822007-11-05 13:22:34 -08002286 if (revs->prune && revs->dense) {
Linus Torvalds252a7c02007-11-04 12:12:05 -08002287 /* Commit without changes? */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -08002288 if (commit->object.flags & TREESAME) {
Linus Torvalds252a7c02007-11-04 12:12:05 -08002289 /* drop merges unless we want parenthood */
Junio C Hamanof35f5602008-04-03 02:12:06 -07002290 if (!want_ancestry(revs))
Linus Torvalds252a7c02007-11-04 12:12:05 -08002291 return commit_ignore;
2292 /* non-merge - always ignore it */
2293 if (!commit->parents || !commit->parents->next)
2294 return commit_ignore;
2295 }
Linus Torvalds252a7c02007-11-04 12:12:05 -08002296 }
2297 return commit_show;
2298}
2299
Adam Simpkinsbeb5af42009-08-18 19:34:33 -07002300enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2301{
2302 enum commit_action action = get_commit_action(revs, commit);
2303
2304 if (action == commit_show &&
2305 !revs->show_all &&
2306 revs->prune && revs->dense && want_ancestry(revs)) {
2307 if (rewrite_parents(revs, commit) < 0)
2308 return commit_error;
2309 }
2310 return action;
2311}
2312
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002313static struct commit *get_revision_1(struct rev_info *revs)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002314{
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002315 if (!revs->commits)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002316 return NULL;
2317
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002318 do {
Linus Torvaldscb115742006-06-17 18:47:58 -07002319 struct commit_list *entry = revs->commits;
2320 struct commit *commit = entry->item;
Linus Torvaldsea5ed3a2006-03-05 09:53:52 -08002321
Linus Torvaldscb115742006-06-17 18:47:58 -07002322 revs->commits = entry->next;
2323 free(entry);
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002324
Jeff Kingffa1eea2010-11-21 23:42:53 -05002325 if (revs->reflog_info) {
Johannes Schindelin8860fd42007-01-11 11:47:48 +01002326 fake_reflog_parent(revs->reflog_info, commit);
Jeff Kingffa1eea2010-11-21 23:42:53 -05002327 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2328 }
Johannes Schindelin8860fd42007-01-11 11:47:48 +01002329
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002330 /*
2331 * If we haven't done the list limiting, we need to look at
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002332 * the parents here. We also need to do the date-based limiting
2333 * that we'd otherwise have done in limit_list().
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002334 */
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002335 if (!revs->limited) {
Jan Harkes744f4982006-10-30 20:37:49 -05002336 if (revs->max_age != -1 &&
Junio C Hamano86ab4902007-03-05 13:10:06 -08002337 (commit->date < revs->max_age))
2338 continue;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04002339 if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
Junio C Hamanoed620892009-02-11 01:27:43 -08002340 die("Failed to traverse parents of commit %s",
2341 sha1_to_hex(commit->object.sha1));
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002342 }
Junio C Hamano1b65a5a2006-04-16 18:12:49 -07002343
Linus Torvalds252a7c02007-11-04 12:12:05 -08002344 switch (simplify_commit(revs, commit)) {
2345 case commit_ignore:
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002346 continue;
Linus Torvalds252a7c02007-11-04 12:12:05 -08002347 case commit_error:
Junio C Hamanoed620892009-02-11 01:27:43 -08002348 die("Failed to simplify parents of commit %s",
2349 sha1_to_hex(commit->object.sha1));
Linus Torvalds252a7c02007-11-04 12:12:05 -08002350 default:
2351 return commit;
Junio C Hamano384e99a2006-03-27 23:58:34 -08002352 }
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002353 } while (revs->commits);
2354 return NULL;
2355}
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002356
Junio C Hamano86ab4902007-03-05 13:10:06 -08002357static void gc_boundary(struct object_array *array)
2358{
2359 unsigned nr = array->nr;
2360 unsigned alloc = array->alloc;
2361 struct object_array_entry *objects = array->objects;
2362
2363 if (alloc <= nr) {
2364 unsigned i, j;
2365 for (i = j = 0; i < nr; i++) {
2366 if (objects[i].item->flags & SHOWN)
2367 continue;
2368 if (i != j)
2369 objects[j] = objects[i];
2370 j++;
2371 }
Junio C Hamano892ae6b2007-03-06 03:00:18 -08002372 for (i = j; i < nr; i++)
Junio C Hamano86ab4902007-03-05 13:10:06 -08002373 objects[i].item = NULL;
2374 array->nr = j;
2375 }
2376}
2377
Adam Simpkins4603ec02008-05-24 16:02:05 -07002378static void create_boundary_commit_list(struct rev_info *revs)
2379{
2380 unsigned i;
2381 struct commit *c;
2382 struct object_array *array = &revs->boundary_commits;
2383 struct object_array_entry *objects = array->objects;
2384
2385 /*
2386 * If revs->commits is non-NULL at this point, an error occurred in
2387 * get_revision_1(). Ignore the error and continue printing the
2388 * boundary commits anyway. (This is what the code has always
2389 * done.)
2390 */
2391 if (revs->commits) {
2392 free_commit_list(revs->commits);
2393 revs->commits = NULL;
2394 }
2395
2396 /*
2397 * Put all of the actual boundary commits from revs->boundary_commits
2398 * into revs->commits
2399 */
2400 for (i = 0; i < array->nr; i++) {
2401 c = (struct commit *)(objects[i].item);
2402 if (!c)
2403 continue;
2404 if (!(c->object.flags & CHILD_SHOWN))
2405 continue;
2406 if (c->object.flags & (SHOWN | BOUNDARY))
2407 continue;
2408 c->object.flags |= BOUNDARY;
2409 commit_list_insert(c, &revs->commits);
2410 }
2411
2412 /*
2413 * If revs->topo_order is set, sort the boundary commits
2414 * in topological order
2415 */
2416 sort_in_topological_order(&revs->commits, revs->lifo);
2417}
2418
Adam Simpkins7fefda52008-05-04 03:36:54 -07002419static struct commit *get_revision_internal(struct rev_info *revs)
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002420{
2421 struct commit *c = NULL;
Junio C Hamano86ab4902007-03-05 13:10:06 -08002422 struct commit_list *l;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002423
Junio C Hamano86ab4902007-03-05 13:10:06 -08002424 if (revs->boundary == 2) {
Adam Simpkins4603ec02008-05-24 16:02:05 -07002425 /*
2426 * All of the normal commits have already been returned,
2427 * and we are now returning boundary commits.
2428 * create_boundary_commit_list() has populated
2429 * revs->commits with the remaining commits to return.
2430 */
2431 c = pop_commit(&revs->commits);
2432 if (c)
2433 c->object.flags |= SHOWN;
Johannes Schindelin9c5e66e2007-01-20 23:04:02 +01002434 return c;
2435 }
2436
Junio C Hamano86ab4902007-03-05 13:10:06 -08002437 /*
Jeff Kingb72a1902012-07-13 03:50:23 -04002438 * If our max_count counter has reached zero, then we are done. We
2439 * don't simply return NULL because we still might need to show
2440 * boundary commits. But we want to avoid calling get_revision_1, which
2441 * might do a considerable amount of work finding the next commit only
2442 * for us to throw it away.
2443 *
2444 * If it is non-zero, then either we don't have a max_count at all
2445 * (-1), or it is still counting, in which case we decrement.
Junio C Hamano86ab4902007-03-05 13:10:06 -08002446 */
Jeff Kingb72a1902012-07-13 03:50:23 -04002447 if (revs->max_count) {
2448 c = get_revision_1(revs);
2449 if (c) {
2450 while (0 < revs->skip_count) {
2451 revs->skip_count--;
2452 c = get_revision_1(revs);
2453 if (!c)
2454 break;
2455 }
Junio C Hamano8839ac92007-03-06 03:20:55 -08002456 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002457
Jeff Kingb72a1902012-07-13 03:50:23 -04002458 if (revs->max_count > 0)
2459 revs->max_count--;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002460 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002461
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002462 if (c)
2463 c->object.flags |= SHOWN;
2464
2465 if (!revs->boundary) {
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002466 return c;
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002467 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002468
2469 if (!c) {
2470 /*
2471 * get_revision_1() runs out the commits, and
2472 * we are done computing the boundaries.
2473 * switch to boundary commits output mode.
2474 */
2475 revs->boundary = 2;
Adam Simpkins4603ec02008-05-24 16:02:05 -07002476
2477 /*
2478 * Update revs->commits to contain the list of
2479 * boundary commits.
2480 */
2481 create_boundary_commit_list(revs);
2482
Adam Simpkins3c68d672008-05-24 16:02:04 -07002483 return get_revision_internal(revs);
Junio C Hamano86ab4902007-03-05 13:10:06 -08002484 }
2485
2486 /*
2487 * boundary commits are the commits that are parents of the
2488 * ones we got from get_revision_1() but they themselves are
2489 * not returned from get_revision_1(). Before returning
2490 * 'c', we need to mark its parents that they could be boundaries.
2491 */
2492
2493 for (l = c->parents; l; l = l->next) {
2494 struct object *p;
2495 p = &(l->item->object);
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002496 if (p->flags & (CHILD_SHOWN | SHOWN))
Junio C Hamano86ab4902007-03-05 13:10:06 -08002497 continue;
2498 p->flags |= CHILD_SHOWN;
2499 gc_boundary(&revs->boundary_commits);
2500 add_object_array(p, NULL, &revs->boundary_commits);
2501 }
2502
2503 return c;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002504}
Adam Simpkins7fefda52008-05-04 03:36:54 -07002505
2506struct commit *get_revision(struct rev_info *revs)
2507{
Thomas Rast498bcd32008-08-29 21:18:38 +02002508 struct commit *c;
2509 struct commit_list *reversed;
2510
2511 if (revs->reverse) {
2512 reversed = NULL;
2513 while ((c = get_revision_internal(revs))) {
2514 commit_list_insert(c, &reversed);
2515 }
2516 revs->commits = reversed;
2517 revs->reverse = 0;
2518 revs->reverse_output_stage = 1;
2519 }
2520
2521 if (revs->reverse_output_stage)
2522 return pop_commit(&revs->commits);
2523
2524 c = get_revision_internal(revs);
Adam Simpkins7fefda52008-05-04 03:36:54 -07002525 if (c && revs->graph)
2526 graph_update(revs->graph, c);
2527 return c;
2528}
Michael J Gruber1df2d652011-03-07 13:31:39 +01002529
2530char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
2531{
2532 if (commit->object.flags & BOUNDARY)
2533 return "-";
2534 else if (commit->object.flags & UNINTERESTING)
2535 return "^";
Michael J Gruberadbbb312011-03-07 13:31:40 +01002536 else if (commit->object.flags & PATCHSAME)
2537 return "=";
Michael J Gruber1df2d652011-03-07 13:31:39 +01002538 else if (!revs || revs->left_right) {
2539 if (commit->object.flags & SYMMETRIC_LEFT)
2540 return "<";
2541 else
2542 return ">";
2543 } else if (revs->graph)
2544 return "*";
Michael J Gruberadbbb312011-03-07 13:31:40 +01002545 else if (revs->cherry_mark)
2546 return "+";
Michael J Gruber1df2d652011-03-07 13:31:39 +01002547 return "";
2548}
Michael J Gruberb1b47552011-03-10 15:45:03 +01002549
2550void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
2551{
2552 char *mark = get_revision_mark(revs, commit);
2553 if (!strlen(mark))
2554 return;
2555 fputs(mark, stdout);
2556 putchar(' ');
2557}