blob: c46cfaa3e4d2f06fd67ccd71c7ba47891796fd60 [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
Linus Torvalds1f1e8952006-06-19 17:42:35 -070043void add_object(struct object *obj,
44 struct object_array *p,
45 struct name_path *path,
46 const char *name)
Linus Torvaldsae563542006-02-25 16:19:46 -080047{
Linus Torvalds1f1e8952006-06-19 17:42:35 -070048 add_object_array(obj, path_name(path, name), p);
Linus Torvaldsae563542006-02-25 16:19:46 -080049}
50
51static void mark_blob_uninteresting(struct blob *blob)
52{
Martin Koeglerc1ee9012008-02-18 21:47:54 +010053 if (!blob)
54 return;
Linus Torvaldsae563542006-02-25 16:19:46 -080055 if (blob->object.flags & UNINTERESTING)
56 return;
57 blob->object.flags |= UNINTERESTING;
58}
59
60void mark_tree_uninteresting(struct tree *tree)
61{
Linus Torvaldsf75e53e2006-05-29 12:20:14 -070062 struct tree_desc desc;
Linus Torvalds4c068a92006-05-30 09:45:45 -070063 struct name_entry entry;
Linus Torvaldsae563542006-02-25 16:19:46 -080064 struct object *obj = &tree->object;
Linus Torvaldsae563542006-02-25 16:19:46 -080065
Martin Koeglerc1ee9012008-02-18 21:47:54 +010066 if (!tree)
67 return;
Linus Torvaldsae563542006-02-25 16:19:46 -080068 if (obj->flags & UNINTERESTING)
69 return;
70 obj->flags |= UNINTERESTING;
71 if (!has_sha1_file(obj->sha1))
72 return;
73 if (parse_tree(tree) < 0)
74 die("bad tree %s", sha1_to_hex(obj->sha1));
Linus Torvaldsf75e53e2006-05-29 12:20:14 -070075
Linus Torvalds6fda5e52007-03-21 10:08:25 -070076 init_tree_desc(&desc, tree->buffer, tree->size);
Linus Torvalds4c068a92006-05-30 09:45:45 -070077 while (tree_entry(&desc, &entry)) {
Linus Torvalds4d1012c2007-11-11 23:35:23 +000078 switch (object_type(entry.mode)) {
79 case OBJ_TREE:
Linus Torvalds4c068a92006-05-30 09:45:45 -070080 mark_tree_uninteresting(lookup_tree(entry.sha1));
Linus Torvalds4d1012c2007-11-11 23:35:23 +000081 break;
82 case OBJ_BLOB:
Linus Torvalds4c068a92006-05-30 09:45:45 -070083 mark_blob_uninteresting(lookup_blob(entry.sha1));
Linus Torvalds4d1012c2007-11-11 23:35:23 +000084 break;
85 default:
86 /* Subproject commit - not in this repository */
87 break;
88 }
Linus Torvaldsae563542006-02-25 16:19:46 -080089 }
Linus Torvaldsf75e53e2006-05-29 12:20:14 -070090
91 /*
92 * We don't care about the tree any more
93 * after it has been marked uninteresting.
94 */
95 free(tree->buffer);
96 tree->buffer = NULL;
Linus Torvaldsae563542006-02-25 16:19:46 -080097}
98
99void mark_parents_uninteresting(struct commit *commit)
100{
101 struct commit_list *parents = commit->parents;
102
103 while (parents) {
104 struct commit *commit = parents->item;
Matthias Urlichsd2c4af72006-03-09 05:04:36 +0100105 if (!(commit->object.flags & UNINTERESTING)) {
106 commit->object.flags |= UNINTERESTING;
Linus Torvaldsae563542006-02-25 16:19:46 -0800107
Matthias Urlichsd2c4af72006-03-09 05:04:36 +0100108 /*
109 * Normally we haven't parsed the parent
110 * yet, so we won't have a parent of a parent
111 * here. However, it may turn out that we've
112 * reached this commit some other way (where it
113 * wasn't uninteresting), in which case we need
114 * to mark its parents recursively too..
115 */
116 if (commit->parents)
117 mark_parents_uninteresting(commit);
118 }
Linus Torvaldsae563542006-02-25 16:19:46 -0800119
120 /*
121 * A missing commit is ok iff its parent is marked
122 * uninteresting.
123 *
124 * We just mark such a thing parsed, so that when
125 * it is popped next time around, we won't be trying
126 * to parse it and get an error.
127 */
128 if (!has_sha1_file(commit->object.sha1))
129 commit->object.parsed = 1;
130 parents = parents->next;
131 }
132}
133
Junio C Hamano2d93b9f2007-06-08 02:24:58 -0700134static 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 +0200135{
Junio C Hamanocc243c32011-05-18 18:08:09 -0700136 if (!obj)
137 return;
Linus Torvaldsaa27e462007-02-27 16:22:52 -0800138 if (revs->no_walk && (obj->flags & UNINTERESTING))
Linus Torvaldsf222abd2009-07-13 14:41:12 -0700139 revs->no_walk = 0;
Junio C Hamano105e4732010-01-26 13:48:28 -0800140 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
141 struct strbuf buf = STRBUF_INIT;
142 int len = interpret_branch_name(name, &buf);
143 int st;
144
145 if (0 < len && name[len] && buf.len)
146 strbuf_addstr(&buf, name + len);
147 st = add_reflog_for_walk(revs->reflog_info,
148 (struct commit *)obj,
149 buf.buf[0] ? buf.buf: name);
150 strbuf_release(&buf);
151 if (st)
152 return;
153 }
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +0200154 add_object_array_with_mode(obj, name, &revs->pending, mode);
Linus Torvaldsae563542006-02-25 16:19:46 -0800155}
156
Junio C Hamano2d93b9f2007-06-08 02:24:58 -0700157void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
158{
159 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
160}
161
Junio C Hamano3384a2d2007-12-11 10:09:04 -0800162void add_head_to_pending(struct rev_info *revs)
163{
164 unsigned char sha1[20];
165 struct object *obj;
166 if (get_sha1("HEAD", sha1))
167 return;
168 obj = parse_object(sha1);
169 if (!obj)
170 return;
171 add_pending_object(revs, obj, "HEAD");
172}
173
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700174static 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 -0800175{
176 struct object *object;
177
178 object = parse_object(sha1);
Junio C Hamanocc243c32011-05-18 18:08:09 -0700179 if (!object) {
180 if (revs->ignore_missing)
181 return object;
Linus Torvaldsae563542006-02-25 16:19:46 -0800182 die("bad object %s", name);
Junio C Hamanocc243c32011-05-18 18:08:09 -0700183 }
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700184 object->flags |= flags;
185 return object;
186}
187
188static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
189{
190 unsigned long flags = object->flags;
Linus Torvaldsae563542006-02-25 16:19:46 -0800191
192 /*
193 * Tag object? Look what it points to..
194 */
Linus Torvalds19746322006-07-11 20:45:31 -0700195 while (object->type == OBJ_TAG) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800196 struct tag *tag = (struct tag *) object;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700197 if (revs->tag_objects && !(flags & UNINTERESTING))
Linus Torvaldsae563542006-02-25 16:19:46 -0800198 add_pending_object(revs, object, tag->tag);
Martin Koegler9684afd2008-02-18 21:48:01 +0100199 if (!tag->tagged)
200 die("bad tag");
Linus Torvaldsae563542006-02-25 16:19:46 -0800201 object = parse_object(tag->tagged->sha1);
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800202 if (!object) {
203 if (flags & UNINTERESTING)
204 return NULL;
Linus Torvaldsae563542006-02-25 16:19:46 -0800205 die("bad object %s", sha1_to_hex(tag->tagged->sha1));
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800206 }
Linus Torvaldsae563542006-02-25 16:19:46 -0800207 }
208
209 /*
210 * Commit object? Just return it, we'll do all the complex
211 * reachability crud.
212 */
Linus Torvalds19746322006-07-11 20:45:31 -0700213 if (object->type == OBJ_COMMIT) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800214 struct commit *commit = (struct commit *)object;
Linus Torvaldsae563542006-02-25 16:19:46 -0800215 if (parse_commit(commit) < 0)
216 die("unable to parse commit %s", name);
Linus Torvaldsd9a83682006-02-27 08:54:36 -0800217 if (flags & UNINTERESTING) {
Linus Torvalds4262c1b2006-04-18 20:31:41 -0700218 commit->object.flags |= UNINTERESTING;
Linus Torvaldsae563542006-02-25 16:19:46 -0800219 mark_parents_uninteresting(commit);
Linus Torvaldsd9a83682006-02-27 08:54:36 -0800220 revs->limited = 1;
221 }
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700222 if (revs->show_source && !commit->util)
223 commit->util = (void *) name;
Linus Torvaldsae563542006-02-25 16:19:46 -0800224 return commit;
225 }
226
227 /*
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100228 * Tree object? Either mark it uninteresting, or add it
Linus Torvaldsae563542006-02-25 16:19:46 -0800229 * to the list of objects to look at later..
230 */
Linus Torvalds19746322006-07-11 20:45:31 -0700231 if (object->type == OBJ_TREE) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800232 struct tree *tree = (struct tree *)object;
233 if (!revs->tree_objects)
234 return NULL;
235 if (flags & UNINTERESTING) {
236 mark_tree_uninteresting(tree);
237 return NULL;
238 }
239 add_pending_object(revs, object, "");
240 return NULL;
241 }
242
243 /*
244 * Blob object? You know the drill by now..
245 */
Linus Torvalds19746322006-07-11 20:45:31 -0700246 if (object->type == OBJ_BLOB) {
Linus Torvaldsae563542006-02-25 16:19:46 -0800247 struct blob *blob = (struct blob *)object;
248 if (!revs->blob_objects)
249 return NULL;
250 if (flags & UNINTERESTING) {
251 mark_blob_uninteresting(blob);
252 return NULL;
253 }
254 add_pending_object(revs, object, "");
255 return NULL;
256 }
257 die("%s is unknown object", name);
258}
259
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800260static int everybody_uninteresting(struct commit_list *orig)
261{
262 struct commit_list *list = orig;
263 while (list) {
264 struct commit *commit = list->item;
265 list = list->next;
266 if (commit->object.flags & UNINTERESTING)
267 continue;
268 return 0;
269 }
270 return 1;
271}
272
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700273/*
274 * The goal is to get REV_TREE_NEW as the result only if the
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700275 * diff consists of all '+' (and no other changes), REV_TREE_OLD
276 * if the whole diff is removal of old data, and otherwise
277 * REV_TREE_DIFFERENT (of course if the trees are the same we
278 * want REV_TREE_SAME).
279 * That means that once we get to REV_TREE_DIFFERENT, we do not
280 * have to look any further.
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700281 */
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100282static int tree_difference = REV_TREE_SAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800283
284static void file_add_remove(struct diff_options *options,
285 int addremove, unsigned mode,
286 const unsigned char *sha1,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100287 const char *fullpath, unsigned dirty_submodule)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800288{
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700289 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800290
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700291 tree_difference |= diff;
Junio C Hamanodd47aa32007-03-14 13:18:15 -0700292 if (tree_difference == REV_TREE_DIFFERENT)
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100293 DIFF_OPT_SET(options, HAS_CHANGES);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800294}
295
296static void file_change(struct diff_options *options,
297 unsigned old_mode, unsigned new_mode,
298 const unsigned char *old_sha1,
299 const unsigned char *new_sha1,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100300 const char *fullpath,
301 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800302{
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100303 tree_difference = REV_TREE_DIFFERENT;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100304 DIFF_OPT_SET(options, HAS_CHANGES);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800305}
306
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800307static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800308{
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800309 struct tree *t1 = parent->tree;
310 struct tree *t2 = commit->tree;
311
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800312 if (!t1)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100313 return REV_TREE_NEW;
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700314 if (!t2)
315 return REV_TREE_OLD;
Linus Torvalds78892e32008-11-03 11:25:46 -0800316
317 if (revs->simplify_by_decoration) {
318 /*
319 * If we are simplifying by decoration, then the commit
320 * is worth showing if it has a tag pointing at it.
321 */
322 if (lookup_decoration(&name_decoration, &commit->object))
323 return REV_TREE_DIFFERENT;
324 /*
325 * A commit that is not pointed by a tag is uninteresting
326 * if we are not limited by path. This means that you will
327 * see the usual "commits that touch the paths" plus any
328 * tagged commit by specifying both --simplify-by-decoration
329 * and pathspec.
330 */
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +0700331 if (!revs->prune_data.nr)
Linus Torvalds78892e32008-11-03 11:25:46 -0800332 return REV_TREE_SAME;
333 }
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700334
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100335 tree_difference = REV_TREE_SAME;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100336 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
Junio C Hamanoc4e05b12006-04-10 18:14:54 -0700337 if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700338 &revs->pruning) < 0)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100339 return REV_TREE_DIFFERENT;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800340 return tree_difference;
341}
342
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800343static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800344{
345 int retval;
346 void *tree;
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700347 unsigned long size;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800348 struct tree_desc empty, real;
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800349 struct tree *t1 = commit->tree;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800350
351 if (!t1)
352 return 0;
353
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700354 tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800355 if (!tree)
356 return 0;
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700357 init_tree_desc(&real, tree, size);
358 init_tree_desc(&empty, "", 0);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800359
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700360 tree_difference = REV_TREE_SAME;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100361 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700362 retval = diff_tree(&empty, &real, "", &revs->pruning);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800363 free(tree);
364
Junio C Hamano0a4ba7f2007-03-14 13:12:18 -0700365 return retval >= 0 && (tree_difference == REV_TREE_SAME);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800366}
367
368static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
369{
370 struct commit_list **pp, *parent;
Linus Torvalds6631c732006-06-30 20:21:59 -0700371 int tree_changed = 0, tree_same = 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800372
Linus Torvalds53b2c822007-11-05 13:22:34 -0800373 /*
374 * If we don't do pruning, everything is interesting
375 */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800376 if (!revs->prune)
Linus Torvalds53b2c822007-11-05 13:22:34 -0800377 return;
Linus Torvalds53b2c822007-11-05 13:22:34 -0800378
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800379 if (!commit->tree)
380 return;
381
382 if (!commit->parents) {
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800383 if (rev_same_tree_as_empty(revs, commit))
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800384 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800385 return;
386 }
387
Linus Torvalds53b2c822007-11-05 13:22:34 -0800388 /*
389 * Normal non-merge commit? If we don't want to make the
390 * history dense, we consider it always to be a change..
391 */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800392 if (!revs->dense && !commit->parents->next)
Linus Torvalds53b2c822007-11-05 13:22:34 -0800393 return;
Linus Torvalds53b2c822007-11-05 13:22:34 -0800394
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800395 pp = &commit->parents;
396 while ((parent = *pp) != NULL) {
397 struct commit *p = parent->item;
398
Alex Riesencc0e6c52007-05-04 23:54:57 +0200399 if (parse_commit(p) < 0)
400 die("cannot simplify commit %s (because of %s)",
401 sha1_to_hex(commit->object.sha1),
402 sha1_to_hex(p->object.sha1));
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800403 switch (rev_compare_tree(revs, p, commit)) {
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100404 case REV_TREE_SAME:
Linus Torvalds6631c732006-06-30 20:21:59 -0700405 tree_same = 1;
Linus Torvalds92024342006-06-11 10:57:35 -0700406 if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
Junio C Hamanof3219fb2006-03-10 21:59:37 -0800407 /* Even if a merge with an uninteresting
408 * side branch brought the entire change
409 * we are interested in, we do not want
410 * to lose the other branches of this
411 * merge, so we just keep going.
412 */
413 pp = &parent->next;
414 continue;
415 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800416 parent->next = NULL;
417 commit->parents = parent;
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800418 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800419 return;
420
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100421 case REV_TREE_NEW:
422 if (revs->remove_empty_trees &&
Linus Torvalds3a5e8602008-11-03 10:45:41 -0800423 rev_same_tree_as_empty(revs, p)) {
Junio C Hamanoc348f312006-03-12 13:39:31 -0800424 /* We are adding all the specified
425 * paths from this parent, so the
426 * history beyond this parent is not
427 * interesting. Remove its parents
428 * (they are grandparents for us).
429 * IOW, we pretend this parent is a
430 * "root" commit.
Junio C Hamanoa41e1092006-03-12 13:39:31 -0800431 */
Alex Riesencc0e6c52007-05-04 23:54:57 +0200432 if (parse_commit(p) < 0)
433 die("cannot simplify commit %s (invalid %s)",
434 sha1_to_hex(commit->object.sha1),
435 sha1_to_hex(p->object.sha1));
Junio C Hamanoc348f312006-03-12 13:39:31 -0800436 p->parents = NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800437 }
438 /* fallthrough */
Linus Torvaldsceff8e72009-06-02 18:34:01 -0700439 case REV_TREE_OLD:
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100440 case REV_TREE_DIFFERENT:
Junio C Hamanof3219fb2006-03-10 21:59:37 -0800441 tree_changed = 1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800442 pp = &parent->next;
443 continue;
444 }
445 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
446 }
Linus Torvalds6631c732006-06-30 20:21:59 -0700447 if (tree_changed && !tree_same)
Linus Torvalds7dc0fe32007-11-12 23:16:08 -0800448 return;
449 commit->object.flags |= TREESAME;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800450}
451
Thiago Farina47e44ed2010-11-26 23:58:14 -0200452static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400453 struct commit_list *cached_base, struct commit_list **cache)
454{
455 struct commit_list *new_entry;
456
457 if (cached_base && p->date < cached_base->item->date)
Thiago Farina47e44ed2010-11-26 23:58:14 -0200458 new_entry = commit_list_insert_by_date(p, &cached_base->next);
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400459 else
Thiago Farina47e44ed2010-11-26 23:58:14 -0200460 new_entry = commit_list_insert_by_date(p, head);
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400461
462 if (cache && (!*cache || p->date < (*cache)->item->date))
463 *cache = new_entry;
464}
465
466static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
467 struct commit_list **list, struct commit_list **cache_ptr)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800468{
469 struct commit_list *parent = commit->parents;
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700470 unsigned left_flag;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400471 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800472
Linus Torvalds3381c792006-04-08 17:05:58 -0700473 if (commit->object.flags & ADDED)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200474 return 0;
Linus Torvalds3381c792006-04-08 17:05:58 -0700475 commit->object.flags |= ADDED;
476
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800477 /*
478 * If the commit is uninteresting, don't try to
479 * prune parents - we want the maximal uninteresting
480 * set.
481 *
482 * Normally we haven't parsed the parent
483 * yet, so we won't have a parent of a parent
484 * here. However, it may turn out that we've
485 * reached this commit some other way (where it
486 * wasn't uninteresting), in which case we need
487 * to mark its parents recursively too..
488 */
489 if (commit->object.flags & UNINTERESTING) {
490 while (parent) {
491 struct commit *p = parent->item;
492 parent = parent->next;
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800493 if (p)
494 p->object.flags |= UNINTERESTING;
Alex Riesencc0e6c52007-05-04 23:54:57 +0200495 if (parse_commit(p) < 0)
Junio C Hamanoaeeae1b2009-01-27 23:19:30 -0800496 continue;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800497 if (p->parents)
498 mark_parents_uninteresting(p);
499 if (p->object.flags & SEEN)
500 continue;
501 p->object.flags |= SEEN;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200502 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800503 }
Alex Riesencc0e6c52007-05-04 23:54:57 +0200504 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800505 }
506
507 /*
508 * Ok, the commit wasn't uninteresting. Try to
509 * simplify the commit history and find the parent
510 * that has no differences in the path set if one exists.
511 */
Linus Torvalds53b2c822007-11-05 13:22:34 -0800512 try_to_simplify_commit(revs, commit);
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800513
Linus Torvaldsba1d4502006-04-15 12:09:56 -0700514 if (revs->no_walk)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200515 return 0;
Linus Torvaldsba1d4502006-04-15 12:09:56 -0700516
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700517 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
Junio C Hamano0053e902007-03-13 01:57:22 -0700518
Stephen R. van den Bergd9c292e2008-04-27 19:32:46 +0200519 for (parent = commit->parents; parent; parent = parent->next) {
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800520 struct commit *p = parent->item;
521
Alex Riesencc0e6c52007-05-04 23:54:57 +0200522 if (parse_commit(p) < 0)
523 return -1;
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700524 if (revs->show_source && !p->util)
525 p->util = commit->util;
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700526 p->object.flags |= left_flag;
Lars Hjemliad1012e2008-05-12 17:12:36 +0200527 if (!(p->object.flags & SEEN)) {
528 p->object.flags |= SEEN;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200529 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
Lars Hjemliad1012e2008-05-12 17:12:36 +0200530 }
Junio C Hamano60d30b02008-07-31 22:17:13 -0700531 if (revs->first_parent_only)
Stephen R. van den Bergd9c292e2008-04-27 19:32:46 +0200532 break;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800533 }
Alex Riesencc0e6c52007-05-04 23:54:57 +0200534 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800535}
536
Johannes Schindelin36d56de2007-07-10 14:50:49 +0100537static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700538{
539 struct commit_list *p;
540 int left_count = 0, right_count = 0;
541 int left_first;
542 struct patch_ids ids;
Michael J Gruberadbbb312011-03-07 13:31:40 +0100543 unsigned cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700544
545 /* First count the commits on the left and on the right */
546 for (p = list; p; p = p->next) {
547 struct commit *commit = p->item;
548 unsigned flags = commit->object.flags;
549 if (flags & BOUNDARY)
550 ;
551 else if (flags & SYMMETRIC_LEFT)
552 left_count++;
553 else
554 right_count++;
555 }
556
Thomas Rast36c07972010-02-20 12:42:04 +0100557 if (!left_count || !right_count)
558 return;
559
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700560 left_first = left_count < right_count;
561 init_patch_ids(&ids);
Nguyễn Thái Ngọc Duy66f13622010-12-15 22:02:38 +0700562 ids.diffopts.pathspec = revs->diffopt.pathspec;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700563
564 /* Compute patch-ids for one side */
565 for (p = list; p; p = p->next) {
566 struct commit *commit = p->item;
567 unsigned flags = commit->object.flags;
568
569 if (flags & BOUNDARY)
570 continue;
571 /*
572 * If we have fewer left, left_first is set and we omit
573 * commits on the right branch in this loop. If we have
574 * fewer right, we skip the left ones.
575 */
576 if (left_first != !!(flags & SYMMETRIC_LEFT))
577 continue;
578 commit->util = add_commit_patch_id(commit, &ids);
579 }
580
Michael J Gruberadbbb312011-03-07 13:31:40 +0100581 /* either cherry_mark or cherry_pick are true */
582 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
583
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700584 /* Check the other side */
585 for (p = list; p; p = p->next) {
586 struct commit *commit = p->item;
587 struct patch_id *id;
588 unsigned flags = commit->object.flags;
589
590 if (flags & BOUNDARY)
591 continue;
592 /*
593 * If we have fewer left, left_first is set and we omit
594 * commits on the left branch in this loop.
595 */
596 if (left_first == !!(flags & SYMMETRIC_LEFT))
597 continue;
598
599 /*
600 * Have we seen the same patch id?
601 */
602 id = has_commit_patch_id(commit, &ids);
603 if (!id)
604 continue;
605 id->seen = 1;
Michael J Gruberadbbb312011-03-07 13:31:40 +0100606 commit->object.flags |= cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700607 }
608
609 /* Now check the original side for seen ones */
610 for (p = list; p; p = p->next) {
611 struct commit *commit = p->item;
612 struct patch_id *ent;
613
614 ent = commit->util;
615 if (!ent)
616 continue;
617 if (ent->seen)
Michael J Gruberadbbb312011-03-07 13:31:40 +0100618 commit->object.flags |= cherry_flag;
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700619 commit->util = NULL;
620 }
621
622 free_patch_ids(&ids);
623}
624
Linus Torvalds7d004192008-03-17 18:56:33 -0700625/* How many extra uninteresting commits we want to see.. */
626#define SLOP 5
627
628static int still_interesting(struct commit_list *src, unsigned long date, int slop)
Linus Torvalds3131b712008-02-09 14:02:07 -0800629{
Linus Torvalds7d004192008-03-17 18:56:33 -0700630 /*
631 * No source list at all? We're definitely done..
632 */
633 if (!src)
634 return 0;
635
636 /*
637 * Does the destination list contain entries with a date
638 * before the source list? Definitely _not_ done.
639 */
640 if (date < src->item->date)
641 return SLOP;
642
643 /*
644 * Does the source list still have interesting commits in
645 * it? Definitely not done..
646 */
647 if (!everybody_uninteresting(src))
648 return SLOP;
649
650 /* Ok, we're closing in.. */
651 return slop-1;
Linus Torvalds3131b712008-02-09 14:02:07 -0800652}
653
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700654/*
655 * "rev-list --ancestry-path A..B" computes commits that are ancestors
656 * of B but not ancestors of A but further limits the result to those
657 * that are descendants of A. This takes the list of bottom commits and
658 * the result of "A..B" without --ancestry-path, and limits the latter
659 * further to the ones that can reach one of the commits in "bottom".
660 */
661static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
662{
663 struct commit_list *p;
664 struct commit_list *rlist = NULL;
665 int made_progress;
666
667 /*
668 * Reverse the list so that it will be likely that we would
669 * process parents before children.
670 */
671 for (p = list; p; p = p->next)
672 commit_list_insert(p->item, &rlist);
673
674 for (p = bottom; p; p = p->next)
675 p->item->object.flags |= TMP_MARK;
676
677 /*
678 * Mark the ones that can reach bottom commits in "list",
679 * in a bottom-up fashion.
680 */
681 do {
682 made_progress = 0;
683 for (p = rlist; p; p = p->next) {
684 struct commit *c = p->item;
685 struct commit_list *parents;
686 if (c->object.flags & (TMP_MARK | UNINTERESTING))
687 continue;
688 for (parents = c->parents;
689 parents;
690 parents = parents->next) {
691 if (!(parents->item->object.flags & TMP_MARK))
692 continue;
693 c->object.flags |= TMP_MARK;
694 made_progress = 1;
695 break;
696 }
697 }
698 } while (made_progress);
699
700 /*
701 * NEEDSWORK: decide if we want to remove parents that are
702 * not marked with TMP_MARK from commit->parents for commits
703 * in the resulting list. We may not want to do that, though.
704 */
705
706 /*
707 * The ones that are not marked with TMP_MARK are uninteresting
708 */
709 for (p = list; p; p = p->next) {
710 struct commit *c = p->item;
711 if (c->object.flags & TMP_MARK)
712 continue;
713 c->object.flags |= UNINTERESTING;
714 }
715
716 /* We are done with the TMP_MARK */
717 for (p = list; p; p = p->next)
718 p->item->object.flags &= ~TMP_MARK;
719 for (p = bottom; p; p = p->next)
720 p->item->object.flags &= ~TMP_MARK;
721 free_commit_list(rlist);
722}
723
724/*
725 * Before walking the history, keep the set of "negative" refs the
726 * caller has asked to exclude.
727 *
728 * This is used to compute "rev-list --ancestry-path A..B", as we need
729 * to filter the result of "A..B" further to the ones that can actually
730 * reach A.
731 */
732static struct commit_list *collect_bottom_commits(struct commit_list *list)
733{
734 struct commit_list *elem, *bottom = NULL;
735 for (elem = list; elem; elem = elem->next)
736 if (elem->item->object.flags & UNINTERESTING)
737 commit_list_insert(elem->item, &bottom);
738 return bottom;
739}
740
Michael J Gruber60adf7d2011-02-21 17:09:11 +0100741/* Assumes either left_only or right_only is set */
742static void limit_left_right(struct commit_list *list, struct rev_info *revs)
743{
744 struct commit_list *p;
745
746 for (p = list; p; p = p->next) {
747 struct commit *commit = p->item;
748
749 if (revs->right_only) {
750 if (commit->object.flags & SYMMETRIC_LEFT)
751 commit->object.flags |= SHOWN;
752 } else /* revs->left_only is set */
753 if (!(commit->object.flags & SYMMETRIC_LEFT))
754 commit->object.flags |= SHOWN;
755 }
756}
757
Alex Riesencc0e6c52007-05-04 23:54:57 +0200758static int limit_list(struct rev_info *revs)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800759{
Linus Torvalds7d004192008-03-17 18:56:33 -0700760 int slop = SLOP;
761 unsigned long date = ~0ul;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800762 struct commit_list *list = revs->commits;
763 struct commit_list *newlist = NULL;
764 struct commit_list **p = &newlist;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700765 struct commit_list *bottom = NULL;
766
767 if (revs->ancestry_path) {
768 bottom = collect_bottom_commits(list);
769 if (!bottom)
Johan Herland97b03c32010-06-04 01:17:36 +0200770 die("--ancestry-path given but there are no bottom commits");
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700771 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800772
773 while (list) {
774 struct commit_list *entry = list;
775 struct commit *commit = list->item;
776 struct object *obj = &commit->object;
Linus Torvaldscdcefbc2007-11-03 11:11:10 -0700777 show_early_output_fn_t show;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800778
779 list = list->next;
780 free(entry);
781
782 if (revs->max_age != -1 && (commit->date < revs->max_age))
783 obj->flags |= UNINTERESTING;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +0400784 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
Alex Riesencc0e6c52007-05-04 23:54:57 +0200785 return -1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800786 if (obj->flags & UNINTERESTING) {
787 mark_parents_uninteresting(commit);
Linus Torvalds7d004192008-03-17 18:56:33 -0700788 if (revs->show_all)
789 p = &commit_list_insert(commit, p)->next;
790 slop = still_interesting(list, date, slop);
791 if (slop)
Linus Torvalds3131b712008-02-09 14:02:07 -0800792 continue;
Linus Torvalds7d004192008-03-17 18:56:33 -0700793 /* If showing all, add the whole pending list to the end */
794 if (revs->show_all)
795 *p = list;
796 break;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800797 }
798 if (revs->min_age != -1 && (commit->date > revs->min_age))
799 continue;
Linus Torvalds7d004192008-03-17 18:56:33 -0700800 date = commit->date;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800801 p = &commit_list_insert(commit, p)->next;
Linus Torvaldscdcefbc2007-11-03 11:11:10 -0700802
803 show = show_early_output;
804 if (!show)
805 continue;
806
807 show(revs, newlist);
808 show_early_output = NULL;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800809 }
Michael J Gruberadbbb312011-03-07 13:31:40 +0100810 if (revs->cherry_pick || revs->cherry_mark)
Johannes Schindelin36d56de2007-07-10 14:50:49 +0100811 cherry_pick_list(newlist, revs);
Junio C Hamanod7a17ca2007-04-09 03:40:38 -0700812
Michael J Gruber60adf7d2011-02-21 17:09:11 +0100813 if (revs->left_only || revs->right_only)
814 limit_left_right(newlist, revs);
815
Junio C Hamanoebdc94f2010-04-20 13:48:39 -0700816 if (bottom) {
817 limit_to_ancestry(bottom, newlist);
818 free_commit_list(bottom);
819 }
820
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800821 revs->commits = newlist;
Alex Riesencc0e6c52007-05-04 23:54:57 +0200822 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -0800823}
824
Junio C Hamano63049292006-12-18 17:25:28 -0800825struct all_refs_cb {
826 int all_flags;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500827 int warned_bad_reflog;
Junio C Hamano63049292006-12-18 17:25:28 -0800828 struct rev_info *all_revs;
829 const char *name_for_errormsg;
830};
Linus Torvaldsae563542006-02-25 16:19:46 -0800831
Junio C Hamano8da19772006-09-20 22:02:01 -0700832static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
Linus Torvaldsae563542006-02-25 16:19:46 -0800833{
Junio C Hamano63049292006-12-18 17:25:28 -0800834 struct all_refs_cb *cb = cb_data;
835 struct object *object = get_reference(cb->all_revs, path, sha1,
836 cb->all_flags);
Johannes Schindelin3d1efd82007-02-23 02:56:31 +0100837 add_pending_object(cb->all_revs, object, path);
Linus Torvaldsae563542006-02-25 16:19:46 -0800838 return 0;
839}
840
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200841static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
842 unsigned flags)
843{
844 cb->all_revs = revs;
845 cb->all_flags = flags;
846}
847
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200848static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags,
849 int (*for_each)(const char *, each_ref_fn, void *))
Linus Torvaldsae563542006-02-25 16:19:46 -0800850{
Junio C Hamano63049292006-12-18 17:25:28 -0800851 struct all_refs_cb cb;
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200852 init_all_refs_cb(&cb, revs, flags);
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200853 for_each(submodule, handle_one_ref, &cb);
Junio C Hamano63049292006-12-18 17:25:28 -0800854}
855
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500856static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
Junio C Hamano63049292006-12-18 17:25:28 -0800857{
858 struct all_refs_cb *cb = cb_data;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500859 if (!is_null_sha1(sha1)) {
860 struct object *o = parse_object(sha1);
861 if (o) {
862 o->flags |= cb->all_flags;
863 add_pending_object(cb->all_revs, o, "");
864 }
865 else if (!cb->warned_bad_reflog) {
Theodore Ts'o46efd2d2007-03-30 19:07:05 -0400866 warning("reflog of '%s' references pruned commits",
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500867 cb->name_for_errormsg);
868 cb->warned_bad_reflog = 1;
869 }
Junio C Hamano63049292006-12-18 17:25:28 -0800870 }
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500871}
872
Johannes Schindelin883d60f2007-01-08 01:59:54 +0100873static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
874 const char *email, unsigned long timestamp, int tz,
875 const char *message, void *cb_data)
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500876{
877 handle_one_reflog_commit(osha1, cb_data);
878 handle_one_reflog_commit(nsha1, cb_data);
Junio C Hamano63049292006-12-18 17:25:28 -0800879 return 0;
880}
881
882static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
883{
884 struct all_refs_cb *cb = cb_data;
Shawn O. Pearce71b03b42006-12-21 19:49:06 -0500885 cb->warned_bad_reflog = 0;
Junio C Hamano63049292006-12-18 17:25:28 -0800886 cb->name_for_errormsg = path;
887 for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
888 return 0;
889}
890
891static void handle_reflog(struct rev_info *revs, unsigned flags)
892{
893 struct all_refs_cb cb;
894 cb.all_revs = revs;
895 cb.all_flags = flags;
Junio C Hamano25b51e22007-02-12 23:06:54 -0800896 for_each_reflog(handle_one_reflog, &cb);
Linus Torvaldsae563542006-02-25 16:19:46 -0800897}
898
Junio C Hamanoea4a19e2006-04-30 00:54:29 -0700899static int add_parents_only(struct rev_info *revs, const char *arg, int flags)
900{
901 unsigned char sha1[20];
902 struct object *it;
903 struct commit *commit;
904 struct commit_list *parents;
905
906 if (*arg == '^') {
907 flags ^= UNINTERESTING;
908 arg++;
909 }
910 if (get_sha1(arg, sha1))
911 return 0;
912 while (1) {
913 it = get_reference(revs, arg, sha1, 0);
Junio C Hamanocc243c32011-05-18 18:08:09 -0700914 if (!it && revs->ignore_missing)
915 return 0;
Linus Torvalds19746322006-07-11 20:45:31 -0700916 if (it->type != OBJ_TAG)
Junio C Hamanoea4a19e2006-04-30 00:54:29 -0700917 break;
Martin Koegler9684afd2008-02-18 21:48:01 +0100918 if (!((struct tag*)it)->tagged)
919 return 0;
Shawn Pearcee7024962006-08-23 02:49:00 -0400920 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
Junio C Hamanoea4a19e2006-04-30 00:54:29 -0700921 }
Linus Torvalds19746322006-07-11 20:45:31 -0700922 if (it->type != OBJ_COMMIT)
Junio C Hamanoea4a19e2006-04-30 00:54:29 -0700923 return 0;
924 commit = (struct commit *)it;
925 for (parents = commit->parents; parents; parents = parents->next) {
926 it = &parents->item->object;
927 it->flags |= flags;
928 add_pending_object(revs, it, arg);
929 }
930 return 1;
931}
932
Linus Torvaldsdb6296a2006-07-28 21:21:48 -0700933void init_revisions(struct rev_info *revs, const char *prefix)
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100934{
935 memset(revs, 0, sizeof(*revs));
Junio C Hamano8e8f9982006-04-14 22:19:38 -0700936
Junio C Hamano6b9c58f2006-04-15 23:46:36 -0700937 revs->abbrev = DEFAULT_ABBREV;
Junio C Hamano8e8f9982006-04-14 22:19:38 -0700938 revs->ignore_merges = 1;
Linus Torvalds92024342006-06-11 10:57:35 -0700939 revs->simplify_history = 1;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100940 DIFF_OPT_SET(&revs->pruning, RECURSIVE);
Junio C Hamano90b19942009-05-23 01:15:35 -0700941 DIFF_OPT_SET(&revs->pruning, QUICK);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700942 revs->pruning.add_remove = file_add_remove;
943 revs->pruning.change = file_change;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100944 revs->lifo = 1;
945 revs->dense = 1;
Linus Torvaldsdb6296a2006-07-28 21:21:48 -0700946 revs->prefix = prefix;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100947 revs->max_age = -1;
948 revs->min_age = -1;
Junio C Hamanod5db6c92006-12-19 18:25:32 -0800949 revs->skip_count = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100950 revs->max_count = -1;
Michael J Gruberad5aeed2011-03-21 11:14:06 +0100951 revs->max_parents = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100952
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700953 revs->commit_format = CMIT_FMT_DEFAULT;
954
Jeff King0843acf2008-08-25 02:15:05 -0400955 revs->grep_filter.status_only = 1;
956 revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list);
Junio C Hamano80235ba2010-01-17 20:09:06 -0800957 revs->grep_filter.header_tail = &(revs->grep_filter.header_list);
Jeff King0843acf2008-08-25 02:15:05 -0400958 revs->grep_filter.regflags = REG_NEWLINE;
959
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700960 diff_setup(&revs->diffopt);
Junio C Hamanoc0cb4a02008-02-13 00:34:39 -0800961 if (prefix && !revs->diffopt.prefix) {
Junio C Hamanocd676a52008-02-12 14:26:02 -0800962 revs->diffopt.prefix = prefix;
963 revs->diffopt.prefix_length = strlen(prefix);
964 }
Jeff King3a03cf62011-03-29 16:57:27 -0400965
966 revs->notes_opt.use_default_notes = -1;
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +0100967}
968
Rene Scharfe0d2c9d62006-07-02 01:29:37 +0200969static void add_pending_commit_list(struct rev_info *revs,
970 struct commit_list *commit_list,
971 unsigned int flags)
972{
973 while (commit_list) {
974 struct object *object = &commit_list->item->object;
975 object->flags |= flags;
976 add_pending_object(revs, object, sha1_to_hex(object->sha1));
977 commit_list = commit_list->next;
978 }
979}
980
Junio C Hamanoae3e5e12006-07-03 02:59:32 -0700981static void prepare_show_merge(struct rev_info *revs)
982{
983 struct commit_list *bases;
984 struct commit *head, *other;
985 unsigned char sha1[20];
986 const char **prune = NULL;
987 int i, prune_num = 1; /* counting terminating NULL */
988
989 if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1)))
990 die("--merge without HEAD?");
991 if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1)))
992 die("--merge without MERGE_HEAD?");
993 add_pending_object(revs, &head->object, "HEAD");
994 add_pending_object(revs, &other->object, "MERGE_HEAD");
995 bases = get_merge_bases(head, other, 1);
Junio C Hamanoe82447b2008-02-26 23:18:38 -0800996 add_pending_commit_list(revs, bases, UNINTERESTING);
997 free_commit_list(bases);
998 head->object.flags |= SYMMETRIC_LEFT;
Junio C Hamanoae3e5e12006-07-03 02:59:32 -0700999
1000 if (!active_nr)
1001 read_cache();
1002 for (i = 0; i < active_nr; i++) {
1003 struct cache_entry *ce = active_cache[i];
1004 if (!ce_stage(ce))
1005 continue;
Nguyễn Thái Ngọc Duyeb9cb552010-12-17 19:43:07 +07001006 if (ce_path_match(ce, &revs->prune_data)) {
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001007 prune_num++;
1008 prune = xrealloc(prune, sizeof(*prune) * prune_num);
1009 prune[prune_num-2] = ce->name;
1010 prune[prune_num-1] = NULL;
1011 }
1012 while ((i+1 < active_nr) &&
1013 ce_same_name(ce, active_cache[i+1]))
1014 i++;
1015 }
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001016 free_pathspec(&revs->prune_data);
1017 init_pathspec(&revs->prune_data, prune);
Junio C Hamanoe82447b2008-02-26 23:18:38 -08001018 revs->limited = 1;
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001019}
1020
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001021int handle_revision_arg(const char *arg, struct rev_info *revs,
1022 int flags,
1023 int cant_be_filename)
1024{
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +02001025 unsigned mode;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001026 char *dotdot;
1027 struct object *object;
1028 unsigned char sha1[20];
1029 int local_flags;
1030
1031 dotdot = strstr(arg, "..");
1032 if (dotdot) {
1033 unsigned char from_sha1[20];
1034 const char *next = dotdot + 2;
1035 const char *this = arg;
1036 int symmetric = *next == '.';
1037 unsigned int flags_exclude = flags ^ UNINTERESTING;
1038
1039 *dotdot = 0;
1040 next += symmetric;
1041
1042 if (!*next)
1043 next = "HEAD";
1044 if (dotdot == arg)
1045 this = "HEAD";
1046 if (!get_sha1(this, from_sha1) &&
1047 !get_sha1(next, sha1)) {
1048 struct commit *a, *b;
1049 struct commit_list *exclude;
1050
1051 a = lookup_commit_reference(from_sha1);
1052 b = lookup_commit_reference(sha1);
1053 if (!a || !b) {
Junio C Hamanocc243c32011-05-18 18:08:09 -07001054 if (revs->ignore_missing)
1055 return 0;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001056 die(symmetric ?
1057 "Invalid symmetric difference expression %s...%s" :
1058 "Invalid revision range %s..%s",
1059 arg, next);
1060 }
1061
1062 if (!cant_be_filename) {
1063 *dotdot = '.';
1064 verify_non_filename(revs->prefix, arg);
1065 }
1066
1067 if (symmetric) {
1068 exclude = get_merge_bases(a, b, 1);
1069 add_pending_commit_list(revs, exclude,
1070 flags_exclude);
1071 free_commit_list(exclude);
Junio C Hamano577ed5c2006-10-22 17:32:47 -07001072 a->object.flags |= flags | SYMMETRIC_LEFT;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001073 } else
1074 a->object.flags |= flags_exclude;
1075 b->object.flags |= flags;
1076 add_pending_object(revs, &a->object, this);
1077 add_pending_object(revs, &b->object, next);
1078 return 0;
1079 }
1080 *dotdot = '.';
1081 }
1082 dotdot = strstr(arg, "^@");
1083 if (dotdot && !dotdot[2]) {
1084 *dotdot = 0;
1085 if (add_parents_only(revs, arg, flags))
1086 return 0;
1087 *dotdot = '^';
1088 }
Junio C Hamano62476c82006-10-31 14:22:34 -08001089 dotdot = strstr(arg, "^!");
1090 if (dotdot && !dotdot[2]) {
1091 *dotdot = 0;
1092 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1093 *dotdot = '^';
1094 }
1095
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001096 local_flags = 0;
1097 if (*arg == '^') {
1098 local_flags = UNINTERESTING;
1099 arg++;
1100 }
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +02001101 if (get_sha1_with_mode(arg, sha1, &mode))
Junio C Hamanocc243c32011-05-18 18:08:09 -07001102 return revs->ignore_missing ? 0 : -1;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001103 if (!cant_be_filename)
1104 verify_non_filename(revs->prefix, arg);
1105 object = get_reference(revs, arg, sha1, flags ^ local_flags);
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +02001106 add_pending_object_with_mode(revs, object, arg, mode);
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001107 return 0;
1108}
1109
Junio C Hamano4da5af32011-05-11 14:01:19 -07001110struct cmdline_pathspec {
1111 int alloc;
1112 int nr;
1113 const char **path;
1114};
1115
1116static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
Adam Brewster1fc561d2008-07-05 17:26:39 -04001117{
Junio C Hamano4da5af32011-05-11 14:01:19 -07001118 while (*av) {
1119 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1120 prune->path[prune->nr++] = *(av++);
1121 }
1122}
Adam Brewster1fc561d2008-07-05 17:26:39 -04001123
Junio C Hamano4da5af32011-05-11 14:01:19 -07001124static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1125 struct cmdline_pathspec *prune)
1126{
Junio C Hamano60da8b12009-11-20 02:50:21 -08001127 while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1128 int len = sb->len;
1129 if (len && sb->buf[len - 1] == '\n')
1130 sb->buf[--len] = '\0';
Junio C Hamano4da5af32011-05-11 14:01:19 -07001131 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1132 prune->path[prune->nr++] = xstrdup(sb->buf);
Junio C Hamano60da8b12009-11-20 02:50:21 -08001133 }
Junio C Hamano60da8b12009-11-20 02:50:21 -08001134}
1135
Junio C Hamano4da5af32011-05-11 14:01:19 -07001136static void read_revisions_from_stdin(struct rev_info *revs,
1137 struct cmdline_pathspec *prune)
Adam Brewster1fc561d2008-07-05 17:26:39 -04001138{
Junio C Hamano63d564b2009-11-20 02:00:40 -08001139 struct strbuf sb;
Junio C Hamano60da8b12009-11-20 02:50:21 -08001140 int seen_dashdash = 0;
Adam Brewster1fc561d2008-07-05 17:26:39 -04001141
Junio C Hamano63d564b2009-11-20 02:00:40 -08001142 strbuf_init(&sb, 1000);
1143 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1144 int len = sb.len;
1145 if (len && sb.buf[len - 1] == '\n')
1146 sb.buf[--len] = '\0';
Adam Brewster1fc561d2008-07-05 17:26:39 -04001147 if (!len)
1148 break;
Junio C Hamano60da8b12009-11-20 02:50:21 -08001149 if (sb.buf[0] == '-') {
1150 if (len == 2 && sb.buf[1] == '-') {
1151 seen_dashdash = 1;
1152 break;
1153 }
Adam Brewster1fc561d2008-07-05 17:26:39 -04001154 die("options not supported in --stdin mode");
Junio C Hamano60da8b12009-11-20 02:50:21 -08001155 }
Junio C Hamano63d564b2009-11-20 02:00:40 -08001156 if (handle_revision_arg(sb.buf, revs, 0, 1))
1157 die("bad revision '%s'", sb.buf);
Adam Brewster1fc561d2008-07-05 17:26:39 -04001158 }
Junio C Hamano60da8b12009-11-20 02:50:21 -08001159 if (seen_dashdash)
1160 read_pathspec_from_stdin(revs, &sb, prune);
Junio C Hamano63d564b2009-11-20 02:00:40 -08001161 strbuf_release(&sb);
Adam Brewster1fc561d2008-07-05 17:26:39 -04001162}
1163
Junio C Hamano2d10c552006-09-20 13:21:56 -07001164static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1165{
Jeff King0843acf2008-08-25 02:15:05 -04001166 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
Junio C Hamano2d10c552006-09-20 13:21:56 -07001167}
1168
Junio C Hamanoa4d7d2c2008-09-04 22:15:02 -07001169static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001170{
Junio C Hamanoa4d7d2c2008-09-04 22:15:02 -07001171 append_header_grep_pattern(&revs->grep_filter, field, pattern);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001172}
1173
1174static void add_message_grep(struct rev_info *revs, const char *pattern)
1175{
Junio C Hamano2d10c552006-09-20 13:21:56 -07001176 add_grep(revs, pattern, GREP_PATTERN_BODY);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001177}
1178
Pierre Habouzit6b61ec02008-07-09 23:38:34 +02001179static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1180 int *unkc, const char **unkv)
Pierre Habouzit02e54222008-07-08 15:19:33 +02001181{
1182 const char *arg = argv[0];
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001183 const char *optarg;
1184 int argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001185
1186 /* pseudo revision arguments */
1187 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1188 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1189 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001190 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
Jonathan Nieder0fc63ec2011-04-21 05:48:24 -05001191 !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") ||
1192 !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") ||
1193 !prefixcmp(arg, "--remotes="))
Pierre Habouzit02e54222008-07-08 15:19:33 +02001194 {
1195 unkv[(*unkc)++] = arg;
Pierre Habouzit0fe8c132008-07-31 12:22:23 +02001196 return 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001197 }
1198
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001199 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1200 revs->max_count = atoi(optarg);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001201 revs->no_walk = 0;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001202 return argcount;
1203 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1204 revs->skip_count = atoi(optarg);
1205 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001206 } else if ((*arg == '-') && isdigit(arg[1])) {
1207 /* accept -<digit>, like traditional "head" */
1208 revs->max_count = atoi(arg + 1);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001209 revs->no_walk = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001210 } else if (!strcmp(arg, "-n")) {
1211 if (argc <= 1)
1212 return error("-n requires an argument");
1213 revs->max_count = atoi(argv[1]);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001214 revs->no_walk = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001215 return 2;
1216 } else if (!prefixcmp(arg, "-n")) {
1217 revs->max_count = atoi(arg + 2);
Jonathan Nieder5853cae2010-06-01 03:35:49 -05001218 revs->no_walk = 0;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001219 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1220 revs->max_age = atoi(optarg);
1221 return argcount;
1222 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1223 revs->max_age = approxidate(optarg);
1224 return argcount;
1225 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1226 revs->max_age = approxidate(optarg);
1227 return argcount;
1228 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1229 revs->min_age = atoi(optarg);
1230 return argcount;
1231 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1232 revs->min_age = approxidate(optarg);
1233 return argcount;
1234 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1235 revs->min_age = approxidate(optarg);
1236 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001237 } else if (!strcmp(arg, "--first-parent")) {
1238 revs->first_parent_only = 1;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -07001239 } else if (!strcmp(arg, "--ancestry-path")) {
1240 revs->ancestry_path = 1;
Johan Herlandcb7529e2010-06-04 01:17:37 +02001241 revs->simplify_history = 0;
Junio C Hamanoebdc94f2010-04-20 13:48:39 -07001242 revs->limited = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001243 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1244 init_reflog_walk(&revs->reflog_info);
1245 } else if (!strcmp(arg, "--default")) {
1246 if (argc <= 1)
1247 return error("bad --default argument");
1248 revs->def = argv[1];
1249 return 2;
1250 } else if (!strcmp(arg, "--merge")) {
1251 revs->show_merge = 1;
1252 } else if (!strcmp(arg, "--topo-order")) {
1253 revs->lifo = 1;
1254 revs->topo_order = 1;
Junio C Hamano6546b592008-07-31 01:17:41 -07001255 } else if (!strcmp(arg, "--simplify-merges")) {
1256 revs->simplify_merges = 1;
1257 revs->rewrite_parents = 1;
1258 revs->simplify_history = 0;
1259 revs->limited = 1;
Linus Torvalds78892e32008-11-03 11:25:46 -08001260 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1261 revs->simplify_merges = 1;
1262 revs->rewrite_parents = 1;
1263 revs->simplify_history = 0;
1264 revs->simplify_by_decoration = 1;
1265 revs->limited = 1;
1266 revs->prune = 1;
Lars Hjemli33e70182009-08-15 16:23:12 +02001267 load_ref_decorations(DECORATE_SHORT_REFS);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001268 } else if (!strcmp(arg, "--date-order")) {
1269 revs->lifo = 0;
1270 revs->topo_order = 1;
1271 } else if (!prefixcmp(arg, "--early-output")) {
1272 int count = 100;
1273 switch (arg[14]) {
1274 case '=':
1275 count = atoi(arg+15);
1276 /* Fallthrough */
1277 case 0:
1278 revs->topo_order = 1;
1279 revs->early_output = count;
1280 }
1281 } else if (!strcmp(arg, "--parents")) {
1282 revs->rewrite_parents = 1;
1283 revs->print_parents = 1;
1284 } else if (!strcmp(arg, "--dense")) {
1285 revs->dense = 1;
1286 } else if (!strcmp(arg, "--sparse")) {
1287 revs->dense = 0;
1288 } else if (!strcmp(arg, "--show-all")) {
1289 revs->show_all = 1;
1290 } else if (!strcmp(arg, "--remove-empty")) {
1291 revs->remove_empty_trees = 1;
Linus Torvaldsb8e8db22009-06-29 10:28:25 -07001292 } else if (!strcmp(arg, "--merges")) {
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001293 revs->min_parents = 2;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001294 } else if (!strcmp(arg, "--no-merges")) {
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001295 revs->max_parents = 1;
1296 } else if (!prefixcmp(arg, "--min-parents=")) {
1297 revs->min_parents = atoi(arg+14);
1298 } else if (!prefixcmp(arg, "--no-min-parents")) {
1299 revs->min_parents = 0;
1300 } else if (!prefixcmp(arg, "--max-parents=")) {
1301 revs->max_parents = atoi(arg+14);
1302 } else if (!prefixcmp(arg, "--no-max-parents")) {
1303 revs->max_parents = -1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001304 } else if (!strcmp(arg, "--boundary")) {
1305 revs->boundary = 1;
1306 } else if (!strcmp(arg, "--left-right")) {
1307 revs->left_right = 1;
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001308 } else if (!strcmp(arg, "--left-only")) {
Junio C Hamano24852d92011-02-21 16:58:37 -08001309 if (revs->right_only)
Michael J Gruber94f605e2011-03-07 13:31:42 +01001310 die("--left-only is incompatible with --right-only"
1311 " or --cherry");
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001312 revs->left_only = 1;
1313 } else if (!strcmp(arg, "--right-only")) {
Junio C Hamano24852d92011-02-21 16:58:37 -08001314 if (revs->left_only)
1315 die("--right-only is incompatible with --left-only");
Michael J Gruber60adf7d2011-02-21 17:09:11 +01001316 revs->right_only = 1;
Michael J Gruber94f605e2011-03-07 13:31:42 +01001317 } else if (!strcmp(arg, "--cherry")) {
1318 if (revs->left_only)
1319 die("--cherry is incompatible with --left-only");
1320 revs->cherry_mark = 1;
1321 revs->right_only = 1;
Michael J Gruberad5aeed2011-03-21 11:14:06 +01001322 revs->max_parents = 1;
Michael J Gruber94f605e2011-03-07 13:31:42 +01001323 revs->limited = 1;
Thomas Rastf69c5012010-06-10 13:47:23 +02001324 } else if (!strcmp(arg, "--count")) {
1325 revs->count = 1;
Michael J Gruberadbbb312011-03-07 13:31:40 +01001326 } else if (!strcmp(arg, "--cherry-mark")) {
1327 if (revs->cherry_pick)
1328 die("--cherry-mark is incompatible with --cherry-pick");
1329 revs->cherry_mark = 1;
1330 revs->limited = 1; /* needs limit_list() */
Pierre Habouzit02e54222008-07-08 15:19:33 +02001331 } else if (!strcmp(arg, "--cherry-pick")) {
Michael J Gruberadbbb312011-03-07 13:31:40 +01001332 if (revs->cherry_mark)
1333 die("--cherry-pick is incompatible with --cherry-mark");
Pierre Habouzit02e54222008-07-08 15:19:33 +02001334 revs->cherry_pick = 1;
1335 revs->limited = 1;
1336 } else if (!strcmp(arg, "--objects")) {
1337 revs->tag_objects = 1;
1338 revs->tree_objects = 1;
1339 revs->blob_objects = 1;
1340 } else if (!strcmp(arg, "--objects-edge")) {
1341 revs->tag_objects = 1;
1342 revs->tree_objects = 1;
1343 revs->blob_objects = 1;
1344 revs->edge_hint = 1;
1345 } else if (!strcmp(arg, "--unpacked")) {
1346 revs->unpacked = 1;
Junio C Hamano03a96832009-02-28 00:00:21 -08001347 } else if (!prefixcmp(arg, "--unpacked=")) {
1348 die("--unpacked=<packfile> no longer supported.");
Pierre Habouzit02e54222008-07-08 15:19:33 +02001349 } else if (!strcmp(arg, "-r")) {
1350 revs->diff = 1;
1351 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1352 } else if (!strcmp(arg, "-t")) {
1353 revs->diff = 1;
1354 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1355 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1356 } else if (!strcmp(arg, "-m")) {
1357 revs->ignore_merges = 0;
1358 } else if (!strcmp(arg, "-c")) {
1359 revs->diff = 1;
1360 revs->dense_combined_merges = 0;
1361 revs->combine_merges = 1;
1362 } else if (!strcmp(arg, "--cc")) {
1363 revs->diff = 1;
1364 revs->dense_combined_merges = 1;
1365 revs->combine_merges = 1;
1366 } else if (!strcmp(arg, "-v")) {
1367 revs->verbose_header = 1;
1368 } else if (!strcmp(arg, "--pretty")) {
1369 revs->verbose_header = 1;
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001370 revs->pretty_given = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001371 get_commit_format(arg+8, revs);
Nanako Shiraishi3a4c1a52009-02-24 18:59:14 +09001372 } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001373 /*
1374 * Detached form ("--pretty X" as opposed to "--pretty=X")
1375 * not allowed, since the argument is optional.
1376 */
Pierre Habouzit02e54222008-07-08 15:19:33 +02001377 revs->verbose_header = 1;
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001378 revs->pretty_given = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001379 get_commit_format(arg+9, revs);
Jeff King7249e912011-03-29 16:57:47 -04001380 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001381 revs->show_notes = 1;
1382 revs->show_notes_given = 1;
Jeff King3a03cf62011-03-29 16:57:27 -04001383 revs->notes_opt.use_default_notes = 1;
Jeff King7249e912011-03-29 16:57:47 -04001384 } else if (!prefixcmp(arg, "--show-notes=") ||
1385 !prefixcmp(arg, "--notes=")) {
Thomas Rast894a9d32010-03-12 18:04:26 +01001386 struct strbuf buf = STRBUF_INIT;
1387 revs->show_notes = 1;
1388 revs->show_notes_given = 1;
Jeff King7249e912011-03-29 16:57:47 -04001389 if (!prefixcmp(arg, "--show-notes")) {
1390 if (revs->notes_opt.use_default_notes < 0)
1391 revs->notes_opt.use_default_notes = 1;
1392 strbuf_addstr(&buf, arg+13);
1393 }
1394 else
1395 strbuf_addstr(&buf, arg+8);
Jeff Kingc063f0a2011-03-29 16:56:04 -04001396 expand_notes_ref(&buf);
Jeff King304cc112011-03-29 16:56:53 -04001397 string_list_append(&revs->notes_opt.extra_notes_refs,
Julian Phillips1d2f80f2010-06-26 00:41:38 +01001398 strbuf_detach(&buf, NULL));
Junio C Hamano66b2ed02010-01-20 13:59:36 -08001399 } else if (!strcmp(arg, "--no-notes")) {
1400 revs->show_notes = 0;
1401 revs->show_notes_given = 1;
Jeff King92e0d422011-03-29 16:59:42 -04001402 revs->notes_opt.use_default_notes = -1;
1403 /* we have been strdup'ing ourselves, so trick
1404 * string_list into free()ing strings */
1405 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1406 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1407 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
Thomas Rast894a9d32010-03-12 18:04:26 +01001408 } else if (!strcmp(arg, "--standard-notes")) {
1409 revs->show_notes_given = 1;
Jeff King3a03cf62011-03-29 16:57:27 -04001410 revs->notes_opt.use_default_notes = 1;
Thomas Rast894a9d32010-03-12 18:04:26 +01001411 } else if (!strcmp(arg, "--no-standard-notes")) {
Jeff King3a03cf62011-03-29 16:57:27 -04001412 revs->notes_opt.use_default_notes = 0;
Nanako Shiraishide84acc2009-02-24 18:59:16 +09001413 } else if (!strcmp(arg, "--oneline")) {
1414 revs->verbose_header = 1;
1415 get_commit_format("oneline", revs);
Junio C Hamano7dccadf2010-01-21 14:57:41 -08001416 revs->pretty_given = 1;
Nanako Shiraishide84acc2009-02-24 18:59:16 +09001417 revs->abbrev_commit = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001418 } else if (!strcmp(arg, "--graph")) {
1419 revs->topo_order = 1;
1420 revs->rewrite_parents = 1;
1421 revs->graph = graph_init(revs);
1422 } else if (!strcmp(arg, "--root")) {
1423 revs->show_root_diff = 1;
1424 } else if (!strcmp(arg, "--no-commit-id")) {
1425 revs->no_commit_id = 1;
1426 } else if (!strcmp(arg, "--always")) {
1427 revs->always_show_header = 1;
1428 } else if (!strcmp(arg, "--no-abbrev")) {
1429 revs->abbrev = 0;
1430 } else if (!strcmp(arg, "--abbrev")) {
1431 revs->abbrev = DEFAULT_ABBREV;
1432 } else if (!prefixcmp(arg, "--abbrev=")) {
1433 revs->abbrev = strtoul(arg + 9, NULL, 10);
1434 if (revs->abbrev < MINIMUM_ABBREV)
1435 revs->abbrev = MINIMUM_ABBREV;
1436 else if (revs->abbrev > 40)
1437 revs->abbrev = 40;
1438 } else if (!strcmp(arg, "--abbrev-commit")) {
1439 revs->abbrev_commit = 1;
Jay Soffian0c476952011-05-18 13:56:04 -04001440 revs->abbrev_commit_given = 1;
1441 } else if (!strcmp(arg, "--no-abbrev-commit")) {
1442 revs->abbrev_commit = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001443 } else if (!strcmp(arg, "--full-diff")) {
1444 revs->diff = 1;
1445 revs->full_diff = 1;
1446 } else if (!strcmp(arg, "--full-history")) {
1447 revs->simplify_history = 0;
1448 } else if (!strcmp(arg, "--relative-date")) {
1449 revs->date_mode = DATE_RELATIVE;
Jeff Kingf4ea32f2009-09-24 04:28:15 -04001450 revs->date_mode_explicit = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001451 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1452 revs->date_mode = parse_date_format(optarg);
Jeff Kingf4ea32f2009-09-24 04:28:15 -04001453 revs->date_mode_explicit = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001454 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001455 } else if (!strcmp(arg, "--log-size")) {
1456 revs->show_log_size = 1;
1457 }
1458 /*
1459 * Grepping the commit log
1460 */
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001461 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1462 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1463 return argcount;
1464 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1465 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1466 return argcount;
1467 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1468 add_message_grep(revs, optarg);
1469 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001470 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
Jeff King0843acf2008-08-25 02:15:05 -04001471 revs->grep_filter.regflags |= REG_EXTENDED;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001472 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
Jeff King0843acf2008-08-25 02:15:05 -04001473 revs->grep_filter.regflags |= REG_ICASE;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001474 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
Jeff King0843acf2008-08-25 02:15:05 -04001475 revs->grep_filter.fixed = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001476 } else if (!strcmp(arg, "--all-match")) {
Jeff King0843acf2008-08-25 02:15:05 -04001477 revs->grep_filter.all_match = 1;
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001478 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1479 if (strcmp(optarg, "none"))
1480 git_log_output_encoding = xstrdup(optarg);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001481 else
1482 git_log_output_encoding = "";
Matthieu Moy7d7b86f2010-08-05 10:22:55 +02001483 return argcount;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001484 } else if (!strcmp(arg, "--reverse")) {
1485 revs->reverse ^= 1;
1486 } else if (!strcmp(arg, "--children")) {
1487 revs->children.name = "children";
1488 revs->limited = 1;
Junio C Hamanocc243c32011-05-18 18:08:09 -07001489 } else if (!strcmp(arg, "--ignore-missing")) {
1490 revs->ignore_missing = 1;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001491 } else {
1492 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1493 if (!opts)
1494 unkv[(*unkc)++] = arg;
1495 return opts;
1496 }
1497
1498 return 1;
1499}
1500
Pierre Habouzit6b61ec02008-07-09 23:38:34 +02001501void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1502 const struct option *options,
1503 const char * const usagestr[])
1504{
1505 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1506 &ctx->cpidx, ctx->out);
1507 if (n <= 0) {
1508 error("unknown option `%s'", ctx->argv[0]);
1509 usage_with_options(usagestr, options);
1510 }
1511 ctx->argv += n;
1512 ctx->argc -= n;
1513}
1514
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001515static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001516{
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001517 return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001518}
1519
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001520static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001521{
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001522 return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
Linus Torvaldsad3f9a72009-10-27 11:28:07 -07001523}
1524
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001525static int handle_revision_pseudo_opt(const char *submodule,
1526 struct rev_info *revs,
1527 int argc, const char **argv, int *flags)
1528{
1529 const char *arg = argv[0];
1530 const char *optarg;
1531 int argcount;
1532
Jonathan Nieder0fc63ec2011-04-21 05:48:24 -05001533 /*
1534 * NOTE!
1535 *
1536 * Commands like "git shortlog" will not accept the options below
1537 * unless parse_revision_opt queues them (as opposed to erroring
1538 * out).
1539 *
1540 * When implementing your new pseudo-option, remember to
1541 * register it in the list at the top of handle_revision_opt.
1542 */
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001543 if (!strcmp(arg, "--all")) {
1544 handle_refs(submodule, revs, *flags, for_each_ref_submodule);
1545 handle_refs(submodule, revs, *flags, head_ref_submodule);
1546 } else if (!strcmp(arg, "--branches")) {
1547 handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
1548 } else if (!strcmp(arg, "--bisect")) {
1549 handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
1550 handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref);
1551 revs->bisect = 1;
1552 } else if (!strcmp(arg, "--tags")) {
1553 handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
1554 } else if (!strcmp(arg, "--remotes")) {
1555 handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
1556 } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
1557 struct all_refs_cb cb;
1558 init_all_refs_cb(&cb, revs, *flags);
1559 for_each_glob_ref(handle_one_ref, optarg, &cb);
1560 return argcount;
1561 } else if (!prefixcmp(arg, "--branches=")) {
1562 struct all_refs_cb cb;
1563 init_all_refs_cb(&cb, revs, *flags);
1564 for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1565 } else if (!prefixcmp(arg, "--tags=")) {
1566 struct all_refs_cb cb;
1567 init_all_refs_cb(&cb, revs, *flags);
1568 for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1569 } else if (!prefixcmp(arg, "--remotes=")) {
1570 struct all_refs_cb cb;
1571 init_all_refs_cb(&cb, revs, *flags);
1572 for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1573 } else if (!strcmp(arg, "--reflog")) {
1574 handle_reflog(revs, *flags);
1575 } else if (!strcmp(arg, "--not")) {
1576 *flags ^= UNINTERESTING;
1577 } else if (!strcmp(arg, "--no-walk")) {
1578 revs->no_walk = 1;
1579 } else if (!strcmp(arg, "--do-walk")) {
1580 revs->no_walk = 0;
1581 } else {
1582 return 0;
1583 }
1584
1585 return 1;
1586}
1587
Linus Torvaldsae563542006-02-25 16:19:46 -08001588/*
1589 * Parse revision information, filling in the "rev_info" structure,
1590 * and removing the used arguments from the argument list.
1591 *
Linus Torvalds765ac8e2006-02-28 15:07:20 -08001592 * Returns the number of arguments left that weren't recognized
1593 * (which are also moved to the head of the argument list)
Linus Torvaldsae563542006-02-25 16:19:46 -08001594 */
Junio C Hamano32962c92010-03-08 22:58:09 -08001595int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
Linus Torvaldsae563542006-02-25 16:19:46 -08001596{
Dave Olszewski8fcaca32010-03-13 14:47:05 -08001597 int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0;
Junio C Hamano4da5af32011-05-11 14:01:19 -07001598 struct cmdline_pathspec prune_data;
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001599 const char *submodule = NULL;
1600
Junio C Hamano4da5af32011-05-11 14:01:19 -07001601 memset(&prune_data, 0, sizeof(prune_data));
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +02001602 if (opt)
1603 submodule = opt->submodule;
Linus Torvaldsae563542006-02-25 16:19:46 -08001604
Linus Torvaldsae563542006-02-25 16:19:46 -08001605 /* First, search for "--" */
1606 seen_dashdash = 0;
1607 for (i = 1; i < argc; i++) {
1608 const char *arg = argv[i];
1609 if (strcmp(arg, "--"))
1610 continue;
1611 argv[i] = NULL;
1612 argc = i;
Junio C Hamanoa65f2002007-08-30 22:58:26 -07001613 if (argv[i + 1])
Junio C Hamano4da5af32011-05-11 14:01:19 -07001614 append_prune_data(&prune_data, argv + i + 1);
Linus Torvaldsae563542006-02-25 16:19:46 -08001615 seen_dashdash = 1;
1616 break;
1617 }
1618
Pierre Habouzit02e54222008-07-08 15:19:33 +02001619 /* Second, deal with arguments and options */
1620 flags = 0;
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001621 read_from_stdin = 0;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001622 for (left = i = 1; i < argc; i++) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001623 const char *arg = argv[i];
Linus Torvaldsae563542006-02-25 16:19:46 -08001624 if (*arg == '-') {
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001625 int opts;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001626
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001627 opts = handle_revision_pseudo_opt(submodule,
1628 revs, argc - i, argv + i,
1629 &flags);
1630 if (opts > 0) {
1631 i += opts - 1;
Uwe Kleine-Königa5aa9302008-02-28 08:24:25 +01001632 continue;
1633 }
Jonathan Niederf6aca0d2011-04-21 05:45:07 -05001634
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001635 if (!strcmp(arg, "--stdin")) {
1636 if (revs->disable_stdin) {
1637 argv[left++] = arg;
1638 continue;
1639 }
1640 if (read_from_stdin++)
1641 die("--stdin given twice?");
Junio C Hamano60da8b12009-11-20 02:50:21 -08001642 read_revisions_from_stdin(revs, &prune_data);
Junio C Hamano8b3dce52009-11-03 06:59:18 -08001643 continue;
1644 }
Junio C Hamano2d10c552006-09-20 13:21:56 -07001645
Pierre Habouzit02e54222008-07-08 15:19:33 +02001646 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001647 if (opts > 0) {
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001648 i += opts - 1;
1649 continue;
1650 }
Pierre Habouzit02e54222008-07-08 15:19:33 +02001651 if (opts < 0)
1652 exit(128);
Linus Torvaldsae563542006-02-25 16:19:46 -08001653 continue;
1654 }
Rene Scharfe0d2c9d62006-07-02 01:29:37 +02001655
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001656 if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001657 int j;
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001658 if (seen_dashdash || *arg == '^')
Linus Torvaldsae563542006-02-25 16:19:46 -08001659 die("bad revision '%s'", arg);
1660
Junio C Hamanoea92f412006-04-26 15:09:27 -07001661 /* If we didn't have a "--":
1662 * (1) all filenames must exist;
1663 * (2) all rev-args must not be interpretable
1664 * as a valid filename.
1665 * but the latter we have checked in the main loop.
1666 */
Linus Torvaldse23d0b42006-04-26 10:15:54 -07001667 for (j = i; j < argc; j++)
1668 verify_filename(revs->prefix, argv[j]);
1669
Junio C Hamano60da8b12009-11-20 02:50:21 -08001670 append_prune_data(&prune_data, argv + i);
Linus Torvaldsae563542006-02-25 16:19:46 -08001671 break;
1672 }
Dave Olszewski8fcaca32010-03-13 14:47:05 -08001673 else
1674 got_rev_arg = 1;
Linus Torvaldsae563542006-02-25 16:19:46 -08001675 }
Junio C Hamano5d6f0932006-09-05 21:28:36 -07001676
Junio C Hamano4da5af32011-05-11 14:01:19 -07001677 if (prune_data.nr) {
Junio C Hamano93e7d672011-05-11 15:23:25 -07001678 /*
1679 * If we need to introduce the magic "a lone ':' means no
1680 * pathspec whatsoever", here is the place to do so.
1681 *
1682 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1683 * prune_data.nr = 0;
1684 * prune_data.alloc = 0;
1685 * free(prune_data.path);
1686 * prune_data.path = NULL;
1687 * } else {
1688 * terminate prune_data.alloc with NULL and
1689 * call init_pathspec() to set revs->prune_data here.
1690 * }
1691 */
Junio C Hamano4da5af32011-05-11 14:01:19 -07001692 ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc);
1693 prune_data.path[prune_data.nr++] = NULL;
Junio C Hamano8f2d4b12011-05-11 15:05:01 -07001694 init_pathspec(&revs->prune_data,
1695 get_pathspec(revs->prefix, prune_data.path));
Junio C Hamano4da5af32011-05-11 14:01:19 -07001696 }
Junio C Hamano5486ef02009-11-20 02:33:28 -08001697
Pierre Habouzit02e54222008-07-08 15:19:33 +02001698 if (revs->def == NULL)
Junio C Hamano32962c92010-03-08 22:58:09 -08001699 revs->def = opt ? opt->def : NULL;
Junio C Hamanob4490052010-03-08 23:27:25 -08001700 if (opt && opt->tweak)
1701 opt->tweak(revs, opt);
Pierre Habouzit02e54222008-07-08 15:19:33 +02001702 if (revs->show_merge)
Junio C Hamanoae3e5e12006-07-03 02:59:32 -07001703 prepare_show_merge(revs);
Dave Olszewski8fcaca32010-03-13 14:47:05 -08001704 if (revs->def && !revs->pending.nr && !got_rev_arg) {
Linus Torvaldsae563542006-02-25 16:19:46 -08001705 unsigned char sha1[20];
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001706 struct object *object;
Martin Koeglerbb6c2fb2007-04-22 18:43:59 +02001707 unsigned mode;
Pierre Habouzit02e54222008-07-08 15:19:33 +02001708 if (get_sha1_with_mode(revs->def, sha1, &mode))
1709 die("bad default revision '%s'", revs->def);
1710 object = get_reference(revs, revs->def, sha1, 0);
1711 add_pending_object_with_mode(revs, object, revs->def, mode);
Linus Torvaldsae563542006-02-25 16:19:46 -08001712 }
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001713
Linus Torvaldsb7bb7602007-09-29 09:50:39 -07001714 /* Did the user ask for any diff output? Run the diff! */
1715 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1716 revs->diff = 1;
1717
Arjen Laarhoven0faf2da2007-12-25 12:06:47 +01001718 /* Pickaxe, diff-filter and rename following need diffs */
1719 if (revs->diffopt.pickaxe ||
1720 revs->diffopt.filter ||
1721 DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
Linus Torvaldsb7bb7602007-09-29 09:50:39 -07001722 revs->diff = 1;
1723
Junio C Hamano9dad9d22006-10-30 18:58:03 -08001724 if (revs->topo_order)
Junio C Hamano53069682006-04-01 18:38:25 -08001725 revs->limited = 1;
1726
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001727 if (revs->prune_data.nr) {
1728 diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning);
Linus Torvalds750f7b62007-06-19 14:22:46 -07001729 /* Can't prune commits with rename following: the paths change.. */
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +01001730 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
Linus Torvalds53b2c822007-11-05 13:22:34 -08001731 revs->prune = 1;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001732 if (!revs->full_diff)
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001733 diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt);
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001734 }
Junio C Hamanob4490052010-03-08 23:27:25 -08001735 if (revs->combine_merges)
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001736 revs->ignore_merges = 0;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001737 revs->diffopt.abbrev = revs->abbrev;
Junio C Hamano72ee96c2006-08-09 12:45:27 -07001738 if (diff_setup_done(&revs->diffopt) < 0)
1739 die("diff_setup_done failed");
Fredrik Kuivinen8efdc322006-03-10 10:21:39 +01001740
Jeff King0843acf2008-08-25 02:15:05 -04001741 compile_grep_patterns(&revs->grep_filter);
Junio C Hamanobd95fcd2006-09-17 17:23:20 -07001742
Shawn O. Pearced56651c2007-08-19 22:33:43 -04001743 if (revs->reverse && revs->reflog_info)
1744 die("cannot combine --reverse with --walk-reflogs");
Junio C Hamano8bb65882008-07-08 15:25:44 -07001745 if (revs->rewrite_parents && revs->children.name)
Junio C Hamanof35f5602008-04-03 02:12:06 -07001746 die("cannot combine --parents and --children");
Shawn O. Pearced56651c2007-08-19 22:33:43 -04001747
Adam Simpkins7fefda52008-05-04 03:36:54 -07001748 /*
1749 * Limitations on the graph functionality
1750 */
1751 if (revs->reverse && revs->graph)
1752 die("cannot combine --reverse with --graph");
1753
1754 if (revs->reflog_info && revs->graph)
1755 die("cannot combine --walk-reflogs with --graph");
1756
Linus Torvaldsae563542006-02-25 16:19:46 -08001757 return left;
1758}
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001759
Junio C Hamanof35f5602008-04-03 02:12:06 -07001760static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1761{
1762 struct commit_list *l = xcalloc(1, sizeof(*l));
1763
1764 l->item = child;
1765 l->next = add_decoration(&revs->children, &parent->object, l);
1766}
1767
Junio C Hamano6546b592008-07-31 01:17:41 -07001768static int remove_duplicate_parents(struct commit *commit)
1769{
1770 struct commit_list **pp, *p;
1771 int surviving_parents;
1772
1773 /* Examine existing parents while marking ones we have seen... */
1774 pp = &commit->parents;
1775 while ((p = *pp) != NULL) {
1776 struct commit *parent = p->item;
1777 if (parent->object.flags & TMP_MARK) {
1778 *pp = p->next;
1779 continue;
1780 }
1781 parent->object.flags |= TMP_MARK;
1782 pp = &p->next;
1783 }
1784 /* count them while clearing the temporary mark */
1785 surviving_parents = 0;
1786 for (p = commit->parents; p; p = p->next) {
1787 p->item->object.flags &= ~TMP_MARK;
1788 surviving_parents++;
1789 }
1790 return surviving_parents;
1791}
1792
Junio C Hamanofaf01562008-08-14 10:59:44 -07001793struct merge_simplify_state {
1794 struct commit *simplified;
1795};
1796
1797static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1798{
1799 struct merge_simplify_state *st;
1800
1801 st = lookup_decoration(&revs->merge_simplification, &commit->object);
1802 if (!st) {
1803 st = xcalloc(1, sizeof(*st));
1804 add_decoration(&revs->merge_simplification, &commit->object, st);
1805 }
1806 return st;
1807}
1808
1809static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
Junio C Hamano6546b592008-07-31 01:17:41 -07001810{
1811 struct commit_list *p;
Junio C Hamanofaf01562008-08-14 10:59:44 -07001812 struct merge_simplify_state *st, *pst;
Junio C Hamano6546b592008-07-31 01:17:41 -07001813 int cnt;
1814
Junio C Hamanofaf01562008-08-14 10:59:44 -07001815 st = locate_simplify_state(revs, commit);
1816
Junio C Hamano6546b592008-07-31 01:17:41 -07001817 /*
Junio C Hamano6546b592008-07-31 01:17:41 -07001818 * Have we handled this one?
1819 */
Junio C Hamanofaf01562008-08-14 10:59:44 -07001820 if (st->simplified)
Junio C Hamano6546b592008-07-31 01:17:41 -07001821 return tail;
1822
1823 /*
1824 * An UNINTERESTING commit simplifies to itself, so does a
1825 * root commit. We do not rewrite parents of such commit
1826 * anyway.
1827 */
1828 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
Junio C Hamanofaf01562008-08-14 10:59:44 -07001829 st->simplified = commit;
Junio C Hamano6546b592008-07-31 01:17:41 -07001830 return tail;
1831 }
1832
1833 /*
1834 * Do we know what commit all of our parents should be rewritten to?
1835 * Otherwise we are not ready to rewrite this one yet.
1836 */
1837 for (cnt = 0, p = commit->parents; p; p = p->next) {
Junio C Hamanofaf01562008-08-14 10:59:44 -07001838 pst = locate_simplify_state(revs, p->item);
1839 if (!pst->simplified) {
Junio C Hamano6546b592008-07-31 01:17:41 -07001840 tail = &commit_list_insert(p->item, tail)->next;
1841 cnt++;
1842 }
1843 }
Junio C Hamano53030f82008-08-18 00:37:34 -07001844 if (cnt) {
1845 tail = &commit_list_insert(commit, tail)->next;
Junio C Hamano6546b592008-07-31 01:17:41 -07001846 return tail;
Junio C Hamano53030f82008-08-18 00:37:34 -07001847 }
Junio C Hamano6546b592008-07-31 01:17:41 -07001848
1849 /*
1850 * Rewrite our list of parents.
1851 */
Junio C Hamanofaf01562008-08-14 10:59:44 -07001852 for (p = commit->parents; p; p = p->next) {
1853 pst = locate_simplify_state(revs, p->item);
1854 p->item = pst->simplified;
1855 }
Junio C Hamano6546b592008-07-31 01:17:41 -07001856 cnt = remove_duplicate_parents(commit);
1857
1858 /*
1859 * It is possible that we are a merge and one side branch
1860 * does not have any commit that touches the given paths;
1861 * in such a case, the immediate parents will be rewritten
1862 * to different commits.
1863 *
1864 * o----X X: the commit we are looking at;
1865 * / / o: a commit that touches the paths;
1866 * ---o----'
1867 *
1868 * Further reduce the parents by removing redundant parents.
1869 */
1870 if (1 < cnt) {
1871 struct commit_list *h = reduce_heads(commit->parents);
1872 cnt = commit_list_count(h);
1873 free_commit_list(commit->parents);
1874 commit->parents = h;
1875 }
1876
1877 /*
1878 * A commit simplifies to itself if it is a root, if it is
1879 * UNINTERESTING, if it touches the given paths, or if it is a
1880 * merge and its parents simplifies to more than one commits
1881 * (the first two cases are already handled at the beginning of
1882 * this function).
1883 *
1884 * Otherwise, it simplifies to what its sole parent simplifies to.
1885 */
1886 if (!cnt ||
1887 (commit->object.flags & UNINTERESTING) ||
1888 !(commit->object.flags & TREESAME) ||
1889 (1 < cnt))
Junio C Hamanofaf01562008-08-14 10:59:44 -07001890 st->simplified = commit;
1891 else {
1892 pst = locate_simplify_state(revs, commit->parents->item);
1893 st->simplified = pst->simplified;
1894 }
Junio C Hamano6546b592008-07-31 01:17:41 -07001895 return tail;
1896}
1897
1898static void simplify_merges(struct rev_info *revs)
1899{
1900 struct commit_list *list;
1901 struct commit_list *yet_to_do, **tail;
1902
Junio C Hamano5eac7392008-08-14 13:52:36 -07001903 if (!revs->topo_order)
1904 sort_in_topological_order(&revs->commits, revs->lifo);
1905 if (!revs->prune)
1906 return;
Junio C Hamano65347032008-08-03 17:47:16 -07001907
Junio C Hamano6546b592008-07-31 01:17:41 -07001908 /* feed the list reversed */
1909 yet_to_do = NULL;
1910 for (list = revs->commits; list; list = list->next)
1911 commit_list_insert(list->item, &yet_to_do);
1912 while (yet_to_do) {
1913 list = yet_to_do;
1914 yet_to_do = NULL;
1915 tail = &yet_to_do;
1916 while (list) {
1917 struct commit *commit = list->item;
1918 struct commit_list *next = list->next;
1919 free(list);
1920 list = next;
Junio C Hamanofaf01562008-08-14 10:59:44 -07001921 tail = simplify_one(revs, commit, tail);
Junio C Hamano6546b592008-07-31 01:17:41 -07001922 }
1923 }
1924
1925 /* clean up the result, removing the simplified ones */
1926 list = revs->commits;
1927 revs->commits = NULL;
1928 tail = &revs->commits;
1929 while (list) {
1930 struct commit *commit = list->item;
1931 struct commit_list *next = list->next;
Junio C Hamanofaf01562008-08-14 10:59:44 -07001932 struct merge_simplify_state *st;
Junio C Hamano6546b592008-07-31 01:17:41 -07001933 free(list);
1934 list = next;
Junio C Hamanofaf01562008-08-14 10:59:44 -07001935 st = locate_simplify_state(revs, commit);
1936 if (st->simplified == commit)
Junio C Hamano6546b592008-07-31 01:17:41 -07001937 tail = &commit_list_insert(commit, tail)->next;
1938 }
Junio C Hamano6546b592008-07-31 01:17:41 -07001939}
1940
Junio C Hamanof35f5602008-04-03 02:12:06 -07001941static void set_children(struct rev_info *revs)
1942{
1943 struct commit_list *l;
1944 for (l = revs->commits; l; l = l->next) {
1945 struct commit *commit = l->item;
1946 struct commit_list *p;
1947
1948 for (p = commit->parents; p; p = p->next)
1949 add_child(revs, p->item, commit);
1950 }
1951}
1952
Alex Riesencc0e6c52007-05-04 23:54:57 +02001953int prepare_revision_walk(struct rev_info *revs)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001954{
Linus Torvalds1f1e8952006-06-19 17:42:35 -07001955 int nr = revs->pending.nr;
Junio C Hamano94d23672007-01-10 22:36:16 -08001956 struct object_array_entry *e, *list;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001957
Junio C Hamano94d23672007-01-10 22:36:16 -08001958 e = list = revs->pending.objects;
Linus Torvalds1f1e8952006-06-19 17:42:35 -07001959 revs->pending.nr = 0;
1960 revs->pending.alloc = 0;
1961 revs->pending.objects = NULL;
1962 while (--nr >= 0) {
Junio C Hamano94d23672007-01-10 22:36:16 -08001963 struct commit *commit = handle_commit(revs, e->item, e->name);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001964 if (commit) {
1965 if (!(commit->object.flags & SEEN)) {
1966 commit->object.flags |= SEEN;
Thiago Farina47e44ed2010-11-26 23:58:14 -02001967 commit_list_insert_by_date(commit, &revs->commits);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001968 }
1969 }
Junio C Hamano94d23672007-01-10 22:36:16 -08001970 e++;
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001971 }
Junio C Hamano94d23672007-01-10 22:36:16 -08001972 free(list);
Linus Torvaldscd2bdc52006-04-14 16:52:13 -07001973
Linus Torvaldsba1d4502006-04-15 12:09:56 -07001974 if (revs->no_walk)
Alex Riesencc0e6c52007-05-04 23:54:57 +02001975 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001976 if (revs->limited)
Alex Riesencc0e6c52007-05-04 23:54:57 +02001977 if (limit_list(revs) < 0)
1978 return -1;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001979 if (revs->topo_order)
Linus Torvalds23c17d42007-11-02 13:32:58 -07001980 sort_in_topological_order(&revs->commits, revs->lifo);
Junio C Hamano6546b592008-07-31 01:17:41 -07001981 if (revs->simplify_merges)
1982 simplify_merges(revs);
Junio C Hamanof35f5602008-04-03 02:12:06 -07001983 if (revs->children.name)
1984 set_children(revs);
Alex Riesencc0e6c52007-05-04 23:54:57 +02001985 return 0;
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001986}
1987
Alex Riesencc0e6c52007-05-04 23:54:57 +02001988enum rewrite_result {
1989 rewrite_one_ok,
1990 rewrite_one_noparents,
Gary V. Vaughan4b055482010-05-14 09:31:35 +00001991 rewrite_one_error
Alex Riesencc0e6c52007-05-04 23:54:57 +02001992};
1993
1994static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08001995{
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04001996 struct commit_list *cache = NULL;
1997
Linus Torvalds765ac8e2006-02-28 15:07:20 -08001998 for (;;) {
1999 struct commit *p = *pp;
Linus Torvalds3381c792006-04-08 17:05:58 -07002000 if (!revs->limited)
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04002001 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002002 return rewrite_one_error;
Linus Torvalds6631c732006-06-30 20:21:59 -07002003 if (p->parents && p->parents->next)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002004 return rewrite_one_ok;
Linus Torvalds7dc0fe32007-11-12 23:16:08 -08002005 if (p->object.flags & UNINTERESTING)
2006 return rewrite_one_ok;
2007 if (!(p->object.flags & TREESAME))
Alex Riesencc0e6c52007-05-04 23:54:57 +02002008 return rewrite_one_ok;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002009 if (!p->parents)
Alex Riesencc0e6c52007-05-04 23:54:57 +02002010 return rewrite_one_noparents;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002011 *pp = p->parents->item;
2012 }
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002013}
2014
Alex Riesencc0e6c52007-05-04 23:54:57 +02002015static int rewrite_parents(struct rev_info *revs, struct commit *commit)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002016{
2017 struct commit_list **pp = &commit->parents;
2018 while (*pp) {
2019 struct commit_list *parent = *pp;
Alex Riesencc0e6c52007-05-04 23:54:57 +02002020 switch (rewrite_one(revs, &parent->item)) {
2021 case rewrite_one_ok:
2022 break;
2023 case rewrite_one_noparents:
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002024 *pp = parent->next;
2025 continue;
Alex Riesencc0e6c52007-05-04 23:54:57 +02002026 case rewrite_one_error:
2027 return -1;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002028 }
2029 pp = &parent->next;
2030 }
Junio C Hamano11d65962007-07-08 19:03:19 -07002031 remove_duplicate_parents(commit);
Alex Riesencc0e6c52007-05-04 23:54:57 +02002032 return 0;
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002033}
Linus Torvaldsa4a88b22006-02-28 11:24:00 -08002034
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002035static int commit_match(struct commit *commit, struct rev_info *opt)
2036{
Junio C Hamano80235ba2010-01-17 20:09:06 -08002037 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002038 return 1;
Jeff King0843acf2008-08-25 02:15:05 -04002039 return grep_buffer(&opt->grep_filter,
Junio C Hamano2d10c552006-09-20 13:21:56 -07002040 NULL, /* we say nothing, not even filename */
2041 commit->buffer, strlen(commit->buffer));
Junio C Hamano8ecae9b2006-09-17 15:43:40 -07002042}
2043
Junio C Hamanof35f5602008-04-03 02:12:06 -07002044static inline int want_ancestry(struct rev_info *revs)
2045{
Junio C Hamano8bb65882008-07-08 15:25:44 -07002046 return (revs->rewrite_parents || revs->children.name);
Junio C Hamanof35f5602008-04-03 02:12:06 -07002047}
2048
Adam Simpkinsbeb5af42009-08-18 19:34:33 -07002049enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
Linus Torvalds252a7c02007-11-04 12:12:05 -08002050{
2051 if (commit->object.flags & SHOWN)
2052 return commit_ignore;
Brandon Casey4d6acb72009-03-19 22:47:54 -05002053 if (revs->unpacked && has_sha1_pack(commit->object.sha1))
Linus Torvalds252a7c02007-11-04 12:12:05 -08002054 return commit_ignore;
Linus Torvalds3131b712008-02-09 14:02:07 -08002055 if (revs->show_all)
2056 return commit_show;
Linus Torvalds252a7c02007-11-04 12:12:05 -08002057 if (commit->object.flags & UNINTERESTING)
2058 return commit_ignore;
2059 if (revs->min_age != -1 && (commit->date > revs->min_age))
2060 return commit_ignore;
Michael J Gruberad5aeed2011-03-21 11:14:06 +01002061 if (revs->min_parents || (revs->max_parents >= 0)) {
2062 int n = 0;
2063 struct commit_list *p;
2064 for (p = commit->parents; p; p = p->next)
2065 n++;
2066 if ((n < revs->min_parents) ||
2067 ((revs->max_parents >= 0) && (n > revs->max_parents)))
2068 return commit_ignore;
2069 }
Linus Torvalds252a7c02007-11-04 12:12:05 -08002070 if (!commit_match(commit, revs))
2071 return commit_ignore;
Linus Torvalds53b2c822007-11-05 13:22:34 -08002072 if (revs->prune && revs->dense) {
Linus Torvalds252a7c02007-11-04 12:12:05 -08002073 /* Commit without changes? */
Linus Torvalds7dc0fe32007-11-12 23:16:08 -08002074 if (commit->object.flags & TREESAME) {
Linus Torvalds252a7c02007-11-04 12:12:05 -08002075 /* drop merges unless we want parenthood */
Junio C Hamanof35f5602008-04-03 02:12:06 -07002076 if (!want_ancestry(revs))
Linus Torvalds252a7c02007-11-04 12:12:05 -08002077 return commit_ignore;
2078 /* non-merge - always ignore it */
2079 if (!commit->parents || !commit->parents->next)
2080 return commit_ignore;
2081 }
Linus Torvalds252a7c02007-11-04 12:12:05 -08002082 }
2083 return commit_show;
2084}
2085
Adam Simpkinsbeb5af42009-08-18 19:34:33 -07002086enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2087{
2088 enum commit_action action = get_commit_action(revs, commit);
2089
2090 if (action == commit_show &&
2091 !revs->show_all &&
2092 revs->prune && revs->dense && want_ancestry(revs)) {
2093 if (rewrite_parents(revs, commit) < 0)
2094 return commit_error;
2095 }
2096 return action;
2097}
2098
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002099static struct commit *get_revision_1(struct rev_info *revs)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002100{
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002101 if (!revs->commits)
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002102 return NULL;
2103
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002104 do {
Linus Torvaldscb115742006-06-17 18:47:58 -07002105 struct commit_list *entry = revs->commits;
2106 struct commit *commit = entry->item;
Linus Torvaldsea5ed3a2006-03-05 09:53:52 -08002107
Linus Torvaldscb115742006-06-17 18:47:58 -07002108 revs->commits = entry->next;
2109 free(entry);
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002110
Jeff Kingffa1eea2010-11-21 23:42:53 -05002111 if (revs->reflog_info) {
Johannes Schindelin8860fd42007-01-11 11:47:48 +01002112 fake_reflog_parent(revs->reflog_info, commit);
Jeff Kingffa1eea2010-11-21 23:42:53 -05002113 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2114 }
Johannes Schindelin8860fd42007-01-11 11:47:48 +01002115
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002116 /*
2117 * If we haven't done the list limiting, we need to look at
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002118 * the parents here. We also need to do the date-based limiting
2119 * that we'd otherwise have done in limit_list().
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002120 */
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002121 if (!revs->limited) {
Jan Harkes744f4982006-10-30 20:37:49 -05002122 if (revs->max_age != -1 &&
Junio C Hamano86ab4902007-03-05 13:10:06 -08002123 (commit->date < revs->max_age))
2124 continue;
Alexander N. Gavrilovfce87ae2008-07-12 22:00:57 +04002125 if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
Junio C Hamanoed620892009-02-11 01:27:43 -08002126 die("Failed to traverse parents of commit %s",
2127 sha1_to_hex(commit->object.sha1));
Linus Torvaldsbe7db6e2006-04-01 16:35:06 -08002128 }
Junio C Hamano1b65a5a2006-04-16 18:12:49 -07002129
Linus Torvalds252a7c02007-11-04 12:12:05 -08002130 switch (simplify_commit(revs, commit)) {
2131 case commit_ignore:
Linus Torvalds2a0925b2006-03-30 17:05:25 -08002132 continue;
Linus Torvalds252a7c02007-11-04 12:12:05 -08002133 case commit_error:
Junio C Hamanoed620892009-02-11 01:27:43 -08002134 die("Failed to simplify parents of commit %s",
2135 sha1_to_hex(commit->object.sha1));
Linus Torvalds252a7c02007-11-04 12:12:05 -08002136 default:
2137 return commit;
Junio C Hamano384e99a2006-03-27 23:58:34 -08002138 }
Linus Torvalds765ac8e2006-02-28 15:07:20 -08002139 } while (revs->commits);
2140 return NULL;
2141}
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002142
Junio C Hamano86ab4902007-03-05 13:10:06 -08002143static void gc_boundary(struct object_array *array)
2144{
2145 unsigned nr = array->nr;
2146 unsigned alloc = array->alloc;
2147 struct object_array_entry *objects = array->objects;
2148
2149 if (alloc <= nr) {
2150 unsigned i, j;
2151 for (i = j = 0; i < nr; i++) {
2152 if (objects[i].item->flags & SHOWN)
2153 continue;
2154 if (i != j)
2155 objects[j] = objects[i];
2156 j++;
2157 }
Junio C Hamano892ae6b2007-03-06 03:00:18 -08002158 for (i = j; i < nr; i++)
Junio C Hamano86ab4902007-03-05 13:10:06 -08002159 objects[i].item = NULL;
2160 array->nr = j;
2161 }
2162}
2163
Adam Simpkins4603ec02008-05-24 16:02:05 -07002164static void create_boundary_commit_list(struct rev_info *revs)
2165{
2166 unsigned i;
2167 struct commit *c;
2168 struct object_array *array = &revs->boundary_commits;
2169 struct object_array_entry *objects = array->objects;
2170
2171 /*
2172 * If revs->commits is non-NULL at this point, an error occurred in
2173 * get_revision_1(). Ignore the error and continue printing the
2174 * boundary commits anyway. (This is what the code has always
2175 * done.)
2176 */
2177 if (revs->commits) {
2178 free_commit_list(revs->commits);
2179 revs->commits = NULL;
2180 }
2181
2182 /*
2183 * Put all of the actual boundary commits from revs->boundary_commits
2184 * into revs->commits
2185 */
2186 for (i = 0; i < array->nr; i++) {
2187 c = (struct commit *)(objects[i].item);
2188 if (!c)
2189 continue;
2190 if (!(c->object.flags & CHILD_SHOWN))
2191 continue;
2192 if (c->object.flags & (SHOWN | BOUNDARY))
2193 continue;
2194 c->object.flags |= BOUNDARY;
2195 commit_list_insert(c, &revs->commits);
2196 }
2197
2198 /*
2199 * If revs->topo_order is set, sort the boundary commits
2200 * in topological order
2201 */
2202 sort_in_topological_order(&revs->commits, revs->lifo);
2203}
2204
Adam Simpkins7fefda52008-05-04 03:36:54 -07002205static struct commit *get_revision_internal(struct rev_info *revs)
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002206{
2207 struct commit *c = NULL;
Junio C Hamano86ab4902007-03-05 13:10:06 -08002208 struct commit_list *l;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002209
Junio C Hamano86ab4902007-03-05 13:10:06 -08002210 if (revs->boundary == 2) {
Adam Simpkins4603ec02008-05-24 16:02:05 -07002211 /*
2212 * All of the normal commits have already been returned,
2213 * and we are now returning boundary commits.
2214 * create_boundary_commit_list() has populated
2215 * revs->commits with the remaining commits to return.
2216 */
2217 c = pop_commit(&revs->commits);
2218 if (c)
2219 c->object.flags |= SHOWN;
Johannes Schindelin9c5e66e2007-01-20 23:04:02 +01002220 return c;
2221 }
2222
Junio C Hamano86ab4902007-03-05 13:10:06 -08002223 /*
2224 * Now pick up what they want to give us
2225 */
Junio C Hamano8839ac92007-03-06 03:20:55 -08002226 c = get_revision_1(revs);
2227 if (c) {
2228 while (0 < revs->skip_count) {
2229 revs->skip_count--;
2230 c = get_revision_1(revs);
2231 if (!c)
2232 break;
2233 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002234 }
2235
2236 /*
2237 * Check the max_count.
2238 */
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002239 switch (revs->max_count) {
2240 case -1:
2241 break;
2242 case 0:
Junio C Hamano86ab4902007-03-05 13:10:06 -08002243 c = NULL;
2244 break;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002245 default:
2246 revs->max_count--;
2247 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002248
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002249 if (c)
2250 c->object.flags |= SHOWN;
2251
2252 if (!revs->boundary) {
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002253 return c;
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002254 }
Junio C Hamano86ab4902007-03-05 13:10:06 -08002255
2256 if (!c) {
2257 /*
2258 * get_revision_1() runs out the commits, and
2259 * we are done computing the boundaries.
2260 * switch to boundary commits output mode.
2261 */
2262 revs->boundary = 2;
Adam Simpkins4603ec02008-05-24 16:02:05 -07002263
2264 /*
2265 * Update revs->commits to contain the list of
2266 * boundary commits.
2267 */
2268 create_boundary_commit_list(revs);
2269
Adam Simpkins3c68d672008-05-24 16:02:04 -07002270 return get_revision_internal(revs);
Junio C Hamano86ab4902007-03-05 13:10:06 -08002271 }
2272
2273 /*
2274 * boundary commits are the commits that are parents of the
2275 * ones we got from get_revision_1() but they themselves are
2276 * not returned from get_revision_1(). Before returning
2277 * 'c', we need to mark its parents that they could be boundaries.
2278 */
2279
2280 for (l = c->parents; l; l = l->next) {
2281 struct object *p;
2282 p = &(l->item->object);
Junio C Hamanoc33d8592007-03-05 18:23:57 -08002283 if (p->flags & (CHILD_SHOWN | SHOWN))
Junio C Hamano86ab4902007-03-05 13:10:06 -08002284 continue;
2285 p->flags |= CHILD_SHOWN;
2286 gc_boundary(&revs->boundary_commits);
2287 add_object_array(p, NULL, &revs->boundary_commits);
2288 }
2289
2290 return c;
Junio C Hamanod5db6c92006-12-19 18:25:32 -08002291}
Adam Simpkins7fefda52008-05-04 03:36:54 -07002292
2293struct commit *get_revision(struct rev_info *revs)
2294{
Thomas Rast498bcd32008-08-29 21:18:38 +02002295 struct commit *c;
2296 struct commit_list *reversed;
2297
2298 if (revs->reverse) {
2299 reversed = NULL;
2300 while ((c = get_revision_internal(revs))) {
2301 commit_list_insert(c, &reversed);
2302 }
2303 revs->commits = reversed;
2304 revs->reverse = 0;
2305 revs->reverse_output_stage = 1;
2306 }
2307
2308 if (revs->reverse_output_stage)
2309 return pop_commit(&revs->commits);
2310
2311 c = get_revision_internal(revs);
Adam Simpkins7fefda52008-05-04 03:36:54 -07002312 if (c && revs->graph)
2313 graph_update(revs->graph, c);
2314 return c;
2315}
Michael J Gruber1df2d652011-03-07 13:31:39 +01002316
2317char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
2318{
2319 if (commit->object.flags & BOUNDARY)
2320 return "-";
2321 else if (commit->object.flags & UNINTERESTING)
2322 return "^";
Michael J Gruberadbbb312011-03-07 13:31:40 +01002323 else if (commit->object.flags & PATCHSAME)
2324 return "=";
Michael J Gruber1df2d652011-03-07 13:31:39 +01002325 else if (!revs || revs->left_right) {
2326 if (commit->object.flags & SYMMETRIC_LEFT)
2327 return "<";
2328 else
2329 return ">";
2330 } else if (revs->graph)
2331 return "*";
Michael J Gruberadbbb312011-03-07 13:31:40 +01002332 else if (revs->cherry_mark)
2333 return "+";
Michael J Gruber1df2d652011-03-07 13:31:39 +01002334 return "";
2335}
Michael J Gruberb1b47552011-03-10 15:45:03 +01002336
2337void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
2338{
2339 char *mark = get_revision_mark(revs, commit);
2340 if (!strlen(mark))
2341 return;
2342 fputs(mark, stdout);
2343 putchar(' ');
2344}