Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "tag.h" |
| 3 | #include "blob.h" |
| 4 | #include "tree.h" |
| 5 | #include "commit.h" |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 6 | #include "diff.h" |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 7 | #include "refs.h" |
| 8 | #include "revision.h" |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 9 | #include "graph.h" |
Junio C Hamano | 8ecae9b | 2006-09-17 15:43:40 -0700 | [diff] [blame] | 10 | #include "grep.h" |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 11 | #include "reflog-walk.h" |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 12 | #include "patch-ids.h" |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 13 | #include "decorate.h" |
Linus Torvalds | 78892e3 | 2008-11-03 11:25:46 -0800 | [diff] [blame] | 14 | #include "log-tree.h" |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 15 | #include "string-list.h" |
Antoine Pelisse | d72fbe8 | 2013-01-05 22:26:45 +0100 | [diff] [blame] | 16 | #include "mailmap.h" |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 17 | |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 18 | volatile show_early_output_fn_t show_early_output; |
| 19 | |
Linus Torvalds | cf2ab91 | 2009-04-10 18:15:26 -0700 | [diff] [blame] | 20 | char *path_name(const struct name_path *path, const char *name) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 21 | { |
Linus Torvalds | cf2ab91 | 2009-04-10 18:15:26 -0700 | [diff] [blame] | 22 | const struct name_path *p; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 23 | char *n, *m; |
| 24 | int nlen = strlen(name); |
| 25 | int len = nlen + 1; |
| 26 | |
| 27 | for (p = path; p; p = p->up) { |
| 28 | if (p->elem_len) |
| 29 | len += p->elem_len + 1; |
| 30 | } |
| 31 | n = xmalloc(len); |
| 32 | m = n + len - (nlen + 1); |
| 33 | strcpy(m, name); |
| 34 | for (p = path; p; p = p->up) { |
| 35 | if (p->elem_len) { |
| 36 | m -= p->elem_len + 1; |
| 37 | memcpy(m, p->elem, p->elem_len); |
| 38 | m[p->elem_len] = '/'; |
| 39 | } |
| 40 | } |
| 41 | return n; |
| 42 | } |
| 43 | |
Junio C Hamano | beba25a | 2011-08-17 14:30:35 -0700 | [diff] [blame] | 44 | static int show_path_component_truncated(FILE *out, const char *name, int len) |
| 45 | { |
| 46 | int cnt; |
| 47 | for (cnt = 0; cnt < len; cnt++) { |
| 48 | int ch = name[cnt]; |
| 49 | if (!ch || ch == '\n') |
| 50 | return -1; |
| 51 | fputc(ch, out); |
| 52 | } |
| 53 | return len; |
| 54 | } |
| 55 | |
| 56 | static int show_path_truncated(FILE *out, const struct name_path *path) |
| 57 | { |
| 58 | int emitted, ours; |
| 59 | |
| 60 | if (!path) |
| 61 | return 0; |
| 62 | emitted = show_path_truncated(out, path->up); |
| 63 | if (emitted < 0) |
| 64 | return emitted; |
| 65 | if (emitted) |
| 66 | fputc('/', out); |
| 67 | ours = show_path_component_truncated(out, path->elem, path->elem_len); |
| 68 | if (ours < 0) |
| 69 | return ours; |
| 70 | return ours || emitted; |
| 71 | } |
| 72 | |
Junio C Hamano | 91f1751 | 2011-08-17 14:30:34 -0700 | [diff] [blame] | 73 | void show_object_with_name(FILE *out, struct object *obj, const struct name_path *path, const char *component) |
| 74 | { |
Junio C Hamano | beba25a | 2011-08-17 14:30:35 -0700 | [diff] [blame] | 75 | struct name_path leaf; |
| 76 | leaf.up = (struct name_path *)path; |
| 77 | leaf.elem = component; |
| 78 | leaf.elem_len = strlen(component); |
Junio C Hamano | 91f1751 | 2011-08-17 14:30:34 -0700 | [diff] [blame] | 79 | |
Junio C Hamano | beba25a | 2011-08-17 14:30:35 -0700 | [diff] [blame] | 80 | fprintf(out, "%s ", sha1_to_hex(obj->sha1)); |
| 81 | show_path_truncated(out, &leaf); |
| 82 | fputc('\n', out); |
Junio C Hamano | 91f1751 | 2011-08-17 14:30:34 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 85 | void add_object(struct object *obj, |
| 86 | struct object_array *p, |
| 87 | struct name_path *path, |
| 88 | const char *name) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 89 | { |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 90 | add_object_array(obj, path_name(path, name), p); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static void mark_blob_uninteresting(struct blob *blob) |
| 94 | { |
Martin Koegler | c1ee901 | 2008-02-18 21:47:54 +0100 | [diff] [blame] | 95 | if (!blob) |
| 96 | return; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 97 | if (blob->object.flags & UNINTERESTING) |
| 98 | return; |
| 99 | blob->object.flags |= UNINTERESTING; |
| 100 | } |
| 101 | |
| 102 | void mark_tree_uninteresting(struct tree *tree) |
| 103 | { |
Linus Torvalds | f75e53e | 2006-05-29 12:20:14 -0700 | [diff] [blame] | 104 | struct tree_desc desc; |
Linus Torvalds | 4c068a9 | 2006-05-30 09:45:45 -0700 | [diff] [blame] | 105 | struct name_entry entry; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 106 | struct object *obj = &tree->object; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 107 | |
Martin Koegler | c1ee901 | 2008-02-18 21:47:54 +0100 | [diff] [blame] | 108 | if (!tree) |
| 109 | return; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 110 | if (obj->flags & UNINTERESTING) |
| 111 | return; |
| 112 | obj->flags |= UNINTERESTING; |
| 113 | if (!has_sha1_file(obj->sha1)) |
| 114 | return; |
| 115 | if (parse_tree(tree) < 0) |
| 116 | die("bad tree %s", sha1_to_hex(obj->sha1)); |
Linus Torvalds | f75e53e | 2006-05-29 12:20:14 -0700 | [diff] [blame] | 117 | |
Linus Torvalds | 6fda5e5 | 2007-03-21 10:08:25 -0700 | [diff] [blame] | 118 | init_tree_desc(&desc, tree->buffer, tree->size); |
Linus Torvalds | 4c068a9 | 2006-05-30 09:45:45 -0700 | [diff] [blame] | 119 | while (tree_entry(&desc, &entry)) { |
Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 +0000 | [diff] [blame] | 120 | switch (object_type(entry.mode)) { |
| 121 | case OBJ_TREE: |
Linus Torvalds | 4c068a9 | 2006-05-30 09:45:45 -0700 | [diff] [blame] | 122 | mark_tree_uninteresting(lookup_tree(entry.sha1)); |
Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 +0000 | [diff] [blame] | 123 | break; |
| 124 | case OBJ_BLOB: |
Linus Torvalds | 4c068a9 | 2006-05-30 09:45:45 -0700 | [diff] [blame] | 125 | mark_blob_uninteresting(lookup_blob(entry.sha1)); |
Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 +0000 | [diff] [blame] | 126 | break; |
| 127 | default: |
| 128 | /* Subproject commit - not in this repository */ |
| 129 | break; |
| 130 | } |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 131 | } |
Linus Torvalds | f75e53e | 2006-05-29 12:20:14 -0700 | [diff] [blame] | 132 | |
| 133 | /* |
| 134 | * We don't care about the tree any more |
| 135 | * after it has been marked uninteresting. |
| 136 | */ |
| 137 | free(tree->buffer); |
| 138 | tree->buffer = NULL; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | void mark_parents_uninteresting(struct commit *commit) |
| 142 | { |
Nguyễn Thái Ngọc Duy | 941ba8d | 2012-01-14 19:19:53 +0700 | [diff] [blame] | 143 | struct commit_list *parents = NULL, *l; |
| 144 | |
| 145 | for (l = commit->parents; l; l = l->next) |
| 146 | commit_list_insert(l->item, &parents); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 147 | |
| 148 | while (parents) { |
| 149 | struct commit *commit = parents->item; |
Nguyễn Thái Ngọc Duy | 941ba8d | 2012-01-14 19:19:53 +0700 | [diff] [blame] | 150 | l = parents; |
| 151 | parents = parents->next; |
| 152 | free(l); |
| 153 | |
| 154 | while (commit) { |
| 155 | /* |
| 156 | * A missing commit is ok iff its parent is marked |
| 157 | * uninteresting. |
| 158 | * |
| 159 | * We just mark such a thing parsed, so that when |
| 160 | * it is popped next time around, we won't be trying |
| 161 | * to parse it and get an error. |
| 162 | */ |
| 163 | if (!has_sha1_file(commit->object.sha1)) |
| 164 | commit->object.parsed = 1; |
| 165 | |
| 166 | if (commit->object.flags & UNINTERESTING) |
| 167 | break; |
| 168 | |
Matthias Urlichs | d2c4af7 | 2006-03-09 05:04:36 +0100 | [diff] [blame] | 169 | commit->object.flags |= UNINTERESTING; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 170 | |
Matthias Urlichs | d2c4af7 | 2006-03-09 05:04:36 +0100 | [diff] [blame] | 171 | /* |
| 172 | * Normally we haven't parsed the parent |
| 173 | * yet, so we won't have a parent of a parent |
| 174 | * here. However, it may turn out that we've |
| 175 | * reached this commit some other way (where it |
| 176 | * wasn't uninteresting), in which case we need |
| 177 | * to mark its parents recursively too.. |
| 178 | */ |
Nguyễn Thái Ngọc Duy | 941ba8d | 2012-01-14 19:19:53 +0700 | [diff] [blame] | 179 | if (!commit->parents) |
| 180 | break; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 181 | |
Nguyễn Thái Ngọc Duy | 941ba8d | 2012-01-14 19:19:53 +0700 | [diff] [blame] | 182 | for (l = commit->parents->next; l; l = l->next) |
| 183 | commit_list_insert(l->item, &parents); |
| 184 | commit = commit->parents->item; |
| 185 | } |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
Junio C Hamano | 2d93b9f | 2007-06-08 02:24:58 -0700 | [diff] [blame] | 189 | static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode) |
Martin Koegler | bb6c2fb | 2007-04-22 18:43:59 +0200 | [diff] [blame] | 190 | { |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 191 | if (!obj) |
| 192 | return; |
Linus Torvalds | aa27e46 | 2007-02-27 16:22:52 -0800 | [diff] [blame] | 193 | if (revs->no_walk && (obj->flags & UNINTERESTING)) |
Linus Torvalds | f222abd | 2009-07-13 14:41:12 -0700 | [diff] [blame] | 194 | revs->no_walk = 0; |
Junio C Hamano | 105e473 | 2010-01-26 13:48:28 -0800 | [diff] [blame] | 195 | if (revs->reflog_info && obj->type == OBJ_COMMIT) { |
| 196 | struct strbuf buf = STRBUF_INIT; |
| 197 | int len = interpret_branch_name(name, &buf); |
| 198 | int st; |
| 199 | |
| 200 | if (0 < len && name[len] && buf.len) |
| 201 | strbuf_addstr(&buf, name + len); |
| 202 | st = add_reflog_for_walk(revs->reflog_info, |
| 203 | (struct commit *)obj, |
| 204 | buf.buf[0] ? buf.buf: name); |
| 205 | strbuf_release(&buf); |
| 206 | if (st) |
| 207 | return; |
| 208 | } |
Martin Koegler | bb6c2fb | 2007-04-22 18:43:59 +0200 | [diff] [blame] | 209 | add_object_array_with_mode(obj, name, &revs->pending, mode); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 210 | } |
| 211 | |
Junio C Hamano | 2d93b9f | 2007-06-08 02:24:58 -0700 | [diff] [blame] | 212 | void add_pending_object(struct rev_info *revs, struct object *obj, const char *name) |
| 213 | { |
| 214 | add_pending_object_with_mode(revs, obj, name, S_IFINVALID); |
| 215 | } |
| 216 | |
Junio C Hamano | 3384a2d | 2007-12-11 10:09:04 -0800 | [diff] [blame] | 217 | void add_head_to_pending(struct rev_info *revs) |
| 218 | { |
| 219 | unsigned char sha1[20]; |
| 220 | struct object *obj; |
| 221 | if (get_sha1("HEAD", sha1)) |
| 222 | return; |
| 223 | obj = parse_object(sha1); |
| 224 | if (!obj) |
| 225 | return; |
| 226 | add_pending_object(revs, obj, "HEAD"); |
| 227 | } |
| 228 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 229 | static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 230 | { |
| 231 | struct object *object; |
| 232 | |
| 233 | object = parse_object(sha1); |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 234 | if (!object) { |
| 235 | if (revs->ignore_missing) |
| 236 | return object; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 237 | die("bad object %s", name); |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 238 | } |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 239 | object->flags |= flags; |
| 240 | return object; |
| 241 | } |
| 242 | |
René Scharfe | 26c3177 | 2011-10-01 17:43:52 +0200 | [diff] [blame] | 243 | void add_pending_sha1(struct rev_info *revs, const char *name, |
| 244 | const unsigned char *sha1, unsigned int flags) |
| 245 | { |
| 246 | struct object *object = get_reference(revs, name, sha1, flags); |
| 247 | add_pending_object(revs, object, name); |
| 248 | } |
| 249 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 250 | static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name) |
| 251 | { |
| 252 | unsigned long flags = object->flags; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * Tag object? Look what it points to.. |
| 256 | */ |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 257 | while (object->type == OBJ_TAG) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 258 | struct tag *tag = (struct tag *) object; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 259 | if (revs->tag_objects && !(flags & UNINTERESTING)) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 260 | add_pending_object(revs, object, tag->tag); |
Martin Koegler | 9684afd | 2008-02-18 21:48:01 +0100 | [diff] [blame] | 261 | if (!tag->tagged) |
| 262 | die("bad tag"); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 263 | object = parse_object(tag->tagged->sha1); |
Junio C Hamano | aeeae1b | 2009-01-27 23:19:30 -0800 | [diff] [blame] | 264 | if (!object) { |
| 265 | if (flags & UNINTERESTING) |
| 266 | return NULL; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 267 | die("bad object %s", sha1_to_hex(tag->tagged->sha1)); |
Junio C Hamano | aeeae1b | 2009-01-27 23:19:30 -0800 | [diff] [blame] | 268 | } |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /* |
| 272 | * Commit object? Just return it, we'll do all the complex |
| 273 | * reachability crud. |
| 274 | */ |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 275 | if (object->type == OBJ_COMMIT) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 276 | struct commit *commit = (struct commit *)object; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 277 | if (parse_commit(commit) < 0) |
| 278 | die("unable to parse commit %s", name); |
Linus Torvalds | d9a8368 | 2006-02-27 08:54:36 -0800 | [diff] [blame] | 279 | if (flags & UNINTERESTING) { |
Linus Torvalds | 4262c1b | 2006-04-18 20:31:41 -0700 | [diff] [blame] | 280 | commit->object.flags |= UNINTERESTING; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 281 | mark_parents_uninteresting(commit); |
Linus Torvalds | d9a8368 | 2006-02-27 08:54:36 -0800 | [diff] [blame] | 282 | revs->limited = 1; |
| 283 | } |
Linus Torvalds | 0f3a290 | 2008-10-27 12:51:59 -0700 | [diff] [blame] | 284 | if (revs->show_source && !commit->util) |
| 285 | commit->util = (void *) name; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 286 | return commit; |
| 287 | } |
| 288 | |
| 289 | /* |
Mike Ralphson | 3ea3c21 | 2009-04-17 19:13:30 +0100 | [diff] [blame] | 290 | * Tree object? Either mark it uninteresting, or add it |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 291 | * to the list of objects to look at later.. |
| 292 | */ |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 293 | if (object->type == OBJ_TREE) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 294 | struct tree *tree = (struct tree *)object; |
| 295 | if (!revs->tree_objects) |
| 296 | return NULL; |
| 297 | if (flags & UNINTERESTING) { |
| 298 | mark_tree_uninteresting(tree); |
| 299 | return NULL; |
| 300 | } |
| 301 | add_pending_object(revs, object, ""); |
| 302 | return NULL; |
| 303 | } |
| 304 | |
| 305 | /* |
| 306 | * Blob object? You know the drill by now.. |
| 307 | */ |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 308 | if (object->type == OBJ_BLOB) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 309 | struct blob *blob = (struct blob *)object; |
| 310 | if (!revs->blob_objects) |
| 311 | return NULL; |
| 312 | if (flags & UNINTERESTING) { |
| 313 | mark_blob_uninteresting(blob); |
| 314 | return NULL; |
| 315 | } |
| 316 | add_pending_object(revs, object, ""); |
| 317 | return NULL; |
| 318 | } |
| 319 | die("%s is unknown object", name); |
| 320 | } |
| 321 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 322 | static int everybody_uninteresting(struct commit_list *orig) |
| 323 | { |
| 324 | struct commit_list *list = orig; |
| 325 | while (list) { |
| 326 | struct commit *commit = list->item; |
| 327 | list = list->next; |
| 328 | if (commit->object.flags & UNINTERESTING) |
| 329 | continue; |
| 330 | return 0; |
| 331 | } |
| 332 | return 1; |
| 333 | } |
| 334 | |
Junio C Hamano | 0a4ba7f | 2007-03-14 13:12:18 -0700 | [diff] [blame] | 335 | /* |
| 336 | * The goal is to get REV_TREE_NEW as the result only if the |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 337 | * diff consists of all '+' (and no other changes), REV_TREE_OLD |
| 338 | * if the whole diff is removal of old data, and otherwise |
| 339 | * REV_TREE_DIFFERENT (of course if the trees are the same we |
| 340 | * want REV_TREE_SAME). |
| 341 | * That means that once we get to REV_TREE_DIFFERENT, we do not |
| 342 | * have to look any further. |
Junio C Hamano | 0a4ba7f | 2007-03-14 13:12:18 -0700 | [diff] [blame] | 343 | */ |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 344 | static int tree_difference = REV_TREE_SAME; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 345 | |
| 346 | static void file_add_remove(struct diff_options *options, |
| 347 | int addremove, unsigned mode, |
| 348 | const unsigned char *sha1, |
Jeff King | e545010 | 2012-07-28 11:03:01 -0400 | [diff] [blame] | 349 | int sha1_valid, |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 350 | const char *fullpath, unsigned dirty_submodule) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 351 | { |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 352 | int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 353 | |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 354 | tree_difference |= diff; |
Junio C Hamano | dd47aa3 | 2007-03-14 13:18:15 -0700 | [diff] [blame] | 355 | if (tree_difference == REV_TREE_DIFFERENT) |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 356 | DIFF_OPT_SET(options, HAS_CHANGES); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static void file_change(struct diff_options *options, |
| 360 | unsigned old_mode, unsigned new_mode, |
| 361 | const unsigned char *old_sha1, |
| 362 | const unsigned char *new_sha1, |
Jeff King | e545010 | 2012-07-28 11:03:01 -0400 | [diff] [blame] | 363 | int old_sha1_valid, int new_sha1_valid, |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 364 | const char *fullpath, |
| 365 | unsigned old_dirty_submodule, unsigned new_dirty_submodule) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 366 | { |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 367 | tree_difference = REV_TREE_DIFFERENT; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 368 | DIFF_OPT_SET(options, HAS_CHANGES); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 369 | } |
| 370 | |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 371 | static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 372 | { |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 373 | struct tree *t1 = parent->tree; |
| 374 | struct tree *t2 = commit->tree; |
| 375 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 376 | if (!t1) |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 377 | return REV_TREE_NEW; |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 378 | if (!t2) |
| 379 | return REV_TREE_OLD; |
Linus Torvalds | 78892e3 | 2008-11-03 11:25:46 -0800 | [diff] [blame] | 380 | |
| 381 | if (revs->simplify_by_decoration) { |
| 382 | /* |
| 383 | * If we are simplifying by decoration, then the commit |
| 384 | * is worth showing if it has a tag pointing at it. |
| 385 | */ |
| 386 | if (lookup_decoration(&name_decoration, &commit->object)) |
| 387 | return REV_TREE_DIFFERENT; |
| 388 | /* |
| 389 | * A commit that is not pointed by a tag is uninteresting |
| 390 | * if we are not limited by path. This means that you will |
| 391 | * see the usual "commits that touch the paths" plus any |
| 392 | * tagged commit by specifying both --simplify-by-decoration |
| 393 | * and pathspec. |
| 394 | */ |
Nguyễn Thái Ngọc Duy | afe069d | 2010-12-17 19:43:06 +0700 | [diff] [blame] | 395 | if (!revs->prune_data.nr) |
Linus Torvalds | 78892e3 | 2008-11-03 11:25:46 -0800 | [diff] [blame] | 396 | return REV_TREE_SAME; |
| 397 | } |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 398 | |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 399 | tree_difference = REV_TREE_SAME; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 400 | DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES); |
Junio C Hamano | c4e05b1 | 2006-04-10 18:14:54 -0700 | [diff] [blame] | 401 | if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "", |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 402 | &revs->pruning) < 0) |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 403 | return REV_TREE_DIFFERENT; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 404 | return tree_difference; |
| 405 | } |
| 406 | |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 407 | static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 408 | { |
| 409 | int retval; |
| 410 | void *tree; |
Linus Torvalds | 6fda5e5 | 2007-03-21 10:08:25 -0700 | [diff] [blame] | 411 | unsigned long size; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 412 | struct tree_desc empty, real; |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 413 | struct tree *t1 = commit->tree; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 414 | |
| 415 | if (!t1) |
| 416 | return 0; |
| 417 | |
Linus Torvalds | 6fda5e5 | 2007-03-21 10:08:25 -0700 | [diff] [blame] | 418 | tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 419 | if (!tree) |
| 420 | return 0; |
Linus Torvalds | 6fda5e5 | 2007-03-21 10:08:25 -0700 | [diff] [blame] | 421 | init_tree_desc(&real, tree, size); |
| 422 | init_tree_desc(&empty, "", 0); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 423 | |
Junio C Hamano | 0a4ba7f | 2007-03-14 13:12:18 -0700 | [diff] [blame] | 424 | tree_difference = REV_TREE_SAME; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 425 | DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 426 | retval = diff_tree(&empty, &real, "", &revs->pruning); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 427 | free(tree); |
| 428 | |
Junio C Hamano | 0a4ba7f | 2007-03-14 13:12:18 -0700 | [diff] [blame] | 429 | return retval >= 0 && (tree_difference == REV_TREE_SAME); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit) |
| 433 | { |
| 434 | struct commit_list **pp, *parent; |
Junio C Hamano | 36ed191 | 2012-01-19 11:58:45 -0800 | [diff] [blame] | 435 | int tree_changed = 0, tree_same = 0, nth_parent = 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 436 | |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 437 | /* |
| 438 | * If we don't do pruning, everything is interesting |
| 439 | */ |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 440 | if (!revs->prune) |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 441 | return; |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 442 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 443 | if (!commit->tree) |
| 444 | return; |
| 445 | |
| 446 | if (!commit->parents) { |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 447 | if (rev_same_tree_as_empty(revs, commit)) |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 448 | commit->object.flags |= TREESAME; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 449 | return; |
| 450 | } |
| 451 | |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 452 | /* |
| 453 | * Normal non-merge commit? If we don't want to make the |
| 454 | * history dense, we consider it always to be a change.. |
| 455 | */ |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 456 | if (!revs->dense && !commit->parents->next) |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 457 | return; |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 458 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 459 | pp = &commit->parents; |
| 460 | while ((parent = *pp) != NULL) { |
| 461 | struct commit *p = parent->item; |
| 462 | |
Junio C Hamano | 36ed191 | 2012-01-19 11:58:45 -0800 | [diff] [blame] | 463 | /* |
| 464 | * Do not compare with later parents when we care only about |
| 465 | * the first parent chain, in order to avoid derailing the |
| 466 | * traversal to follow a side branch that brought everything |
| 467 | * in the path we are limited to by the pathspec. |
| 468 | */ |
| 469 | if (revs->first_parent_only && nth_parent++) |
| 470 | break; |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 471 | if (parse_commit(p) < 0) |
| 472 | die("cannot simplify commit %s (because of %s)", |
| 473 | sha1_to_hex(commit->object.sha1), |
| 474 | sha1_to_hex(p->object.sha1)); |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 475 | switch (rev_compare_tree(revs, p, commit)) { |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 476 | case REV_TREE_SAME: |
Linus Torvalds | 6631c73 | 2006-06-30 20:21:59 -0700 | [diff] [blame] | 477 | tree_same = 1; |
Linus Torvalds | 9202434 | 2006-06-11 10:57:35 -0700 | [diff] [blame] | 478 | if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) { |
Junio C Hamano | f3219fb | 2006-03-10 21:59:37 -0800 | [diff] [blame] | 479 | /* Even if a merge with an uninteresting |
| 480 | * side branch brought the entire change |
| 481 | * we are interested in, we do not want |
| 482 | * to lose the other branches of this |
| 483 | * merge, so we just keep going. |
| 484 | */ |
| 485 | pp = &parent->next; |
| 486 | continue; |
| 487 | } |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 488 | parent->next = NULL; |
| 489 | commit->parents = parent; |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 490 | commit->object.flags |= TREESAME; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 491 | return; |
| 492 | |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 493 | case REV_TREE_NEW: |
| 494 | if (revs->remove_empty_trees && |
Linus Torvalds | 3a5e860 | 2008-11-03 10:45:41 -0800 | [diff] [blame] | 495 | rev_same_tree_as_empty(revs, p)) { |
Junio C Hamano | c348f31 | 2006-03-12 13:39:31 -0800 | [diff] [blame] | 496 | /* We are adding all the specified |
| 497 | * paths from this parent, so the |
| 498 | * history beyond this parent is not |
| 499 | * interesting. Remove its parents |
| 500 | * (they are grandparents for us). |
| 501 | * IOW, we pretend this parent is a |
| 502 | * "root" commit. |
Junio C Hamano | a41e109 | 2006-03-12 13:39:31 -0800 | [diff] [blame] | 503 | */ |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 504 | if (parse_commit(p) < 0) |
| 505 | die("cannot simplify commit %s (invalid %s)", |
| 506 | sha1_to_hex(commit->object.sha1), |
| 507 | sha1_to_hex(p->object.sha1)); |
Junio C Hamano | c348f31 | 2006-03-12 13:39:31 -0800 | [diff] [blame] | 508 | p->parents = NULL; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 509 | } |
| 510 | /* fallthrough */ |
Linus Torvalds | ceff8e7 | 2009-06-02 18:34:01 -0700 | [diff] [blame] | 511 | case REV_TREE_OLD: |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 512 | case REV_TREE_DIFFERENT: |
Junio C Hamano | f3219fb | 2006-03-10 21:59:37 -0800 | [diff] [blame] | 513 | tree_changed = 1; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 514 | pp = &parent->next; |
| 515 | continue; |
| 516 | } |
| 517 | die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1)); |
| 518 | } |
Linus Torvalds | 6631c73 | 2006-06-30 20:21:59 -0700 | [diff] [blame] | 519 | if (tree_changed && !tree_same) |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 520 | return; |
| 521 | commit->object.flags |= TREESAME; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 522 | } |
| 523 | |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 524 | static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head, |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 525 | struct commit_list *cached_base, struct commit_list **cache) |
| 526 | { |
| 527 | struct commit_list *new_entry; |
| 528 | |
| 529 | if (cached_base && p->date < cached_base->item->date) |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 530 | new_entry = commit_list_insert_by_date(p, &cached_base->next); |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 531 | else |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 532 | new_entry = commit_list_insert_by_date(p, head); |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 533 | |
| 534 | if (cache && (!*cache || p->date < (*cache)->item->date)) |
| 535 | *cache = new_entry; |
| 536 | } |
| 537 | |
| 538 | static int add_parents_to_list(struct rev_info *revs, struct commit *commit, |
| 539 | struct commit_list **list, struct commit_list **cache_ptr) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 540 | { |
| 541 | struct commit_list *parent = commit->parents; |
Junio C Hamano | 577ed5c | 2006-10-22 17:32:47 -0700 | [diff] [blame] | 542 | unsigned left_flag; |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 543 | struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 544 | |
Linus Torvalds | 3381c79 | 2006-04-08 17:05:58 -0700 | [diff] [blame] | 545 | if (commit->object.flags & ADDED) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 546 | return 0; |
Linus Torvalds | 3381c79 | 2006-04-08 17:05:58 -0700 | [diff] [blame] | 547 | commit->object.flags |= ADDED; |
| 548 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 549 | /* |
| 550 | * If the commit is uninteresting, don't try to |
| 551 | * prune parents - we want the maximal uninteresting |
| 552 | * set. |
| 553 | * |
| 554 | * Normally we haven't parsed the parent |
| 555 | * yet, so we won't have a parent of a parent |
| 556 | * here. However, it may turn out that we've |
| 557 | * reached this commit some other way (where it |
| 558 | * wasn't uninteresting), in which case we need |
| 559 | * to mark its parents recursively too.. |
| 560 | */ |
| 561 | if (commit->object.flags & UNINTERESTING) { |
| 562 | while (parent) { |
| 563 | struct commit *p = parent->item; |
| 564 | parent = parent->next; |
Junio C Hamano | aeeae1b | 2009-01-27 23:19:30 -0800 | [diff] [blame] | 565 | if (p) |
| 566 | p->object.flags |= UNINTERESTING; |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 567 | if (parse_commit(p) < 0) |
Junio C Hamano | aeeae1b | 2009-01-27 23:19:30 -0800 | [diff] [blame] | 568 | continue; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 569 | if (p->parents) |
| 570 | mark_parents_uninteresting(p); |
| 571 | if (p->object.flags & SEEN) |
| 572 | continue; |
| 573 | p->object.flags |= SEEN; |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 574 | commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 575 | } |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 576 | return 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | /* |
| 580 | * Ok, the commit wasn't uninteresting. Try to |
| 581 | * simplify the commit history and find the parent |
| 582 | * that has no differences in the path set if one exists. |
| 583 | */ |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 584 | try_to_simplify_commit(revs, commit); |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 585 | |
Linus Torvalds | ba1d450 | 2006-04-15 12:09:56 -0700 | [diff] [blame] | 586 | if (revs->no_walk) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 587 | return 0; |
Linus Torvalds | ba1d450 | 2006-04-15 12:09:56 -0700 | [diff] [blame] | 588 | |
Junio C Hamano | 577ed5c | 2006-10-22 17:32:47 -0700 | [diff] [blame] | 589 | left_flag = (commit->object.flags & SYMMETRIC_LEFT); |
Junio C Hamano | 0053e90 | 2007-03-13 01:57:22 -0700 | [diff] [blame] | 590 | |
Stephen R. van den Berg | d9c292e | 2008-04-27 19:32:46 +0200 | [diff] [blame] | 591 | for (parent = commit->parents; parent; parent = parent->next) { |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 592 | struct commit *p = parent->item; |
| 593 | |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 594 | if (parse_commit(p) < 0) |
| 595 | return -1; |
Linus Torvalds | 0f3a290 | 2008-10-27 12:51:59 -0700 | [diff] [blame] | 596 | if (revs->show_source && !p->util) |
| 597 | p->util = commit->util; |
Junio C Hamano | 577ed5c | 2006-10-22 17:32:47 -0700 | [diff] [blame] | 598 | p->object.flags |= left_flag; |
Lars Hjemli | ad1012e | 2008-05-12 17:12:36 +0200 | [diff] [blame] | 599 | if (!(p->object.flags & SEEN)) { |
| 600 | p->object.flags |= SEEN; |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 601 | commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr); |
Lars Hjemli | ad1012e | 2008-05-12 17:12:36 +0200 | [diff] [blame] | 602 | } |
Junio C Hamano | 60d30b0 | 2008-07-31 22:17:13 -0700 | [diff] [blame] | 603 | if (revs->first_parent_only) |
Stephen R. van den Berg | d9c292e | 2008-04-27 19:32:46 +0200 | [diff] [blame] | 604 | break; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 605 | } |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 606 | return 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 607 | } |
| 608 | |
Johannes Schindelin | 36d56de | 2007-07-10 14:50:49 +0100 | [diff] [blame] | 609 | static void cherry_pick_list(struct commit_list *list, struct rev_info *revs) |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 610 | { |
| 611 | struct commit_list *p; |
| 612 | int left_count = 0, right_count = 0; |
| 613 | int left_first; |
| 614 | struct patch_ids ids; |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 615 | unsigned cherry_flag; |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 616 | |
| 617 | /* First count the commits on the left and on the right */ |
| 618 | for (p = list; p; p = p->next) { |
| 619 | struct commit *commit = p->item; |
| 620 | unsigned flags = commit->object.flags; |
| 621 | if (flags & BOUNDARY) |
| 622 | ; |
| 623 | else if (flags & SYMMETRIC_LEFT) |
| 624 | left_count++; |
| 625 | else |
| 626 | right_count++; |
| 627 | } |
| 628 | |
Thomas Rast | 36c0797 | 2010-02-20 12:42:04 +0100 | [diff] [blame] | 629 | if (!left_count || !right_count) |
| 630 | return; |
| 631 | |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 632 | left_first = left_count < right_count; |
| 633 | init_patch_ids(&ids); |
Nguyễn Thái Ngọc Duy | 66f1362 | 2010-12-15 22:02:38 +0700 | [diff] [blame] | 634 | ids.diffopts.pathspec = revs->diffopt.pathspec; |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 635 | |
| 636 | /* Compute patch-ids for one side */ |
| 637 | for (p = list; p; p = p->next) { |
| 638 | struct commit *commit = p->item; |
| 639 | unsigned flags = commit->object.flags; |
| 640 | |
| 641 | if (flags & BOUNDARY) |
| 642 | continue; |
| 643 | /* |
| 644 | * If we have fewer left, left_first is set and we omit |
| 645 | * commits on the right branch in this loop. If we have |
| 646 | * fewer right, we skip the left ones. |
| 647 | */ |
| 648 | if (left_first != !!(flags & SYMMETRIC_LEFT)) |
| 649 | continue; |
| 650 | commit->util = add_commit_patch_id(commit, &ids); |
| 651 | } |
| 652 | |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 653 | /* either cherry_mark or cherry_pick are true */ |
| 654 | cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN; |
| 655 | |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 656 | /* Check the other side */ |
| 657 | for (p = list; p; p = p->next) { |
| 658 | struct commit *commit = p->item; |
| 659 | struct patch_id *id; |
| 660 | unsigned flags = commit->object.flags; |
| 661 | |
| 662 | if (flags & BOUNDARY) |
| 663 | continue; |
| 664 | /* |
| 665 | * If we have fewer left, left_first is set and we omit |
| 666 | * commits on the left branch in this loop. |
| 667 | */ |
| 668 | if (left_first == !!(flags & SYMMETRIC_LEFT)) |
| 669 | continue; |
| 670 | |
| 671 | /* |
| 672 | * Have we seen the same patch id? |
| 673 | */ |
| 674 | id = has_commit_patch_id(commit, &ids); |
| 675 | if (!id) |
| 676 | continue; |
| 677 | id->seen = 1; |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 678 | commit->object.flags |= cherry_flag; |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | /* Now check the original side for seen ones */ |
| 682 | for (p = list; p; p = p->next) { |
| 683 | struct commit *commit = p->item; |
| 684 | struct patch_id *ent; |
| 685 | |
| 686 | ent = commit->util; |
| 687 | if (!ent) |
| 688 | continue; |
| 689 | if (ent->seen) |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 690 | commit->object.flags |= cherry_flag; |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 691 | commit->util = NULL; |
| 692 | } |
| 693 | |
| 694 | free_patch_ids(&ids); |
| 695 | } |
| 696 | |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 697 | /* How many extra uninteresting commits we want to see.. */ |
| 698 | #define SLOP 5 |
| 699 | |
| 700 | static int still_interesting(struct commit_list *src, unsigned long date, int slop) |
Linus Torvalds | 3131b71 | 2008-02-09 14:02:07 -0800 | [diff] [blame] | 701 | { |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 702 | /* |
| 703 | * No source list at all? We're definitely done.. |
| 704 | */ |
| 705 | if (!src) |
| 706 | return 0; |
| 707 | |
| 708 | /* |
| 709 | * Does the destination list contain entries with a date |
| 710 | * before the source list? Definitely _not_ done. |
| 711 | */ |
Kacper Kornet | c19d1b4 | 2013-03-22 19:38:19 +0100 | [diff] [blame] | 712 | if (date <= src->item->date) |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 713 | return SLOP; |
| 714 | |
| 715 | /* |
| 716 | * Does the source list still have interesting commits in |
| 717 | * it? Definitely not done.. |
| 718 | */ |
| 719 | if (!everybody_uninteresting(src)) |
| 720 | return SLOP; |
| 721 | |
| 722 | /* Ok, we're closing in.. */ |
| 723 | return slop-1; |
Linus Torvalds | 3131b71 | 2008-02-09 14:02:07 -0800 | [diff] [blame] | 724 | } |
| 725 | |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 726 | /* |
| 727 | * "rev-list --ancestry-path A..B" computes commits that are ancestors |
| 728 | * of B but not ancestors of A but further limits the result to those |
| 729 | * that are descendants of A. This takes the list of bottom commits and |
| 730 | * the result of "A..B" without --ancestry-path, and limits the latter |
| 731 | * further to the ones that can reach one of the commits in "bottom". |
| 732 | */ |
| 733 | static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list) |
| 734 | { |
| 735 | struct commit_list *p; |
| 736 | struct commit_list *rlist = NULL; |
| 737 | int made_progress; |
| 738 | |
| 739 | /* |
| 740 | * Reverse the list so that it will be likely that we would |
| 741 | * process parents before children. |
| 742 | */ |
| 743 | for (p = list; p; p = p->next) |
| 744 | commit_list_insert(p->item, &rlist); |
| 745 | |
| 746 | for (p = bottom; p; p = p->next) |
| 747 | p->item->object.flags |= TMP_MARK; |
| 748 | |
| 749 | /* |
| 750 | * Mark the ones that can reach bottom commits in "list", |
| 751 | * in a bottom-up fashion. |
| 752 | */ |
| 753 | do { |
| 754 | made_progress = 0; |
| 755 | for (p = rlist; p; p = p->next) { |
| 756 | struct commit *c = p->item; |
| 757 | struct commit_list *parents; |
| 758 | if (c->object.flags & (TMP_MARK | UNINTERESTING)) |
| 759 | continue; |
| 760 | for (parents = c->parents; |
| 761 | parents; |
| 762 | parents = parents->next) { |
| 763 | if (!(parents->item->object.flags & TMP_MARK)) |
| 764 | continue; |
| 765 | c->object.flags |= TMP_MARK; |
| 766 | made_progress = 1; |
| 767 | break; |
| 768 | } |
| 769 | } |
| 770 | } while (made_progress); |
| 771 | |
| 772 | /* |
| 773 | * NEEDSWORK: decide if we want to remove parents that are |
| 774 | * not marked with TMP_MARK from commit->parents for commits |
| 775 | * in the resulting list. We may not want to do that, though. |
| 776 | */ |
| 777 | |
| 778 | /* |
| 779 | * The ones that are not marked with TMP_MARK are uninteresting |
| 780 | */ |
| 781 | for (p = list; p; p = p->next) { |
| 782 | struct commit *c = p->item; |
| 783 | if (c->object.flags & TMP_MARK) |
| 784 | continue; |
| 785 | c->object.flags |= UNINTERESTING; |
| 786 | } |
| 787 | |
| 788 | /* We are done with the TMP_MARK */ |
| 789 | for (p = list; p; p = p->next) |
| 790 | p->item->object.flags &= ~TMP_MARK; |
| 791 | for (p = bottom; p; p = p->next) |
| 792 | p->item->object.flags &= ~TMP_MARK; |
| 793 | free_commit_list(rlist); |
| 794 | } |
| 795 | |
| 796 | /* |
| 797 | * Before walking the history, keep the set of "negative" refs the |
| 798 | * caller has asked to exclude. |
| 799 | * |
| 800 | * This is used to compute "rev-list --ancestry-path A..B", as we need |
| 801 | * to filter the result of "A..B" further to the ones that can actually |
| 802 | * reach A. |
| 803 | */ |
Junio C Hamano | c3502fa | 2011-08-25 17:51:50 -0700 | [diff] [blame] | 804 | static struct commit_list *collect_bottom_commits(struct rev_info *revs) |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 805 | { |
Junio C Hamano | c3502fa | 2011-08-25 17:51:50 -0700 | [diff] [blame] | 806 | struct commit_list *bottom = NULL; |
| 807 | int i; |
| 808 | for (i = 0; i < revs->cmdline.nr; i++) { |
| 809 | struct rev_cmdline_entry *elem = &revs->cmdline.rev[i]; |
| 810 | if ((elem->flags & UNINTERESTING) && |
| 811 | elem->item->type == OBJ_COMMIT) |
| 812 | commit_list_insert((struct commit *)elem->item, &bottom); |
| 813 | } |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 814 | return bottom; |
| 815 | } |
| 816 | |
Michael J Gruber | 60adf7d | 2011-02-21 17:09:11 +0100 | [diff] [blame] | 817 | /* Assumes either left_only or right_only is set */ |
| 818 | static void limit_left_right(struct commit_list *list, struct rev_info *revs) |
| 819 | { |
| 820 | struct commit_list *p; |
| 821 | |
| 822 | for (p = list; p; p = p->next) { |
| 823 | struct commit *commit = p->item; |
| 824 | |
| 825 | if (revs->right_only) { |
| 826 | if (commit->object.flags & SYMMETRIC_LEFT) |
| 827 | commit->object.flags |= SHOWN; |
| 828 | } else /* revs->left_only is set */ |
| 829 | if (!(commit->object.flags & SYMMETRIC_LEFT)) |
| 830 | commit->object.flags |= SHOWN; |
| 831 | } |
| 832 | } |
| 833 | |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 834 | static int limit_list(struct rev_info *revs) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 835 | { |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 836 | int slop = SLOP; |
| 837 | unsigned long date = ~0ul; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 838 | struct commit_list *list = revs->commits; |
| 839 | struct commit_list *newlist = NULL; |
| 840 | struct commit_list **p = &newlist; |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 841 | struct commit_list *bottom = NULL; |
| 842 | |
| 843 | if (revs->ancestry_path) { |
Junio C Hamano | c3502fa | 2011-08-25 17:51:50 -0700 | [diff] [blame] | 844 | bottom = collect_bottom_commits(revs); |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 845 | if (!bottom) |
Johan Herland | 97b03c3 | 2010-06-04 01:17:36 +0200 | [diff] [blame] | 846 | die("--ancestry-path given but there are no bottom commits"); |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 847 | } |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 848 | |
| 849 | while (list) { |
| 850 | struct commit_list *entry = list; |
| 851 | struct commit *commit = list->item; |
| 852 | struct object *obj = &commit->object; |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 853 | show_early_output_fn_t show; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 854 | |
| 855 | list = list->next; |
| 856 | free(entry); |
| 857 | |
| 858 | if (revs->max_age != -1 && (commit->date < revs->max_age)) |
| 859 | obj->flags |= UNINTERESTING; |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 860 | if (add_parents_to_list(revs, commit, &list, NULL) < 0) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 861 | return -1; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 862 | if (obj->flags & UNINTERESTING) { |
| 863 | mark_parents_uninteresting(commit); |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 864 | if (revs->show_all) |
| 865 | p = &commit_list_insert(commit, p)->next; |
| 866 | slop = still_interesting(list, date, slop); |
| 867 | if (slop) |
Linus Torvalds | 3131b71 | 2008-02-09 14:02:07 -0800 | [diff] [blame] | 868 | continue; |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 869 | /* If showing all, add the whole pending list to the end */ |
| 870 | if (revs->show_all) |
| 871 | *p = list; |
| 872 | break; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 873 | } |
| 874 | if (revs->min_age != -1 && (commit->date > revs->min_age)) |
| 875 | continue; |
Linus Torvalds | 7d00419 | 2008-03-17 18:56:33 -0700 | [diff] [blame] | 876 | date = commit->date; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 877 | p = &commit_list_insert(commit, p)->next; |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 878 | |
| 879 | show = show_early_output; |
| 880 | if (!show) |
| 881 | continue; |
| 882 | |
| 883 | show(revs, newlist); |
| 884 | show_early_output = NULL; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 885 | } |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 886 | if (revs->cherry_pick || revs->cherry_mark) |
Johannes Schindelin | 36d56de | 2007-07-10 14:50:49 +0100 | [diff] [blame] | 887 | cherry_pick_list(newlist, revs); |
Junio C Hamano | d7a17ca | 2007-04-09 03:40:38 -0700 | [diff] [blame] | 888 | |
Michael J Gruber | 60adf7d | 2011-02-21 17:09:11 +0100 | [diff] [blame] | 889 | if (revs->left_only || revs->right_only) |
| 890 | limit_left_right(newlist, revs); |
| 891 | |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 892 | if (bottom) { |
| 893 | limit_to_ancestry(bottom, newlist); |
| 894 | free_commit_list(bottom); |
| 895 | } |
| 896 | |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 897 | revs->commits = newlist; |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 898 | return 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 899 | } |
| 900 | |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 901 | static void add_rev_cmdline(struct rev_info *revs, |
| 902 | struct object *item, |
| 903 | const char *name, |
| 904 | int whence, |
| 905 | unsigned flags) |
| 906 | { |
| 907 | struct rev_cmdline_info *info = &revs->cmdline; |
| 908 | int nr = info->nr; |
| 909 | |
| 910 | ALLOC_GROW(info->rev, nr + 1, info->alloc); |
| 911 | info->rev[nr].item = item; |
| 912 | info->rev[nr].name = name; |
| 913 | info->rev[nr].whence = whence; |
| 914 | info->rev[nr].flags = flags; |
| 915 | info->nr++; |
| 916 | } |
| 917 | |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 918 | struct all_refs_cb { |
| 919 | int all_flags; |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 920 | int warned_bad_reflog; |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 921 | struct rev_info *all_revs; |
| 922 | const char *name_for_errormsg; |
| 923 | }; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 924 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 925 | static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 926 | { |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 927 | struct all_refs_cb *cb = cb_data; |
| 928 | struct object *object = get_reference(cb->all_revs, path, sha1, |
| 929 | cb->all_flags); |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 930 | add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags); |
René Scharfe | 26c3177 | 2011-10-01 17:43:52 +0200 | [diff] [blame] | 931 | add_pending_sha1(cb->all_revs, path, sha1, cb->all_flags); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 932 | return 0; |
| 933 | } |
| 934 | |
Ilari Liusvaara | d08bae7 | 2010-01-20 11:48:25 +0200 | [diff] [blame] | 935 | static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs, |
| 936 | unsigned flags) |
| 937 | { |
| 938 | cb->all_revs = revs; |
| 939 | cb->all_flags = flags; |
| 940 | } |
| 941 | |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 942 | static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags, |
| 943 | int (*for_each)(const char *, each_ref_fn, void *)) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 944 | { |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 945 | struct all_refs_cb cb; |
Ilari Liusvaara | d08bae7 | 2010-01-20 11:48:25 +0200 | [diff] [blame] | 946 | init_all_refs_cb(&cb, revs, flags); |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 947 | for_each(submodule, handle_one_ref, &cb); |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 948 | } |
| 949 | |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 950 | static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data) |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 951 | { |
| 952 | struct all_refs_cb *cb = cb_data; |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 953 | if (!is_null_sha1(sha1)) { |
| 954 | struct object *o = parse_object(sha1); |
| 955 | if (o) { |
| 956 | o->flags |= cb->all_flags; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 957 | /* ??? CMDLINEFLAGS ??? */ |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 958 | add_pending_object(cb->all_revs, o, ""); |
| 959 | } |
| 960 | else if (!cb->warned_bad_reflog) { |
Theodore Ts'o | 46efd2d | 2007-03-30 19:07:05 -0400 | [diff] [blame] | 961 | warning("reflog of '%s' references pruned commits", |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 962 | cb->name_for_errormsg); |
| 963 | cb->warned_bad_reflog = 1; |
| 964 | } |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 965 | } |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 966 | } |
| 967 | |
Johannes Schindelin | 883d60f | 2007-01-08 01:59:54 +0100 | [diff] [blame] | 968 | static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1, |
| 969 | const char *email, unsigned long timestamp, int tz, |
| 970 | const char *message, void *cb_data) |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 971 | { |
| 972 | handle_one_reflog_commit(osha1, cb_data); |
| 973 | handle_one_reflog_commit(nsha1, cb_data); |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 974 | return 0; |
| 975 | } |
| 976 | |
| 977 | static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
| 978 | { |
| 979 | struct all_refs_cb *cb = cb_data; |
Shawn O. Pearce | 71b03b4 | 2006-12-21 19:49:06 -0500 | [diff] [blame] | 980 | cb->warned_bad_reflog = 0; |
Junio C Hamano | 6304929 | 2006-12-18 17:25:28 -0800 | [diff] [blame] | 981 | cb->name_for_errormsg = path; |
| 982 | for_each_reflog_ent(path, handle_one_reflog_ent, cb_data); |
| 983 | return 0; |
| 984 | } |
| 985 | |
| 986 | static void handle_reflog(struct rev_info *revs, unsigned flags) |
| 987 | { |
| 988 | struct all_refs_cb cb; |
| 989 | cb.all_revs = revs; |
| 990 | cb.all_flags = flags; |
Junio C Hamano | 25b51e2 | 2007-02-12 23:06:54 -0800 | [diff] [blame] | 991 | for_each_reflog(handle_one_reflog, &cb); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 992 | } |
| 993 | |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 994 | static int add_parents_only(struct rev_info *revs, const char *arg_, int flags) |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 995 | { |
| 996 | unsigned char sha1[20]; |
| 997 | struct object *it; |
| 998 | struct commit *commit; |
| 999 | struct commit_list *parents; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1000 | const char *arg = arg_; |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1001 | |
| 1002 | if (*arg == '^') { |
| 1003 | flags ^= UNINTERESTING; |
| 1004 | arg++; |
| 1005 | } |
Junio C Hamano | cd74e47 | 2012-07-02 12:04:52 -0700 | [diff] [blame] | 1006 | if (get_sha1_committish(arg, sha1)) |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1007 | return 0; |
| 1008 | while (1) { |
| 1009 | it = get_reference(revs, arg, sha1, 0); |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 1010 | if (!it && revs->ignore_missing) |
| 1011 | return 0; |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 1012 | if (it->type != OBJ_TAG) |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1013 | break; |
Martin Koegler | 9684afd | 2008-02-18 21:48:01 +0100 | [diff] [blame] | 1014 | if (!((struct tag*)it)->tagged) |
| 1015 | return 0; |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 1016 | hashcpy(sha1, ((struct tag*)it)->tagged->sha1); |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1017 | } |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 1018 | if (it->type != OBJ_COMMIT) |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1019 | return 0; |
| 1020 | commit = (struct commit *)it; |
| 1021 | for (parents = commit->parents; parents; parents = parents->next) { |
| 1022 | it = &parents->item->object; |
| 1023 | it->flags |= flags; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1024 | add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags); |
Junio C Hamano | ea4a19e | 2006-04-30 00:54:29 -0700 | [diff] [blame] | 1025 | add_pending_object(revs, it, arg); |
| 1026 | } |
| 1027 | return 1; |
| 1028 | } |
| 1029 | |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 1030 | void init_revisions(struct rev_info *revs, const char *prefix) |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1031 | { |
| 1032 | memset(revs, 0, sizeof(*revs)); |
Junio C Hamano | 8e8f998 | 2006-04-14 22:19:38 -0700 | [diff] [blame] | 1033 | |
Junio C Hamano | 6b9c58f | 2006-04-15 23:46:36 -0700 | [diff] [blame] | 1034 | revs->abbrev = DEFAULT_ABBREV; |
Junio C Hamano | 8e8f998 | 2006-04-14 22:19:38 -0700 | [diff] [blame] | 1035 | revs->ignore_merges = 1; |
Linus Torvalds | 9202434 | 2006-06-11 10:57:35 -0700 | [diff] [blame] | 1036 | revs->simplify_history = 1; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 1037 | DIFF_OPT_SET(&revs->pruning, RECURSIVE); |
Junio C Hamano | 90b1994 | 2009-05-23 01:15:35 -0700 | [diff] [blame] | 1038 | DIFF_OPT_SET(&revs->pruning, QUICK); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1039 | revs->pruning.add_remove = file_add_remove; |
| 1040 | revs->pruning.change = file_change; |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1041 | revs->lifo = 1; |
| 1042 | revs->dense = 1; |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 1043 | revs->prefix = prefix; |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1044 | revs->max_age = -1; |
| 1045 | revs->min_age = -1; |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 1046 | revs->skip_count = -1; |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1047 | revs->max_count = -1; |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 1048 | revs->max_parents = -1; |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1049 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1050 | revs->commit_format = CMIT_FMT_DEFAULT; |
| 1051 | |
Junio C Hamano | 918d4e1 | 2012-10-09 16:40:03 -0700 | [diff] [blame] | 1052 | init_grep_defaults(); |
| 1053 | grep_init(&revs->grep_filter, prefix); |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1054 | revs->grep_filter.status_only = 1; |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1055 | revs->grep_filter.regflags = REG_NEWLINE; |
| 1056 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1057 | diff_setup(&revs->diffopt); |
Junio C Hamano | c0cb4a0 | 2008-02-13 00:34:39 -0800 | [diff] [blame] | 1058 | if (prefix && !revs->diffopt.prefix) { |
Junio C Hamano | cd676a5 | 2008-02-12 14:26:02 -0800 | [diff] [blame] | 1059 | revs->diffopt.prefix = prefix; |
| 1060 | revs->diffopt.prefix_length = strlen(prefix); |
| 1061 | } |
Jeff King | 3a03cf6 | 2011-03-29 16:57:27 -0400 | [diff] [blame] | 1062 | |
| 1063 | revs->notes_opt.use_default_notes = -1; |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1064 | } |
| 1065 | |
Rene Scharfe | 0d2c9d6 | 2006-07-02 01:29:37 +0200 | [diff] [blame] | 1066 | static void add_pending_commit_list(struct rev_info *revs, |
| 1067 | struct commit_list *commit_list, |
| 1068 | unsigned int flags) |
| 1069 | { |
| 1070 | while (commit_list) { |
| 1071 | struct object *object = &commit_list->item->object; |
| 1072 | object->flags |= flags; |
| 1073 | add_pending_object(revs, object, sha1_to_hex(object->sha1)); |
| 1074 | commit_list = commit_list->next; |
| 1075 | } |
| 1076 | } |
| 1077 | |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1078 | static void prepare_show_merge(struct rev_info *revs) |
| 1079 | { |
| 1080 | struct commit_list *bases; |
| 1081 | struct commit *head, *other; |
| 1082 | unsigned char sha1[20]; |
| 1083 | const char **prune = NULL; |
| 1084 | int i, prune_num = 1; /* counting terminating NULL */ |
| 1085 | |
Nguyễn Thái Ngọc Duy | baf18fc | 2011-09-17 21:57:45 +1000 | [diff] [blame] | 1086 | if (get_sha1("HEAD", sha1)) |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1087 | die("--merge without HEAD?"); |
Nguyễn Thái Ngọc Duy | baf18fc | 2011-09-17 21:57:45 +1000 | [diff] [blame] | 1088 | head = lookup_commit_or_die(sha1, "HEAD"); |
| 1089 | if (get_sha1("MERGE_HEAD", sha1)) |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1090 | die("--merge without MERGE_HEAD?"); |
Nguyễn Thái Ngọc Duy | baf18fc | 2011-09-17 21:57:45 +1000 | [diff] [blame] | 1091 | other = lookup_commit_or_die(sha1, "MERGE_HEAD"); |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1092 | add_pending_object(revs, &head->object, "HEAD"); |
| 1093 | add_pending_object(revs, &other->object, "MERGE_HEAD"); |
| 1094 | bases = get_merge_bases(head, other, 1); |
Junio C Hamano | e82447b | 2008-02-26 23:18:38 -0800 | [diff] [blame] | 1095 | add_pending_commit_list(revs, bases, UNINTERESTING); |
| 1096 | free_commit_list(bases); |
| 1097 | head->object.flags |= SYMMETRIC_LEFT; |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1098 | |
| 1099 | if (!active_nr) |
| 1100 | read_cache(); |
| 1101 | for (i = 0; i < active_nr; i++) { |
| 1102 | struct cache_entry *ce = active_cache[i]; |
| 1103 | if (!ce_stage(ce)) |
| 1104 | continue; |
Nguyễn Thái Ngọc Duy | eb9cb55 | 2010-12-17 19:43:07 +0700 | [diff] [blame] | 1105 | if (ce_path_match(ce, &revs->prune_data)) { |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1106 | prune_num++; |
| 1107 | prune = xrealloc(prune, sizeof(*prune) * prune_num); |
| 1108 | prune[prune_num-2] = ce->name; |
| 1109 | prune[prune_num-1] = NULL; |
| 1110 | } |
| 1111 | while ((i+1 < active_nr) && |
| 1112 | ce_same_name(ce, active_cache[i+1])) |
| 1113 | i++; |
| 1114 | } |
Nguyễn Thái Ngọc Duy | afe069d | 2010-12-17 19:43:06 +0700 | [diff] [blame] | 1115 | free_pathspec(&revs->prune_data); |
| 1116 | init_pathspec(&revs->prune_data, prune); |
Junio C Hamano | e82447b | 2008-02-26 23:18:38 -0800 | [diff] [blame] | 1117 | revs->limited = 1; |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1118 | } |
| 1119 | |
Junio C Hamano | 8e676e8 | 2012-07-02 12:33:52 -0700 | [diff] [blame] | 1120 | int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt) |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1121 | { |
Junio C Hamano | 249c8f4 | 2012-07-02 12:56:44 -0700 | [diff] [blame] | 1122 | struct object_context oc; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1123 | char *dotdot; |
| 1124 | struct object *object; |
| 1125 | unsigned char sha1[20]; |
| 1126 | int local_flags; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1127 | const char *arg = arg_; |
Junio C Hamano | 8e676e8 | 2012-07-02 12:33:52 -0700 | [diff] [blame] | 1128 | int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME; |
Junio C Hamano | d5f6b1d | 2012-07-02 12:43:05 -0700 | [diff] [blame] | 1129 | unsigned get_sha1_flags = 0; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | dotdot = strstr(arg, ".."); |
| 1132 | if (dotdot) { |
| 1133 | unsigned char from_sha1[20]; |
| 1134 | const char *next = dotdot + 2; |
| 1135 | const char *this = arg; |
| 1136 | int symmetric = *next == '.'; |
| 1137 | unsigned int flags_exclude = flags ^ UNINTERESTING; |
Junio C Hamano | 003c84f | 2011-05-02 13:39:16 -0700 | [diff] [blame] | 1138 | static const char head_by_default[] = "HEAD"; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1139 | unsigned int a_flags; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1140 | |
| 1141 | *dotdot = 0; |
| 1142 | next += symmetric; |
| 1143 | |
| 1144 | if (!*next) |
Junio C Hamano | 003c84f | 2011-05-02 13:39:16 -0700 | [diff] [blame] | 1145 | next = head_by_default; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1146 | if (dotdot == arg) |
Junio C Hamano | 003c84f | 2011-05-02 13:39:16 -0700 | [diff] [blame] | 1147 | this = head_by_default; |
| 1148 | if (this == head_by_default && next == head_by_default && |
| 1149 | !symmetric) { |
| 1150 | /* |
| 1151 | * Just ".."? That is not a range but the |
| 1152 | * pathspec for the parent directory. |
| 1153 | */ |
| 1154 | if (!cant_be_filename) { |
| 1155 | *dotdot = '.'; |
| 1156 | return -1; |
| 1157 | } |
| 1158 | } |
Junio C Hamano | cd74e47 | 2012-07-02 12:04:52 -0700 | [diff] [blame] | 1159 | if (!get_sha1_committish(this, from_sha1) && |
| 1160 | !get_sha1_committish(next, sha1)) { |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1161 | struct commit *a, *b; |
| 1162 | struct commit_list *exclude; |
| 1163 | |
| 1164 | a = lookup_commit_reference(from_sha1); |
| 1165 | b = lookup_commit_reference(sha1); |
| 1166 | if (!a || !b) { |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 1167 | if (revs->ignore_missing) |
| 1168 | return 0; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1169 | die(symmetric ? |
| 1170 | "Invalid symmetric difference expression %s...%s" : |
| 1171 | "Invalid revision range %s..%s", |
| 1172 | arg, next); |
| 1173 | } |
| 1174 | |
| 1175 | if (!cant_be_filename) { |
| 1176 | *dotdot = '.'; |
| 1177 | verify_non_filename(revs->prefix, arg); |
| 1178 | } |
| 1179 | |
| 1180 | if (symmetric) { |
| 1181 | exclude = get_merge_bases(a, b, 1); |
| 1182 | add_pending_commit_list(revs, exclude, |
| 1183 | flags_exclude); |
| 1184 | free_commit_list(exclude); |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1185 | a_flags = flags | SYMMETRIC_LEFT; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1186 | } else |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1187 | a_flags = flags_exclude; |
| 1188 | a->object.flags |= a_flags; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1189 | b->object.flags |= flags; |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1190 | add_rev_cmdline(revs, &a->object, this, |
| 1191 | REV_CMD_LEFT, a_flags); |
| 1192 | add_rev_cmdline(revs, &b->object, next, |
| 1193 | REV_CMD_RIGHT, flags); |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1194 | add_pending_object(revs, &a->object, this); |
| 1195 | add_pending_object(revs, &b->object, next); |
| 1196 | return 0; |
| 1197 | } |
| 1198 | *dotdot = '.'; |
| 1199 | } |
| 1200 | dotdot = strstr(arg, "^@"); |
| 1201 | if (dotdot && !dotdot[2]) { |
| 1202 | *dotdot = 0; |
| 1203 | if (add_parents_only(revs, arg, flags)) |
| 1204 | return 0; |
| 1205 | *dotdot = '^'; |
| 1206 | } |
Junio C Hamano | 62476c8 | 2006-10-31 14:22:34 -0800 | [diff] [blame] | 1207 | dotdot = strstr(arg, "^!"); |
| 1208 | if (dotdot && !dotdot[2]) { |
| 1209 | *dotdot = 0; |
| 1210 | if (!add_parents_only(revs, arg, flags ^ UNINTERESTING)) |
| 1211 | *dotdot = '^'; |
| 1212 | } |
| 1213 | |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1214 | local_flags = 0; |
| 1215 | if (*arg == '^') { |
| 1216 | local_flags = UNINTERESTING; |
| 1217 | arg++; |
| 1218 | } |
Junio C Hamano | d5f6b1d | 2012-07-02 12:43:05 -0700 | [diff] [blame] | 1219 | |
| 1220 | if (revarg_opt & REVARG_COMMITTISH) |
| 1221 | get_sha1_flags = GET_SHA1_COMMITTISH; |
| 1222 | |
| 1223 | if (get_sha1_with_context(arg, get_sha1_flags, sha1, &oc)) |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 1224 | return revs->ignore_missing ? 0 : -1; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1225 | if (!cant_be_filename) |
| 1226 | verify_non_filename(revs->prefix, arg); |
| 1227 | object = get_reference(revs, arg, sha1, flags ^ local_flags); |
Junio C Hamano | 281eee4 | 2011-08-25 17:35:39 -0700 | [diff] [blame] | 1228 | add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags); |
Junio C Hamano | 249c8f4 | 2012-07-02 12:56:44 -0700 | [diff] [blame] | 1229 | add_pending_object_with_mode(revs, object, arg, oc.mode); |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1230 | return 0; |
| 1231 | } |
| 1232 | |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1233 | struct cmdline_pathspec { |
| 1234 | int alloc; |
| 1235 | int nr; |
| 1236 | const char **path; |
| 1237 | }; |
| 1238 | |
| 1239 | static void append_prune_data(struct cmdline_pathspec *prune, const char **av) |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1240 | { |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1241 | while (*av) { |
| 1242 | ALLOC_GROW(prune->path, prune->nr+1, prune->alloc); |
| 1243 | prune->path[prune->nr++] = *(av++); |
| 1244 | } |
| 1245 | } |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1246 | |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1247 | static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb, |
| 1248 | struct cmdline_pathspec *prune) |
| 1249 | { |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1250 | while (strbuf_getwholeline(sb, stdin, '\n') != EOF) { |
| 1251 | int len = sb->len; |
| 1252 | if (len && sb->buf[len - 1] == '\n') |
| 1253 | sb->buf[--len] = '\0'; |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1254 | ALLOC_GROW(prune->path, prune->nr+1, prune->alloc); |
| 1255 | prune->path[prune->nr++] = xstrdup(sb->buf); |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1256 | } |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1257 | } |
| 1258 | |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1259 | static void read_revisions_from_stdin(struct rev_info *revs, |
| 1260 | struct cmdline_pathspec *prune) |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1261 | { |
Junio C Hamano | 63d564b | 2009-11-20 02:00:40 -0800 | [diff] [blame] | 1262 | struct strbuf sb; |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1263 | int seen_dashdash = 0; |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1264 | |
Junio C Hamano | 63d564b | 2009-11-20 02:00:40 -0800 | [diff] [blame] | 1265 | strbuf_init(&sb, 1000); |
| 1266 | while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) { |
| 1267 | int len = sb.len; |
| 1268 | if (len && sb.buf[len - 1] == '\n') |
| 1269 | sb.buf[--len] = '\0'; |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1270 | if (!len) |
| 1271 | break; |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1272 | if (sb.buf[0] == '-') { |
| 1273 | if (len == 2 && sb.buf[1] == '-') { |
| 1274 | seen_dashdash = 1; |
| 1275 | break; |
| 1276 | } |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1277 | die("options not supported in --stdin mode"); |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1278 | } |
Junio C Hamano | 8e676e8 | 2012-07-02 12:33:52 -0700 | [diff] [blame] | 1279 | if (handle_revision_arg(sb.buf, revs, 0, REVARG_CANNOT_BE_FILENAME)) |
Junio C Hamano | 63d564b | 2009-11-20 02:00:40 -0800 | [diff] [blame] | 1280 | die("bad revision '%s'", sb.buf); |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1281 | } |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1282 | if (seen_dashdash) |
| 1283 | read_pathspec_from_stdin(revs, &sb, prune); |
Junio C Hamano | 63d564b | 2009-11-20 02:00:40 -0800 | [diff] [blame] | 1284 | strbuf_release(&sb); |
Adam Brewster | 1fc561d | 2008-07-05 17:26:39 -0400 | [diff] [blame] | 1285 | } |
| 1286 | |
Junio C Hamano | 2d10c55 | 2006-09-20 13:21:56 -0700 | [diff] [blame] | 1287 | static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what) |
| 1288 | { |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1289 | append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what); |
Junio C Hamano | 2d10c55 | 2006-09-20 13:21:56 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
Junio C Hamano | a4d7d2c | 2008-09-04 22:15:02 -0700 | [diff] [blame] | 1292 | static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern) |
Junio C Hamano | bd95fcd | 2006-09-17 17:23:20 -0700 | [diff] [blame] | 1293 | { |
Junio C Hamano | a4d7d2c | 2008-09-04 22:15:02 -0700 | [diff] [blame] | 1294 | append_header_grep_pattern(&revs->grep_filter, field, pattern); |
Junio C Hamano | bd95fcd | 2006-09-17 17:23:20 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | static void add_message_grep(struct rev_info *revs, const char *pattern) |
| 1298 | { |
Junio C Hamano | 2d10c55 | 2006-09-20 13:21:56 -0700 | [diff] [blame] | 1299 | add_grep(revs, pattern, GREP_PATTERN_BODY); |
Junio C Hamano | bd95fcd | 2006-09-17 17:23:20 -0700 | [diff] [blame] | 1300 | } |
| 1301 | |
Pierre Habouzit | 6b61ec0 | 2008-07-09 23:38:34 +0200 | [diff] [blame] | 1302 | static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv, |
| 1303 | int *unkc, const char **unkv) |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1304 | { |
| 1305 | const char *arg = argv[0]; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1306 | const char *optarg; |
| 1307 | int argcount; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1308 | |
| 1309 | /* pseudo revision arguments */ |
| 1310 | if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") || |
| 1311 | !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") || |
| 1312 | !strcmp(arg, "--reflog") || !strcmp(arg, "--not") || |
Linus Torvalds | ad3f9a7 | 2009-10-27 11:28:07 -0700 | [diff] [blame] | 1313 | !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") || |
Jonathan Nieder | 0fc63ec | 2011-04-21 05:48:24 -0500 | [diff] [blame] | 1314 | !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") || |
| 1315 | !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") || |
Martin von Zweigbergk | ca92e59 | 2012-08-28 23:15:54 -0700 | [diff] [blame] | 1316 | !prefixcmp(arg, "--remotes=") || !prefixcmp(arg, "--no-walk=")) |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1317 | { |
| 1318 | unkv[(*unkc)++] = arg; |
Pierre Habouzit | 0fe8c13 | 2008-07-31 12:22:23 +0200 | [diff] [blame] | 1319 | return 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1320 | } |
| 1321 | |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1322 | if ((argcount = parse_long_opt("max-count", argv, &optarg))) { |
| 1323 | revs->max_count = atoi(optarg); |
Jonathan Nieder | 5853cae | 2010-06-01 03:35:49 -0500 | [diff] [blame] | 1324 | revs->no_walk = 0; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1325 | return argcount; |
| 1326 | } else if ((argcount = parse_long_opt("skip", argv, &optarg))) { |
| 1327 | revs->skip_count = atoi(optarg); |
| 1328 | return argcount; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1329 | } else if ((*arg == '-') && isdigit(arg[1])) { |
| 1330 | /* accept -<digit>, like traditional "head" */ |
| 1331 | revs->max_count = atoi(arg + 1); |
Jonathan Nieder | 5853cae | 2010-06-01 03:35:49 -0500 | [diff] [blame] | 1332 | revs->no_walk = 0; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1333 | } else if (!strcmp(arg, "-n")) { |
| 1334 | if (argc <= 1) |
| 1335 | return error("-n requires an argument"); |
| 1336 | revs->max_count = atoi(argv[1]); |
Jonathan Nieder | 5853cae | 2010-06-01 03:35:49 -0500 | [diff] [blame] | 1337 | revs->no_walk = 0; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1338 | return 2; |
| 1339 | } else if (!prefixcmp(arg, "-n")) { |
| 1340 | revs->max_count = atoi(arg + 2); |
Jonathan Nieder | 5853cae | 2010-06-01 03:35:49 -0500 | [diff] [blame] | 1341 | revs->no_walk = 0; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1342 | } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) { |
| 1343 | revs->max_age = atoi(optarg); |
| 1344 | return argcount; |
| 1345 | } else if ((argcount = parse_long_opt("since", argv, &optarg))) { |
| 1346 | revs->max_age = approxidate(optarg); |
| 1347 | return argcount; |
| 1348 | } else if ((argcount = parse_long_opt("after", argv, &optarg))) { |
| 1349 | revs->max_age = approxidate(optarg); |
| 1350 | return argcount; |
| 1351 | } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) { |
| 1352 | revs->min_age = atoi(optarg); |
| 1353 | return argcount; |
| 1354 | } else if ((argcount = parse_long_opt("before", argv, &optarg))) { |
| 1355 | revs->min_age = approxidate(optarg); |
| 1356 | return argcount; |
| 1357 | } else if ((argcount = parse_long_opt("until", argv, &optarg))) { |
| 1358 | revs->min_age = approxidate(optarg); |
| 1359 | return argcount; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1360 | } else if (!strcmp(arg, "--first-parent")) { |
| 1361 | revs->first_parent_only = 1; |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 1362 | } else if (!strcmp(arg, "--ancestry-path")) { |
| 1363 | revs->ancestry_path = 1; |
Johan Herland | cb7529e | 2010-06-04 01:17:37 +0200 | [diff] [blame] | 1364 | revs->simplify_history = 0; |
Junio C Hamano | ebdc94f | 2010-04-20 13:48:39 -0700 | [diff] [blame] | 1365 | revs->limited = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1366 | } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) { |
| 1367 | init_reflog_walk(&revs->reflog_info); |
| 1368 | } else if (!strcmp(arg, "--default")) { |
| 1369 | if (argc <= 1) |
| 1370 | return error("bad --default argument"); |
| 1371 | revs->def = argv[1]; |
| 1372 | return 2; |
| 1373 | } else if (!strcmp(arg, "--merge")) { |
| 1374 | revs->show_merge = 1; |
| 1375 | } else if (!strcmp(arg, "--topo-order")) { |
| 1376 | revs->lifo = 1; |
| 1377 | revs->topo_order = 1; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1378 | } else if (!strcmp(arg, "--simplify-merges")) { |
| 1379 | revs->simplify_merges = 1; |
Junio C Hamano | a52f007 | 2012-06-08 14:47:08 -0700 | [diff] [blame] | 1380 | revs->topo_order = 1; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1381 | revs->rewrite_parents = 1; |
| 1382 | revs->simplify_history = 0; |
| 1383 | revs->limited = 1; |
Linus Torvalds | 78892e3 | 2008-11-03 11:25:46 -0800 | [diff] [blame] | 1384 | } else if (!strcmp(arg, "--simplify-by-decoration")) { |
| 1385 | revs->simplify_merges = 1; |
Junio C Hamano | a52f007 | 2012-06-08 14:47:08 -0700 | [diff] [blame] | 1386 | revs->topo_order = 1; |
Linus Torvalds | 78892e3 | 2008-11-03 11:25:46 -0800 | [diff] [blame] | 1387 | revs->rewrite_parents = 1; |
| 1388 | revs->simplify_history = 0; |
| 1389 | revs->simplify_by_decoration = 1; |
| 1390 | revs->limited = 1; |
| 1391 | revs->prune = 1; |
Lars Hjemli | 33e7018 | 2009-08-15 16:23:12 +0200 | [diff] [blame] | 1392 | load_ref_decorations(DECORATE_SHORT_REFS); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1393 | } else if (!strcmp(arg, "--date-order")) { |
| 1394 | revs->lifo = 0; |
| 1395 | revs->topo_order = 1; |
| 1396 | } else if (!prefixcmp(arg, "--early-output")) { |
| 1397 | int count = 100; |
| 1398 | switch (arg[14]) { |
| 1399 | case '=': |
| 1400 | count = atoi(arg+15); |
| 1401 | /* Fallthrough */ |
| 1402 | case 0: |
| 1403 | revs->topo_order = 1; |
| 1404 | revs->early_output = count; |
| 1405 | } |
| 1406 | } else if (!strcmp(arg, "--parents")) { |
| 1407 | revs->rewrite_parents = 1; |
| 1408 | revs->print_parents = 1; |
| 1409 | } else if (!strcmp(arg, "--dense")) { |
| 1410 | revs->dense = 1; |
| 1411 | } else if (!strcmp(arg, "--sparse")) { |
| 1412 | revs->dense = 0; |
| 1413 | } else if (!strcmp(arg, "--show-all")) { |
| 1414 | revs->show_all = 1; |
| 1415 | } else if (!strcmp(arg, "--remove-empty")) { |
| 1416 | revs->remove_empty_trees = 1; |
Linus Torvalds | b8e8db2 | 2009-06-29 10:28:25 -0700 | [diff] [blame] | 1417 | } else if (!strcmp(arg, "--merges")) { |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 1418 | revs->min_parents = 2; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1419 | } else if (!strcmp(arg, "--no-merges")) { |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 1420 | revs->max_parents = 1; |
| 1421 | } else if (!prefixcmp(arg, "--min-parents=")) { |
| 1422 | revs->min_parents = atoi(arg+14); |
| 1423 | } else if (!prefixcmp(arg, "--no-min-parents")) { |
| 1424 | revs->min_parents = 0; |
| 1425 | } else if (!prefixcmp(arg, "--max-parents=")) { |
| 1426 | revs->max_parents = atoi(arg+14); |
| 1427 | } else if (!prefixcmp(arg, "--no-max-parents")) { |
| 1428 | revs->max_parents = -1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1429 | } else if (!strcmp(arg, "--boundary")) { |
| 1430 | revs->boundary = 1; |
| 1431 | } else if (!strcmp(arg, "--left-right")) { |
| 1432 | revs->left_right = 1; |
Michael J Gruber | 60adf7d | 2011-02-21 17:09:11 +0100 | [diff] [blame] | 1433 | } else if (!strcmp(arg, "--left-only")) { |
Junio C Hamano | 24852d9 | 2011-02-21 16:58:37 -0800 | [diff] [blame] | 1434 | if (revs->right_only) |
Michael J Gruber | 94f605e | 2011-03-07 13:31:42 +0100 | [diff] [blame] | 1435 | die("--left-only is incompatible with --right-only" |
| 1436 | " or --cherry"); |
Michael J Gruber | 60adf7d | 2011-02-21 17:09:11 +0100 | [diff] [blame] | 1437 | revs->left_only = 1; |
| 1438 | } else if (!strcmp(arg, "--right-only")) { |
Junio C Hamano | 24852d9 | 2011-02-21 16:58:37 -0800 | [diff] [blame] | 1439 | if (revs->left_only) |
| 1440 | die("--right-only is incompatible with --left-only"); |
Michael J Gruber | 60adf7d | 2011-02-21 17:09:11 +0100 | [diff] [blame] | 1441 | revs->right_only = 1; |
Michael J Gruber | 94f605e | 2011-03-07 13:31:42 +0100 | [diff] [blame] | 1442 | } else if (!strcmp(arg, "--cherry")) { |
| 1443 | if (revs->left_only) |
| 1444 | die("--cherry is incompatible with --left-only"); |
| 1445 | revs->cherry_mark = 1; |
| 1446 | revs->right_only = 1; |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 1447 | revs->max_parents = 1; |
Michael J Gruber | 94f605e | 2011-03-07 13:31:42 +0100 | [diff] [blame] | 1448 | revs->limited = 1; |
Thomas Rast | f69c501 | 2010-06-10 13:47:23 +0200 | [diff] [blame] | 1449 | } else if (!strcmp(arg, "--count")) { |
| 1450 | revs->count = 1; |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 1451 | } else if (!strcmp(arg, "--cherry-mark")) { |
| 1452 | if (revs->cherry_pick) |
| 1453 | die("--cherry-mark is incompatible with --cherry-pick"); |
| 1454 | revs->cherry_mark = 1; |
| 1455 | revs->limited = 1; /* needs limit_list() */ |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1456 | } else if (!strcmp(arg, "--cherry-pick")) { |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 1457 | if (revs->cherry_mark) |
| 1458 | die("--cherry-pick is incompatible with --cherry-mark"); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1459 | revs->cherry_pick = 1; |
| 1460 | revs->limited = 1; |
| 1461 | } else if (!strcmp(arg, "--objects")) { |
| 1462 | revs->tag_objects = 1; |
| 1463 | revs->tree_objects = 1; |
| 1464 | revs->blob_objects = 1; |
| 1465 | } else if (!strcmp(arg, "--objects-edge")) { |
| 1466 | revs->tag_objects = 1; |
| 1467 | revs->tree_objects = 1; |
| 1468 | revs->blob_objects = 1; |
| 1469 | revs->edge_hint = 1; |
Junio C Hamano | 5a48d24 | 2011-09-01 15:43:34 -0700 | [diff] [blame] | 1470 | } else if (!strcmp(arg, "--verify-objects")) { |
| 1471 | revs->tag_objects = 1; |
| 1472 | revs->tree_objects = 1; |
| 1473 | revs->blob_objects = 1; |
| 1474 | revs->verify_objects = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1475 | } else if (!strcmp(arg, "--unpacked")) { |
| 1476 | revs->unpacked = 1; |
Junio C Hamano | 03a9683 | 2009-02-28 00:00:21 -0800 | [diff] [blame] | 1477 | } else if (!prefixcmp(arg, "--unpacked=")) { |
| 1478 | die("--unpacked=<packfile> no longer supported."); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1479 | } else if (!strcmp(arg, "-r")) { |
| 1480 | revs->diff = 1; |
| 1481 | DIFF_OPT_SET(&revs->diffopt, RECURSIVE); |
| 1482 | } else if (!strcmp(arg, "-t")) { |
| 1483 | revs->diff = 1; |
| 1484 | DIFF_OPT_SET(&revs->diffopt, RECURSIVE); |
| 1485 | DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE); |
| 1486 | } else if (!strcmp(arg, "-m")) { |
| 1487 | revs->ignore_merges = 0; |
| 1488 | } else if (!strcmp(arg, "-c")) { |
| 1489 | revs->diff = 1; |
| 1490 | revs->dense_combined_merges = 0; |
| 1491 | revs->combine_merges = 1; |
| 1492 | } else if (!strcmp(arg, "--cc")) { |
| 1493 | revs->diff = 1; |
| 1494 | revs->dense_combined_merges = 1; |
| 1495 | revs->combine_merges = 1; |
| 1496 | } else if (!strcmp(arg, "-v")) { |
| 1497 | revs->verbose_header = 1; |
| 1498 | } else if (!strcmp(arg, "--pretty")) { |
| 1499 | revs->verbose_header = 1; |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 1500 | revs->pretty_given = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1501 | get_commit_format(arg+8, revs); |
Nanako Shiraishi | 3a4c1a5 | 2009-02-24 18:59:14 +0900 | [diff] [blame] | 1502 | } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) { |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1503 | /* |
| 1504 | * Detached form ("--pretty X" as opposed to "--pretty=X") |
| 1505 | * not allowed, since the argument is optional. |
| 1506 | */ |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1507 | revs->verbose_header = 1; |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 1508 | revs->pretty_given = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1509 | get_commit_format(arg+9, revs); |
Jeff King | 7249e91 | 2011-03-29 16:57:47 -0400 | [diff] [blame] | 1510 | } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) { |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 1511 | revs->show_notes = 1; |
| 1512 | revs->show_notes_given = 1; |
Jeff King | 3a03cf6 | 2011-03-29 16:57:27 -0400 | [diff] [blame] | 1513 | revs->notes_opt.use_default_notes = 1; |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 1514 | } else if (!strcmp(arg, "--show-signature")) { |
| 1515 | revs->show_signature = 1; |
Jeff King | 7249e91 | 2011-03-29 16:57:47 -0400 | [diff] [blame] | 1516 | } else if (!prefixcmp(arg, "--show-notes=") || |
| 1517 | !prefixcmp(arg, "--notes=")) { |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 1518 | struct strbuf buf = STRBUF_INIT; |
| 1519 | revs->show_notes = 1; |
| 1520 | revs->show_notes_given = 1; |
Jeff King | 7249e91 | 2011-03-29 16:57:47 -0400 | [diff] [blame] | 1521 | if (!prefixcmp(arg, "--show-notes")) { |
| 1522 | if (revs->notes_opt.use_default_notes < 0) |
| 1523 | revs->notes_opt.use_default_notes = 1; |
| 1524 | strbuf_addstr(&buf, arg+13); |
| 1525 | } |
| 1526 | else |
| 1527 | strbuf_addstr(&buf, arg+8); |
Jeff King | c063f0a | 2011-03-29 16:56:04 -0400 | [diff] [blame] | 1528 | expand_notes_ref(&buf); |
Jeff King | 304cc11 | 2011-03-29 16:56:53 -0400 | [diff] [blame] | 1529 | string_list_append(&revs->notes_opt.extra_notes_refs, |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 1530 | strbuf_detach(&buf, NULL)); |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 1531 | } else if (!strcmp(arg, "--no-notes")) { |
| 1532 | revs->show_notes = 0; |
| 1533 | revs->show_notes_given = 1; |
Jeff King | 92e0d42 | 2011-03-29 16:59:42 -0400 | [diff] [blame] | 1534 | revs->notes_opt.use_default_notes = -1; |
| 1535 | /* we have been strdup'ing ourselves, so trick |
| 1536 | * string_list into free()ing strings */ |
| 1537 | revs->notes_opt.extra_notes_refs.strdup_strings = 1; |
| 1538 | string_list_clear(&revs->notes_opt.extra_notes_refs, 0); |
| 1539 | revs->notes_opt.extra_notes_refs.strdup_strings = 0; |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 1540 | } else if (!strcmp(arg, "--standard-notes")) { |
| 1541 | revs->show_notes_given = 1; |
Jeff King | 3a03cf6 | 2011-03-29 16:57:27 -0400 | [diff] [blame] | 1542 | revs->notes_opt.use_default_notes = 1; |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 1543 | } else if (!strcmp(arg, "--no-standard-notes")) { |
Jeff King | 3a03cf6 | 2011-03-29 16:57:27 -0400 | [diff] [blame] | 1544 | revs->notes_opt.use_default_notes = 0; |
Nanako Shiraishi | de84acc | 2009-02-24 18:59:16 +0900 | [diff] [blame] | 1545 | } else if (!strcmp(arg, "--oneline")) { |
| 1546 | revs->verbose_header = 1; |
| 1547 | get_commit_format("oneline", revs); |
Junio C Hamano | 7dccadf | 2010-01-21 14:57:41 -0800 | [diff] [blame] | 1548 | revs->pretty_given = 1; |
Nanako Shiraishi | de84acc | 2009-02-24 18:59:16 +0900 | [diff] [blame] | 1549 | revs->abbrev_commit = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1550 | } else if (!strcmp(arg, "--graph")) { |
| 1551 | revs->topo_order = 1; |
| 1552 | revs->rewrite_parents = 1; |
| 1553 | revs->graph = graph_init(revs); |
| 1554 | } else if (!strcmp(arg, "--root")) { |
| 1555 | revs->show_root_diff = 1; |
| 1556 | } else if (!strcmp(arg, "--no-commit-id")) { |
| 1557 | revs->no_commit_id = 1; |
| 1558 | } else if (!strcmp(arg, "--always")) { |
| 1559 | revs->always_show_header = 1; |
| 1560 | } else if (!strcmp(arg, "--no-abbrev")) { |
| 1561 | revs->abbrev = 0; |
| 1562 | } else if (!strcmp(arg, "--abbrev")) { |
| 1563 | revs->abbrev = DEFAULT_ABBREV; |
| 1564 | } else if (!prefixcmp(arg, "--abbrev=")) { |
| 1565 | revs->abbrev = strtoul(arg + 9, NULL, 10); |
| 1566 | if (revs->abbrev < MINIMUM_ABBREV) |
| 1567 | revs->abbrev = MINIMUM_ABBREV; |
| 1568 | else if (revs->abbrev > 40) |
| 1569 | revs->abbrev = 40; |
| 1570 | } else if (!strcmp(arg, "--abbrev-commit")) { |
| 1571 | revs->abbrev_commit = 1; |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 1572 | revs->abbrev_commit_given = 1; |
| 1573 | } else if (!strcmp(arg, "--no-abbrev-commit")) { |
| 1574 | revs->abbrev_commit = 0; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1575 | } else if (!strcmp(arg, "--full-diff")) { |
| 1576 | revs->diff = 1; |
| 1577 | revs->full_diff = 1; |
| 1578 | } else if (!strcmp(arg, "--full-history")) { |
| 1579 | revs->simplify_history = 0; |
| 1580 | } else if (!strcmp(arg, "--relative-date")) { |
| 1581 | revs->date_mode = DATE_RELATIVE; |
Jeff King | f4ea32f | 2009-09-24 04:28:15 -0400 | [diff] [blame] | 1582 | revs->date_mode_explicit = 1; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1583 | } else if ((argcount = parse_long_opt("date", argv, &optarg))) { |
| 1584 | revs->date_mode = parse_date_format(optarg); |
Jeff King | f4ea32f | 2009-09-24 04:28:15 -0400 | [diff] [blame] | 1585 | revs->date_mode_explicit = 1; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1586 | return argcount; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1587 | } else if (!strcmp(arg, "--log-size")) { |
| 1588 | revs->show_log_size = 1; |
| 1589 | } |
| 1590 | /* |
| 1591 | * Grepping the commit log |
| 1592 | */ |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1593 | else if ((argcount = parse_long_opt("author", argv, &optarg))) { |
| 1594 | add_header_grep(revs, GREP_HEADER_AUTHOR, optarg); |
| 1595 | return argcount; |
| 1596 | } else if ((argcount = parse_long_opt("committer", argv, &optarg))) { |
| 1597 | add_header_grep(revs, GREP_HEADER_COMMITTER, optarg); |
| 1598 | return argcount; |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 1599 | } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) { |
| 1600 | add_header_grep(revs, GREP_HEADER_REFLOG, optarg); |
| 1601 | return argcount; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1602 | } else if ((argcount = parse_long_opt("grep", argv, &optarg))) { |
| 1603 | add_message_grep(revs, optarg); |
| 1604 | return argcount; |
Junio C Hamano | 17bf35a | 2012-09-13 14:21:44 -0700 | [diff] [blame] | 1605 | } else if (!strcmp(arg, "--grep-debug")) { |
| 1606 | revs->grep_filter.debug = 1; |
Junio C Hamano | 727b6fc | 2012-10-03 15:01:34 -0700 | [diff] [blame] | 1607 | } else if (!strcmp(arg, "--basic-regexp")) { |
| 1608 | grep_set_pattern_type_option(GREP_PATTERN_TYPE_BRE, &revs->grep_filter); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1609 | } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) { |
Junio C Hamano | 34a4ae5 | 2012-10-03 14:50:51 -0700 | [diff] [blame] | 1610 | grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, &revs->grep_filter); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1611 | } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) { |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1612 | revs->grep_filter.regflags |= REG_ICASE; |
Junio C Hamano | accccde | 2012-02-21 01:02:46 -0800 | [diff] [blame] | 1613 | DIFF_OPT_SET(&revs->diffopt, PICKAXE_IGNORE_CASE); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1614 | } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) { |
Junio C Hamano | 34a4ae5 | 2012-10-03 14:50:51 -0700 | [diff] [blame] | 1615 | grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED, &revs->grep_filter); |
Junio C Hamano | 727b6fc | 2012-10-03 15:01:34 -0700 | [diff] [blame] | 1616 | } else if (!strcmp(arg, "--perl-regexp")) { |
| 1617 | grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE, &revs->grep_filter); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1618 | } else if (!strcmp(arg, "--all-match")) { |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1619 | revs->grep_filter.all_match = 1; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1620 | } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) { |
| 1621 | if (strcmp(optarg, "none")) |
| 1622 | git_log_output_encoding = xstrdup(optarg); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1623 | else |
| 1624 | git_log_output_encoding = ""; |
Matthieu Moy | 7d7b86f | 2010-08-05 10:22:55 +0200 | [diff] [blame] | 1625 | return argcount; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1626 | } else if (!strcmp(arg, "--reverse")) { |
| 1627 | revs->reverse ^= 1; |
| 1628 | } else if (!strcmp(arg, "--children")) { |
| 1629 | revs->children.name = "children"; |
| 1630 | revs->limited = 1; |
Junio C Hamano | cc243c3 | 2011-05-18 18:08:09 -0700 | [diff] [blame] | 1631 | } else if (!strcmp(arg, "--ignore-missing")) { |
| 1632 | revs->ignore_missing = 1; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1633 | } else { |
| 1634 | int opts = diff_opt_parse(&revs->diffopt, argv, argc); |
| 1635 | if (!opts) |
| 1636 | unkv[(*unkc)++] = arg; |
| 1637 | return opts; |
| 1638 | } |
| 1639 | |
| 1640 | return 1; |
| 1641 | } |
| 1642 | |
Pierre Habouzit | 6b61ec0 | 2008-07-09 23:38:34 +0200 | [diff] [blame] | 1643 | void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx, |
| 1644 | const struct option *options, |
| 1645 | const char * const usagestr[]) |
| 1646 | { |
| 1647 | int n = handle_revision_opt(revs, ctx->argc, ctx->argv, |
| 1648 | &ctx->cpidx, ctx->out); |
| 1649 | if (n <= 0) { |
| 1650 | error("unknown option `%s'", ctx->argv[0]); |
| 1651 | usage_with_options(usagestr, options); |
| 1652 | } |
| 1653 | ctx->argv += n; |
| 1654 | ctx->argc -= n; |
| 1655 | } |
| 1656 | |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1657 | static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data) |
Linus Torvalds | ad3f9a7 | 2009-10-27 11:28:07 -0700 | [diff] [blame] | 1658 | { |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1659 | return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data); |
Linus Torvalds | ad3f9a7 | 2009-10-27 11:28:07 -0700 | [diff] [blame] | 1660 | } |
| 1661 | |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1662 | static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data) |
Linus Torvalds | ad3f9a7 | 2009-10-27 11:28:07 -0700 | [diff] [blame] | 1663 | { |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1664 | return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data); |
Linus Torvalds | ad3f9a7 | 2009-10-27 11:28:07 -0700 | [diff] [blame] | 1665 | } |
| 1666 | |
Jonathan Nieder | f6aca0d | 2011-04-21 05:45:07 -0500 | [diff] [blame] | 1667 | static int handle_revision_pseudo_opt(const char *submodule, |
| 1668 | struct rev_info *revs, |
| 1669 | int argc, const char **argv, int *flags) |
| 1670 | { |
| 1671 | const char *arg = argv[0]; |
| 1672 | const char *optarg; |
| 1673 | int argcount; |
| 1674 | |
Jonathan Nieder | 0fc63ec | 2011-04-21 05:48:24 -0500 | [diff] [blame] | 1675 | /* |
| 1676 | * NOTE! |
| 1677 | * |
| 1678 | * Commands like "git shortlog" will not accept the options below |
| 1679 | * unless parse_revision_opt queues them (as opposed to erroring |
| 1680 | * out). |
| 1681 | * |
| 1682 | * When implementing your new pseudo-option, remember to |
| 1683 | * register it in the list at the top of handle_revision_opt. |
| 1684 | */ |
Jonathan Nieder | f6aca0d | 2011-04-21 05:45:07 -0500 | [diff] [blame] | 1685 | if (!strcmp(arg, "--all")) { |
| 1686 | handle_refs(submodule, revs, *flags, for_each_ref_submodule); |
| 1687 | handle_refs(submodule, revs, *flags, head_ref_submodule); |
| 1688 | } else if (!strcmp(arg, "--branches")) { |
| 1689 | handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule); |
| 1690 | } else if (!strcmp(arg, "--bisect")) { |
| 1691 | handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref); |
| 1692 | handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref); |
| 1693 | revs->bisect = 1; |
| 1694 | } else if (!strcmp(arg, "--tags")) { |
| 1695 | handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule); |
| 1696 | } else if (!strcmp(arg, "--remotes")) { |
| 1697 | handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule); |
| 1698 | } else if ((argcount = parse_long_opt("glob", argv, &optarg))) { |
| 1699 | struct all_refs_cb cb; |
| 1700 | init_all_refs_cb(&cb, revs, *flags); |
| 1701 | for_each_glob_ref(handle_one_ref, optarg, &cb); |
| 1702 | return argcount; |
| 1703 | } else if (!prefixcmp(arg, "--branches=")) { |
| 1704 | struct all_refs_cb cb; |
| 1705 | init_all_refs_cb(&cb, revs, *flags); |
| 1706 | for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb); |
| 1707 | } else if (!prefixcmp(arg, "--tags=")) { |
| 1708 | struct all_refs_cb cb; |
| 1709 | init_all_refs_cb(&cb, revs, *flags); |
| 1710 | for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb); |
| 1711 | } else if (!prefixcmp(arg, "--remotes=")) { |
| 1712 | struct all_refs_cb cb; |
| 1713 | init_all_refs_cb(&cb, revs, *flags); |
| 1714 | for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb); |
| 1715 | } else if (!strcmp(arg, "--reflog")) { |
| 1716 | handle_reflog(revs, *flags); |
| 1717 | } else if (!strcmp(arg, "--not")) { |
| 1718 | *flags ^= UNINTERESTING; |
| 1719 | } else if (!strcmp(arg, "--no-walk")) { |
Martin von Zweigbergk | ca92e59 | 2012-08-28 23:15:54 -0700 | [diff] [blame] | 1720 | revs->no_walk = REVISION_WALK_NO_WALK_SORTED; |
| 1721 | } else if (!prefixcmp(arg, "--no-walk=")) { |
| 1722 | /* |
| 1723 | * Detached form ("--no-walk X" as opposed to "--no-walk=X") |
| 1724 | * not allowed, since the argument is optional. |
| 1725 | */ |
| 1726 | if (!strcmp(arg + 10, "sorted")) |
| 1727 | revs->no_walk = REVISION_WALK_NO_WALK_SORTED; |
| 1728 | else if (!strcmp(arg + 10, "unsorted")) |
| 1729 | revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED; |
| 1730 | else |
| 1731 | return error("invalid argument to --no-walk"); |
Jonathan Nieder | f6aca0d | 2011-04-21 05:45:07 -0500 | [diff] [blame] | 1732 | } else if (!strcmp(arg, "--do-walk")) { |
| 1733 | revs->no_walk = 0; |
| 1734 | } else { |
| 1735 | return 0; |
| 1736 | } |
| 1737 | |
| 1738 | return 1; |
| 1739 | } |
| 1740 | |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1741 | /* |
| 1742 | * Parse revision information, filling in the "rev_info" structure, |
| 1743 | * and removing the used arguments from the argument list. |
| 1744 | * |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 1745 | * Returns the number of arguments left that weren't recognized |
| 1746 | * (which are also moved to the head of the argument list) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1747 | */ |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 1748 | int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt) |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1749 | { |
Junio C Hamano | 8e676e8 | 2012-07-02 12:33:52 -0700 | [diff] [blame] | 1750 | int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0, revarg_opt; |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1751 | struct cmdline_pathspec prune_data; |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1752 | const char *submodule = NULL; |
| 1753 | |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1754 | memset(&prune_data, 0, sizeof(prune_data)); |
Heiko Voigt | 9ef6aeb | 2010-07-07 15:39:12 +0200 | [diff] [blame] | 1755 | if (opt) |
| 1756 | submodule = opt->submodule; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1757 | |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1758 | /* First, search for "--" */ |
Clemens Buchacher | 6d5b93f | 2012-04-14 21:04:48 +0200 | [diff] [blame] | 1759 | if (opt && opt->assume_dashdash) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1760 | seen_dashdash = 1; |
Clemens Buchacher | 6d5b93f | 2012-04-14 21:04:48 +0200 | [diff] [blame] | 1761 | } else { |
| 1762 | seen_dashdash = 0; |
| 1763 | for (i = 1; i < argc; i++) { |
| 1764 | const char *arg = argv[i]; |
| 1765 | if (strcmp(arg, "--")) |
| 1766 | continue; |
| 1767 | argv[i] = NULL; |
| 1768 | argc = i; |
| 1769 | if (argv[i + 1]) |
| 1770 | append_prune_data(&prune_data, argv + i + 1); |
| 1771 | seen_dashdash = 1; |
| 1772 | break; |
| 1773 | } |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1774 | } |
| 1775 | |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1776 | /* Second, deal with arguments and options */ |
| 1777 | flags = 0; |
Junio C Hamano | d5f6b1d | 2012-07-02 12:43:05 -0700 | [diff] [blame] | 1778 | revarg_opt = opt ? opt->revarg_opt : 0; |
| 1779 | if (seen_dashdash) |
| 1780 | revarg_opt |= REVARG_CANNOT_BE_FILENAME; |
Junio C Hamano | 8b3dce5 | 2009-11-03 06:59:18 -0800 | [diff] [blame] | 1781 | read_from_stdin = 0; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1782 | for (left = i = 1; i < argc; i++) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1783 | const char *arg = argv[i]; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1784 | if (*arg == '-') { |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1785 | int opts; |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1786 | |
Jonathan Nieder | f6aca0d | 2011-04-21 05:45:07 -0500 | [diff] [blame] | 1787 | opts = handle_revision_pseudo_opt(submodule, |
| 1788 | revs, argc - i, argv + i, |
| 1789 | &flags); |
| 1790 | if (opts > 0) { |
| 1791 | i += opts - 1; |
Uwe Kleine-König | a5aa930 | 2008-02-28 08:24:25 +0100 | [diff] [blame] | 1792 | continue; |
| 1793 | } |
Jonathan Nieder | f6aca0d | 2011-04-21 05:45:07 -0500 | [diff] [blame] | 1794 | |
Junio C Hamano | 8b3dce5 | 2009-11-03 06:59:18 -0800 | [diff] [blame] | 1795 | if (!strcmp(arg, "--stdin")) { |
| 1796 | if (revs->disable_stdin) { |
| 1797 | argv[left++] = arg; |
| 1798 | continue; |
| 1799 | } |
| 1800 | if (read_from_stdin++) |
| 1801 | die("--stdin given twice?"); |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1802 | read_revisions_from_stdin(revs, &prune_data); |
Junio C Hamano | 8b3dce5 | 2009-11-03 06:59:18 -0800 | [diff] [blame] | 1803 | continue; |
| 1804 | } |
Junio C Hamano | 2d10c55 | 2006-09-20 13:21:56 -0700 | [diff] [blame] | 1805 | |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1806 | opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1807 | if (opts > 0) { |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1808 | i += opts - 1; |
| 1809 | continue; |
| 1810 | } |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1811 | if (opts < 0) |
| 1812 | exit(128); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1813 | continue; |
| 1814 | } |
Rene Scharfe | 0d2c9d6 | 2006-07-02 01:29:37 +0200 | [diff] [blame] | 1815 | |
Junio C Hamano | 8e676e8 | 2012-07-02 12:33:52 -0700 | [diff] [blame] | 1816 | |
| 1817 | if (handle_revision_arg(arg, revs, flags, revarg_opt)) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1818 | int j; |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1819 | if (seen_dashdash || *arg == '^') |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1820 | die("bad revision '%s'", arg); |
| 1821 | |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 1822 | /* If we didn't have a "--": |
| 1823 | * (1) all filenames must exist; |
| 1824 | * (2) all rev-args must not be interpretable |
| 1825 | * as a valid filename. |
| 1826 | * but the latter we have checked in the main loop. |
| 1827 | */ |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 1828 | for (j = i; j < argc; j++) |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 1829 | verify_filename(revs->prefix, argv[j], j == i); |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 1830 | |
Junio C Hamano | 60da8b1 | 2009-11-20 02:50:21 -0800 | [diff] [blame] | 1831 | append_prune_data(&prune_data, argv + i); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1832 | break; |
| 1833 | } |
Dave Olszewski | 8fcaca3 | 2010-03-13 14:47:05 -0800 | [diff] [blame] | 1834 | else |
| 1835 | got_rev_arg = 1; |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1836 | } |
Junio C Hamano | 5d6f093 | 2006-09-05 21:28:36 -0700 | [diff] [blame] | 1837 | |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1838 | if (prune_data.nr) { |
Junio C Hamano | 93e7d67 | 2011-05-11 15:23:25 -0700 | [diff] [blame] | 1839 | /* |
| 1840 | * If we need to introduce the magic "a lone ':' means no |
| 1841 | * pathspec whatsoever", here is the place to do so. |
| 1842 | * |
| 1843 | * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) { |
| 1844 | * prune_data.nr = 0; |
| 1845 | * prune_data.alloc = 0; |
| 1846 | * free(prune_data.path); |
| 1847 | * prune_data.path = NULL; |
| 1848 | * } else { |
| 1849 | * terminate prune_data.alloc with NULL and |
| 1850 | * call init_pathspec() to set revs->prune_data here. |
| 1851 | * } |
| 1852 | */ |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1853 | ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc); |
| 1854 | prune_data.path[prune_data.nr++] = NULL; |
Junio C Hamano | 8f2d4b1 | 2011-05-11 15:05:01 -0700 | [diff] [blame] | 1855 | init_pathspec(&revs->prune_data, |
| 1856 | get_pathspec(revs->prefix, prune_data.path)); |
Junio C Hamano | 4da5af3 | 2011-05-11 14:01:19 -0700 | [diff] [blame] | 1857 | } |
Junio C Hamano | 5486ef0 | 2009-11-20 02:33:28 -0800 | [diff] [blame] | 1858 | |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1859 | if (revs->def == NULL) |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 1860 | revs->def = opt ? opt->def : NULL; |
Junio C Hamano | b449005 | 2010-03-08 23:27:25 -0800 | [diff] [blame] | 1861 | if (opt && opt->tweak) |
| 1862 | opt->tweak(revs, opt); |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1863 | if (revs->show_merge) |
Junio C Hamano | ae3e5e1 | 2006-07-03 02:59:32 -0700 | [diff] [blame] | 1864 | prepare_show_merge(revs); |
Dave Olszewski | 8fcaca3 | 2010-03-13 14:47:05 -0800 | [diff] [blame] | 1865 | if (revs->def && !revs->pending.nr && !got_rev_arg) { |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1866 | unsigned char sha1[20]; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1867 | struct object *object; |
Junio C Hamano | 249c8f4 | 2012-07-02 12:56:44 -0700 | [diff] [blame] | 1868 | struct object_context oc; |
Junio C Hamano | 33bd598 | 2012-07-02 10:32:11 -0700 | [diff] [blame] | 1869 | if (get_sha1_with_context(revs->def, 0, sha1, &oc)) |
Pierre Habouzit | 02e5422 | 2008-07-08 15:19:33 +0200 | [diff] [blame] | 1870 | die("bad default revision '%s'", revs->def); |
| 1871 | object = get_reference(revs, revs->def, sha1, 0); |
Junio C Hamano | 249c8f4 | 2012-07-02 12:56:44 -0700 | [diff] [blame] | 1872 | add_pending_object_with_mode(revs, object, revs->def, oc.mode); |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1873 | } |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1874 | |
Linus Torvalds | b7bb760 | 2007-09-29 09:50:39 -0700 | [diff] [blame] | 1875 | /* Did the user ask for any diff output? Run the diff! */ |
| 1876 | if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) |
| 1877 | revs->diff = 1; |
| 1878 | |
Arjen Laarhoven | 0faf2da | 2007-12-25 12:06:47 +0100 | [diff] [blame] | 1879 | /* Pickaxe, diff-filter and rename following need diffs */ |
| 1880 | if (revs->diffopt.pickaxe || |
| 1881 | revs->diffopt.filter || |
| 1882 | DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES)) |
Linus Torvalds | b7bb760 | 2007-09-29 09:50:39 -0700 | [diff] [blame] | 1883 | revs->diff = 1; |
| 1884 | |
Junio C Hamano | 9dad9d2 | 2006-10-30 18:58:03 -0800 | [diff] [blame] | 1885 | if (revs->topo_order) |
Junio C Hamano | 5306968 | 2006-04-01 18:38:25 -0800 | [diff] [blame] | 1886 | revs->limited = 1; |
| 1887 | |
Nguyễn Thái Ngọc Duy | afe069d | 2010-12-17 19:43:06 +0700 | [diff] [blame] | 1888 | if (revs->prune_data.nr) { |
| 1889 | diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning); |
Linus Torvalds | 750f7b6 | 2007-06-19 14:22:46 -0700 | [diff] [blame] | 1890 | /* Can't prune commits with rename following: the paths change.. */ |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 1891 | if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES)) |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 1892 | revs->prune = 1; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1893 | if (!revs->full_diff) |
Nguyễn Thái Ngọc Duy | afe069d | 2010-12-17 19:43:06 +0700 | [diff] [blame] | 1894 | diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt); |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1895 | } |
Junio C Hamano | b449005 | 2010-03-08 23:27:25 -0800 | [diff] [blame] | 1896 | if (revs->combine_merges) |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1897 | revs->ignore_merges = 0; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 1898 | revs->diffopt.abbrev = revs->abbrev; |
Thomas Rast | 2845265 | 2012-08-03 14:16:24 +0200 | [diff] [blame] | 1899 | diff_setup_done(&revs->diffopt); |
Fredrik Kuivinen | 8efdc32 | 2006-03-10 10:21:39 +0100 | [diff] [blame] | 1900 | |
Junio C Hamano | 918d4e1 | 2012-10-09 16:40:03 -0700 | [diff] [blame] | 1901 | grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED, |
| 1902 | &revs->grep_filter); |
Jeff King | 0843acf | 2008-08-25 02:15:05 -0400 | [diff] [blame] | 1903 | compile_grep_patterns(&revs->grep_filter); |
Junio C Hamano | bd95fcd | 2006-09-17 17:23:20 -0700 | [diff] [blame] | 1904 | |
Shawn O. Pearce | d56651c | 2007-08-19 22:33:43 -0400 | [diff] [blame] | 1905 | if (revs->reverse && revs->reflog_info) |
| 1906 | die("cannot combine --reverse with --walk-reflogs"); |
Junio C Hamano | 8bb6588 | 2008-07-08 15:25:44 -0700 | [diff] [blame] | 1907 | if (revs->rewrite_parents && revs->children.name) |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 1908 | die("cannot combine --parents and --children"); |
Shawn O. Pearce | d56651c | 2007-08-19 22:33:43 -0400 | [diff] [blame] | 1909 | |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 1910 | /* |
| 1911 | * Limitations on the graph functionality |
| 1912 | */ |
| 1913 | if (revs->reverse && revs->graph) |
| 1914 | die("cannot combine --reverse with --graph"); |
| 1915 | |
| 1916 | if (revs->reflog_info && revs->graph) |
| 1917 | die("cannot combine --walk-reflogs with --graph"); |
Junio C Hamano | baa6378 | 2012-09-29 11:59:52 -0700 | [diff] [blame] | 1918 | if (!revs->reflog_info && revs->grep_filter.use_reflog_filter) |
| 1919 | die("cannot use --grep-reflog without --walk-reflogs"); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 1920 | |
Linus Torvalds | ae56354 | 2006-02-25 16:19:46 -0800 | [diff] [blame] | 1921 | return left; |
| 1922 | } |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 1923 | |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 1924 | static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child) |
| 1925 | { |
| 1926 | struct commit_list *l = xcalloc(1, sizeof(*l)); |
| 1927 | |
| 1928 | l->item = child; |
| 1929 | l->next = add_decoration(&revs->children, &parent->object, l); |
| 1930 | } |
| 1931 | |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1932 | static int remove_duplicate_parents(struct commit *commit) |
| 1933 | { |
| 1934 | struct commit_list **pp, *p; |
| 1935 | int surviving_parents; |
| 1936 | |
| 1937 | /* Examine existing parents while marking ones we have seen... */ |
| 1938 | pp = &commit->parents; |
| 1939 | while ((p = *pp) != NULL) { |
| 1940 | struct commit *parent = p->item; |
| 1941 | if (parent->object.flags & TMP_MARK) { |
| 1942 | *pp = p->next; |
| 1943 | continue; |
| 1944 | } |
| 1945 | parent->object.flags |= TMP_MARK; |
| 1946 | pp = &p->next; |
| 1947 | } |
| 1948 | /* count them while clearing the temporary mark */ |
| 1949 | surviving_parents = 0; |
| 1950 | for (p = commit->parents; p; p = p->next) { |
| 1951 | p->item->object.flags &= ~TMP_MARK; |
| 1952 | surviving_parents++; |
| 1953 | } |
| 1954 | return surviving_parents; |
| 1955 | } |
| 1956 | |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 1957 | struct merge_simplify_state { |
| 1958 | struct commit *simplified; |
| 1959 | }; |
| 1960 | |
| 1961 | static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit) |
| 1962 | { |
| 1963 | struct merge_simplify_state *st; |
| 1964 | |
| 1965 | st = lookup_decoration(&revs->merge_simplification, &commit->object); |
| 1966 | if (!st) { |
| 1967 | st = xcalloc(1, sizeof(*st)); |
| 1968 | add_decoration(&revs->merge_simplification, &commit->object, st); |
| 1969 | } |
| 1970 | return st; |
| 1971 | } |
| 1972 | |
Junio C Hamano | 4b7f53d | 2013-01-17 14:23:03 -0800 | [diff] [blame] | 1973 | static void remove_treesame_parents(struct commit *commit) |
| 1974 | { |
| 1975 | struct commit_list **pp, *p; |
| 1976 | |
| 1977 | pp = &commit->parents; |
| 1978 | while ((p = *pp) != NULL) { |
| 1979 | struct commit *parent = p->item; |
| 1980 | if (parent->object.flags & TREESAME) { |
| 1981 | *pp = p->next; |
| 1982 | free(p); |
| 1983 | continue; |
| 1984 | } |
| 1985 | pp = &p->next; |
| 1986 | } |
| 1987 | } |
| 1988 | |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 1989 | static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail) |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1990 | { |
| 1991 | struct commit_list *p; |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 1992 | struct merge_simplify_state *st, *pst; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1993 | int cnt; |
| 1994 | |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 1995 | st = locate_simplify_state(revs, commit); |
| 1996 | |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1997 | /* |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 1998 | * Have we handled this one? |
| 1999 | */ |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2000 | if (st->simplified) |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2001 | return tail; |
| 2002 | |
| 2003 | /* |
| 2004 | * An UNINTERESTING commit simplifies to itself, so does a |
| 2005 | * root commit. We do not rewrite parents of such commit |
| 2006 | * anyway. |
| 2007 | */ |
| 2008 | if ((commit->object.flags & UNINTERESTING) || !commit->parents) { |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2009 | st->simplified = commit; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2010 | return tail; |
| 2011 | } |
| 2012 | |
| 2013 | /* |
Junio C Hamano | 6e513ba | 2012-06-08 14:56:03 -0700 | [diff] [blame] | 2014 | * Do we know what commit all of our parents that matter |
| 2015 | * should be rewritten to? Otherwise we are not ready to |
| 2016 | * rewrite this one yet. |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2017 | */ |
| 2018 | for (cnt = 0, p = commit->parents; p; p = p->next) { |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2019 | pst = locate_simplify_state(revs, p->item); |
| 2020 | if (!pst->simplified) { |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2021 | tail = &commit_list_insert(p->item, tail)->next; |
| 2022 | cnt++; |
| 2023 | } |
Junio C Hamano | 6e513ba | 2012-06-08 14:56:03 -0700 | [diff] [blame] | 2024 | if (revs->first_parent_only) |
| 2025 | break; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2026 | } |
Junio C Hamano | 53030f8 | 2008-08-18 00:37:34 -0700 | [diff] [blame] | 2027 | if (cnt) { |
| 2028 | tail = &commit_list_insert(commit, tail)->next; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2029 | return tail; |
Junio C Hamano | 53030f8 | 2008-08-18 00:37:34 -0700 | [diff] [blame] | 2030 | } |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2031 | |
| 2032 | /* |
| 2033 | * Rewrite our list of parents. |
| 2034 | */ |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2035 | for (p = commit->parents; p; p = p->next) { |
| 2036 | pst = locate_simplify_state(revs, p->item); |
| 2037 | p->item = pst->simplified; |
Junio C Hamano | 6e513ba | 2012-06-08 14:56:03 -0700 | [diff] [blame] | 2038 | if (revs->first_parent_only) |
| 2039 | break; |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2040 | } |
Junio C Hamano | 4b7f53d | 2013-01-17 14:23:03 -0800 | [diff] [blame] | 2041 | |
Junio C Hamano | 436b60c | 2013-03-28 14:37:53 -0700 | [diff] [blame] | 2042 | if (revs->first_parent_only) { |
Junio C Hamano | 6e513ba | 2012-06-08 14:56:03 -0700 | [diff] [blame] | 2043 | cnt = 1; |
Junio C Hamano | 436b60c | 2013-03-28 14:37:53 -0700 | [diff] [blame] | 2044 | } else { |
| 2045 | /* |
| 2046 | * A merge with a tree-same parent is useless |
| 2047 | */ |
| 2048 | if (commit->parents && commit->parents->next) |
| 2049 | remove_treesame_parents(commit); |
Junio C Hamano | 4b7f53d | 2013-01-17 14:23:03 -0800 | [diff] [blame] | 2050 | |
Junio C Hamano | 436b60c | 2013-03-28 14:37:53 -0700 | [diff] [blame] | 2051 | cnt = remove_duplicate_parents(commit); |
| 2052 | } |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2053 | |
| 2054 | /* |
| 2055 | * It is possible that we are a merge and one side branch |
| 2056 | * does not have any commit that touches the given paths; |
| 2057 | * in such a case, the immediate parents will be rewritten |
| 2058 | * to different commits. |
| 2059 | * |
| 2060 | * o----X X: the commit we are looking at; |
| 2061 | * / / o: a commit that touches the paths; |
| 2062 | * ---o----' |
| 2063 | * |
| 2064 | * Further reduce the parents by removing redundant parents. |
| 2065 | */ |
| 2066 | if (1 < cnt) { |
| 2067 | struct commit_list *h = reduce_heads(commit->parents); |
| 2068 | cnt = commit_list_count(h); |
| 2069 | free_commit_list(commit->parents); |
| 2070 | commit->parents = h; |
| 2071 | } |
| 2072 | |
| 2073 | /* |
| 2074 | * A commit simplifies to itself if it is a root, if it is |
| 2075 | * UNINTERESTING, if it touches the given paths, or if it is a |
| 2076 | * merge and its parents simplifies to more than one commits |
| 2077 | * (the first two cases are already handled at the beginning of |
| 2078 | * this function). |
| 2079 | * |
| 2080 | * Otherwise, it simplifies to what its sole parent simplifies to. |
| 2081 | */ |
| 2082 | if (!cnt || |
| 2083 | (commit->object.flags & UNINTERESTING) || |
| 2084 | !(commit->object.flags & TREESAME) || |
| 2085 | (1 < cnt)) |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2086 | st->simplified = commit; |
| 2087 | else { |
| 2088 | pst = locate_simplify_state(revs, commit->parents->item); |
| 2089 | st->simplified = pst->simplified; |
| 2090 | } |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2091 | return tail; |
| 2092 | } |
| 2093 | |
| 2094 | static void simplify_merges(struct rev_info *revs) |
| 2095 | { |
Junio C Hamano | ab9d75a | 2012-06-08 14:50:22 -0700 | [diff] [blame] | 2096 | struct commit_list *list, *next; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2097 | struct commit_list *yet_to_do, **tail; |
Junio C Hamano | ab9d75a | 2012-06-08 14:50:22 -0700 | [diff] [blame] | 2098 | struct commit *commit; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2099 | |
Junio C Hamano | 5eac739 | 2008-08-14 13:52:36 -0700 | [diff] [blame] | 2100 | if (!revs->prune) |
| 2101 | return; |
Junio C Hamano | 6534703 | 2008-08-03 17:47:16 -0700 | [diff] [blame] | 2102 | |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2103 | /* feed the list reversed */ |
| 2104 | yet_to_do = NULL; |
Junio C Hamano | ab9d75a | 2012-06-08 14:50:22 -0700 | [diff] [blame] | 2105 | for (list = revs->commits; list; list = next) { |
| 2106 | commit = list->item; |
| 2107 | next = list->next; |
| 2108 | /* |
| 2109 | * Do not free(list) here yet; the original list |
| 2110 | * is used later in this function. |
| 2111 | */ |
| 2112 | commit_list_insert(commit, &yet_to_do); |
| 2113 | } |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2114 | while (yet_to_do) { |
| 2115 | list = yet_to_do; |
| 2116 | yet_to_do = NULL; |
| 2117 | tail = &yet_to_do; |
| 2118 | while (list) { |
Junio C Hamano | ab9d75a | 2012-06-08 14:50:22 -0700 | [diff] [blame] | 2119 | commit = list->item; |
| 2120 | next = list->next; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2121 | free(list); |
| 2122 | list = next; |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2123 | tail = simplify_one(revs, commit, tail); |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2124 | } |
| 2125 | } |
| 2126 | |
| 2127 | /* clean up the result, removing the simplified ones */ |
| 2128 | list = revs->commits; |
| 2129 | revs->commits = NULL; |
| 2130 | tail = &revs->commits; |
| 2131 | while (list) { |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2132 | struct merge_simplify_state *st; |
Junio C Hamano | ab9d75a | 2012-06-08 14:50:22 -0700 | [diff] [blame] | 2133 | |
| 2134 | commit = list->item; |
| 2135 | next = list->next; |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2136 | free(list); |
| 2137 | list = next; |
Junio C Hamano | faf0156 | 2008-08-14 10:59:44 -0700 | [diff] [blame] | 2138 | st = locate_simplify_state(revs, commit); |
| 2139 | if (st->simplified == commit) |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2140 | tail = &commit_list_insert(commit, tail)->next; |
| 2141 | } |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2142 | } |
| 2143 | |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 2144 | static void set_children(struct rev_info *revs) |
| 2145 | { |
| 2146 | struct commit_list *l; |
| 2147 | for (l = revs->commits; l; l = l->next) { |
| 2148 | struct commit *commit = l->item; |
| 2149 | struct commit_list *p; |
| 2150 | |
| 2151 | for (p = commit->parents; p; p = p->next) |
| 2152 | add_child(revs, p->item, commit); |
| 2153 | } |
| 2154 | } |
| 2155 | |
Heiko Voigt | bcc0a3e | 2012-03-29 09:21:21 +0200 | [diff] [blame] | 2156 | void reset_revision_walk(void) |
| 2157 | { |
| 2158 | clear_object_flags(SEEN | ADDED | SHOWN); |
| 2159 | } |
| 2160 | |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2161 | int prepare_revision_walk(struct rev_info *revs) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2162 | { |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 2163 | int nr = revs->pending.nr; |
Junio C Hamano | 94d2367 | 2007-01-10 22:36:16 -0800 | [diff] [blame] | 2164 | struct object_array_entry *e, *list; |
René Scharfe | 2e7da8e | 2012-04-25 22:35:41 +0200 | [diff] [blame] | 2165 | struct commit_list **next = &revs->commits; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 2166 | |
Junio C Hamano | 94d2367 | 2007-01-10 22:36:16 -0800 | [diff] [blame] | 2167 | e = list = revs->pending.objects; |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 2168 | revs->pending.nr = 0; |
| 2169 | revs->pending.alloc = 0; |
| 2170 | revs->pending.objects = NULL; |
| 2171 | while (--nr >= 0) { |
Junio C Hamano | 94d2367 | 2007-01-10 22:36:16 -0800 | [diff] [blame] | 2172 | struct commit *commit = handle_commit(revs, e->item, e->name); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 2173 | if (commit) { |
| 2174 | if (!(commit->object.flags & SEEN)) { |
| 2175 | commit->object.flags |= SEEN; |
René Scharfe | 2e7da8e | 2012-04-25 22:35:41 +0200 | [diff] [blame] | 2176 | next = commit_list_append(commit, next); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 2177 | } |
| 2178 | } |
Junio C Hamano | 94d2367 | 2007-01-10 22:36:16 -0800 | [diff] [blame] | 2179 | e++; |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 2180 | } |
René Scharfe | 4a43d37 | 2011-10-01 17:56:08 +0200 | [diff] [blame] | 2181 | if (!revs->leak_pending) |
| 2182 | free(list); |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 2183 | |
Martin von Zweigbergk | ca92e59 | 2012-08-28 23:15:54 -0700 | [diff] [blame] | 2184 | if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED) |
| 2185 | commit_list_sort_by_date(&revs->commits); |
Linus Torvalds | ba1d450 | 2006-04-15 12:09:56 -0700 | [diff] [blame] | 2186 | if (revs->no_walk) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2187 | return 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2188 | if (revs->limited) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2189 | if (limit_list(revs) < 0) |
| 2190 | return -1; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2191 | if (revs->topo_order) |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 2192 | sort_in_topological_order(&revs->commits, revs->lifo); |
Junio C Hamano | 6546b59 | 2008-07-31 01:17:41 -0700 | [diff] [blame] | 2193 | if (revs->simplify_merges) |
| 2194 | simplify_merges(revs); |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 2195 | if (revs->children.name) |
| 2196 | set_children(revs); |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2197 | return 0; |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2198 | } |
| 2199 | |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2200 | enum rewrite_result { |
| 2201 | rewrite_one_ok, |
| 2202 | rewrite_one_noparents, |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 2203 | rewrite_one_error |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2204 | }; |
| 2205 | |
| 2206 | static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp) |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2207 | { |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 2208 | struct commit_list *cache = NULL; |
| 2209 | |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2210 | for (;;) { |
| 2211 | struct commit *p = *pp; |
Linus Torvalds | 3381c79 | 2006-04-08 17:05:58 -0700 | [diff] [blame] | 2212 | if (!revs->limited) |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 2213 | if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2214 | return rewrite_one_error; |
Linus Torvalds | 6631c73 | 2006-06-30 20:21:59 -0700 | [diff] [blame] | 2215 | if (p->parents && p->parents->next) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2216 | return rewrite_one_ok; |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 2217 | if (p->object.flags & UNINTERESTING) |
| 2218 | return rewrite_one_ok; |
| 2219 | if (!(p->object.flags & TREESAME)) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2220 | return rewrite_one_ok; |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2221 | if (!p->parents) |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2222 | return rewrite_one_noparents; |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2223 | *pp = p->parents->item; |
| 2224 | } |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2225 | } |
| 2226 | |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2227 | static int rewrite_parents(struct rev_info *revs, struct commit *commit) |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2228 | { |
| 2229 | struct commit_list **pp = &commit->parents; |
| 2230 | while (*pp) { |
| 2231 | struct commit_list *parent = *pp; |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2232 | switch (rewrite_one(revs, &parent->item)) { |
| 2233 | case rewrite_one_ok: |
| 2234 | break; |
| 2235 | case rewrite_one_noparents: |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2236 | *pp = parent->next; |
| 2237 | continue; |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2238 | case rewrite_one_error: |
| 2239 | return -1; |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2240 | } |
| 2241 | pp = &parent->next; |
| 2242 | } |
Junio C Hamano | 11d6596 | 2007-07-08 19:03:19 -0700 | [diff] [blame] | 2243 | remove_duplicate_parents(commit); |
Alex Riesen | cc0e6c5 | 2007-05-04 23:54:57 +0200 | [diff] [blame] | 2244 | return 0; |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2245 | } |
Linus Torvalds | a4a88b2 | 2006-02-28 11:24:00 -0800 | [diff] [blame] | 2246 | |
Antoine Pelisse | d72fbe8 | 2013-01-05 22:26:45 +0100 | [diff] [blame] | 2247 | static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap) |
| 2248 | { |
| 2249 | char *person, *endp; |
| 2250 | size_t len, namelen, maillen; |
| 2251 | const char *name; |
| 2252 | const char *mail; |
| 2253 | struct ident_split ident; |
| 2254 | |
| 2255 | person = strstr(buf->buf, what); |
| 2256 | if (!person) |
| 2257 | return 0; |
| 2258 | |
| 2259 | person += strlen(what); |
| 2260 | endp = strchr(person, '\n'); |
| 2261 | if (!endp) |
| 2262 | return 0; |
| 2263 | |
| 2264 | len = endp - person; |
| 2265 | |
| 2266 | if (split_ident_line(&ident, person, len)) |
| 2267 | return 0; |
| 2268 | |
| 2269 | mail = ident.mail_begin; |
| 2270 | maillen = ident.mail_end - ident.mail_begin; |
| 2271 | name = ident.name_begin; |
| 2272 | namelen = ident.name_end - ident.name_begin; |
| 2273 | |
| 2274 | if (map_user(mailmap, &mail, &maillen, &name, &namelen)) { |
| 2275 | struct strbuf namemail = STRBUF_INIT; |
| 2276 | |
| 2277 | strbuf_addf(&namemail, "%.*s <%.*s>", |
| 2278 | (int)namelen, name, (int)maillen, mail); |
| 2279 | |
| 2280 | strbuf_splice(buf, ident.name_begin - buf->buf, |
| 2281 | ident.mail_end - ident.name_begin + 1, |
| 2282 | namemail.buf, namemail.len); |
| 2283 | |
| 2284 | strbuf_release(&namemail); |
| 2285 | |
| 2286 | return 1; |
| 2287 | } |
| 2288 | |
| 2289 | return 0; |
| 2290 | } |
| 2291 | |
Junio C Hamano | 8ecae9b | 2006-09-17 15:43:40 -0700 | [diff] [blame] | 2292 | static int commit_match(struct commit *commit, struct rev_info *opt) |
| 2293 | { |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2294 | int retval; |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2295 | const char *encoding; |
| 2296 | char *message; |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2297 | struct strbuf buf = STRBUF_INIT; |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2298 | |
Junio C Hamano | 80235ba | 2010-01-17 20:09:06 -0800 | [diff] [blame] | 2299 | if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list) |
Junio C Hamano | 8ecae9b | 2006-09-17 15:43:40 -0700 | [diff] [blame] | 2300 | return 1; |
Junio C Hamano | baa6378 | 2012-09-29 11:59:52 -0700 | [diff] [blame] | 2301 | |
| 2302 | /* Prepend "fake" headers as needed */ |
| 2303 | if (opt->grep_filter.use_reflog_filter) { |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2304 | strbuf_addstr(&buf, "reflog "); |
| 2305 | get_reflog_message(&buf, opt->reflog_info); |
| 2306 | strbuf_addch(&buf, '\n'); |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2307 | } |
Junio C Hamano | baa6378 | 2012-09-29 11:59:52 -0700 | [diff] [blame] | 2308 | |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2309 | /* |
| 2310 | * We grep in the user's output encoding, under the assumption that it |
| 2311 | * is the encoding they are most likely to write their grep pattern |
| 2312 | * for. In addition, it means we will match the "notes" encoding below, |
| 2313 | * so we will not end up with a buffer that has two different encodings |
| 2314 | * in it. |
| 2315 | */ |
| 2316 | encoding = get_log_output_encoding(); |
| 2317 | message = logmsg_reencode(commit, encoding); |
| 2318 | |
Junio C Hamano | baa6378 | 2012-09-29 11:59:52 -0700 | [diff] [blame] | 2319 | /* Copy the commit to temporary if we are using "fake" headers */ |
| 2320 | if (buf.len) |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2321 | strbuf_addstr(&buf, message); |
Junio C Hamano | baa6378 | 2012-09-29 11:59:52 -0700 | [diff] [blame] | 2322 | |
Junio C Hamano | df874fa | 2013-01-08 00:02:49 -0800 | [diff] [blame] | 2323 | if (opt->grep_filter.header_list && opt->mailmap) { |
Antoine Pelisse | d72fbe8 | 2013-01-05 22:26:45 +0100 | [diff] [blame] | 2324 | if (!buf.len) |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2325 | strbuf_addstr(&buf, message); |
Antoine Pelisse | d72fbe8 | 2013-01-05 22:26:45 +0100 | [diff] [blame] | 2326 | |
| 2327 | commit_rewrite_person(&buf, "\nauthor ", opt->mailmap); |
| 2328 | commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap); |
| 2329 | } |
| 2330 | |
Nguyễn Thái Ngọc Duy | 38cfe91 | 2012-09-29 11:41:29 +0700 | [diff] [blame] | 2331 | /* Append "fake" message parts as needed */ |
| 2332 | if (opt->show_notes) { |
| 2333 | if (!buf.len) |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2334 | strbuf_addstr(&buf, message); |
| 2335 | format_display_notes(commit->object.sha1, &buf, encoding, 1); |
Nguyễn Thái Ngọc Duy | 38cfe91 | 2012-09-29 11:41:29 +0700 | [diff] [blame] | 2336 | } |
| 2337 | |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2338 | /* Find either in the original commit message, or in the temporary */ |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2339 | if (buf.len) |
| 2340 | retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len); |
| 2341 | else |
| 2342 | retval = grep_buffer(&opt->grep_filter, |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2343 | message, strlen(message)); |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2344 | strbuf_release(&buf); |
Jeff King | 04deccd | 2013-02-11 15:59:58 -0500 | [diff] [blame] | 2345 | logmsg_free(message, commit); |
Nguyễn Thái Ngọc Duy | 72fd13f | 2012-09-29 11:41:28 +0700 | [diff] [blame] | 2346 | return retval; |
Junio C Hamano | 8ecae9b | 2006-09-17 15:43:40 -0700 | [diff] [blame] | 2347 | } |
| 2348 | |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 2349 | static inline int want_ancestry(struct rev_info *revs) |
| 2350 | { |
Junio C Hamano | 8bb6588 | 2008-07-08 15:25:44 -0700 | [diff] [blame] | 2351 | return (revs->rewrite_parents || revs->children.name); |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 2352 | } |
| 2353 | |
Adam Simpkins | beb5af4 | 2009-08-18 19:34:33 -0700 | [diff] [blame] | 2354 | enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit) |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2355 | { |
| 2356 | if (commit->object.flags & SHOWN) |
| 2357 | return commit_ignore; |
Brandon Casey | 4d6acb7 | 2009-03-19 22:47:54 -0500 | [diff] [blame] | 2358 | if (revs->unpacked && has_sha1_pack(commit->object.sha1)) |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2359 | return commit_ignore; |
Linus Torvalds | 3131b71 | 2008-02-09 14:02:07 -0800 | [diff] [blame] | 2360 | if (revs->show_all) |
| 2361 | return commit_show; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2362 | if (commit->object.flags & UNINTERESTING) |
| 2363 | return commit_ignore; |
| 2364 | if (revs->min_age != -1 && (commit->date > revs->min_age)) |
| 2365 | return commit_ignore; |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 2366 | if (revs->min_parents || (revs->max_parents >= 0)) { |
| 2367 | int n = 0; |
| 2368 | struct commit_list *p; |
| 2369 | for (p = commit->parents; p; p = p->next) |
| 2370 | n++; |
| 2371 | if ((n < revs->min_parents) || |
| 2372 | ((revs->max_parents >= 0) && (n > revs->max_parents))) |
| 2373 | return commit_ignore; |
| 2374 | } |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2375 | if (!commit_match(commit, revs)) |
| 2376 | return commit_ignore; |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 2377 | if (revs->prune && revs->dense) { |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2378 | /* Commit without changes? */ |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 2379 | if (commit->object.flags & TREESAME) { |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2380 | /* drop merges unless we want parenthood */ |
Junio C Hamano | f35f560 | 2008-04-03 02:12:06 -0700 | [diff] [blame] | 2381 | if (!want_ancestry(revs)) |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2382 | return commit_ignore; |
| 2383 | /* non-merge - always ignore it */ |
| 2384 | if (!commit->parents || !commit->parents->next) |
| 2385 | return commit_ignore; |
| 2386 | } |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2387 | } |
| 2388 | return commit_show; |
| 2389 | } |
| 2390 | |
Adam Simpkins | beb5af4 | 2009-08-18 19:34:33 -0700 | [diff] [blame] | 2391 | enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit) |
| 2392 | { |
| 2393 | enum commit_action action = get_commit_action(revs, commit); |
| 2394 | |
| 2395 | if (action == commit_show && |
| 2396 | !revs->show_all && |
| 2397 | revs->prune && revs->dense && want_ancestry(revs)) { |
| 2398 | if (rewrite_parents(revs, commit) < 0) |
| 2399 | return commit_error; |
| 2400 | } |
| 2401 | return action; |
| 2402 | } |
| 2403 | |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2404 | static struct commit *get_revision_1(struct rev_info *revs) |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2405 | { |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2406 | if (!revs->commits) |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2407 | return NULL; |
| 2408 | |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2409 | do { |
Linus Torvalds | cb11574 | 2006-06-17 18:47:58 -0700 | [diff] [blame] | 2410 | struct commit_list *entry = revs->commits; |
| 2411 | struct commit *commit = entry->item; |
Linus Torvalds | ea5ed3a | 2006-03-05 09:53:52 -0800 | [diff] [blame] | 2412 | |
Linus Torvalds | cb11574 | 2006-06-17 18:47:58 -0700 | [diff] [blame] | 2413 | revs->commits = entry->next; |
| 2414 | free(entry); |
Linus Torvalds | 2a0925b | 2006-03-30 17:05:25 -0800 | [diff] [blame] | 2415 | |
Jeff King | ffa1eea | 2010-11-21 23:42:53 -0500 | [diff] [blame] | 2416 | if (revs->reflog_info) { |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 2417 | fake_reflog_parent(revs->reflog_info, commit); |
Jeff King | ffa1eea | 2010-11-21 23:42:53 -0500 | [diff] [blame] | 2418 | commit->object.flags &= ~(ADDED | SEEN | SHOWN); |
| 2419 | } |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 2420 | |
Linus Torvalds | 2a0925b | 2006-03-30 17:05:25 -0800 | [diff] [blame] | 2421 | /* |
| 2422 | * If we haven't done the list limiting, we need to look at |
Linus Torvalds | be7db6e | 2006-04-01 16:35:06 -0800 | [diff] [blame] | 2423 | * the parents here. We also need to do the date-based limiting |
| 2424 | * that we'd otherwise have done in limit_list(). |
Linus Torvalds | 2a0925b | 2006-03-30 17:05:25 -0800 | [diff] [blame] | 2425 | */ |
Linus Torvalds | be7db6e | 2006-04-01 16:35:06 -0800 | [diff] [blame] | 2426 | if (!revs->limited) { |
Jan Harkes | 744f498 | 2006-10-30 20:37:49 -0500 | [diff] [blame] | 2427 | if (revs->max_age != -1 && |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2428 | (commit->date < revs->max_age)) |
| 2429 | continue; |
Alexander N. Gavrilov | fce87ae | 2008-07-12 22:00:57 +0400 | [diff] [blame] | 2430 | if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0) |
Junio C Hamano | ed62089 | 2009-02-11 01:27:43 -0800 | [diff] [blame] | 2431 | die("Failed to traverse parents of commit %s", |
| 2432 | sha1_to_hex(commit->object.sha1)); |
Linus Torvalds | be7db6e | 2006-04-01 16:35:06 -0800 | [diff] [blame] | 2433 | } |
Junio C Hamano | 1b65a5a | 2006-04-16 18:12:49 -0700 | [diff] [blame] | 2434 | |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2435 | switch (simplify_commit(revs, commit)) { |
| 2436 | case commit_ignore: |
Linus Torvalds | 2a0925b | 2006-03-30 17:05:25 -0800 | [diff] [blame] | 2437 | continue; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2438 | case commit_error: |
Junio C Hamano | ed62089 | 2009-02-11 01:27:43 -0800 | [diff] [blame] | 2439 | die("Failed to simplify parents of commit %s", |
| 2440 | sha1_to_hex(commit->object.sha1)); |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 2441 | default: |
| 2442 | return commit; |
Junio C Hamano | 384e99a | 2006-03-27 23:58:34 -0800 | [diff] [blame] | 2443 | } |
Linus Torvalds | 765ac8e | 2006-02-28 15:07:20 -0800 | [diff] [blame] | 2444 | } while (revs->commits); |
| 2445 | return NULL; |
| 2446 | } |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2447 | |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2448 | static void gc_boundary(struct object_array *array) |
| 2449 | { |
| 2450 | unsigned nr = array->nr; |
| 2451 | unsigned alloc = array->alloc; |
| 2452 | struct object_array_entry *objects = array->objects; |
| 2453 | |
| 2454 | if (alloc <= nr) { |
| 2455 | unsigned i, j; |
| 2456 | for (i = j = 0; i < nr; i++) { |
| 2457 | if (objects[i].item->flags & SHOWN) |
| 2458 | continue; |
| 2459 | if (i != j) |
| 2460 | objects[j] = objects[i]; |
| 2461 | j++; |
| 2462 | } |
Junio C Hamano | 892ae6b | 2007-03-06 03:00:18 -0800 | [diff] [blame] | 2463 | for (i = j; i < nr; i++) |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2464 | objects[i].item = NULL; |
| 2465 | array->nr = j; |
| 2466 | } |
| 2467 | } |
| 2468 | |
Adam Simpkins | 4603ec0 | 2008-05-24 16:02:05 -0700 | [diff] [blame] | 2469 | static void create_boundary_commit_list(struct rev_info *revs) |
| 2470 | { |
| 2471 | unsigned i; |
| 2472 | struct commit *c; |
| 2473 | struct object_array *array = &revs->boundary_commits; |
| 2474 | struct object_array_entry *objects = array->objects; |
| 2475 | |
| 2476 | /* |
| 2477 | * If revs->commits is non-NULL at this point, an error occurred in |
| 2478 | * get_revision_1(). Ignore the error and continue printing the |
| 2479 | * boundary commits anyway. (This is what the code has always |
| 2480 | * done.) |
| 2481 | */ |
| 2482 | if (revs->commits) { |
| 2483 | free_commit_list(revs->commits); |
| 2484 | revs->commits = NULL; |
| 2485 | } |
| 2486 | |
| 2487 | /* |
| 2488 | * Put all of the actual boundary commits from revs->boundary_commits |
| 2489 | * into revs->commits |
| 2490 | */ |
| 2491 | for (i = 0; i < array->nr; i++) { |
| 2492 | c = (struct commit *)(objects[i].item); |
| 2493 | if (!c) |
| 2494 | continue; |
| 2495 | if (!(c->object.flags & CHILD_SHOWN)) |
| 2496 | continue; |
| 2497 | if (c->object.flags & (SHOWN | BOUNDARY)) |
| 2498 | continue; |
| 2499 | c->object.flags |= BOUNDARY; |
| 2500 | commit_list_insert(c, &revs->commits); |
| 2501 | } |
| 2502 | |
| 2503 | /* |
| 2504 | * If revs->topo_order is set, sort the boundary commits |
| 2505 | * in topological order |
| 2506 | */ |
| 2507 | sort_in_topological_order(&revs->commits, revs->lifo); |
| 2508 | } |
| 2509 | |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 2510 | static struct commit *get_revision_internal(struct rev_info *revs) |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2511 | { |
| 2512 | struct commit *c = NULL; |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2513 | struct commit_list *l; |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2514 | |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2515 | if (revs->boundary == 2) { |
Adam Simpkins | 4603ec0 | 2008-05-24 16:02:05 -0700 | [diff] [blame] | 2516 | /* |
| 2517 | * All of the normal commits have already been returned, |
| 2518 | * and we are now returning boundary commits. |
| 2519 | * create_boundary_commit_list() has populated |
| 2520 | * revs->commits with the remaining commits to return. |
| 2521 | */ |
| 2522 | c = pop_commit(&revs->commits); |
| 2523 | if (c) |
| 2524 | c->object.flags |= SHOWN; |
Johannes Schindelin | 9c5e66e | 2007-01-20 23:04:02 +0100 | [diff] [blame] | 2525 | return c; |
| 2526 | } |
| 2527 | |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2528 | /* |
Jeff King | b72a190 | 2012-07-13 03:50:23 -0400 | [diff] [blame] | 2529 | * If our max_count counter has reached zero, then we are done. We |
| 2530 | * don't simply return NULL because we still might need to show |
| 2531 | * boundary commits. But we want to avoid calling get_revision_1, which |
| 2532 | * might do a considerable amount of work finding the next commit only |
| 2533 | * for us to throw it away. |
| 2534 | * |
| 2535 | * If it is non-zero, then either we don't have a max_count at all |
| 2536 | * (-1), or it is still counting, in which case we decrement. |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2537 | */ |
Jeff King | b72a190 | 2012-07-13 03:50:23 -0400 | [diff] [blame] | 2538 | if (revs->max_count) { |
| 2539 | c = get_revision_1(revs); |
| 2540 | if (c) { |
| 2541 | while (0 < revs->skip_count) { |
| 2542 | revs->skip_count--; |
| 2543 | c = get_revision_1(revs); |
| 2544 | if (!c) |
| 2545 | break; |
| 2546 | } |
Junio C Hamano | 8839ac9 | 2007-03-06 03:20:55 -0800 | [diff] [blame] | 2547 | } |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2548 | |
Jeff King | b72a190 | 2012-07-13 03:50:23 -0400 | [diff] [blame] | 2549 | if (revs->max_count > 0) |
| 2550 | revs->max_count--; |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2551 | } |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2552 | |
Junio C Hamano | c33d859 | 2007-03-05 18:23:57 -0800 | [diff] [blame] | 2553 | if (c) |
| 2554 | c->object.flags |= SHOWN; |
| 2555 | |
| 2556 | if (!revs->boundary) { |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2557 | return c; |
Junio C Hamano | c33d859 | 2007-03-05 18:23:57 -0800 | [diff] [blame] | 2558 | } |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2559 | |
| 2560 | if (!c) { |
| 2561 | /* |
| 2562 | * get_revision_1() runs out the commits, and |
| 2563 | * we are done computing the boundaries. |
| 2564 | * switch to boundary commits output mode. |
| 2565 | */ |
| 2566 | revs->boundary = 2; |
Adam Simpkins | 4603ec0 | 2008-05-24 16:02:05 -0700 | [diff] [blame] | 2567 | |
| 2568 | /* |
| 2569 | * Update revs->commits to contain the list of |
| 2570 | * boundary commits. |
| 2571 | */ |
| 2572 | create_boundary_commit_list(revs); |
| 2573 | |
Adam Simpkins | 3c68d67 | 2008-05-24 16:02:04 -0700 | [diff] [blame] | 2574 | return get_revision_internal(revs); |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2575 | } |
| 2576 | |
| 2577 | /* |
| 2578 | * boundary commits are the commits that are parents of the |
| 2579 | * ones we got from get_revision_1() but they themselves are |
| 2580 | * not returned from get_revision_1(). Before returning |
| 2581 | * 'c', we need to mark its parents that they could be boundaries. |
| 2582 | */ |
| 2583 | |
| 2584 | for (l = c->parents; l; l = l->next) { |
| 2585 | struct object *p; |
| 2586 | p = &(l->item->object); |
Junio C Hamano | c33d859 | 2007-03-05 18:23:57 -0800 | [diff] [blame] | 2587 | if (p->flags & (CHILD_SHOWN | SHOWN)) |
Junio C Hamano | 86ab490 | 2007-03-05 13:10:06 -0800 | [diff] [blame] | 2588 | continue; |
| 2589 | p->flags |= CHILD_SHOWN; |
| 2590 | gc_boundary(&revs->boundary_commits); |
| 2591 | add_object_array(p, NULL, &revs->boundary_commits); |
| 2592 | } |
| 2593 | |
| 2594 | return c; |
Junio C Hamano | d5db6c9 | 2006-12-19 18:25:32 -0800 | [diff] [blame] | 2595 | } |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 2596 | |
| 2597 | struct commit *get_revision(struct rev_info *revs) |
| 2598 | { |
Thomas Rast | 498bcd3 | 2008-08-29 21:18:38 +0200 | [diff] [blame] | 2599 | struct commit *c; |
| 2600 | struct commit_list *reversed; |
| 2601 | |
| 2602 | if (revs->reverse) { |
| 2603 | reversed = NULL; |
| 2604 | while ((c = get_revision_internal(revs))) { |
| 2605 | commit_list_insert(c, &reversed); |
| 2606 | } |
| 2607 | revs->commits = reversed; |
| 2608 | revs->reverse = 0; |
| 2609 | revs->reverse_output_stage = 1; |
| 2610 | } |
| 2611 | |
| 2612 | if (revs->reverse_output_stage) |
| 2613 | return pop_commit(&revs->commits); |
| 2614 | |
| 2615 | c = get_revision_internal(revs); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 2616 | if (c && revs->graph) |
| 2617 | graph_update(revs->graph, c); |
| 2618 | return c; |
| 2619 | } |
Michael J Gruber | 1df2d65 | 2011-03-07 13:31:39 +0100 | [diff] [blame] | 2620 | |
| 2621 | char *get_revision_mark(const struct rev_info *revs, const struct commit *commit) |
| 2622 | { |
| 2623 | if (commit->object.flags & BOUNDARY) |
| 2624 | return "-"; |
| 2625 | else if (commit->object.flags & UNINTERESTING) |
| 2626 | return "^"; |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 2627 | else if (commit->object.flags & PATCHSAME) |
| 2628 | return "="; |
Michael J Gruber | 1df2d65 | 2011-03-07 13:31:39 +0100 | [diff] [blame] | 2629 | else if (!revs || revs->left_right) { |
| 2630 | if (commit->object.flags & SYMMETRIC_LEFT) |
| 2631 | return "<"; |
| 2632 | else |
| 2633 | return ">"; |
| 2634 | } else if (revs->graph) |
| 2635 | return "*"; |
Michael J Gruber | adbbb31 | 2011-03-07 13:31:40 +0100 | [diff] [blame] | 2636 | else if (revs->cherry_mark) |
| 2637 | return "+"; |
Michael J Gruber | 1df2d65 | 2011-03-07 13:31:39 +0100 | [diff] [blame] | 2638 | return ""; |
| 2639 | } |
Michael J Gruber | b1b4755 | 2011-03-10 15:45:03 +0100 | [diff] [blame] | 2640 | |
| 2641 | void put_revision_mark(const struct rev_info *revs, const struct commit *commit) |
| 2642 | { |
| 2643 | char *mark = get_revision_mark(revs, commit); |
| 2644 | if (!strlen(mark)) |
| 2645 | return; |
| 2646 | fputs(mark, stdout); |
| 2647 | putchar(' '); |
| 2648 | } |