| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [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 19:24:00 | [diff] [blame] | 6 | #include "diff.h" |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 7 | #include "refs.h" |
| 8 | #include "revision.h" |
| Adam Simpkins | 7fefda5 | 2008-05-04 10:36:54 | [diff] [blame] | 9 | #include "graph.h" |
| Junio C Hamano | 8ecae9b | 2006-09-17 22:43:40 | [diff] [blame] | 10 | #include "grep.h" |
| Johannes Schindelin | 8860fd4 | 2007-01-11 10:47:48 | [diff] [blame] | 11 | #include "reflog-walk.h" |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 12 | #include "patch-ids.h" |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 13 | #include "decorate.h" |
| Linus Torvalds | 78892e3 | 2008-11-03 19:25:46 | [diff] [blame] | 14 | #include "log-tree.h" |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 15 | |
| Linus Torvalds | cdcefbc | 2007-11-03 18:11:10 | [diff] [blame] | 16 | volatile show_early_output_fn_t show_early_output; |
| 17 | |
| Linus Torvalds | cf2ab91 | 2009-04-11 01:15:26 | [diff] [blame] | 18 | char *path_name(const struct name_path *path, const char *name) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 19 | { |
| Linus Torvalds | cf2ab91 | 2009-04-11 01:15:26 | [diff] [blame] | 20 | const struct name_path *p; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 21 | char *n, *m; |
| 22 | int nlen = strlen(name); |
| 23 | int len = nlen + 1; |
| 24 | |
| 25 | for (p = path; p; p = p->up) { |
| 26 | if (p->elem_len) |
| 27 | len += p->elem_len + 1; |
| 28 | } |
| 29 | n = xmalloc(len); |
| 30 | m = n + len - (nlen + 1); |
| 31 | strcpy(m, name); |
| 32 | for (p = path; p; p = p->up) { |
| 33 | if (p->elem_len) { |
| 34 | m -= p->elem_len + 1; |
| 35 | memcpy(m, p->elem, p->elem_len); |
| 36 | m[p->elem_len] = '/'; |
| 37 | } |
| 38 | } |
| 39 | return n; |
| 40 | } |
| 41 | |
| Linus Torvalds | 1f1e895 | 2006-06-20 00:42:35 | [diff] [blame] | 42 | void add_object(struct object *obj, |
| 43 | struct object_array *p, |
| 44 | struct name_path *path, |
| 45 | const char *name) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 46 | { |
| Linus Torvalds | 1f1e895 | 2006-06-20 00:42:35 | [diff] [blame] | 47 | add_object_array(obj, path_name(path, name), p); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | static void mark_blob_uninteresting(struct blob *blob) |
| 51 | { |
| Martin Koegler | c1ee901 | 2008-02-18 20:47:54 | [diff] [blame] | 52 | if (!blob) |
| 53 | return; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 54 | if (blob->object.flags & UNINTERESTING) |
| 55 | return; |
| 56 | blob->object.flags |= UNINTERESTING; |
| 57 | } |
| 58 | |
| 59 | void mark_tree_uninteresting(struct tree *tree) |
| 60 | { |
| Linus Torvalds | f75e53e | 2006-05-29 19:20:14 | [diff] [blame] | 61 | struct tree_desc desc; |
| Linus Torvalds | 4c068a9 | 2006-05-30 16:45:45 | [diff] [blame] | 62 | struct name_entry entry; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 63 | struct object *obj = &tree->object; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 64 | |
| Martin Koegler | c1ee901 | 2008-02-18 20:47:54 | [diff] [blame] | 65 | if (!tree) |
| 66 | return; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 67 | if (obj->flags & UNINTERESTING) |
| 68 | return; |
| 69 | obj->flags |= UNINTERESTING; |
| 70 | if (!has_sha1_file(obj->sha1)) |
| 71 | return; |
| 72 | if (parse_tree(tree) < 0) |
| 73 | die("bad tree %s", sha1_to_hex(obj->sha1)); |
| Linus Torvalds | f75e53e | 2006-05-29 19:20:14 | [diff] [blame] | 74 | |
| Linus Torvalds | 6fda5e5 | 2007-03-21 17:08:25 | [diff] [blame] | 75 | init_tree_desc(&desc, tree->buffer, tree->size); |
| Linus Torvalds | 4c068a9 | 2006-05-30 16:45:45 | [diff] [blame] | 76 | while (tree_entry(&desc, &entry)) { |
| Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 | [diff] [blame] | 77 | switch (object_type(entry.mode)) { |
| 78 | case OBJ_TREE: |
| Linus Torvalds | 4c068a9 | 2006-05-30 16:45:45 | [diff] [blame] | 79 | mark_tree_uninteresting(lookup_tree(entry.sha1)); |
| Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 | [diff] [blame] | 80 | break; |
| 81 | case OBJ_BLOB: |
| Linus Torvalds | 4c068a9 | 2006-05-30 16:45:45 | [diff] [blame] | 82 | mark_blob_uninteresting(lookup_blob(entry.sha1)); |
| Linus Torvalds | 4d1012c | 2007-11-11 23:35:23 | [diff] [blame] | 83 | break; |
| 84 | default: |
| 85 | /* Subproject commit - not in this repository */ |
| 86 | break; |
| 87 | } |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 88 | } |
| Linus Torvalds | f75e53e | 2006-05-29 19:20:14 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * We don't care about the tree any more |
| 92 | * after it has been marked uninteresting. |
| 93 | */ |
| 94 | free(tree->buffer); |
| 95 | tree->buffer = NULL; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void mark_parents_uninteresting(struct commit *commit) |
| 99 | { |
| 100 | struct commit_list *parents = commit->parents; |
| 101 | |
| 102 | while (parents) { |
| 103 | struct commit *commit = parents->item; |
| Matthias Urlichs | d2c4af7 | 2006-03-09 04:04:36 | [diff] [blame] | 104 | if (!(commit->object.flags & UNINTERESTING)) { |
| 105 | commit->object.flags |= UNINTERESTING; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 106 | |
| Matthias Urlichs | d2c4af7 | 2006-03-09 04:04:36 | [diff] [blame] | 107 | /* |
| 108 | * Normally we haven't parsed the parent |
| 109 | * yet, so we won't have a parent of a parent |
| 110 | * here. However, it may turn out that we've |
| 111 | * reached this commit some other way (where it |
| 112 | * wasn't uninteresting), in which case we need |
| 113 | * to mark its parents recursively too.. |
| 114 | */ |
| 115 | if (commit->parents) |
| 116 | mark_parents_uninteresting(commit); |
| 117 | } |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 118 | |
| 119 | /* |
| 120 | * A missing commit is ok iff its parent is marked |
| 121 | * uninteresting. |
| 122 | * |
| 123 | * We just mark such a thing parsed, so that when |
| 124 | * it is popped next time around, we won't be trying |
| 125 | * to parse it and get an error. |
| 126 | */ |
| 127 | if (!has_sha1_file(commit->object.sha1)) |
| 128 | commit->object.parsed = 1; |
| 129 | parents = parents->next; |
| 130 | } |
| 131 | } |
| 132 | |
| Junio C Hamano | 2d93b9f | 2007-06-08 09:24:58 | [diff] [blame] | 133 | 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 16:43:59 | [diff] [blame] | 134 | { |
| Linus Torvalds | aa27e46 | 2007-02-28 00:22:52 | [diff] [blame] | 135 | if (revs->no_walk && (obj->flags & UNINTERESTING)) |
| Linus Torvalds | f222abd | 2009-07-13 21:41:12 | [diff] [blame] | 136 | revs->no_walk = 0; |
| Johannes Schindelin | 7b69b87 | 2007-07-23 23:39:50 | [diff] [blame] | 137 | if (revs->reflog_info && obj->type == OBJ_COMMIT && |
| 138 | add_reflog_for_walk(revs->reflog_info, |
| 139 | (struct commit *)obj, name)) |
| 140 | return; |
| Martin Koegler | bb6c2fb | 2007-04-22 16:43:59 | [diff] [blame] | 141 | add_object_array_with_mode(obj, name, &revs->pending, mode); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 142 | } |
| 143 | |
| Junio C Hamano | 2d93b9f | 2007-06-08 09:24:58 | [diff] [blame] | 144 | void add_pending_object(struct rev_info *revs, struct object *obj, const char *name) |
| 145 | { |
| 146 | add_pending_object_with_mode(revs, obj, name, S_IFINVALID); |
| 147 | } |
| 148 | |
| Junio C Hamano | 3384a2d | 2007-12-11 18:09:04 | [diff] [blame] | 149 | void add_head_to_pending(struct rev_info *revs) |
| 150 | { |
| 151 | unsigned char sha1[20]; |
| 152 | struct object *obj; |
| 153 | if (get_sha1("HEAD", sha1)) |
| 154 | return; |
| 155 | obj = parse_object(sha1); |
| 156 | if (!obj) |
| 157 | return; |
| 158 | add_pending_object(revs, obj, "HEAD"); |
| 159 | } |
| 160 | |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 161 | static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 162 | { |
| 163 | struct object *object; |
| 164 | |
| 165 | object = parse_object(sha1); |
| 166 | if (!object) |
| 167 | die("bad object %s", name); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 168 | object->flags |= flags; |
| 169 | return object; |
| 170 | } |
| 171 | |
| 172 | static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name) |
| 173 | { |
| 174 | unsigned long flags = object->flags; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * Tag object? Look what it points to.. |
| 178 | */ |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 179 | while (object->type == OBJ_TAG) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 180 | struct tag *tag = (struct tag *) object; |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 181 | if (revs->tag_objects && !(flags & UNINTERESTING)) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 182 | add_pending_object(revs, object, tag->tag); |
| Martin Koegler | 9684afd | 2008-02-18 20:48:01 | [diff] [blame] | 183 | if (!tag->tagged) |
| 184 | die("bad tag"); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 185 | object = parse_object(tag->tagged->sha1); |
| Junio C Hamano | aeeae1b | 2009-01-28 07:19:30 | [diff] [blame] | 186 | if (!object) { |
| 187 | if (flags & UNINTERESTING) |
| 188 | return NULL; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 189 | die("bad object %s", sha1_to_hex(tag->tagged->sha1)); |
| Junio C Hamano | aeeae1b | 2009-01-28 07:19:30 | [diff] [blame] | 190 | } |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | /* |
| 194 | * Commit object? Just return it, we'll do all the complex |
| 195 | * reachability crud. |
| 196 | */ |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 197 | if (object->type == OBJ_COMMIT) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 198 | struct commit *commit = (struct commit *)object; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 199 | if (parse_commit(commit) < 0) |
| 200 | die("unable to parse commit %s", name); |
| Linus Torvalds | d9a8368 | 2006-02-27 16:54:36 | [diff] [blame] | 201 | if (flags & UNINTERESTING) { |
| Linus Torvalds | 4262c1b | 2006-04-19 03:31:41 | [diff] [blame] | 202 | commit->object.flags |= UNINTERESTING; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 203 | mark_parents_uninteresting(commit); |
| Linus Torvalds | d9a8368 | 2006-02-27 16:54:36 | [diff] [blame] | 204 | revs->limited = 1; |
| 205 | } |
| Linus Torvalds | 0f3a290 | 2008-10-27 19:51:59 | [diff] [blame] | 206 | if (revs->show_source && !commit->util) |
| 207 | commit->util = (void *) name; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 208 | return commit; |
| 209 | } |
| 210 | |
| 211 | /* |
| Mike Ralphson | 3ea3c21 | 2009-04-17 18:13:30 | [diff] [blame] | 212 | * Tree object? Either mark it uninteresting, or add it |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 213 | * to the list of objects to look at later.. |
| 214 | */ |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 215 | if (object->type == OBJ_TREE) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 216 | struct tree *tree = (struct tree *)object; |
| 217 | if (!revs->tree_objects) |
| 218 | return NULL; |
| 219 | if (flags & UNINTERESTING) { |
| 220 | mark_tree_uninteresting(tree); |
| 221 | return NULL; |
| 222 | } |
| 223 | add_pending_object(revs, object, ""); |
| 224 | return NULL; |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Blob object? You know the drill by now.. |
| 229 | */ |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 230 | if (object->type == OBJ_BLOB) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 231 | struct blob *blob = (struct blob *)object; |
| 232 | if (!revs->blob_objects) |
| 233 | return NULL; |
| 234 | if (flags & UNINTERESTING) { |
| 235 | mark_blob_uninteresting(blob); |
| 236 | return NULL; |
| 237 | } |
| 238 | add_pending_object(revs, object, ""); |
| 239 | return NULL; |
| 240 | } |
| 241 | die("%s is unknown object", name); |
| 242 | } |
| 243 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 244 | static int everybody_uninteresting(struct commit_list *orig) |
| 245 | { |
| 246 | struct commit_list *list = orig; |
| 247 | while (list) { |
| 248 | struct commit *commit = list->item; |
| 249 | list = list->next; |
| 250 | if (commit->object.flags & UNINTERESTING) |
| 251 | continue; |
| 252 | return 0; |
| 253 | } |
| 254 | return 1; |
| 255 | } |
| 256 | |
| Junio C Hamano | 0a4ba7f | 2007-03-14 20:12:18 | [diff] [blame] | 257 | /* |
| 258 | * The goal is to get REV_TREE_NEW as the result only if the |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 259 | * diff consists of all '+' (and no other changes), REV_TREE_OLD |
| 260 | * if the whole diff is removal of old data, and otherwise |
| 261 | * REV_TREE_DIFFERENT (of course if the trees are the same we |
| 262 | * want REV_TREE_SAME). |
| 263 | * That means that once we get to REV_TREE_DIFFERENT, we do not |
| 264 | * have to look any further. |
| Junio C Hamano | 0a4ba7f | 2007-03-14 20:12:18 | [diff] [blame] | 265 | */ |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 266 | static int tree_difference = REV_TREE_SAME; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 267 | |
| 268 | static void file_add_remove(struct diff_options *options, |
| 269 | int addremove, unsigned mode, |
| 270 | const unsigned char *sha1, |
| Dmitry Potapov | fd55a19 | 2008-07-16 14:54:02 | [diff] [blame] | 271 | const char *fullpath) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 272 | { |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 273 | int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 274 | |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 275 | tree_difference |= diff; |
| Junio C Hamano | dd47aa3 | 2007-03-14 20:18:15 | [diff] [blame] | 276 | if (tree_difference == REV_TREE_DIFFERENT) |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 277 | DIFF_OPT_SET(options, HAS_CHANGES); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | static void file_change(struct diff_options *options, |
| 281 | unsigned old_mode, unsigned new_mode, |
| 282 | const unsigned char *old_sha1, |
| 283 | const unsigned char *new_sha1, |
| Dmitry Potapov | fd55a19 | 2008-07-16 14:54:02 | [diff] [blame] | 284 | const char *fullpath) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 285 | { |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 286 | tree_difference = REV_TREE_DIFFERENT; |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 287 | DIFF_OPT_SET(options, HAS_CHANGES); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 288 | } |
| 289 | |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 290 | static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 291 | { |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 292 | struct tree *t1 = parent->tree; |
| 293 | struct tree *t2 = commit->tree; |
| 294 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 295 | if (!t1) |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 296 | return REV_TREE_NEW; |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 297 | if (!t2) |
| 298 | return REV_TREE_OLD; |
| Linus Torvalds | 78892e3 | 2008-11-03 19:25:46 | [diff] [blame] | 299 | |
| 300 | if (revs->simplify_by_decoration) { |
| 301 | /* |
| 302 | * If we are simplifying by decoration, then the commit |
| 303 | * is worth showing if it has a tag pointing at it. |
| 304 | */ |
| 305 | if (lookup_decoration(&name_decoration, &commit->object)) |
| 306 | return REV_TREE_DIFFERENT; |
| 307 | /* |
| 308 | * A commit that is not pointed by a tag is uninteresting |
| 309 | * if we are not limited by path. This means that you will |
| 310 | * see the usual "commits that touch the paths" plus any |
| 311 | * tagged commit by specifying both --simplify-by-decoration |
| 312 | * and pathspec. |
| 313 | */ |
| 314 | if (!revs->prune_data) |
| 315 | return REV_TREE_SAME; |
| 316 | } |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 317 | |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 318 | tree_difference = REV_TREE_SAME; |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 319 | DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES); |
| Junio C Hamano | c4e05b1 | 2006-04-11 01:14:54 | [diff] [blame] | 320 | if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "", |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 321 | &revs->pruning) < 0) |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 322 | return REV_TREE_DIFFERENT; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 323 | return tree_difference; |
| 324 | } |
| 325 | |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 326 | static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 327 | { |
| 328 | int retval; |
| 329 | void *tree; |
| Linus Torvalds | 6fda5e5 | 2007-03-21 17:08:25 | [diff] [blame] | 330 | unsigned long size; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 331 | struct tree_desc empty, real; |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 332 | struct tree *t1 = commit->tree; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 333 | |
| 334 | if (!t1) |
| 335 | return 0; |
| 336 | |
| Linus Torvalds | 6fda5e5 | 2007-03-21 17:08:25 | [diff] [blame] | 337 | tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 338 | if (!tree) |
| 339 | return 0; |
| Linus Torvalds | 6fda5e5 | 2007-03-21 17:08:25 | [diff] [blame] | 340 | init_tree_desc(&real, tree, size); |
| 341 | init_tree_desc(&empty, "", 0); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 342 | |
| Junio C Hamano | 0a4ba7f | 2007-03-14 20:12:18 | [diff] [blame] | 343 | tree_difference = REV_TREE_SAME; |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 344 | DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 345 | retval = diff_tree(&empty, &real, "", &revs->pruning); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 346 | free(tree); |
| 347 | |
| Junio C Hamano | 0a4ba7f | 2007-03-14 20:12:18 | [diff] [blame] | 348 | return retval >= 0 && (tree_difference == REV_TREE_SAME); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit) |
| 352 | { |
| 353 | struct commit_list **pp, *parent; |
| Linus Torvalds | 6631c73 | 2006-07-01 03:21:59 | [diff] [blame] | 354 | int tree_changed = 0, tree_same = 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 355 | |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 356 | /* |
| 357 | * If we don't do pruning, everything is interesting |
| 358 | */ |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 359 | if (!revs->prune) |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 360 | return; |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 361 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 362 | if (!commit->tree) |
| 363 | return; |
| 364 | |
| 365 | if (!commit->parents) { |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 366 | if (rev_same_tree_as_empty(revs, commit)) |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 367 | commit->object.flags |= TREESAME; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 368 | return; |
| 369 | } |
| 370 | |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 371 | /* |
| 372 | * Normal non-merge commit? If we don't want to make the |
| 373 | * history dense, we consider it always to be a change.. |
| 374 | */ |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 375 | if (!revs->dense && !commit->parents->next) |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 376 | return; |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 377 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 378 | pp = &commit->parents; |
| 379 | while ((parent = *pp) != NULL) { |
| 380 | struct commit *p = parent->item; |
| 381 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 382 | if (parse_commit(p) < 0) |
| 383 | die("cannot simplify commit %s (because of %s)", |
| 384 | sha1_to_hex(commit->object.sha1), |
| 385 | sha1_to_hex(p->object.sha1)); |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 386 | switch (rev_compare_tree(revs, p, commit)) { |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 387 | case REV_TREE_SAME: |
| Linus Torvalds | 6631c73 | 2006-07-01 03:21:59 | [diff] [blame] | 388 | tree_same = 1; |
| Linus Torvalds | 9202434 | 2006-06-11 17:57:35 | [diff] [blame] | 389 | if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) { |
| Junio C Hamano | f3219fb | 2006-03-11 05:59:37 | [diff] [blame] | 390 | /* Even if a merge with an uninteresting |
| 391 | * side branch brought the entire change |
| 392 | * we are interested in, we do not want |
| 393 | * to lose the other branches of this |
| 394 | * merge, so we just keep going. |
| 395 | */ |
| 396 | pp = &parent->next; |
| 397 | continue; |
| 398 | } |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 399 | parent->next = NULL; |
| 400 | commit->parents = parent; |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 401 | commit->object.flags |= TREESAME; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 402 | return; |
| 403 | |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 404 | case REV_TREE_NEW: |
| 405 | if (revs->remove_empty_trees && |
| Linus Torvalds | 3a5e860 | 2008-11-03 18:45:41 | [diff] [blame] | 406 | rev_same_tree_as_empty(revs, p)) { |
| Junio C Hamano | c348f31 | 2006-03-12 21:39:31 | [diff] [blame] | 407 | /* We are adding all the specified |
| 408 | * paths from this parent, so the |
| 409 | * history beyond this parent is not |
| 410 | * interesting. Remove its parents |
| 411 | * (they are grandparents for us). |
| 412 | * IOW, we pretend this parent is a |
| 413 | * "root" commit. |
| Junio C Hamano | a41e109 | 2006-03-12 21:39:31 | [diff] [blame] | 414 | */ |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 415 | if (parse_commit(p) < 0) |
| 416 | die("cannot simplify commit %s (invalid %s)", |
| 417 | sha1_to_hex(commit->object.sha1), |
| 418 | sha1_to_hex(p->object.sha1)); |
| Junio C Hamano | c348f31 | 2006-03-12 21:39:31 | [diff] [blame] | 419 | p->parents = NULL; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 420 | } |
| 421 | /* fallthrough */ |
| Linus Torvalds | ceff8e7 | 2009-06-03 01:34:01 | [diff] [blame] | 422 | case REV_TREE_OLD: |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 423 | case REV_TREE_DIFFERENT: |
| Junio C Hamano | f3219fb | 2006-03-11 05:59:37 | [diff] [blame] | 424 | tree_changed = 1; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 425 | pp = &parent->next; |
| 426 | continue; |
| 427 | } |
| 428 | die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1)); |
| 429 | } |
| Linus Torvalds | 6631c73 | 2006-07-01 03:21:59 | [diff] [blame] | 430 | if (tree_changed && !tree_same) |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 431 | return; |
| 432 | commit->object.flags |= TREESAME; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 433 | } |
| 434 | |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 435 | static void insert_by_date_cached(struct commit *p, struct commit_list **head, |
| 436 | struct commit_list *cached_base, struct commit_list **cache) |
| 437 | { |
| 438 | struct commit_list *new_entry; |
| 439 | |
| 440 | if (cached_base && p->date < cached_base->item->date) |
| 441 | new_entry = insert_by_date(p, &cached_base->next); |
| 442 | else |
| 443 | new_entry = insert_by_date(p, head); |
| 444 | |
| 445 | if (cache && (!*cache || p->date < (*cache)->item->date)) |
| 446 | *cache = new_entry; |
| 447 | } |
| 448 | |
| 449 | static int add_parents_to_list(struct rev_info *revs, struct commit *commit, |
| 450 | struct commit_list **list, struct commit_list **cache_ptr) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 451 | { |
| 452 | struct commit_list *parent = commit->parents; |
| Junio C Hamano | 577ed5c | 2006-10-23 00:32:47 | [diff] [blame] | 453 | unsigned left_flag; |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 454 | struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 455 | |
| Linus Torvalds | 3381c79 | 2006-04-09 00:05:58 | [diff] [blame] | 456 | if (commit->object.flags & ADDED) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 457 | return 0; |
| Linus Torvalds | 3381c79 | 2006-04-09 00:05:58 | [diff] [blame] | 458 | commit->object.flags |= ADDED; |
| 459 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 460 | /* |
| 461 | * If the commit is uninteresting, don't try to |
| 462 | * prune parents - we want the maximal uninteresting |
| 463 | * set. |
| 464 | * |
| 465 | * Normally we haven't parsed the parent |
| 466 | * yet, so we won't have a parent of a parent |
| 467 | * here. However, it may turn out that we've |
| 468 | * reached this commit some other way (where it |
| 469 | * wasn't uninteresting), in which case we need |
| 470 | * to mark its parents recursively too.. |
| 471 | */ |
| 472 | if (commit->object.flags & UNINTERESTING) { |
| 473 | while (parent) { |
| 474 | struct commit *p = parent->item; |
| 475 | parent = parent->next; |
| Junio C Hamano | aeeae1b | 2009-01-28 07:19:30 | [diff] [blame] | 476 | if (p) |
| 477 | p->object.flags |= UNINTERESTING; |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 478 | if (parse_commit(p) < 0) |
| Junio C Hamano | aeeae1b | 2009-01-28 07:19:30 | [diff] [blame] | 479 | continue; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 480 | if (p->parents) |
| 481 | mark_parents_uninteresting(p); |
| 482 | if (p->object.flags & SEEN) |
| 483 | continue; |
| 484 | p->object.flags |= SEEN; |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 485 | insert_by_date_cached(p, list, cached_base, cache_ptr); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 486 | } |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 487 | return 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | /* |
| 491 | * Ok, the commit wasn't uninteresting. Try to |
| 492 | * simplify the commit history and find the parent |
| 493 | * that has no differences in the path set if one exists. |
| 494 | */ |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 495 | try_to_simplify_commit(revs, commit); |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 496 | |
| Linus Torvalds | ba1d450 | 2006-04-15 19:09:56 | [diff] [blame] | 497 | if (revs->no_walk) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 498 | return 0; |
| Linus Torvalds | ba1d450 | 2006-04-15 19:09:56 | [diff] [blame] | 499 | |
| Junio C Hamano | 577ed5c | 2006-10-23 00:32:47 | [diff] [blame] | 500 | left_flag = (commit->object.flags & SYMMETRIC_LEFT); |
| Junio C Hamano | 0053e90 | 2007-03-13 08:57:22 | [diff] [blame] | 501 | |
| Stephen R. van den Berg | d9c292e | 2008-04-27 17:32:46 | [diff] [blame] | 502 | for (parent = commit->parents; parent; parent = parent->next) { |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 503 | struct commit *p = parent->item; |
| 504 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 505 | if (parse_commit(p) < 0) |
| 506 | return -1; |
| Linus Torvalds | 0f3a290 | 2008-10-27 19:51:59 | [diff] [blame] | 507 | if (revs->show_source && !p->util) |
| 508 | p->util = commit->util; |
| Junio C Hamano | 577ed5c | 2006-10-23 00:32:47 | [diff] [blame] | 509 | p->object.flags |= left_flag; |
| Lars Hjemli | ad1012e | 2008-05-12 15:12:36 | [diff] [blame] | 510 | if (!(p->object.flags & SEEN)) { |
| 511 | p->object.flags |= SEEN; |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 512 | insert_by_date_cached(p, list, cached_base, cache_ptr); |
| Lars Hjemli | ad1012e | 2008-05-12 15:12:36 | [diff] [blame] | 513 | } |
| Junio C Hamano | 60d30b0 | 2008-08-01 05:17:13 | [diff] [blame] | 514 | if (revs->first_parent_only) |
| Stephen R. van den Berg | d9c292e | 2008-04-27 17:32:46 | [diff] [blame] | 515 | break; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 516 | } |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 517 | return 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 518 | } |
| 519 | |
| Johannes Schindelin | 36d56de | 2007-07-10 13:50:49 | [diff] [blame] | 520 | static void cherry_pick_list(struct commit_list *list, struct rev_info *revs) |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 521 | { |
| 522 | struct commit_list *p; |
| 523 | int left_count = 0, right_count = 0; |
| 524 | int left_first; |
| 525 | struct patch_ids ids; |
| 526 | |
| 527 | /* First count the commits on the left and on the right */ |
| 528 | for (p = list; p; p = p->next) { |
| 529 | struct commit *commit = p->item; |
| 530 | unsigned flags = commit->object.flags; |
| 531 | if (flags & BOUNDARY) |
| 532 | ; |
| 533 | else if (flags & SYMMETRIC_LEFT) |
| 534 | left_count++; |
| 535 | else |
| 536 | right_count++; |
| 537 | } |
| 538 | |
| Thomas Rast | 36c0797 | 2010-02-20 11:42:04 | [diff] [blame] | 539 | if (!left_count || !right_count) |
| 540 | return; |
| 541 | |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 542 | left_first = left_count < right_count; |
| 543 | init_patch_ids(&ids); |
| Johannes Schindelin | 36d56de | 2007-07-10 13:50:49 | [diff] [blame] | 544 | if (revs->diffopt.nr_paths) { |
| 545 | ids.diffopts.nr_paths = revs->diffopt.nr_paths; |
| 546 | ids.diffopts.paths = revs->diffopt.paths; |
| 547 | ids.diffopts.pathlens = revs->diffopt.pathlens; |
| 548 | } |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 549 | |
| 550 | /* Compute patch-ids for one side */ |
| 551 | for (p = list; p; p = p->next) { |
| 552 | struct commit *commit = p->item; |
| 553 | unsigned flags = commit->object.flags; |
| 554 | |
| 555 | if (flags & BOUNDARY) |
| 556 | continue; |
| 557 | /* |
| 558 | * If we have fewer left, left_first is set and we omit |
| 559 | * commits on the right branch in this loop. If we have |
| 560 | * fewer right, we skip the left ones. |
| 561 | */ |
| 562 | if (left_first != !!(flags & SYMMETRIC_LEFT)) |
| 563 | continue; |
| 564 | commit->util = add_commit_patch_id(commit, &ids); |
| 565 | } |
| 566 | |
| 567 | /* Check the other side */ |
| 568 | for (p = list; p; p = p->next) { |
| 569 | struct commit *commit = p->item; |
| 570 | struct patch_id *id; |
| 571 | unsigned flags = commit->object.flags; |
| 572 | |
| 573 | if (flags & BOUNDARY) |
| 574 | continue; |
| 575 | /* |
| 576 | * If we have fewer left, left_first is set and we omit |
| 577 | * commits on the left branch in this loop. |
| 578 | */ |
| 579 | if (left_first == !!(flags & SYMMETRIC_LEFT)) |
| 580 | continue; |
| 581 | |
| 582 | /* |
| 583 | * Have we seen the same patch id? |
| 584 | */ |
| 585 | id = has_commit_patch_id(commit, &ids); |
| 586 | if (!id) |
| 587 | continue; |
| 588 | id->seen = 1; |
| 589 | commit->object.flags |= SHOWN; |
| 590 | } |
| 591 | |
| 592 | /* Now check the original side for seen ones */ |
| 593 | for (p = list; p; p = p->next) { |
| 594 | struct commit *commit = p->item; |
| 595 | struct patch_id *ent; |
| 596 | |
| 597 | ent = commit->util; |
| 598 | if (!ent) |
| 599 | continue; |
| 600 | if (ent->seen) |
| 601 | commit->object.flags |= SHOWN; |
| 602 | commit->util = NULL; |
| 603 | } |
| 604 | |
| 605 | free_patch_ids(&ids); |
| 606 | } |
| 607 | |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 608 | /* How many extra uninteresting commits we want to see.. */ |
| 609 | #define SLOP 5 |
| 610 | |
| 611 | static int still_interesting(struct commit_list *src, unsigned long date, int slop) |
| Linus Torvalds | 3131b71 | 2008-02-09 22:02:07 | [diff] [blame] | 612 | { |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 613 | /* |
| 614 | * No source list at all? We're definitely done.. |
| 615 | */ |
| 616 | if (!src) |
| 617 | return 0; |
| 618 | |
| 619 | /* |
| 620 | * Does the destination list contain entries with a date |
| 621 | * before the source list? Definitely _not_ done. |
| 622 | */ |
| 623 | if (date < src->item->date) |
| 624 | return SLOP; |
| 625 | |
| 626 | /* |
| 627 | * Does the source list still have interesting commits in |
| 628 | * it? Definitely not done.. |
| 629 | */ |
| 630 | if (!everybody_uninteresting(src)) |
| 631 | return SLOP; |
| 632 | |
| 633 | /* Ok, we're closing in.. */ |
| 634 | return slop-1; |
| Linus Torvalds | 3131b71 | 2008-02-09 22:02:07 | [diff] [blame] | 635 | } |
| 636 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 637 | static int limit_list(struct rev_info *revs) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 638 | { |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 639 | int slop = SLOP; |
| 640 | unsigned long date = ~0ul; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 641 | struct commit_list *list = revs->commits; |
| 642 | struct commit_list *newlist = NULL; |
| 643 | struct commit_list **p = &newlist; |
| 644 | |
| 645 | while (list) { |
| 646 | struct commit_list *entry = list; |
| 647 | struct commit *commit = list->item; |
| 648 | struct object *obj = &commit->object; |
| Linus Torvalds | cdcefbc | 2007-11-03 18:11:10 | [diff] [blame] | 649 | show_early_output_fn_t show; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 650 | |
| 651 | list = list->next; |
| 652 | free(entry); |
| 653 | |
| 654 | if (revs->max_age != -1 && (commit->date < revs->max_age)) |
| 655 | obj->flags |= UNINTERESTING; |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 656 | if (add_parents_to_list(revs, commit, &list, NULL) < 0) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 657 | return -1; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 658 | if (obj->flags & UNINTERESTING) { |
| 659 | mark_parents_uninteresting(commit); |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 660 | if (revs->show_all) |
| 661 | p = &commit_list_insert(commit, p)->next; |
| 662 | slop = still_interesting(list, date, slop); |
| 663 | if (slop) |
| Linus Torvalds | 3131b71 | 2008-02-09 22:02:07 | [diff] [blame] | 664 | continue; |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 665 | /* If showing all, add the whole pending list to the end */ |
| 666 | if (revs->show_all) |
| 667 | *p = list; |
| 668 | break; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 669 | } |
| 670 | if (revs->min_age != -1 && (commit->date > revs->min_age)) |
| 671 | continue; |
| Linus Torvalds | 7d00419 | 2008-03-18 01:56:33 | [diff] [blame] | 672 | date = commit->date; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 673 | p = &commit_list_insert(commit, p)->next; |
| Linus Torvalds | cdcefbc | 2007-11-03 18:11:10 | [diff] [blame] | 674 | |
| 675 | show = show_early_output; |
| 676 | if (!show) |
| 677 | continue; |
| 678 | |
| 679 | show(revs, newlist); |
| 680 | show_early_output = NULL; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 681 | } |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 682 | if (revs->cherry_pick) |
| Johannes Schindelin | 36d56de | 2007-07-10 13:50:49 | [diff] [blame] | 683 | cherry_pick_list(newlist, revs); |
| Junio C Hamano | d7a17ca | 2007-04-09 10:40:38 | [diff] [blame] | 684 | |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 685 | revs->commits = newlist; |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 686 | return 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 687 | } |
| 688 | |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 689 | struct all_refs_cb { |
| 690 | int all_flags; |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 691 | int warned_bad_reflog; |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 692 | struct rev_info *all_revs; |
| 693 | const char *name_for_errormsg; |
| 694 | }; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 695 | |
| Junio C Hamano | 8da1977 | 2006-09-21 05:02:01 | [diff] [blame] | 696 | static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 697 | { |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 698 | struct all_refs_cb *cb = cb_data; |
| 699 | struct object *object = get_reference(cb->all_revs, path, sha1, |
| 700 | cb->all_flags); |
| Johannes Schindelin | 3d1efd8 | 2007-02-23 01:56:31 | [diff] [blame] | 701 | add_pending_object(cb->all_revs, object, path); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 702 | return 0; |
| 703 | } |
| 704 | |
| Uwe Kleine-König | a5aa930 | 2008-02-28 07:24:25 | [diff] [blame] | 705 | static void handle_refs(struct rev_info *revs, unsigned flags, |
| 706 | int (*for_each)(each_ref_fn, void *)) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 707 | { |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 708 | struct all_refs_cb cb; |
| 709 | cb.all_revs = revs; |
| 710 | cb.all_flags = flags; |
| Uwe Kleine-König | a5aa930 | 2008-02-28 07:24:25 | [diff] [blame] | 711 | for_each(handle_one_ref, &cb); |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 712 | } |
| 713 | |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 714 | static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data) |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 715 | { |
| 716 | struct all_refs_cb *cb = cb_data; |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 717 | if (!is_null_sha1(sha1)) { |
| 718 | struct object *o = parse_object(sha1); |
| 719 | if (o) { |
| 720 | o->flags |= cb->all_flags; |
| 721 | add_pending_object(cb->all_revs, o, ""); |
| 722 | } |
| 723 | else if (!cb->warned_bad_reflog) { |
| Theodore Ts'o | 46efd2d | 2007-03-30 23:07:05 | [diff] [blame] | 724 | warning("reflog of '%s' references pruned commits", |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 725 | cb->name_for_errormsg); |
| 726 | cb->warned_bad_reflog = 1; |
| 727 | } |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 728 | } |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 729 | } |
| 730 | |
| Johannes Schindelin | 883d60f | 2007-01-08 00:59:54 | [diff] [blame] | 731 | static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1, |
| 732 | const char *email, unsigned long timestamp, int tz, |
| 733 | const char *message, void *cb_data) |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 734 | { |
| 735 | handle_one_reflog_commit(osha1, cb_data); |
| 736 | handle_one_reflog_commit(nsha1, cb_data); |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 737 | return 0; |
| 738 | } |
| 739 | |
| 740 | static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
| 741 | { |
| 742 | struct all_refs_cb *cb = cb_data; |
| Shawn O. Pearce | 71b03b4 | 2006-12-22 00:49:06 | [diff] [blame] | 743 | cb->warned_bad_reflog = 0; |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 744 | cb->name_for_errormsg = path; |
| 745 | for_each_reflog_ent(path, handle_one_reflog_ent, cb_data); |
| 746 | return 0; |
| 747 | } |
| 748 | |
| 749 | static void handle_reflog(struct rev_info *revs, unsigned flags) |
| 750 | { |
| 751 | struct all_refs_cb cb; |
| 752 | cb.all_revs = revs; |
| 753 | cb.all_flags = flags; |
| Junio C Hamano | 25b51e2 | 2007-02-13 07:06:54 | [diff] [blame] | 754 | for_each_reflog(handle_one_reflog, &cb); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 755 | } |
| 756 | |
| Junio C Hamano | ea4a19e | 2006-04-30 07:54:29 | [diff] [blame] | 757 | static int add_parents_only(struct rev_info *revs, const char *arg, int flags) |
| 758 | { |
| 759 | unsigned char sha1[20]; |
| 760 | struct object *it; |
| 761 | struct commit *commit; |
| 762 | struct commit_list *parents; |
| 763 | |
| 764 | if (*arg == '^') { |
| 765 | flags ^= UNINTERESTING; |
| 766 | arg++; |
| 767 | } |
| 768 | if (get_sha1(arg, sha1)) |
| 769 | return 0; |
| 770 | while (1) { |
| 771 | it = get_reference(revs, arg, sha1, 0); |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 772 | if (it->type != OBJ_TAG) |
| Junio C Hamano | ea4a19e | 2006-04-30 07:54:29 | [diff] [blame] | 773 | break; |
| Martin Koegler | 9684afd | 2008-02-18 20:48:01 | [diff] [blame] | 774 | if (!((struct tag*)it)->tagged) |
| 775 | return 0; |
| Shawn Pearce | e702496 | 2006-08-23 06:49:00 | [diff] [blame] | 776 | hashcpy(sha1, ((struct tag*)it)->tagged->sha1); |
| Junio C Hamano | ea4a19e | 2006-04-30 07:54:29 | [diff] [blame] | 777 | } |
| Linus Torvalds | 1974632 | 2006-07-12 03:45:31 | [diff] [blame] | 778 | if (it->type != OBJ_COMMIT) |
| Junio C Hamano | ea4a19e | 2006-04-30 07:54:29 | [diff] [blame] | 779 | return 0; |
| 780 | commit = (struct commit *)it; |
| 781 | for (parents = commit->parents; parents; parents = parents->next) { |
| 782 | it = &parents->item->object; |
| 783 | it->flags |= flags; |
| 784 | add_pending_object(revs, it, arg); |
| 785 | } |
| 786 | return 1; |
| 787 | } |
| 788 | |
| Linus Torvalds | db6296a | 2006-07-29 04:21:48 | [diff] [blame] | 789 | void init_revisions(struct rev_info *revs, const char *prefix) |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 790 | { |
| 791 | memset(revs, 0, sizeof(*revs)); |
| Junio C Hamano | 8e8f998 | 2006-04-15 05:19:38 | [diff] [blame] | 792 | |
| Junio C Hamano | 6b9c58f | 2006-04-16 06:46:36 | [diff] [blame] | 793 | revs->abbrev = DEFAULT_ABBREV; |
| Junio C Hamano | 8e8f998 | 2006-04-15 05:19:38 | [diff] [blame] | 794 | revs->ignore_merges = 1; |
| Linus Torvalds | 9202434 | 2006-06-11 17:57:35 | [diff] [blame] | 795 | revs->simplify_history = 1; |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 796 | DIFF_OPT_SET(&revs->pruning, RECURSIVE); |
| 797 | DIFF_OPT_SET(&revs->pruning, QUIET); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 798 | revs->pruning.add_remove = file_add_remove; |
| 799 | revs->pruning.change = file_change; |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 800 | revs->lifo = 1; |
| 801 | revs->dense = 1; |
| Linus Torvalds | db6296a | 2006-07-29 04:21:48 | [diff] [blame] | 802 | revs->prefix = prefix; |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 803 | revs->max_age = -1; |
| 804 | revs->min_age = -1; |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 805 | revs->skip_count = -1; |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 806 | revs->max_count = -1; |
| 807 | |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 808 | revs->commit_format = CMIT_FMT_DEFAULT; |
| 809 | |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 810 | revs->grep_filter.status_only = 1; |
| 811 | revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list); |
| 812 | revs->grep_filter.regflags = REG_NEWLINE; |
| 813 | |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 814 | diff_setup(&revs->diffopt); |
| Junio C Hamano | c0cb4a0 | 2008-02-13 08:34:39 | [diff] [blame] | 815 | if (prefix && !revs->diffopt.prefix) { |
| Junio C Hamano | cd676a5 | 2008-02-12 22:26:02 | [diff] [blame] | 816 | revs->diffopt.prefix = prefix; |
| 817 | revs->diffopt.prefix_length = strlen(prefix); |
| 818 | } |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 819 | } |
| 820 | |
| Rene Scharfe | 0d2c9d6 | 2006-07-01 23:29:37 | [diff] [blame] | 821 | static void add_pending_commit_list(struct rev_info *revs, |
| 822 | struct commit_list *commit_list, |
| 823 | unsigned int flags) |
| 824 | { |
| 825 | while (commit_list) { |
| 826 | struct object *object = &commit_list->item->object; |
| 827 | object->flags |= flags; |
| 828 | add_pending_object(revs, object, sha1_to_hex(object->sha1)); |
| 829 | commit_list = commit_list->next; |
| 830 | } |
| 831 | } |
| 832 | |
| Junio C Hamano | ae3e5e1 | 2006-07-03 09:59:32 | [diff] [blame] | 833 | static void prepare_show_merge(struct rev_info *revs) |
| 834 | { |
| 835 | struct commit_list *bases; |
| 836 | struct commit *head, *other; |
| 837 | unsigned char sha1[20]; |
| 838 | const char **prune = NULL; |
| 839 | int i, prune_num = 1; /* counting terminating NULL */ |
| 840 | |
| 841 | if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1))) |
| 842 | die("--merge without HEAD?"); |
| 843 | if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1))) |
| 844 | die("--merge without MERGE_HEAD?"); |
| 845 | add_pending_object(revs, &head->object, "HEAD"); |
| 846 | add_pending_object(revs, &other->object, "MERGE_HEAD"); |
| 847 | bases = get_merge_bases(head, other, 1); |
| Junio C Hamano | e82447b | 2008-02-27 07:18:38 | [diff] [blame] | 848 | add_pending_commit_list(revs, bases, UNINTERESTING); |
| 849 | free_commit_list(bases); |
| 850 | head->object.flags |= SYMMETRIC_LEFT; |
| Junio C Hamano | ae3e5e1 | 2006-07-03 09:59:32 | [diff] [blame] | 851 | |
| 852 | if (!active_nr) |
| 853 | read_cache(); |
| 854 | for (i = 0; i < active_nr; i++) { |
| 855 | struct cache_entry *ce = active_cache[i]; |
| 856 | if (!ce_stage(ce)) |
| 857 | continue; |
| 858 | if (ce_path_match(ce, revs->prune_data)) { |
| 859 | prune_num++; |
| 860 | prune = xrealloc(prune, sizeof(*prune) * prune_num); |
| 861 | prune[prune_num-2] = ce->name; |
| 862 | prune[prune_num-1] = NULL; |
| 863 | } |
| 864 | while ((i+1 < active_nr) && |
| 865 | ce_same_name(ce, active_cache[i+1])) |
| 866 | i++; |
| 867 | } |
| 868 | revs->prune_data = prune; |
| Junio C Hamano | e82447b | 2008-02-27 07:18:38 | [diff] [blame] | 869 | revs->limited = 1; |
| Junio C Hamano | ae3e5e1 | 2006-07-03 09:59:32 | [diff] [blame] | 870 | } |
| 871 | |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 872 | int handle_revision_arg(const char *arg, struct rev_info *revs, |
| 873 | int flags, |
| 874 | int cant_be_filename) |
| 875 | { |
| Martin Koegler | bb6c2fb | 2007-04-22 16:43:59 | [diff] [blame] | 876 | unsigned mode; |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 877 | char *dotdot; |
| 878 | struct object *object; |
| 879 | unsigned char sha1[20]; |
| 880 | int local_flags; |
| 881 | |
| 882 | dotdot = strstr(arg, ".."); |
| 883 | if (dotdot) { |
| 884 | unsigned char from_sha1[20]; |
| 885 | const char *next = dotdot + 2; |
| 886 | const char *this = arg; |
| 887 | int symmetric = *next == '.'; |
| 888 | unsigned int flags_exclude = flags ^ UNINTERESTING; |
| 889 | |
| 890 | *dotdot = 0; |
| 891 | next += symmetric; |
| 892 | |
| 893 | if (!*next) |
| 894 | next = "HEAD"; |
| 895 | if (dotdot == arg) |
| 896 | this = "HEAD"; |
| 897 | if (!get_sha1(this, from_sha1) && |
| 898 | !get_sha1(next, sha1)) { |
| 899 | struct commit *a, *b; |
| 900 | struct commit_list *exclude; |
| 901 | |
| 902 | a = lookup_commit_reference(from_sha1); |
| 903 | b = lookup_commit_reference(sha1); |
| 904 | if (!a || !b) { |
| 905 | die(symmetric ? |
| 906 | "Invalid symmetric difference expression %s...%s" : |
| 907 | "Invalid revision range %s..%s", |
| 908 | arg, next); |
| 909 | } |
| 910 | |
| 911 | if (!cant_be_filename) { |
| 912 | *dotdot = '.'; |
| 913 | verify_non_filename(revs->prefix, arg); |
| 914 | } |
| 915 | |
| 916 | if (symmetric) { |
| 917 | exclude = get_merge_bases(a, b, 1); |
| 918 | add_pending_commit_list(revs, exclude, |
| 919 | flags_exclude); |
| 920 | free_commit_list(exclude); |
| Junio C Hamano | 577ed5c | 2006-10-23 00:32:47 | [diff] [blame] | 921 | a->object.flags |= flags | SYMMETRIC_LEFT; |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 922 | } else |
| 923 | a->object.flags |= flags_exclude; |
| 924 | b->object.flags |= flags; |
| 925 | add_pending_object(revs, &a->object, this); |
| 926 | add_pending_object(revs, &b->object, next); |
| 927 | return 0; |
| 928 | } |
| 929 | *dotdot = '.'; |
| 930 | } |
| 931 | dotdot = strstr(arg, "^@"); |
| 932 | if (dotdot && !dotdot[2]) { |
| 933 | *dotdot = 0; |
| 934 | if (add_parents_only(revs, arg, flags)) |
| 935 | return 0; |
| 936 | *dotdot = '^'; |
| 937 | } |
| Junio C Hamano | 62476c8 | 2006-10-31 22:22:34 | [diff] [blame] | 938 | dotdot = strstr(arg, "^!"); |
| 939 | if (dotdot && !dotdot[2]) { |
| 940 | *dotdot = 0; |
| 941 | if (!add_parents_only(revs, arg, flags ^ UNINTERESTING)) |
| 942 | *dotdot = '^'; |
| 943 | } |
| 944 | |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 945 | local_flags = 0; |
| 946 | if (*arg == '^') { |
| 947 | local_flags = UNINTERESTING; |
| 948 | arg++; |
| 949 | } |
| Martin Koegler | bb6c2fb | 2007-04-22 16:43:59 | [diff] [blame] | 950 | if (get_sha1_with_mode(arg, sha1, &mode)) |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 951 | return -1; |
| 952 | if (!cant_be_filename) |
| 953 | verify_non_filename(revs->prefix, arg); |
| 954 | object = get_reference(revs, arg, sha1, flags ^ local_flags); |
| Martin Koegler | bb6c2fb | 2007-04-22 16:43:59 | [diff] [blame] | 955 | add_pending_object_with_mode(revs, object, arg, mode); |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 956 | return 0; |
| 957 | } |
| 958 | |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 959 | static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb, const char ***prune_data) |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 960 | { |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 961 | const char **prune = *prune_data; |
| 962 | int prune_nr; |
| 963 | int prune_alloc; |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 964 | |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 965 | /* count existing ones */ |
| 966 | if (!prune) |
| 967 | prune_nr = 0; |
| 968 | else |
| 969 | for (prune_nr = 0; prune[prune_nr]; prune_nr++) |
| 970 | ; |
| 971 | prune_alloc = prune_nr; /* not really, but we do not know */ |
| 972 | |
| 973 | while (strbuf_getwholeline(sb, stdin, '\n') != EOF) { |
| 974 | int len = sb->len; |
| 975 | if (len && sb->buf[len - 1] == '\n') |
| 976 | sb->buf[--len] = '\0'; |
| 977 | ALLOC_GROW(prune, prune_nr+1, prune_alloc); |
| 978 | prune[prune_nr++] = xstrdup(sb->buf); |
| 979 | } |
| 980 | if (prune) { |
| 981 | ALLOC_GROW(prune, prune_nr+1, prune_alloc); |
| 982 | prune[prune_nr] = NULL; |
| 983 | } |
| 984 | *prune_data = prune; |
| 985 | } |
| 986 | |
| 987 | static void read_revisions_from_stdin(struct rev_info *revs, const char ***prune) |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 988 | { |
| Junio C Hamano | 63d564b | 2009-11-20 10:00:40 | [diff] [blame] | 989 | struct strbuf sb; |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 990 | int seen_dashdash = 0; |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 991 | |
| Junio C Hamano | 63d564b | 2009-11-20 10:00:40 | [diff] [blame] | 992 | strbuf_init(&sb, 1000); |
| 993 | while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) { |
| 994 | int len = sb.len; |
| 995 | if (len && sb.buf[len - 1] == '\n') |
| 996 | sb.buf[--len] = '\0'; |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 997 | if (!len) |
| 998 | break; |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 999 | if (sb.buf[0] == '-') { |
| 1000 | if (len == 2 && sb.buf[1] == '-') { |
| 1001 | seen_dashdash = 1; |
| 1002 | break; |
| 1003 | } |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 1004 | die("options not supported in --stdin mode"); |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 1005 | } |
| Junio C Hamano | 63d564b | 2009-11-20 10:00:40 | [diff] [blame] | 1006 | if (handle_revision_arg(sb.buf, revs, 0, 1)) |
| 1007 | die("bad revision '%s'", sb.buf); |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 1008 | } |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 1009 | if (seen_dashdash) |
| 1010 | read_pathspec_from_stdin(revs, &sb, prune); |
| Junio C Hamano | 63d564b | 2009-11-20 10:00:40 | [diff] [blame] | 1011 | strbuf_release(&sb); |
| Adam Brewster | 1fc561d | 2008-07-05 21:26:39 | [diff] [blame] | 1012 | } |
| 1013 | |
| Junio C Hamano | 2d10c55 | 2006-09-20 20:21:56 | [diff] [blame] | 1014 | static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what) |
| 1015 | { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1016 | append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what); |
| Junio C Hamano | 2d10c55 | 2006-09-20 20:21:56 | [diff] [blame] | 1017 | } |
| 1018 | |
| Junio C Hamano | a4d7d2c | 2008-09-05 05:15:02 | [diff] [blame] | 1019 | static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern) |
| Junio C Hamano | bd95fcd | 2006-09-18 00:23:20 | [diff] [blame] | 1020 | { |
| Junio C Hamano | a4d7d2c | 2008-09-05 05:15:02 | [diff] [blame] | 1021 | append_header_grep_pattern(&revs->grep_filter, field, pattern); |
| Junio C Hamano | bd95fcd | 2006-09-18 00:23:20 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | static void add_message_grep(struct rev_info *revs, const char *pattern) |
| 1025 | { |
| Junio C Hamano | 2d10c55 | 2006-09-20 20:21:56 | [diff] [blame] | 1026 | add_grep(revs, pattern, GREP_PATTERN_BODY); |
| Junio C Hamano | bd95fcd | 2006-09-18 00:23:20 | [diff] [blame] | 1027 | } |
| 1028 | |
| Pierre Habouzit | 6b61ec0 | 2008-07-09 21:38:34 | [diff] [blame] | 1029 | static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv, |
| 1030 | int *unkc, const char **unkv) |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1031 | { |
| 1032 | const char *arg = argv[0]; |
| 1033 | |
| 1034 | /* pseudo revision arguments */ |
| 1035 | if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") || |
| 1036 | !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") || |
| 1037 | !strcmp(arg, "--reflog") || !strcmp(arg, "--not") || |
| Linus Torvalds | ad3f9a7 | 2009-10-27 18:28:07 | [diff] [blame] | 1038 | !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") || |
| 1039 | !strcmp(arg, "--bisect")) |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1040 | { |
| 1041 | unkv[(*unkc)++] = arg; |
| Pierre Habouzit | 0fe8c13 | 2008-07-31 10:22:23 | [diff] [blame] | 1042 | return 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1043 | } |
| 1044 | |
| 1045 | if (!prefixcmp(arg, "--max-count=")) { |
| 1046 | revs->max_count = atoi(arg + 12); |
| 1047 | } else if (!prefixcmp(arg, "--skip=")) { |
| 1048 | revs->skip_count = atoi(arg + 7); |
| 1049 | } else if ((*arg == '-') && isdigit(arg[1])) { |
| 1050 | /* accept -<digit>, like traditional "head" */ |
| 1051 | revs->max_count = atoi(arg + 1); |
| 1052 | } else if (!strcmp(arg, "-n")) { |
| 1053 | if (argc <= 1) |
| 1054 | return error("-n requires an argument"); |
| 1055 | revs->max_count = atoi(argv[1]); |
| 1056 | return 2; |
| 1057 | } else if (!prefixcmp(arg, "-n")) { |
| 1058 | revs->max_count = atoi(arg + 2); |
| 1059 | } else if (!prefixcmp(arg, "--max-age=")) { |
| 1060 | revs->max_age = atoi(arg + 10); |
| 1061 | } else if (!prefixcmp(arg, "--since=")) { |
| 1062 | revs->max_age = approxidate(arg + 8); |
| 1063 | } else if (!prefixcmp(arg, "--after=")) { |
| 1064 | revs->max_age = approxidate(arg + 8); |
| 1065 | } else if (!prefixcmp(arg, "--min-age=")) { |
| 1066 | revs->min_age = atoi(arg + 10); |
| 1067 | } else if (!prefixcmp(arg, "--before=")) { |
| 1068 | revs->min_age = approxidate(arg + 9); |
| 1069 | } else if (!prefixcmp(arg, "--until=")) { |
| 1070 | revs->min_age = approxidate(arg + 8); |
| 1071 | } else if (!strcmp(arg, "--first-parent")) { |
| 1072 | revs->first_parent_only = 1; |
| 1073 | } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) { |
| 1074 | init_reflog_walk(&revs->reflog_info); |
| 1075 | } else if (!strcmp(arg, "--default")) { |
| 1076 | if (argc <= 1) |
| 1077 | return error("bad --default argument"); |
| 1078 | revs->def = argv[1]; |
| 1079 | return 2; |
| 1080 | } else if (!strcmp(arg, "--merge")) { |
| 1081 | revs->show_merge = 1; |
| 1082 | } else if (!strcmp(arg, "--topo-order")) { |
| 1083 | revs->lifo = 1; |
| 1084 | revs->topo_order = 1; |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1085 | } else if (!strcmp(arg, "--simplify-merges")) { |
| 1086 | revs->simplify_merges = 1; |
| 1087 | revs->rewrite_parents = 1; |
| 1088 | revs->simplify_history = 0; |
| 1089 | revs->limited = 1; |
| Linus Torvalds | 78892e3 | 2008-11-03 19:25:46 | [diff] [blame] | 1090 | } else if (!strcmp(arg, "--simplify-by-decoration")) { |
| 1091 | revs->simplify_merges = 1; |
| 1092 | revs->rewrite_parents = 1; |
| 1093 | revs->simplify_history = 0; |
| 1094 | revs->simplify_by_decoration = 1; |
| 1095 | revs->limited = 1; |
| 1096 | revs->prune = 1; |
| Lars Hjemli | 33e7018 | 2009-08-15 14:23:12 | [diff] [blame] | 1097 | load_ref_decorations(DECORATE_SHORT_REFS); |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1098 | } else if (!strcmp(arg, "--date-order")) { |
| 1099 | revs->lifo = 0; |
| 1100 | revs->topo_order = 1; |
| 1101 | } else if (!prefixcmp(arg, "--early-output")) { |
| 1102 | int count = 100; |
| 1103 | switch (arg[14]) { |
| 1104 | case '=': |
| 1105 | count = atoi(arg+15); |
| 1106 | /* Fallthrough */ |
| 1107 | case 0: |
| 1108 | revs->topo_order = 1; |
| 1109 | revs->early_output = count; |
| 1110 | } |
| 1111 | } else if (!strcmp(arg, "--parents")) { |
| 1112 | revs->rewrite_parents = 1; |
| 1113 | revs->print_parents = 1; |
| 1114 | } else if (!strcmp(arg, "--dense")) { |
| 1115 | revs->dense = 1; |
| 1116 | } else if (!strcmp(arg, "--sparse")) { |
| 1117 | revs->dense = 0; |
| 1118 | } else if (!strcmp(arg, "--show-all")) { |
| 1119 | revs->show_all = 1; |
| 1120 | } else if (!strcmp(arg, "--remove-empty")) { |
| 1121 | revs->remove_empty_trees = 1; |
| Linus Torvalds | b8e8db2 | 2009-06-29 17:28:25 | [diff] [blame] | 1122 | } else if (!strcmp(arg, "--merges")) { |
| 1123 | revs->merges_only = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1124 | } else if (!strcmp(arg, "--no-merges")) { |
| 1125 | revs->no_merges = 1; |
| 1126 | } else if (!strcmp(arg, "--boundary")) { |
| 1127 | revs->boundary = 1; |
| 1128 | } else if (!strcmp(arg, "--left-right")) { |
| 1129 | revs->left_right = 1; |
| 1130 | } else if (!strcmp(arg, "--cherry-pick")) { |
| 1131 | revs->cherry_pick = 1; |
| 1132 | revs->limited = 1; |
| 1133 | } else if (!strcmp(arg, "--objects")) { |
| 1134 | revs->tag_objects = 1; |
| 1135 | revs->tree_objects = 1; |
| 1136 | revs->blob_objects = 1; |
| 1137 | } else if (!strcmp(arg, "--objects-edge")) { |
| 1138 | revs->tag_objects = 1; |
| 1139 | revs->tree_objects = 1; |
| 1140 | revs->blob_objects = 1; |
| 1141 | revs->edge_hint = 1; |
| 1142 | } else if (!strcmp(arg, "--unpacked")) { |
| 1143 | revs->unpacked = 1; |
| Junio C Hamano | 03a9683 | 2009-02-28 08:00:21 | [diff] [blame] | 1144 | } else if (!prefixcmp(arg, "--unpacked=")) { |
| 1145 | die("--unpacked=<packfile> no longer supported."); |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1146 | } else if (!strcmp(arg, "-r")) { |
| 1147 | revs->diff = 1; |
| 1148 | DIFF_OPT_SET(&revs->diffopt, RECURSIVE); |
| 1149 | } else if (!strcmp(arg, "-t")) { |
| 1150 | revs->diff = 1; |
| 1151 | DIFF_OPT_SET(&revs->diffopt, RECURSIVE); |
| 1152 | DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE); |
| 1153 | } else if (!strcmp(arg, "-m")) { |
| 1154 | revs->ignore_merges = 0; |
| 1155 | } else if (!strcmp(arg, "-c")) { |
| 1156 | revs->diff = 1; |
| 1157 | revs->dense_combined_merges = 0; |
| 1158 | revs->combine_merges = 1; |
| 1159 | } else if (!strcmp(arg, "--cc")) { |
| 1160 | revs->diff = 1; |
| 1161 | revs->dense_combined_merges = 1; |
| 1162 | revs->combine_merges = 1; |
| 1163 | } else if (!strcmp(arg, "-v")) { |
| 1164 | revs->verbose_header = 1; |
| 1165 | } else if (!strcmp(arg, "--pretty")) { |
| 1166 | revs->verbose_header = 1; |
| Junio C Hamano | 66b2ed0 | 2010-01-20 21:59:36 | [diff] [blame] | 1167 | revs->pretty_given = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1168 | get_commit_format(arg+8, revs); |
| Nanako Shiraishi | 3a4c1a5 | 2009-02-24 09:59:14 | [diff] [blame] | 1169 | } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) { |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1170 | revs->verbose_header = 1; |
| Junio C Hamano | 66b2ed0 | 2010-01-20 21:59:36 | [diff] [blame] | 1171 | revs->pretty_given = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1172 | get_commit_format(arg+9, revs); |
| Junio C Hamano | 66b2ed0 | 2010-01-20 21:59:36 | [diff] [blame] | 1173 | } else if (!strcmp(arg, "--show-notes")) { |
| 1174 | revs->show_notes = 1; |
| 1175 | revs->show_notes_given = 1; |
| 1176 | } else if (!strcmp(arg, "--no-notes")) { |
| 1177 | revs->show_notes = 0; |
| 1178 | revs->show_notes_given = 1; |
| Nanako Shiraishi | de84acc | 2009-02-24 09:59:16 | [diff] [blame] | 1179 | } else if (!strcmp(arg, "--oneline")) { |
| 1180 | revs->verbose_header = 1; |
| 1181 | get_commit_format("oneline", revs); |
| Junio C Hamano | 7dccadf | 2010-01-21 22:57:41 | [diff] [blame] | 1182 | revs->pretty_given = 1; |
| Nanako Shiraishi | de84acc | 2009-02-24 09:59:16 | [diff] [blame] | 1183 | revs->abbrev_commit = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1184 | } else if (!strcmp(arg, "--graph")) { |
| 1185 | revs->topo_order = 1; |
| 1186 | revs->rewrite_parents = 1; |
| 1187 | revs->graph = graph_init(revs); |
| 1188 | } else if (!strcmp(arg, "--root")) { |
| 1189 | revs->show_root_diff = 1; |
| 1190 | } else if (!strcmp(arg, "--no-commit-id")) { |
| 1191 | revs->no_commit_id = 1; |
| 1192 | } else if (!strcmp(arg, "--always")) { |
| 1193 | revs->always_show_header = 1; |
| 1194 | } else if (!strcmp(arg, "--no-abbrev")) { |
| 1195 | revs->abbrev = 0; |
| 1196 | } else if (!strcmp(arg, "--abbrev")) { |
| 1197 | revs->abbrev = DEFAULT_ABBREV; |
| 1198 | } else if (!prefixcmp(arg, "--abbrev=")) { |
| 1199 | revs->abbrev = strtoul(arg + 9, NULL, 10); |
| 1200 | if (revs->abbrev < MINIMUM_ABBREV) |
| 1201 | revs->abbrev = MINIMUM_ABBREV; |
| 1202 | else if (revs->abbrev > 40) |
| 1203 | revs->abbrev = 40; |
| 1204 | } else if (!strcmp(arg, "--abbrev-commit")) { |
| 1205 | revs->abbrev_commit = 1; |
| 1206 | } else if (!strcmp(arg, "--full-diff")) { |
| 1207 | revs->diff = 1; |
| 1208 | revs->full_diff = 1; |
| 1209 | } else if (!strcmp(arg, "--full-history")) { |
| 1210 | revs->simplify_history = 0; |
| 1211 | } else if (!strcmp(arg, "--relative-date")) { |
| 1212 | revs->date_mode = DATE_RELATIVE; |
| Jeff King | f4ea32f | 2009-09-24 08:28:15 | [diff] [blame] | 1213 | revs->date_mode_explicit = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1214 | } else if (!strncmp(arg, "--date=", 7)) { |
| 1215 | revs->date_mode = parse_date_format(arg + 7); |
| Jeff King | f4ea32f | 2009-09-24 08:28:15 | [diff] [blame] | 1216 | revs->date_mode_explicit = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1217 | } else if (!strcmp(arg, "--log-size")) { |
| 1218 | revs->show_log_size = 1; |
| 1219 | } |
| 1220 | /* |
| 1221 | * Grepping the commit log |
| 1222 | */ |
| 1223 | else if (!prefixcmp(arg, "--author=")) { |
| Junio C Hamano | a4d7d2c | 2008-09-05 05:15:02 | [diff] [blame] | 1224 | add_header_grep(revs, GREP_HEADER_AUTHOR, arg+9); |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1225 | } else if (!prefixcmp(arg, "--committer=")) { |
| Junio C Hamano | a4d7d2c | 2008-09-05 05:15:02 | [diff] [blame] | 1226 | add_header_grep(revs, GREP_HEADER_COMMITTER, arg+12); |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1227 | } else if (!prefixcmp(arg, "--grep=")) { |
| 1228 | add_message_grep(revs, arg+7); |
| 1229 | } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1230 | revs->grep_filter.regflags |= REG_EXTENDED; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1231 | } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1232 | revs->grep_filter.regflags |= REG_ICASE; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1233 | } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1234 | revs->grep_filter.fixed = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1235 | } else if (!strcmp(arg, "--all-match")) { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1236 | revs->grep_filter.all_match = 1; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1237 | } else if (!prefixcmp(arg, "--encoding=")) { |
| 1238 | arg += 11; |
| 1239 | if (strcmp(arg, "none")) |
| 1240 | git_log_output_encoding = xstrdup(arg); |
| 1241 | else |
| 1242 | git_log_output_encoding = ""; |
| 1243 | } else if (!strcmp(arg, "--reverse")) { |
| 1244 | revs->reverse ^= 1; |
| 1245 | } else if (!strcmp(arg, "--children")) { |
| 1246 | revs->children.name = "children"; |
| 1247 | revs->limited = 1; |
| 1248 | } else { |
| 1249 | int opts = diff_opt_parse(&revs->diffopt, argv, argc); |
| 1250 | if (!opts) |
| 1251 | unkv[(*unkc)++] = arg; |
| 1252 | return opts; |
| 1253 | } |
| 1254 | |
| 1255 | return 1; |
| 1256 | } |
| 1257 | |
| Pierre Habouzit | 6b61ec0 | 2008-07-09 21:38:34 | [diff] [blame] | 1258 | void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx, |
| 1259 | const struct option *options, |
| 1260 | const char * const usagestr[]) |
| 1261 | { |
| 1262 | int n = handle_revision_opt(revs, ctx->argc, ctx->argv, |
| 1263 | &ctx->cpidx, ctx->out); |
| 1264 | if (n <= 0) { |
| 1265 | error("unknown option `%s'", ctx->argv[0]); |
| 1266 | usage_with_options(usagestr, options); |
| 1267 | } |
| 1268 | ctx->argv += n; |
| 1269 | ctx->argc -= n; |
| 1270 | } |
| 1271 | |
| Linus Torvalds | ad3f9a7 | 2009-10-27 18:28:07 | [diff] [blame] | 1272 | static int for_each_bad_bisect_ref(each_ref_fn fn, void *cb_data) |
| 1273 | { |
| 1274 | return for_each_ref_in("refs/bisect/bad", fn, cb_data); |
| 1275 | } |
| 1276 | |
| 1277 | static int for_each_good_bisect_ref(each_ref_fn fn, void *cb_data) |
| 1278 | { |
| 1279 | return for_each_ref_in("refs/bisect/good", fn, cb_data); |
| 1280 | } |
| 1281 | |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 1282 | static void append_prune_data(const char ***prune_data, const char **av) |
| 1283 | { |
| 1284 | const char **prune = *prune_data; |
| 1285 | int prune_nr; |
| 1286 | int prune_alloc; |
| 1287 | |
| 1288 | if (!prune) { |
| 1289 | *prune_data = av; |
| 1290 | return; |
| 1291 | } |
| 1292 | |
| 1293 | /* count existing ones */ |
| 1294 | for (prune_nr = 0; prune[prune_nr]; prune_nr++) |
| 1295 | ; |
| 1296 | prune_alloc = prune_nr; /* not really, but we do not know */ |
| 1297 | |
| 1298 | while (*av) { |
| 1299 | ALLOC_GROW(prune, prune_nr+1, prune_alloc); |
| 1300 | prune[prune_nr++] = *av; |
| 1301 | av++; |
| 1302 | } |
| 1303 | if (prune) { |
| 1304 | ALLOC_GROW(prune, prune_nr+1, prune_alloc); |
| 1305 | prune[prune_nr] = NULL; |
| 1306 | } |
| 1307 | *prune_data = prune; |
| 1308 | } |
| 1309 | |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1310 | /* |
| 1311 | * Parse revision information, filling in the "rev_info" structure, |
| 1312 | * and removing the used arguments from the argument list. |
| 1313 | * |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1314 | * Returns the number of arguments left that weren't recognized |
| 1315 | * (which are also moved to the head of the argument list) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1316 | */ |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1317 | int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def) |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1318 | { |
| Junio C Hamano | 8b3dce5 | 2009-11-03 14:59:18 | [diff] [blame] | 1319 | int i, flags, left, seen_dashdash, read_from_stdin; |
| Junio C Hamano | 5486ef0 | 2009-11-20 10:33:28 | [diff] [blame] | 1320 | const char **prune_data = NULL; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1321 | |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1322 | /* First, search for "--" */ |
| 1323 | seen_dashdash = 0; |
| 1324 | for (i = 1; i < argc; i++) { |
| 1325 | const char *arg = argv[i]; |
| 1326 | if (strcmp(arg, "--")) |
| 1327 | continue; |
| 1328 | argv[i] = NULL; |
| 1329 | argc = i; |
| Junio C Hamano | a65f200 | 2007-08-31 05:58:26 | [diff] [blame] | 1330 | if (argv[i + 1]) |
| Junio C Hamano | 5486ef0 | 2009-11-20 10:33:28 | [diff] [blame] | 1331 | prune_data = argv + i + 1; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1332 | seen_dashdash = 1; |
| 1333 | break; |
| 1334 | } |
| 1335 | |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1336 | /* Second, deal with arguments and options */ |
| 1337 | flags = 0; |
| Junio C Hamano | 8b3dce5 | 2009-11-03 14:59:18 | [diff] [blame] | 1338 | read_from_stdin = 0; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1339 | for (left = i = 1; i < argc; i++) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1340 | const char *arg = argv[i]; |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1341 | if (*arg == '-') { |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1342 | int opts; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1343 | |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1344 | if (!strcmp(arg, "--all")) { |
| Uwe Kleine-König | a5aa930 | 2008-02-28 07:24:25 | [diff] [blame] | 1345 | handle_refs(revs, flags, for_each_ref); |
| Johannes Schindelin | f0298cf | 2009-01-16 12:52:53 | [diff] [blame] | 1346 | handle_refs(revs, flags, head_ref); |
| Uwe Kleine-König | a5aa930 | 2008-02-28 07:24:25 | [diff] [blame] | 1347 | continue; |
| 1348 | } |
| 1349 | if (!strcmp(arg, "--branches")) { |
| 1350 | handle_refs(revs, flags, for_each_branch_ref); |
| 1351 | continue; |
| 1352 | } |
| Linus Torvalds | ad3f9a7 | 2009-10-27 18:28:07 | [diff] [blame] | 1353 | if (!strcmp(arg, "--bisect")) { |
| 1354 | handle_refs(revs, flags, for_each_bad_bisect_ref); |
| 1355 | handle_refs(revs, flags ^ UNINTERESTING, for_each_good_bisect_ref); |
| 1356 | revs->bisect = 1; |
| 1357 | continue; |
| 1358 | } |
| Uwe Kleine-König | a5aa930 | 2008-02-28 07:24:25 | [diff] [blame] | 1359 | if (!strcmp(arg, "--tags")) { |
| 1360 | handle_refs(revs, flags, for_each_tag_ref); |
| 1361 | continue; |
| 1362 | } |
| 1363 | if (!strcmp(arg, "--remotes")) { |
| 1364 | handle_refs(revs, flags, for_each_remote_ref); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1365 | continue; |
| 1366 | } |
| Junio C Hamano | 6304929 | 2006-12-19 01:25:28 | [diff] [blame] | 1367 | if (!strcmp(arg, "--reflog")) { |
| 1368 | handle_reflog(revs, flags); |
| 1369 | continue; |
| 1370 | } |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1371 | if (!strcmp(arg, "--not")) { |
| 1372 | flags ^= UNINTERESTING; |
| 1373 | continue; |
| 1374 | } |
| Johannes Schindelin | 8e64006 | 2007-07-23 23:38:40 | [diff] [blame] | 1375 | if (!strcmp(arg, "--no-walk")) { |
| 1376 | revs->no_walk = 1; |
| 1377 | continue; |
| 1378 | } |
| 1379 | if (!strcmp(arg, "--do-walk")) { |
| 1380 | revs->no_walk = 0; |
| 1381 | continue; |
| 1382 | } |
| Junio C Hamano | 8b3dce5 | 2009-11-03 14:59:18 | [diff] [blame] | 1383 | if (!strcmp(arg, "--stdin")) { |
| 1384 | if (revs->disable_stdin) { |
| 1385 | argv[left++] = arg; |
| 1386 | continue; |
| 1387 | } |
| 1388 | if (read_from_stdin++) |
| 1389 | die("--stdin given twice?"); |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 1390 | read_revisions_from_stdin(revs, &prune_data); |
| Junio C Hamano | 8b3dce5 | 2009-11-03 14:59:18 | [diff] [blame] | 1391 | continue; |
| 1392 | } |
| Junio C Hamano | 2d10c55 | 2006-09-20 20:21:56 | [diff] [blame] | 1393 | |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1394 | opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1395 | if (opts > 0) { |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1396 | i += opts - 1; |
| 1397 | continue; |
| 1398 | } |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1399 | if (opts < 0) |
| 1400 | exit(128); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1401 | continue; |
| 1402 | } |
| Rene Scharfe | 0d2c9d6 | 2006-07-01 23:29:37 | [diff] [blame] | 1403 | |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 1404 | if (handle_revision_arg(arg, revs, flags, seen_dashdash)) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1405 | int j; |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 1406 | if (seen_dashdash || *arg == '^') |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1407 | die("bad revision '%s'", arg); |
| 1408 | |
| Junio C Hamano | ea92f41 | 2006-04-26 22:09:27 | [diff] [blame] | 1409 | /* If we didn't have a "--": |
| 1410 | * (1) all filenames must exist; |
| 1411 | * (2) all rev-args must not be interpretable |
| 1412 | * as a valid filename. |
| 1413 | * but the latter we have checked in the main loop. |
| 1414 | */ |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 1415 | for (j = i; j < argc; j++) |
| 1416 | verify_filename(revs->prefix, argv[j]); |
| 1417 | |
| Junio C Hamano | 60da8b1 | 2009-11-20 10:50:21 | [diff] [blame] | 1418 | append_prune_data(&prune_data, argv + i); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1419 | break; |
| 1420 | } |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1421 | } |
| Junio C Hamano | 5d6f093 | 2006-09-06 04:28:36 | [diff] [blame] | 1422 | |
| Junio C Hamano | 5486ef0 | 2009-11-20 10:33:28 | [diff] [blame] | 1423 | if (prune_data) |
| 1424 | revs->prune_data = get_pathspec(revs->prefix, prune_data); |
| 1425 | |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1426 | if (revs->def == NULL) |
| 1427 | revs->def = def; |
| 1428 | if (revs->show_merge) |
| Junio C Hamano | ae3e5e1 | 2006-07-03 09:59:32 | [diff] [blame] | 1429 | prepare_show_merge(revs); |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1430 | if (revs->def && !revs->pending.nr) { |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1431 | unsigned char sha1[20]; |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1432 | struct object *object; |
| Martin Koegler | bb6c2fb | 2007-04-22 16:43:59 | [diff] [blame] | 1433 | unsigned mode; |
| Pierre Habouzit | 02e5422 | 2008-07-08 13:19:33 | [diff] [blame] | 1434 | if (get_sha1_with_mode(revs->def, sha1, &mode)) |
| 1435 | die("bad default revision '%s'", revs->def); |
| 1436 | object = get_reference(revs, revs->def, sha1, 0); |
| 1437 | add_pending_object_with_mode(revs, object, revs->def, mode); |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1438 | } |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 1439 | |
| Linus Torvalds | b7bb760 | 2007-09-29 16:50:39 | [diff] [blame] | 1440 | /* Did the user ask for any diff output? Run the diff! */ |
| 1441 | if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) |
| 1442 | revs->diff = 1; |
| 1443 | |
| Arjen Laarhoven | 0faf2da | 2007-12-25 11:06:47 | [diff] [blame] | 1444 | /* Pickaxe, diff-filter and rename following need diffs */ |
| 1445 | if (revs->diffopt.pickaxe || |
| 1446 | revs->diffopt.filter || |
| 1447 | DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES)) |
| Linus Torvalds | b7bb760 | 2007-09-29 16:50:39 | [diff] [blame] | 1448 | revs->diff = 1; |
| 1449 | |
| Junio C Hamano | 9dad9d2 | 2006-10-31 02:58:03 | [diff] [blame] | 1450 | if (revs->topo_order) |
| Junio C Hamano | 5306968 | 2006-04-02 02:38:25 | [diff] [blame] | 1451 | revs->limited = 1; |
| 1452 | |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 1453 | if (revs->prune_data) { |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1454 | diff_tree_setup_paths(revs->prune_data, &revs->pruning); |
| Linus Torvalds | 750f7b6 | 2007-06-19 21:22:46 | [diff] [blame] | 1455 | /* Can't prune commits with rename following: the paths change.. */ |
| Pierre Habouzit | 8f67f8a | 2007-11-10 19:05:14 | [diff] [blame] | 1456 | if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES)) |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 1457 | revs->prune = 1; |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1458 | if (!revs->full_diff) |
| 1459 | diff_tree_setup_paths(revs->prune_data, &revs->diffopt); |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 1460 | } |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1461 | if (revs->combine_merges) { |
| 1462 | revs->ignore_merges = 0; |
| Timo Hirvonen | 0e677e1 | 2006-06-24 17:25:08 | [diff] [blame] | 1463 | if (revs->dense_combined_merges && !revs->diffopt.output_format) |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1464 | revs->diffopt.output_format = DIFF_FORMAT_PATCH; |
| 1465 | } |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1466 | revs->diffopt.abbrev = revs->abbrev; |
| Junio C Hamano | 72ee96c | 2006-08-09 19:45:27 | [diff] [blame] | 1467 | if (diff_setup_done(&revs->diffopt) < 0) |
| 1468 | die("diff_setup_done failed"); |
| Fredrik Kuivinen | 8efdc32 | 2006-03-10 09:21:39 | [diff] [blame] | 1469 | |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1470 | compile_grep_patterns(&revs->grep_filter); |
| Junio C Hamano | bd95fcd | 2006-09-18 00:23:20 | [diff] [blame] | 1471 | |
| Shawn O. Pearce | d56651c | 2007-08-20 02:33:43 | [diff] [blame] | 1472 | if (revs->reverse && revs->reflog_info) |
| 1473 | die("cannot combine --reverse with --walk-reflogs"); |
| Junio C Hamano | 8bb6588 | 2008-07-08 22:25:44 | [diff] [blame] | 1474 | if (revs->rewrite_parents && revs->children.name) |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1475 | die("cannot combine --parents and --children"); |
| Shawn O. Pearce | d56651c | 2007-08-20 02:33:43 | [diff] [blame] | 1476 | |
| Adam Simpkins | 7fefda5 | 2008-05-04 10:36:54 | [diff] [blame] | 1477 | /* |
| 1478 | * Limitations on the graph functionality |
| 1479 | */ |
| 1480 | if (revs->reverse && revs->graph) |
| 1481 | die("cannot combine --reverse with --graph"); |
| 1482 | |
| 1483 | if (revs->reflog_info && revs->graph) |
| 1484 | die("cannot combine --walk-reflogs with --graph"); |
| 1485 | |
| Linus Torvalds | ae56354 | 2006-02-26 00:19:46 | [diff] [blame] | 1486 | return left; |
| 1487 | } |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1488 | |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1489 | static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child) |
| 1490 | { |
| 1491 | struct commit_list *l = xcalloc(1, sizeof(*l)); |
| 1492 | |
| 1493 | l->item = child; |
| 1494 | l->next = add_decoration(&revs->children, &parent->object, l); |
| 1495 | } |
| 1496 | |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1497 | static int remove_duplicate_parents(struct commit *commit) |
| 1498 | { |
| 1499 | struct commit_list **pp, *p; |
| 1500 | int surviving_parents; |
| 1501 | |
| 1502 | /* Examine existing parents while marking ones we have seen... */ |
| 1503 | pp = &commit->parents; |
| 1504 | while ((p = *pp) != NULL) { |
| 1505 | struct commit *parent = p->item; |
| 1506 | if (parent->object.flags & TMP_MARK) { |
| 1507 | *pp = p->next; |
| 1508 | continue; |
| 1509 | } |
| 1510 | parent->object.flags |= TMP_MARK; |
| 1511 | pp = &p->next; |
| 1512 | } |
| 1513 | /* count them while clearing the temporary mark */ |
| 1514 | surviving_parents = 0; |
| 1515 | for (p = commit->parents; p; p = p->next) { |
| 1516 | p->item->object.flags &= ~TMP_MARK; |
| 1517 | surviving_parents++; |
| 1518 | } |
| 1519 | return surviving_parents; |
| 1520 | } |
| 1521 | |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1522 | struct merge_simplify_state { |
| 1523 | struct commit *simplified; |
| 1524 | }; |
| 1525 | |
| 1526 | static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit) |
| 1527 | { |
| 1528 | struct merge_simplify_state *st; |
| 1529 | |
| 1530 | st = lookup_decoration(&revs->merge_simplification, &commit->object); |
| 1531 | if (!st) { |
| 1532 | st = xcalloc(1, sizeof(*st)); |
| 1533 | add_decoration(&revs->merge_simplification, &commit->object, st); |
| 1534 | } |
| 1535 | return st; |
| 1536 | } |
| 1537 | |
| 1538 | static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail) |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1539 | { |
| 1540 | struct commit_list *p; |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1541 | struct merge_simplify_state *st, *pst; |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1542 | int cnt; |
| 1543 | |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1544 | st = locate_simplify_state(revs, commit); |
| 1545 | |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1546 | /* |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1547 | * Have we handled this one? |
| 1548 | */ |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1549 | if (st->simplified) |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1550 | return tail; |
| 1551 | |
| 1552 | /* |
| 1553 | * An UNINTERESTING commit simplifies to itself, so does a |
| 1554 | * root commit. We do not rewrite parents of such commit |
| 1555 | * anyway. |
| 1556 | */ |
| 1557 | if ((commit->object.flags & UNINTERESTING) || !commit->parents) { |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1558 | st->simplified = commit; |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1559 | return tail; |
| 1560 | } |
| 1561 | |
| 1562 | /* |
| 1563 | * Do we know what commit all of our parents should be rewritten to? |
| 1564 | * Otherwise we are not ready to rewrite this one yet. |
| 1565 | */ |
| 1566 | for (cnt = 0, p = commit->parents; p; p = p->next) { |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1567 | pst = locate_simplify_state(revs, p->item); |
| 1568 | if (!pst->simplified) { |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1569 | tail = &commit_list_insert(p->item, tail)->next; |
| 1570 | cnt++; |
| 1571 | } |
| 1572 | } |
| Junio C Hamano | 53030f8 | 2008-08-18 07:37:34 | [diff] [blame] | 1573 | if (cnt) { |
| 1574 | tail = &commit_list_insert(commit, tail)->next; |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1575 | return tail; |
| Junio C Hamano | 53030f8 | 2008-08-18 07:37:34 | [diff] [blame] | 1576 | } |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1577 | |
| 1578 | /* |
| 1579 | * Rewrite our list of parents. |
| 1580 | */ |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1581 | for (p = commit->parents; p; p = p->next) { |
| 1582 | pst = locate_simplify_state(revs, p->item); |
| 1583 | p->item = pst->simplified; |
| 1584 | } |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1585 | cnt = remove_duplicate_parents(commit); |
| 1586 | |
| 1587 | /* |
| 1588 | * It is possible that we are a merge and one side branch |
| 1589 | * does not have any commit that touches the given paths; |
| 1590 | * in such a case, the immediate parents will be rewritten |
| 1591 | * to different commits. |
| 1592 | * |
| 1593 | * o----X X: the commit we are looking at; |
| 1594 | * / / o: a commit that touches the paths; |
| 1595 | * ---o----' |
| 1596 | * |
| 1597 | * Further reduce the parents by removing redundant parents. |
| 1598 | */ |
| 1599 | if (1 < cnt) { |
| 1600 | struct commit_list *h = reduce_heads(commit->parents); |
| 1601 | cnt = commit_list_count(h); |
| 1602 | free_commit_list(commit->parents); |
| 1603 | commit->parents = h; |
| 1604 | } |
| 1605 | |
| 1606 | /* |
| 1607 | * A commit simplifies to itself if it is a root, if it is |
| 1608 | * UNINTERESTING, if it touches the given paths, or if it is a |
| 1609 | * merge and its parents simplifies to more than one commits |
| 1610 | * (the first two cases are already handled at the beginning of |
| 1611 | * this function). |
| 1612 | * |
| 1613 | * Otherwise, it simplifies to what its sole parent simplifies to. |
| 1614 | */ |
| 1615 | if (!cnt || |
| 1616 | (commit->object.flags & UNINTERESTING) || |
| 1617 | !(commit->object.flags & TREESAME) || |
| 1618 | (1 < cnt)) |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1619 | st->simplified = commit; |
| 1620 | else { |
| 1621 | pst = locate_simplify_state(revs, commit->parents->item); |
| 1622 | st->simplified = pst->simplified; |
| 1623 | } |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1624 | return tail; |
| 1625 | } |
| 1626 | |
| 1627 | static void simplify_merges(struct rev_info *revs) |
| 1628 | { |
| 1629 | struct commit_list *list; |
| 1630 | struct commit_list *yet_to_do, **tail; |
| 1631 | |
| Junio C Hamano | 5eac739 | 2008-08-14 20:52:36 | [diff] [blame] | 1632 | if (!revs->topo_order) |
| 1633 | sort_in_topological_order(&revs->commits, revs->lifo); |
| 1634 | if (!revs->prune) |
| 1635 | return; |
| Junio C Hamano | 6534703 | 2008-08-04 00:47:16 | [diff] [blame] | 1636 | |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1637 | /* feed the list reversed */ |
| 1638 | yet_to_do = NULL; |
| 1639 | for (list = revs->commits; list; list = list->next) |
| 1640 | commit_list_insert(list->item, &yet_to_do); |
| 1641 | while (yet_to_do) { |
| 1642 | list = yet_to_do; |
| 1643 | yet_to_do = NULL; |
| 1644 | tail = &yet_to_do; |
| 1645 | while (list) { |
| 1646 | struct commit *commit = list->item; |
| 1647 | struct commit_list *next = list->next; |
| 1648 | free(list); |
| 1649 | list = next; |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1650 | tail = simplify_one(revs, commit, tail); |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1651 | } |
| 1652 | } |
| 1653 | |
| 1654 | /* clean up the result, removing the simplified ones */ |
| 1655 | list = revs->commits; |
| 1656 | revs->commits = NULL; |
| 1657 | tail = &revs->commits; |
| 1658 | while (list) { |
| 1659 | struct commit *commit = list->item; |
| 1660 | struct commit_list *next = list->next; |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1661 | struct merge_simplify_state *st; |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1662 | free(list); |
| 1663 | list = next; |
| Junio C Hamano | faf0156 | 2008-08-14 17:59:44 | [diff] [blame] | 1664 | st = locate_simplify_state(revs, commit); |
| 1665 | if (st->simplified == commit) |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1666 | tail = &commit_list_insert(commit, tail)->next; |
| 1667 | } |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1668 | } |
| 1669 | |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1670 | static void set_children(struct rev_info *revs) |
| 1671 | { |
| 1672 | struct commit_list *l; |
| 1673 | for (l = revs->commits; l; l = l->next) { |
| 1674 | struct commit *commit = l->item; |
| 1675 | struct commit_list *p; |
| 1676 | |
| 1677 | for (p = commit->parents; p; p = p->next) |
| 1678 | add_child(revs, p->item, commit); |
| 1679 | } |
| 1680 | } |
| 1681 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1682 | int prepare_revision_walk(struct rev_info *revs) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1683 | { |
| Linus Torvalds | 1f1e895 | 2006-06-20 00:42:35 | [diff] [blame] | 1684 | int nr = revs->pending.nr; |
| Junio C Hamano | 94d2367 | 2007-01-11 06:36:16 | [diff] [blame] | 1685 | struct object_array_entry *e, *list; |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1686 | |
| Junio C Hamano | 94d2367 | 2007-01-11 06:36:16 | [diff] [blame] | 1687 | e = list = revs->pending.objects; |
| Linus Torvalds | 1f1e895 | 2006-06-20 00:42:35 | [diff] [blame] | 1688 | revs->pending.nr = 0; |
| 1689 | revs->pending.alloc = 0; |
| 1690 | revs->pending.objects = NULL; |
| 1691 | while (--nr >= 0) { |
| Junio C Hamano | 94d2367 | 2007-01-11 06:36:16 | [diff] [blame] | 1692 | struct commit *commit = handle_commit(revs, e->item, e->name); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1693 | if (commit) { |
| 1694 | if (!(commit->object.flags & SEEN)) { |
| 1695 | commit->object.flags |= SEEN; |
| 1696 | insert_by_date(commit, &revs->commits); |
| 1697 | } |
| 1698 | } |
| Junio C Hamano | 94d2367 | 2007-01-11 06:36:16 | [diff] [blame] | 1699 | e++; |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1700 | } |
| Junio C Hamano | 94d2367 | 2007-01-11 06:36:16 | [diff] [blame] | 1701 | free(list); |
| Linus Torvalds | cd2bdc5 | 2006-04-14 23:52:13 | [diff] [blame] | 1702 | |
| Linus Torvalds | ba1d450 | 2006-04-15 19:09:56 | [diff] [blame] | 1703 | if (revs->no_walk) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1704 | return 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1705 | if (revs->limited) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1706 | if (limit_list(revs) < 0) |
| 1707 | return -1; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1708 | if (revs->topo_order) |
| Linus Torvalds | 23c17d4 | 2007-11-02 20:32:58 | [diff] [blame] | 1709 | sort_in_topological_order(&revs->commits, revs->lifo); |
| Junio C Hamano | 6546b59 | 2008-07-31 08:17:41 | [diff] [blame] | 1710 | if (revs->simplify_merges) |
| 1711 | simplify_merges(revs); |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1712 | if (revs->children.name) |
| 1713 | set_children(revs); |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1714 | return 0; |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1715 | } |
| 1716 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1717 | enum rewrite_result { |
| 1718 | rewrite_one_ok, |
| 1719 | rewrite_one_noparents, |
| 1720 | rewrite_one_error, |
| 1721 | }; |
| 1722 | |
| 1723 | static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp) |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1724 | { |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 1725 | struct commit_list *cache = NULL; |
| 1726 | |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1727 | for (;;) { |
| 1728 | struct commit *p = *pp; |
| Linus Torvalds | 3381c79 | 2006-04-09 00:05:58 | [diff] [blame] | 1729 | if (!revs->limited) |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 1730 | if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1731 | return rewrite_one_error; |
| Linus Torvalds | 6631c73 | 2006-07-01 03:21:59 | [diff] [blame] | 1732 | if (p->parents && p->parents->next) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1733 | return rewrite_one_ok; |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 1734 | if (p->object.flags & UNINTERESTING) |
| 1735 | return rewrite_one_ok; |
| 1736 | if (!(p->object.flags & TREESAME)) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1737 | return rewrite_one_ok; |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1738 | if (!p->parents) |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1739 | return rewrite_one_noparents; |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1740 | *pp = p->parents->item; |
| 1741 | } |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1742 | } |
| 1743 | |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1744 | static int rewrite_parents(struct rev_info *revs, struct commit *commit) |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1745 | { |
| 1746 | struct commit_list **pp = &commit->parents; |
| 1747 | while (*pp) { |
| 1748 | struct commit_list *parent = *pp; |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1749 | switch (rewrite_one(revs, &parent->item)) { |
| 1750 | case rewrite_one_ok: |
| 1751 | break; |
| 1752 | case rewrite_one_noparents: |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1753 | *pp = parent->next; |
| 1754 | continue; |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1755 | case rewrite_one_error: |
| 1756 | return -1; |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1757 | } |
| 1758 | pp = &parent->next; |
| 1759 | } |
| Junio C Hamano | 11d6596 | 2007-07-09 02:03:19 | [diff] [blame] | 1760 | remove_duplicate_parents(commit); |
| Alex Riesen | cc0e6c5 | 2007-05-04 21:54:57 | [diff] [blame] | 1761 | return 0; |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1762 | } |
| Linus Torvalds | a4a88b2 | 2006-02-28 19:24:00 | [diff] [blame] | 1763 | |
| Junio C Hamano | 8ecae9b | 2006-09-17 22:43:40 | [diff] [blame] | 1764 | static int commit_match(struct commit *commit, struct rev_info *opt) |
| 1765 | { |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1766 | if (!opt->grep_filter.pattern_list) |
| Junio C Hamano | 8ecae9b | 2006-09-17 22:43:40 | [diff] [blame] | 1767 | return 1; |
| Jeff King | 0843acf | 2008-08-25 06:15:05 | [diff] [blame] | 1768 | return grep_buffer(&opt->grep_filter, |
| Junio C Hamano | 2d10c55 | 2006-09-20 20:21:56 | [diff] [blame] | 1769 | NULL, /* we say nothing, not even filename */ |
| 1770 | commit->buffer, strlen(commit->buffer)); |
| Junio C Hamano | 8ecae9b | 2006-09-17 22:43:40 | [diff] [blame] | 1771 | } |
| 1772 | |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1773 | static inline int want_ancestry(struct rev_info *revs) |
| 1774 | { |
| Junio C Hamano | 8bb6588 | 2008-07-08 22:25:44 | [diff] [blame] | 1775 | return (revs->rewrite_parents || revs->children.name); |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1776 | } |
| 1777 | |
| Adam Simpkins | beb5af4 | 2009-08-19 02:34:33 | [diff] [blame] | 1778 | enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit) |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1779 | { |
| 1780 | if (commit->object.flags & SHOWN) |
| 1781 | return commit_ignore; |
| Brandon Casey | 4d6acb7 | 2009-03-20 03:47:54 | [diff] [blame] | 1782 | if (revs->unpacked && has_sha1_pack(commit->object.sha1)) |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1783 | return commit_ignore; |
| Linus Torvalds | 3131b71 | 2008-02-09 22:02:07 | [diff] [blame] | 1784 | if (revs->show_all) |
| 1785 | return commit_show; |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1786 | if (commit->object.flags & UNINTERESTING) |
| 1787 | return commit_ignore; |
| 1788 | if (revs->min_age != -1 && (commit->date > revs->min_age)) |
| 1789 | return commit_ignore; |
| 1790 | if (revs->no_merges && commit->parents && commit->parents->next) |
| 1791 | return commit_ignore; |
| Linus Torvalds | b8e8db2 | 2009-06-29 17:28:25 | [diff] [blame] | 1792 | if (revs->merges_only && !(commit->parents && commit->parents->next)) |
| 1793 | return commit_ignore; |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1794 | if (!commit_match(commit, revs)) |
| 1795 | return commit_ignore; |
| Linus Torvalds | 53b2c82 | 2007-11-05 21:22:34 | [diff] [blame] | 1796 | if (revs->prune && revs->dense) { |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1797 | /* Commit without changes? */ |
| Linus Torvalds | 7dc0fe3 | 2007-11-13 07:16:08 | [diff] [blame] | 1798 | if (commit->object.flags & TREESAME) { |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1799 | /* drop merges unless we want parenthood */ |
| Junio C Hamano | f35f560 | 2008-04-03 09:12:06 | [diff] [blame] | 1800 | if (!want_ancestry(revs)) |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1801 | return commit_ignore; |
| 1802 | /* non-merge - always ignore it */ |
| 1803 | if (!commit->parents || !commit->parents->next) |
| 1804 | return commit_ignore; |
| 1805 | } |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1806 | } |
| 1807 | return commit_show; |
| 1808 | } |
| 1809 | |
| Adam Simpkins | beb5af4 | 2009-08-19 02:34:33 | [diff] [blame] | 1810 | enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit) |
| 1811 | { |
| 1812 | enum commit_action action = get_commit_action(revs, commit); |
| 1813 | |
| 1814 | if (action == commit_show && |
| 1815 | !revs->show_all && |
| 1816 | revs->prune && revs->dense && want_ancestry(revs)) { |
| 1817 | if (rewrite_parents(revs, commit) < 0) |
| 1818 | return commit_error; |
| 1819 | } |
| 1820 | return action; |
| 1821 | } |
| 1822 | |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1823 | static struct commit *get_revision_1(struct rev_info *revs) |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1824 | { |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1825 | if (!revs->commits) |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1826 | return NULL; |
| 1827 | |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1828 | do { |
| Linus Torvalds | cb11574 | 2006-06-18 01:47:58 | [diff] [blame] | 1829 | struct commit_list *entry = revs->commits; |
| 1830 | struct commit *commit = entry->item; |
| Linus Torvalds | ea5ed3a | 2006-03-05 17:53:52 | [diff] [blame] | 1831 | |
| Linus Torvalds | cb11574 | 2006-06-18 01:47:58 | [diff] [blame] | 1832 | revs->commits = entry->next; |
| 1833 | free(entry); |
| Linus Torvalds | 2a0925b | 2006-03-31 01:05:25 | [diff] [blame] | 1834 | |
| Johannes Schindelin | 8860fd4 | 2007-01-11 10:47:48 | [diff] [blame] | 1835 | if (revs->reflog_info) |
| 1836 | fake_reflog_parent(revs->reflog_info, commit); |
| 1837 | |
| Linus Torvalds | 2a0925b | 2006-03-31 01:05:25 | [diff] [blame] | 1838 | /* |
| 1839 | * If we haven't done the list limiting, we need to look at |
| Linus Torvalds | be7db6e | 2006-04-02 00:35:06 | [diff] [blame] | 1840 | * the parents here. We also need to do the date-based limiting |
| 1841 | * that we'd otherwise have done in limit_list(). |
| Linus Torvalds | 2a0925b | 2006-03-31 01:05:25 | [diff] [blame] | 1842 | */ |
| Linus Torvalds | be7db6e | 2006-04-02 00:35:06 | [diff] [blame] | 1843 | if (!revs->limited) { |
| Jan Harkes | 744f498 | 2006-10-31 01:37:49 | [diff] [blame] | 1844 | if (revs->max_age != -1 && |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1845 | (commit->date < revs->max_age)) |
| 1846 | continue; |
| Alexander N. Gavrilov | fce87ae | 2008-07-12 18:00:57 | [diff] [blame] | 1847 | if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0) |
| Junio C Hamano | ed62089 | 2009-02-11 09:27:43 | [diff] [blame] | 1848 | die("Failed to traverse parents of commit %s", |
| 1849 | sha1_to_hex(commit->object.sha1)); |
| Linus Torvalds | be7db6e | 2006-04-02 00:35:06 | [diff] [blame] | 1850 | } |
| Junio C Hamano | 1b65a5a | 2006-04-17 01:12:49 | [diff] [blame] | 1851 | |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1852 | switch (simplify_commit(revs, commit)) { |
| 1853 | case commit_ignore: |
| Linus Torvalds | 2a0925b | 2006-03-31 01:05:25 | [diff] [blame] | 1854 | continue; |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1855 | case commit_error: |
| Junio C Hamano | ed62089 | 2009-02-11 09:27:43 | [diff] [blame] | 1856 | die("Failed to simplify parents of commit %s", |
| 1857 | sha1_to_hex(commit->object.sha1)); |
| Linus Torvalds | 252a7c0 | 2007-11-04 20:12:05 | [diff] [blame] | 1858 | default: |
| 1859 | return commit; |
| Junio C Hamano | 384e99a | 2006-03-28 07:58:34 | [diff] [blame] | 1860 | } |
| Linus Torvalds | 765ac8e | 2006-02-28 23:07:20 | [diff] [blame] | 1861 | } while (revs->commits); |
| 1862 | return NULL; |
| 1863 | } |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1864 | |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1865 | static void gc_boundary(struct object_array *array) |
| 1866 | { |
| 1867 | unsigned nr = array->nr; |
| 1868 | unsigned alloc = array->alloc; |
| 1869 | struct object_array_entry *objects = array->objects; |
| 1870 | |
| 1871 | if (alloc <= nr) { |
| 1872 | unsigned i, j; |
| 1873 | for (i = j = 0; i < nr; i++) { |
| 1874 | if (objects[i].item->flags & SHOWN) |
| 1875 | continue; |
| 1876 | if (i != j) |
| 1877 | objects[j] = objects[i]; |
| 1878 | j++; |
| 1879 | } |
| Junio C Hamano | 892ae6b | 2007-03-06 11:00:18 | [diff] [blame] | 1880 | for (i = j; i < nr; i++) |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1881 | objects[i].item = NULL; |
| 1882 | array->nr = j; |
| 1883 | } |
| 1884 | } |
| 1885 | |
| Adam Simpkins | 4603ec0 | 2008-05-24 23:02:05 | [diff] [blame] | 1886 | static void create_boundary_commit_list(struct rev_info *revs) |
| 1887 | { |
| 1888 | unsigned i; |
| 1889 | struct commit *c; |
| 1890 | struct object_array *array = &revs->boundary_commits; |
| 1891 | struct object_array_entry *objects = array->objects; |
| 1892 | |
| 1893 | /* |
| 1894 | * If revs->commits is non-NULL at this point, an error occurred in |
| 1895 | * get_revision_1(). Ignore the error and continue printing the |
| 1896 | * boundary commits anyway. (This is what the code has always |
| 1897 | * done.) |
| 1898 | */ |
| 1899 | if (revs->commits) { |
| 1900 | free_commit_list(revs->commits); |
| 1901 | revs->commits = NULL; |
| 1902 | } |
| 1903 | |
| 1904 | /* |
| 1905 | * Put all of the actual boundary commits from revs->boundary_commits |
| 1906 | * into revs->commits |
| 1907 | */ |
| 1908 | for (i = 0; i < array->nr; i++) { |
| 1909 | c = (struct commit *)(objects[i].item); |
| 1910 | if (!c) |
| 1911 | continue; |
| 1912 | if (!(c->object.flags & CHILD_SHOWN)) |
| 1913 | continue; |
| 1914 | if (c->object.flags & (SHOWN | BOUNDARY)) |
| 1915 | continue; |
| 1916 | c->object.flags |= BOUNDARY; |
| 1917 | commit_list_insert(c, &revs->commits); |
| 1918 | } |
| 1919 | |
| 1920 | /* |
| 1921 | * If revs->topo_order is set, sort the boundary commits |
| 1922 | * in topological order |
| 1923 | */ |
| 1924 | sort_in_topological_order(&revs->commits, revs->lifo); |
| 1925 | } |
| 1926 | |
| Adam Simpkins | 7fefda5 | 2008-05-04 10:36:54 | [diff] [blame] | 1927 | static struct commit *get_revision_internal(struct rev_info *revs) |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1928 | { |
| 1929 | struct commit *c = NULL; |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1930 | struct commit_list *l; |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1931 | |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1932 | if (revs->boundary == 2) { |
| Adam Simpkins | 4603ec0 | 2008-05-24 23:02:05 | [diff] [blame] | 1933 | /* |
| 1934 | * All of the normal commits have already been returned, |
| 1935 | * and we are now returning boundary commits. |
| 1936 | * create_boundary_commit_list() has populated |
| 1937 | * revs->commits with the remaining commits to return. |
| 1938 | */ |
| 1939 | c = pop_commit(&revs->commits); |
| 1940 | if (c) |
| 1941 | c->object.flags |= SHOWN; |
| Johannes Schindelin | 9c5e66e | 2007-01-20 22:04:02 | [diff] [blame] | 1942 | return c; |
| 1943 | } |
| 1944 | |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1945 | /* |
| 1946 | * Now pick up what they want to give us |
| 1947 | */ |
| Junio C Hamano | 8839ac9 | 2007-03-06 11:20:55 | [diff] [blame] | 1948 | c = get_revision_1(revs); |
| 1949 | if (c) { |
| 1950 | while (0 < revs->skip_count) { |
| 1951 | revs->skip_count--; |
| 1952 | c = get_revision_1(revs); |
| 1953 | if (!c) |
| 1954 | break; |
| 1955 | } |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1956 | } |
| 1957 | |
| 1958 | /* |
| 1959 | * Check the max_count. |
| 1960 | */ |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1961 | switch (revs->max_count) { |
| 1962 | case -1: |
| 1963 | break; |
| 1964 | case 0: |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1965 | c = NULL; |
| 1966 | break; |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1967 | default: |
| 1968 | revs->max_count--; |
| 1969 | } |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1970 | |
| Junio C Hamano | c33d859 | 2007-03-06 02:23:57 | [diff] [blame] | 1971 | if (c) |
| 1972 | c->object.flags |= SHOWN; |
| 1973 | |
| 1974 | if (!revs->boundary) { |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 1975 | return c; |
| Junio C Hamano | c33d859 | 2007-03-06 02:23:57 | [diff] [blame] | 1976 | } |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1977 | |
| 1978 | if (!c) { |
| 1979 | /* |
| 1980 | * get_revision_1() runs out the commits, and |
| 1981 | * we are done computing the boundaries. |
| 1982 | * switch to boundary commits output mode. |
| 1983 | */ |
| 1984 | revs->boundary = 2; |
| Adam Simpkins | 4603ec0 | 2008-05-24 23:02:05 | [diff] [blame] | 1985 | |
| 1986 | /* |
| 1987 | * Update revs->commits to contain the list of |
| 1988 | * boundary commits. |
| 1989 | */ |
| 1990 | create_boundary_commit_list(revs); |
| 1991 | |
| Adam Simpkins | 3c68d67 | 2008-05-24 23:02:04 | [diff] [blame] | 1992 | return get_revision_internal(revs); |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 1993 | } |
| 1994 | |
| 1995 | /* |
| 1996 | * boundary commits are the commits that are parents of the |
| 1997 | * ones we got from get_revision_1() but they themselves are |
| 1998 | * not returned from get_revision_1(). Before returning |
| 1999 | * 'c', we need to mark its parents that they could be boundaries. |
| 2000 | */ |
| 2001 | |
| 2002 | for (l = c->parents; l; l = l->next) { |
| 2003 | struct object *p; |
| 2004 | p = &(l->item->object); |
| Junio C Hamano | c33d859 | 2007-03-06 02:23:57 | [diff] [blame] | 2005 | if (p->flags & (CHILD_SHOWN | SHOWN)) |
| Junio C Hamano | 86ab490 | 2007-03-05 21:10:06 | [diff] [blame] | 2006 | continue; |
| 2007 | p->flags |= CHILD_SHOWN; |
| 2008 | gc_boundary(&revs->boundary_commits); |
| 2009 | add_object_array(p, NULL, &revs->boundary_commits); |
| 2010 | } |
| 2011 | |
| 2012 | return c; |
| Junio C Hamano | d5db6c9 | 2006-12-20 02:25:32 | [diff] [blame] | 2013 | } |
| Adam Simpkins | 7fefda5 | 2008-05-04 10:36:54 | [diff] [blame] | 2014 | |
| 2015 | struct commit *get_revision(struct rev_info *revs) |
| 2016 | { |
| Thomas Rast | 498bcd3 | 2008-08-29 19:18:38 | [diff] [blame] | 2017 | struct commit *c; |
| 2018 | struct commit_list *reversed; |
| 2019 | |
| 2020 | if (revs->reverse) { |
| 2021 | reversed = NULL; |
| 2022 | while ((c = get_revision_internal(revs))) { |
| 2023 | commit_list_insert(c, &reversed); |
| 2024 | } |
| 2025 | revs->commits = reversed; |
| 2026 | revs->reverse = 0; |
| 2027 | revs->reverse_output_stage = 1; |
| 2028 | } |
| 2029 | |
| 2030 | if (revs->reverse_output_stage) |
| 2031 | return pop_commit(&revs->commits); |
| 2032 | |
| 2033 | c = get_revision_internal(revs); |
| Adam Simpkins | 7fefda5 | 2008-05-04 10:36:54 | [diff] [blame] | 2034 | if (c && revs->graph) |
| 2035 | graph_update(revs->graph, c); |
| 2036 | return c; |
| 2037 | } |