Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "commit.h" |
| 3 | #include "refs.h" |
Peter Eriksen | 51ce34b | 2006-05-23 14:15:35 +0200 | [diff] [blame] | 4 | #include "builtin.h" |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 5 | |
| 6 | static const char show_branch_usage[] = |
Junio C Hamano | b15af07 | 2007-01-19 22:51:49 -0800 | [diff] [blame] | 7 | "git-show-branch [--sparse] [--current] [--all] [--remotes] [--topo-order] [--more=count | --list | --independent | --merge-base ] [--topics] [<refs>...] | --reflog[=n[,b]] <branch>"; |
| 8 | static const char show_branch_usage_reflog[] = |
| 9 | "--reflog is incompatible with --all, --remotes, --independent or --merge-base"; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 10 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 11 | static int default_num; |
| 12 | static int default_alloc; |
| 13 | static const char **default_arg; |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 14 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 15 | #define UNINTERESTING 01 |
| 16 | |
| 17 | #define REV_SHIFT 2 |
Linus Torvalds | 885a86a | 2006-06-14 16:45:13 -0700 | [diff] [blame] | 18 | #define MAX_REVS (FLAG_BITS - REV_SHIFT) /* should not exceed bits_per_int - REV_SHIFT */ |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 19 | |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 20 | #define DEFAULT_REFLOG 4 |
| 21 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 22 | static struct commit *interesting(struct commit_list *list) |
| 23 | { |
| 24 | while (list) { |
| 25 | struct commit *commit = list->item; |
| 26 | list = list->next; |
| 27 | if (commit->object.flags & UNINTERESTING) |
| 28 | continue; |
| 29 | return commit; |
| 30 | } |
| 31 | return NULL; |
| 32 | } |
| 33 | |
| 34 | static struct commit *pop_one_commit(struct commit_list **list_p) |
| 35 | { |
| 36 | struct commit *commit; |
| 37 | struct commit_list *list; |
| 38 | list = *list_p; |
| 39 | commit = list->item; |
| 40 | *list_p = list->next; |
| 41 | free(list); |
| 42 | return commit; |
| 43 | } |
| 44 | |
| 45 | struct commit_name { |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 46 | const char *head_name; /* which head's ancestor? */ |
| 47 | int generation; /* how many parents away from head_name */ |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 50 | /* Name the commit as nth generation ancestor of head_name; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 51 | * we count only the first-parent relationship for naming purposes. |
| 52 | */ |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 53 | static void name_commit(struct commit *commit, const char *head_name, int nth) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 54 | { |
| 55 | struct commit_name *name; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 56 | if (!commit->util) |
| 57 | commit->util = xmalloc(sizeof(struct commit_name)); |
| 58 | name = commit->util; |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 59 | name->head_name = head_name; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 60 | name->generation = nth; |
| 61 | } |
| 62 | |
| 63 | /* Parent is the first parent of the commit. We may name it |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 64 | * as (n+1)th generation ancestor of the same head_name as |
Junio C Hamano | bcaf60b | 2005-12-08 14:10:02 -0800 | [diff] [blame] | 65 | * commit is nth generation ancestor of, if that generation |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 66 | * number is better than the name it already has. |
| 67 | */ |
| 68 | static void name_parent(struct commit *commit, struct commit *parent) |
| 69 | { |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 70 | struct commit_name *commit_name = commit->util; |
| 71 | struct commit_name *parent_name = parent->util; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 72 | if (!commit_name) |
| 73 | return; |
| 74 | if (!parent_name || |
| 75 | commit_name->generation + 1 < parent_name->generation) |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 76 | name_commit(parent, commit_name->head_name, |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 77 | commit_name->generation + 1); |
| 78 | } |
| 79 | |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 80 | static int name_first_parent_chain(struct commit *c) |
| 81 | { |
| 82 | int i = 0; |
| 83 | while (c) { |
| 84 | struct commit *p; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 85 | if (!c->util) |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 86 | break; |
| 87 | if (!c->parents) |
| 88 | break; |
| 89 | p = c->parents->item; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 90 | if (!p->util) { |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 91 | name_parent(c, p); |
| 92 | i++; |
| 93 | } |
Alexandre Julliard | f8263c5 | 2006-07-23 19:51:04 +0200 | [diff] [blame] | 94 | else |
| 95 | break; |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 96 | c = p; |
| 97 | } |
| 98 | return i; |
| 99 | } |
| 100 | |
| 101 | static void name_commits(struct commit_list *list, |
| 102 | struct commit **rev, |
| 103 | char **ref_name, |
| 104 | int num_rev) |
| 105 | { |
| 106 | struct commit_list *cl; |
| 107 | struct commit *c; |
| 108 | int i; |
| 109 | |
| 110 | /* First give names to the given heads */ |
| 111 | for (cl = list; cl; cl = cl->next) { |
| 112 | c = cl->item; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 113 | if (c->util) |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 114 | continue; |
| 115 | for (i = 0; i < num_rev; i++) { |
| 116 | if (rev[i] == c) { |
| 117 | name_commit(c, ref_name[i], 0); |
| 118 | break; |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /* Then commits on the first parent ancestry chain */ |
| 124 | do { |
| 125 | i = 0; |
| 126 | for (cl = list; cl; cl = cl->next) { |
| 127 | i += name_first_parent_chain(cl->item); |
| 128 | } |
| 129 | } while (i); |
| 130 | |
| 131 | /* Finally, any unnamed commits */ |
| 132 | do { |
| 133 | i = 0; |
| 134 | for (cl = list; cl; cl = cl->next) { |
| 135 | struct commit_list *parents; |
| 136 | struct commit_name *n; |
| 137 | int nth; |
| 138 | c = cl->item; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 139 | if (!c->util) |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 140 | continue; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 141 | n = c->util; |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 142 | parents = c->parents; |
| 143 | nth = 0; |
| 144 | while (parents) { |
| 145 | struct commit *p = parents->item; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 146 | char newname[1000], *en; |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 147 | parents = parents->next; |
| 148 | nth++; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 149 | if (p->util) |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 150 | continue; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 151 | en = newname; |
Junio C Hamano | fbaf834 | 2005-09-24 23:33:02 -0700 | [diff] [blame] | 152 | switch (n->generation) { |
| 153 | case 0: |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 154 | en += sprintf(en, "%s", n->head_name); |
Junio C Hamano | fbaf834 | 2005-09-24 23:33:02 -0700 | [diff] [blame] | 155 | break; |
| 156 | case 1: |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 157 | en += sprintf(en, "%s^", n->head_name); |
Junio C Hamano | fbaf834 | 2005-09-24 23:33:02 -0700 | [diff] [blame] | 158 | break; |
| 159 | default: |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 160 | en += sprintf(en, "%s~%d", |
| 161 | n->head_name, n->generation); |
| 162 | break; |
Junio C Hamano | fbaf834 | 2005-09-24 23:33:02 -0700 | [diff] [blame] | 163 | } |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 164 | if (nth == 1) |
| 165 | en += sprintf(en, "^"); |
| 166 | else |
| 167 | en += sprintf(en, "^%d", nth); |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 168 | name_commit(p, xstrdup(newname), 0); |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 169 | i++; |
| 170 | name_first_parent_chain(p); |
| 171 | } |
| 172 | } |
| 173 | } while (i); |
| 174 | } |
| 175 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 176 | static int mark_seen(struct commit *commit, struct commit_list **seen_p) |
| 177 | { |
| 178 | if (!commit->object.flags) { |
Junio C Hamano | 26a8ad2 | 2006-07-16 00:00:09 -0700 | [diff] [blame] | 179 | commit_list_insert(commit, seen_p); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 180 | return 1; |
| 181 | } |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static void join_revs(struct commit_list **list_p, |
| 186 | struct commit_list **seen_p, |
| 187 | int num_rev, int extra) |
| 188 | { |
| 189 | int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1); |
| 190 | int all_revs = all_mask & ~((1u << REV_SHIFT) - 1); |
| 191 | |
| 192 | while (*list_p) { |
| 193 | struct commit_list *parents; |
Junio C Hamano | 9ce7028 | 2005-11-09 23:36:15 -0800 | [diff] [blame] | 194 | int still_interesting = !!interesting(*list_p); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 195 | struct commit *commit = pop_one_commit(list_p); |
| 196 | int flags = commit->object.flags & all_mask; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 197 | |
Junio C Hamano | 9ce7028 | 2005-11-09 23:36:15 -0800 | [diff] [blame] | 198 | if (!still_interesting && extra <= 0) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 199 | break; |
| 200 | |
| 201 | mark_seen(commit, seen_p); |
| 202 | if ((flags & all_revs) == all_revs) |
| 203 | flags |= UNINTERESTING; |
| 204 | parents = commit->parents; |
| 205 | |
| 206 | while (parents) { |
| 207 | struct commit *p = parents->item; |
| 208 | int this_flag = p->object.flags; |
| 209 | parents = parents->next; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 210 | if ((this_flag & flags) == flags) |
| 211 | continue; |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 212 | if (!p->object.parsed) |
| 213 | parse_commit(p); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 214 | if (mark_seen(p, seen_p) && !still_interesting) |
| 215 | extra--; |
| 216 | p->object.flags |= flags; |
| 217 | insert_by_date(p, list_p); |
| 218 | } |
| 219 | } |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 220 | |
| 221 | /* |
| 222 | * Postprocess to complete well-poisoning. |
| 223 | * |
| 224 | * At this point we have all the commits we have seen in |
Junio C Hamano | 26a8ad2 | 2006-07-16 00:00:09 -0700 | [diff] [blame] | 225 | * seen_p list. Mark anything that can be reached from |
| 226 | * uninteresting commits not interesting. |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 227 | */ |
| 228 | for (;;) { |
| 229 | int changed = 0; |
| 230 | struct commit_list *s; |
| 231 | for (s = *seen_p; s; s = s->next) { |
| 232 | struct commit *c = s->item; |
| 233 | struct commit_list *parents; |
| 234 | |
| 235 | if (((c->object.flags & all_revs) != all_revs) && |
| 236 | !(c->object.flags & UNINTERESTING)) |
| 237 | continue; |
| 238 | |
| 239 | /* The current commit is either a merge base or |
| 240 | * already uninteresting one. Mark its parents |
| 241 | * as uninteresting commits _only_ if they are |
| 242 | * already parsed. No reason to find new ones |
| 243 | * here. |
| 244 | */ |
| 245 | parents = c->parents; |
| 246 | while (parents) { |
| 247 | struct commit *p = parents->item; |
| 248 | parents = parents->next; |
| 249 | if (!(p->object.flags & UNINTERESTING)) { |
| 250 | p->object.flags |= UNINTERESTING; |
| 251 | changed = 1; |
| 252 | } |
| 253 | } |
| 254 | } |
| 255 | if (!changed) |
| 256 | break; |
| 257 | } |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 260 | static void show_one_commit(struct commit *commit, int no_name) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 261 | { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 262 | struct strbuf pretty; |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 263 | const char *pretty_str = "(unavailable)"; |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 264 | struct commit_name *name = commit->util; |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 265 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 266 | strbuf_init(&pretty, 0); |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 267 | if (commit->object.parsed) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 268 | pretty_print_commit(CMIT_FMT_ONELINE, commit, |
Junio C Hamano | 4593fb8 | 2007-10-31 14:55:17 -0700 | [diff] [blame] | 269 | &pretty, 0, NULL, NULL, 0, 0); |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 270 | pretty_str = pretty.buf; |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 271 | } |
| 272 | if (!prefixcmp(pretty_str, "[PATCH] ")) |
| 273 | pretty_str += 8; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 274 | |
| 275 | if (!no_name) { |
| 276 | if (name && name->head_name) { |
| 277 | printf("[%s", name->head_name); |
| 278 | if (name->generation) { |
| 279 | if (name->generation == 1) |
| 280 | printf("^"); |
| 281 | else |
| 282 | printf("~%d", name->generation); |
| 283 | } |
| 284 | printf("] "); |
| 285 | } |
| 286 | else |
| 287 | printf("[%s] ", |
| 288 | find_unique_abbrev(commit->object.sha1, 7)); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 289 | } |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 290 | puts(pretty_str); |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 291 | strbuf_release(&pretty); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static char *ref_name[MAX_REVS + 1]; |
| 295 | static int ref_name_cnt; |
| 296 | |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 297 | static const char *find_digit_prefix(const char *s, int *v) |
| 298 | { |
| 299 | const char *p; |
| 300 | int ver; |
| 301 | char ch; |
| 302 | |
| 303 | for (p = s, ver = 0; |
| 304 | '0' <= (ch = *p) && ch <= '9'; |
| 305 | p++) |
| 306 | ver = ver * 10 + ch - '0'; |
| 307 | *v = ver; |
| 308 | return p; |
| 309 | } |
| 310 | |
| 311 | |
| 312 | static int version_cmp(const char *a, const char *b) |
| 313 | { |
| 314 | while (1) { |
| 315 | int va, vb; |
| 316 | |
| 317 | a = find_digit_prefix(a, &va); |
| 318 | b = find_digit_prefix(b, &vb); |
| 319 | if (va != vb) |
| 320 | return va - vb; |
| 321 | |
| 322 | while (1) { |
| 323 | int ca = *a; |
| 324 | int cb = *b; |
| 325 | if ('0' <= ca && ca <= '9') |
| 326 | ca = 0; |
| 327 | if ('0' <= cb && cb <= '9') |
| 328 | cb = 0; |
| 329 | if (ca != cb) |
| 330 | return ca - cb; |
| 331 | if (!ca) |
| 332 | break; |
| 333 | a++; |
| 334 | b++; |
| 335 | } |
| 336 | if (!*a && !*b) |
| 337 | return 0; |
| 338 | } |
| 339 | } |
| 340 | |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 341 | static int compare_ref_name(const void *a_, const void *b_) |
| 342 | { |
| 343 | const char * const*a = a_, * const*b = b_; |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 344 | return version_cmp(*a, *b); |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | static void sort_ref_range(int bottom, int top) |
| 348 | { |
| 349 | qsort(ref_name + bottom, top - bottom, sizeof(ref_name[0]), |
| 350 | compare_ref_name); |
| 351 | } |
| 352 | |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 353 | static int append_ref(const char *refname, const unsigned char *sha1, |
| 354 | int allow_dups) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 355 | { |
| 356 | struct commit *commit = lookup_commit_reference_gently(sha1, 1); |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 357 | int i; |
| 358 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 359 | if (!commit) |
| 360 | return 0; |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 361 | |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 362 | if (!allow_dups) { |
| 363 | /* Avoid adding the same thing twice */ |
| 364 | for (i = 0; i < ref_name_cnt; i++) |
| 365 | if (!strcmp(refname, ref_name[i])) |
| 366 | return 0; |
| 367 | } |
Junio C Hamano | 79778e4 | 2005-10-23 01:18:42 -0700 | [diff] [blame] | 368 | if (MAX_REVS <= ref_name_cnt) { |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 369 | fprintf(stderr, "warning: ignoring %s; " |
Alex Riesen | 7246ed4 | 2005-12-15 08:47:30 +0100 | [diff] [blame] | 370 | "cannot handle more than %d refs\n", |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 371 | refname, MAX_REVS); |
| 372 | return 0; |
| 373 | } |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 374 | ref_name[ref_name_cnt++] = xstrdup(refname); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 375 | ref_name[ref_name_cnt] = NULL; |
| 376 | return 0; |
| 377 | } |
| 378 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 379 | static int append_head_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 380 | { |
Junio C Hamano | 9242150 | 2005-11-21 00:43:12 -0800 | [diff] [blame] | 381 | unsigned char tmp[20]; |
| 382 | int ofs = 11; |
Junio C Hamano | 1968d77 | 2007-02-20 01:55:07 -0800 | [diff] [blame] | 383 | if (prefixcmp(refname, "refs/heads/")) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 384 | return 0; |
Junio C Hamano | 9242150 | 2005-11-21 00:43:12 -0800 | [diff] [blame] | 385 | /* If both heads/foo and tags/foo exists, get_sha1 would |
| 386 | * get confused. |
| 387 | */ |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 388 | if (get_sha1(refname + ofs, tmp) || hashcmp(tmp, sha1)) |
Junio C Hamano | 9242150 | 2005-11-21 00:43:12 -0800 | [diff] [blame] | 389 | ofs = 5; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 390 | return append_ref(refname + ofs, sha1, 0); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 393 | static int append_remote_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
| 394 | { |
| 395 | unsigned char tmp[20]; |
| 396 | int ofs = 13; |
Junio C Hamano | 1968d77 | 2007-02-20 01:55:07 -0800 | [diff] [blame] | 397 | if (prefixcmp(refname, "refs/remotes/")) |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 398 | return 0; |
| 399 | /* If both heads/foo and tags/foo exists, get_sha1 would |
| 400 | * get confused. |
| 401 | */ |
| 402 | if (get_sha1(refname + ofs, tmp) || hashcmp(tmp, sha1)) |
| 403 | ofs = 5; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 404 | return append_ref(refname + ofs, sha1, 0); |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 405 | } |
| 406 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 407 | static int append_tag_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 408 | { |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 409 | if (prefixcmp(refname, "refs/tags/")) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 410 | return 0; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 411 | return append_ref(refname + 5, sha1, 0); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 414 | static const char *match_ref_pattern = NULL; |
| 415 | static int match_ref_slash = 0; |
| 416 | static int count_slash(const char *s) |
| 417 | { |
| 418 | int cnt = 0; |
| 419 | while (*s) |
| 420 | if (*s++ == '/') |
| 421 | cnt++; |
| 422 | return cnt; |
| 423 | } |
| 424 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 425 | static int append_matching_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 426 | { |
| 427 | /* we want to allow pattern hold/<asterisk> to show all |
| 428 | * branches under refs/heads/hold/, and v0.99.9? to show |
| 429 | * refs/tags/v0.99.9a and friends. |
| 430 | */ |
| 431 | const char *tail; |
| 432 | int slash = count_slash(refname); |
| 433 | for (tail = refname; *tail && match_ref_slash < slash; ) |
| 434 | if (*tail++ == '/') |
| 435 | slash--; |
| 436 | if (!*tail) |
| 437 | return 0; |
| 438 | if (fnmatch(match_ref_pattern, tail, 0)) |
| 439 | return 0; |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 440 | if (!prefixcmp(refname, "refs/heads/")) |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 441 | return append_head_ref(refname, sha1, flag, cb_data); |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 442 | if (!prefixcmp(refname, "refs/tags/")) |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 443 | return append_tag_ref(refname, sha1, flag, cb_data); |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 444 | return append_ref(refname, sha1, 0); |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 445 | } |
| 446 | |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 447 | static void snarf_refs(int head, int remotes) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 448 | { |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 449 | if (head) { |
| 450 | int orig_cnt = ref_name_cnt; |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 451 | for_each_ref(append_head_ref, NULL); |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 452 | sort_ref_range(orig_cnt, ref_name_cnt); |
| 453 | } |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 454 | if (remotes) { |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 455 | int orig_cnt = ref_name_cnt; |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 456 | for_each_ref(append_remote_ref, NULL); |
Junio C Hamano | 628894b | 2005-08-24 23:26:20 -0700 | [diff] [blame] | 457 | sort_ref_range(orig_cnt, ref_name_cnt); |
| 458 | } |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 459 | } |
| 460 | |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 461 | static int rev_is_head(char *head, int headlen, char *name, |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 462 | unsigned char *head_sha1, unsigned char *sha1) |
| 463 | { |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 464 | if ((!head[0]) || |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 465 | (head_sha1 && sha1 && hashcmp(head_sha1, sha1))) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 466 | return 0; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 467 | if (!prefixcmp(head, "refs/heads/")) |
Johannes Schindelin | afdcec7 | 2006-09-22 00:07:01 +0200 | [diff] [blame] | 468 | head += 11; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 469 | if (!prefixcmp(name, "refs/heads/")) |
Johannes Schindelin | afdcec7 | 2006-09-22 00:07:01 +0200 | [diff] [blame] | 470 | name += 11; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 471 | else if (!prefixcmp(name, "heads/")) |
Johannes Schindelin | afdcec7 | 2006-09-22 00:07:01 +0200 | [diff] [blame] | 472 | name += 6; |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 473 | return !strcmp(head, name); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | static int show_merge_base(struct commit_list *seen, int num_rev) |
| 477 | { |
| 478 | int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1); |
| 479 | int all_revs = all_mask & ~((1u << REV_SHIFT) - 1); |
Junio C Hamano | 2f0f8b7 | 2005-09-08 12:15:52 -0700 | [diff] [blame] | 480 | int exit_status = 1; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 481 | |
| 482 | while (seen) { |
| 483 | struct commit *commit = pop_one_commit(&seen); |
| 484 | int flags = commit->object.flags & all_mask; |
| 485 | if (!(flags & UNINTERESTING) && |
| 486 | ((flags & all_revs) == all_revs)) { |
| 487 | puts(sha1_to_hex(commit->object.sha1)); |
Junio C Hamano | 2f0f8b7 | 2005-09-08 12:15:52 -0700 | [diff] [blame] | 488 | exit_status = 0; |
| 489 | commit->object.flags |= UNINTERESTING; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 490 | } |
| 491 | } |
Junio C Hamano | 2f0f8b7 | 2005-09-08 12:15:52 -0700 | [diff] [blame] | 492 | return exit_status; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 495 | static int show_independent(struct commit **rev, |
| 496 | int num_rev, |
| 497 | char **ref_name, |
| 498 | unsigned int *rev_mask) |
| 499 | { |
| 500 | int i; |
| 501 | |
| 502 | for (i = 0; i < num_rev; i++) { |
| 503 | struct commit *commit = rev[i]; |
| 504 | unsigned int flag = rev_mask[i]; |
| 505 | |
| 506 | if (commit->object.flags == flag) |
| 507 | puts(sha1_to_hex(commit->object.sha1)); |
| 508 | commit->object.flags |= UNINTERESTING; |
| 509 | } |
| 510 | return 0; |
| 511 | } |
| 512 | |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 513 | static void append_one_rev(const char *av) |
| 514 | { |
| 515 | unsigned char revkey[20]; |
| 516 | if (!get_sha1(av, revkey)) { |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 517 | append_ref(av, revkey, 0); |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 518 | return; |
| 519 | } |
Junio C Hamano | 87758f9 | 2006-01-11 00:20:25 -0800 | [diff] [blame] | 520 | if (strchr(av, '*') || strchr(av, '?') || strchr(av, '[')) { |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 521 | /* glob style match */ |
| 522 | int saved_matches = ref_name_cnt; |
| 523 | match_ref_pattern = av; |
| 524 | match_ref_slash = count_slash(av); |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 525 | for_each_ref(append_matching_ref, NULL); |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 526 | if (saved_matches == ref_name_cnt && |
| 527 | ref_name_cnt < MAX_REVS) |
| 528 | error("no matching refs with %s", av); |
Junio C Hamano | 06d900c | 2005-12-15 17:53:44 -0800 | [diff] [blame] | 529 | if (saved_matches + 1 < ref_name_cnt) |
| 530 | sort_ref_range(saved_matches, ref_name_cnt); |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 531 | return; |
| 532 | } |
| 533 | die("bad sha1 reference %s", av); |
| 534 | } |
| 535 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 536 | static int git_show_branch_config(const char *var, const char *value, void *cb) |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 537 | { |
| 538 | if (!strcmp(var, "showbranch.default")) { |
Junio C Hamano | 4f9c412 | 2008-02-11 10:51:03 -0800 | [diff] [blame] | 539 | if (!value) |
| 540 | return config_error_nonbool(var); |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 541 | if (default_alloc <= default_num + 1) { |
| 542 | default_alloc = default_alloc * 3 / 2 + 20; |
| 543 | default_arg = xrealloc(default_arg, sizeof *default_arg * default_alloc); |
| 544 | } |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 545 | default_arg[default_num++] = xstrdup(value); |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 546 | default_arg[default_num] = NULL; |
| 547 | return 0; |
| 548 | } |
| 549 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 550 | return git_default_config(var, value, cb); |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 551 | } |
| 552 | |
Junio C Hamano | c24fe42 | 2006-05-01 17:12:26 -0700 | [diff] [blame] | 553 | static int omit_in_dense(struct commit *commit, struct commit **rev, int n) |
| 554 | { |
| 555 | /* If the commit is tip of the named branches, do not |
| 556 | * omit it. |
| 557 | * Otherwise, if it is a merge that is reachable from only one |
| 558 | * tip, it is not that interesting. |
| 559 | */ |
| 560 | int i, flag, count; |
| 561 | for (i = 0; i < n; i++) |
| 562 | if (rev[i] == commit) |
| 563 | return 0; |
| 564 | flag = commit->object.flags; |
| 565 | for (i = count = 0; i < n; i++) { |
| 566 | if (flag & (1u << (i + REV_SHIFT))) |
| 567 | count++; |
| 568 | } |
| 569 | if (count == 1) |
| 570 | return 1; |
| 571 | return 0; |
| 572 | } |
| 573 | |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 574 | static void parse_reflog_param(const char *arg, int *cnt, const char **base) |
| 575 | { |
| 576 | char *ep; |
| 577 | *cnt = strtoul(arg, &ep, 10); |
| 578 | if (*ep == ',') |
| 579 | *base = ep + 1; |
| 580 | else if (*ep) |
| 581 | die("unrecognized reflog param '%s'", arg + 9); |
| 582 | else |
| 583 | *base = NULL; |
| 584 | if (*cnt <= 0) |
| 585 | *cnt = DEFAULT_REFLOG; |
| 586 | } |
| 587 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 588 | int cmd_show_branch(int ac, const char **av, const char *prefix) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 589 | { |
| 590 | struct commit *rev[MAX_REVS], *commit; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 591 | char *reflog_msg[MAX_REVS]; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 592 | struct commit_list *list = NULL, *seen = NULL; |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 593 | unsigned int rev_mask[MAX_REVS]; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 594 | int num_rev, i, extra = 0; |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 595 | int all_heads = 0, all_remotes = 0; |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 596 | int all_mask, all_revs; |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 597 | int lifo = 1; |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 598 | char head[128]; |
| 599 | const char *head_p; |
| 600 | int head_len; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 601 | unsigned char head_sha1[20]; |
| 602 | int merge_base = 0; |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 603 | int independent = 0; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 604 | int no_name = 0; |
| 605 | int sha1_name = 0; |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 606 | int shown_merge_point = 0; |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 607 | int with_current_branch = 0; |
Junio C Hamano | ebedc31 | 2006-01-11 14:02:38 -0800 | [diff] [blame] | 608 | int head_at = -1; |
Junio C Hamano | d320a54 | 2006-03-02 17:14:00 -0800 | [diff] [blame] | 609 | int topics = 0; |
Junio C Hamano | c24fe42 | 2006-05-01 17:12:26 -0700 | [diff] [blame] | 610 | int dense = 1; |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 611 | int reflog = 0; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 612 | const char *reflog_base = NULL; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 613 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 614 | git_config(git_show_branch_config, NULL); |
Junio C Hamano | 076b232 | 2005-08-30 16:59:37 -0700 | [diff] [blame] | 615 | |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 616 | /* If nothing is specified, try the default first */ |
| 617 | if (ac == 1 && default_num) { |
| 618 | ac = default_num + 1; |
| 619 | av = default_arg - 1; /* ick; we would not address av[0] */ |
| 620 | } |
| 621 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 622 | while (1 < ac && av[1][0] == '-') { |
Peter Eriksen | 51ce34b | 2006-05-23 14:15:35 +0200 | [diff] [blame] | 623 | const char *arg = av[1]; |
Junio C Hamano | c2bdd6a | 2006-01-09 13:29:23 -0800 | [diff] [blame] | 624 | if (!strcmp(arg, "--")) { |
| 625 | ac--; av++; |
| 626 | break; |
| 627 | } |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 628 | else if (!strcmp(arg, "--all") || !strcmp(arg, "-a")) |
| 629 | all_heads = all_remotes = 1; |
| 630 | else if (!strcmp(arg, "--remotes") || !strcmp(arg, "-r")) |
| 631 | all_remotes = 1; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 632 | else if (!strcmp(arg, "--more")) |
| 633 | extra = 1; |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 634 | else if (!strcmp(arg, "--list")) |
| 635 | extra = -1; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 636 | else if (!strcmp(arg, "--no-name")) |
| 637 | no_name = 1; |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 638 | else if (!strcmp(arg, "--current")) |
| 639 | with_current_branch = 1; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 640 | else if (!strcmp(arg, "--sha1-name")) |
| 641 | sha1_name = 1; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 642 | else if (!prefixcmp(arg, "--more=")) |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 643 | extra = atoi(arg + 7); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 644 | else if (!strcmp(arg, "--merge-base")) |
| 645 | merge_base = 1; |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 646 | else if (!strcmp(arg, "--independent")) |
| 647 | independent = 1; |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 648 | else if (!strcmp(arg, "--topo-order")) |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 649 | lifo = 1; |
Junio C Hamano | d320a54 | 2006-03-02 17:14:00 -0800 | [diff] [blame] | 650 | else if (!strcmp(arg, "--topics")) |
| 651 | topics = 1; |
Junio C Hamano | c24fe42 | 2006-05-01 17:12:26 -0700 | [diff] [blame] | 652 | else if (!strcmp(arg, "--sparse")) |
| 653 | dense = 0; |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 654 | else if (!strcmp(arg, "--date-order")) |
| 655 | lifo = 0; |
Johannes Schindelin | 084ae0a | 2007-01-24 15:05:16 +0100 | [diff] [blame] | 656 | else if (!strcmp(arg, "--reflog") || !strcmp(arg, "-g")) { |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 657 | reflog = DEFAULT_REFLOG; |
| 658 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 659 | else if (!prefixcmp(arg, "--reflog=")) |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 660 | parse_reflog_param(arg + 9, &reflog, &reflog_base); |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 661 | else if (!prefixcmp(arg, "-g=")) |
Johannes Schindelin | 084ae0a | 2007-01-24 15:05:16 +0100 | [diff] [blame] | 662 | parse_reflog_param(arg + 3, &reflog, &reflog_base); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 663 | else |
| 664 | usage(show_branch_usage); |
| 665 | ac--; av++; |
| 666 | } |
| 667 | ac--; av++; |
| 668 | |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 669 | if (extra || reflog) { |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 670 | /* "listing" mode is incompatible with |
| 671 | * independent nor merge-base modes. |
| 672 | */ |
| 673 | if (independent || merge_base) |
| 674 | usage(show_branch_usage); |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 675 | if (reflog && ((0 < extra) || all_heads || all_remotes)) |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 676 | /* |
| 677 | * Asking for --more in reflog mode does not |
Junio C Hamano | b15af07 | 2007-01-19 22:51:49 -0800 | [diff] [blame] | 678 | * make sense. --list is Ok. |
| 679 | * |
| 680 | * Also --all and --remotes do not make sense either. |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 681 | */ |
Junio C Hamano | b15af07 | 2007-01-19 22:51:49 -0800 | [diff] [blame] | 682 | usage(show_branch_usage_reflog); |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 683 | } |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 684 | |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 685 | /* If nothing is specified, show all branches by default */ |
Brian Gernhardt | f49006b | 2006-12-22 08:58:39 -0500 | [diff] [blame] | 686 | if (ac + all_heads + all_remotes == 0) |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 687 | all_heads = 1; |
| 688 | |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 689 | if (reflog) { |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 690 | unsigned char sha1[20]; |
| 691 | char nth_desc[256]; |
| 692 | char *ref; |
| 693 | int base = 0; |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 694 | |
| 695 | if (ac == 0) { |
| 696 | static const char *fake_av[2]; |
Junio C Hamano | 632ac9f | 2007-02-03 23:31:47 -0800 | [diff] [blame] | 697 | const char *refname; |
| 698 | |
| 699 | refname = resolve_ref("HEAD", sha1, 1, NULL); |
| 700 | fake_av[0] = xstrdup(refname); |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 701 | fake_av[1] = NULL; |
| 702 | av = fake_av; |
| 703 | ac = 1; |
| 704 | } |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 705 | if (ac != 1) |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 706 | die("--reflog option needs one branch name"); |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 707 | |
Junio C Hamano | b15af07 | 2007-01-19 22:51:49 -0800 | [diff] [blame] | 708 | if (MAX_REVS < reflog) |
| 709 | die("Only %d entries can be shown at one time.", |
| 710 | MAX_REVS); |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 711 | if (!dwim_ref(*av, strlen(*av), sha1, &ref)) |
| 712 | die("No such ref %s", *av); |
| 713 | |
| 714 | /* Has the base been specified? */ |
| 715 | if (reflog_base) { |
| 716 | char *ep; |
| 717 | base = strtoul(reflog_base, &ep, 10); |
| 718 | if (*ep) { |
| 719 | /* Ah, that is a date spec... */ |
| 720 | unsigned long at; |
| 721 | at = approxidate(reflog_base); |
| 722 | read_ref_at(ref, at, -1, sha1, NULL, |
| 723 | NULL, NULL, &base); |
| 724 | } |
| 725 | } |
| 726 | |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 727 | for (i = 0; i < reflog; i++) { |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 728 | char *logmsg, *m; |
| 729 | const char *msg; |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 730 | unsigned long timestamp; |
| 731 | int tz; |
| 732 | |
| 733 | if (read_ref_at(ref, 0, base+i, sha1, &logmsg, |
| 734 | ×tamp, &tz, NULL)) { |
| 735 | reflog = i; |
| 736 | break; |
| 737 | } |
| 738 | msg = strchr(logmsg, '\t'); |
| 739 | if (!msg) |
| 740 | msg = "(none)"; |
| 741 | else |
| 742 | msg++; |
| 743 | m = xmalloc(strlen(msg) + 200); |
| 744 | sprintf(m, "(%s) %s", |
Junio C Hamano | 16bfefe | 2007-01-20 18:57:06 -0800 | [diff] [blame] | 745 | show_date(timestamp, tz, 1), |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 746 | msg); |
| 747 | reflog_msg[i] = m; |
| 748 | free(logmsg); |
| 749 | sprintf(nth_desc, "%s@{%d}", *av, base+i); |
| 750 | append_ref(nth_desc, sha1, 1); |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 751 | } |
| 752 | } |
Junio C Hamano | df373ea | 2007-01-25 22:14:45 -0800 | [diff] [blame] | 753 | else if (all_heads + all_remotes) |
| 754 | snarf_refs(all_heads, all_remotes); |
Junio C Hamano | 7e3fe90 | 2006-12-14 15:58:56 -0800 | [diff] [blame] | 755 | else { |
| 756 | while (0 < ac) { |
| 757 | append_one_rev(*av); |
| 758 | ac--; av++; |
| 759 | } |
Junio C Hamano | bb5ebed | 2005-12-23 12:47:18 -0800 | [diff] [blame] | 760 | } |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 761 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 762 | head_p = resolve_ref("HEAD", head_sha1, 1, NULL); |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 763 | if (head_p) { |
| 764 | head_len = strlen(head_p); |
| 765 | memcpy(head, head_p, head_len + 1); |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 766 | } |
| 767 | else { |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 768 | head_len = 0; |
| 769 | head[0] = 0; |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 770 | } |
| 771 | |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 772 | if (with_current_branch && head_p) { |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 773 | int has_head = 0; |
| 774 | for (i = 0; !has_head && i < ref_name_cnt; i++) { |
| 775 | /* We are only interested in adding the branch |
| 776 | * HEAD points at. |
| 777 | */ |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 778 | if (rev_is_head(head, |
| 779 | head_len, |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 780 | ref_name[i], |
| 781 | head_sha1, NULL)) |
| 782 | has_head++; |
| 783 | } |
| 784 | if (!has_head) { |
Junio C Hamano | f8fcb57 | 2008-05-26 15:09:51 -0700 | [diff] [blame] | 785 | int offset = !prefixcmp(head, "refs/heads/") ? 11 : 0; |
| 786 | append_one_rev(head + offset); |
Junio C Hamano | 1aa68d6 | 2006-01-11 00:16:42 -0800 | [diff] [blame] | 787 | } |
| 788 | } |
| 789 | |
Junio C Hamano | 287f860 | 2005-12-04 15:58:50 -0800 | [diff] [blame] | 790 | if (!ref_name_cnt) { |
| 791 | fprintf(stderr, "No revs to be shown.\n"); |
| 792 | exit(0); |
| 793 | } |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 794 | |
| 795 | for (num_rev = 0; ref_name[num_rev]; num_rev++) { |
| 796 | unsigned char revkey[20]; |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 797 | unsigned int flag = 1u << (num_rev + REV_SHIFT); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 798 | |
| 799 | if (MAX_REVS <= num_rev) |
| 800 | die("cannot handle more than %d revs.", MAX_REVS); |
| 801 | if (get_sha1(ref_name[num_rev], revkey)) |
Alex Riesen | 7246ed4 | 2005-12-15 08:47:30 +0100 | [diff] [blame] | 802 | die("'%s' is not a valid ref.", ref_name[num_rev]); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 803 | commit = lookup_commit_reference(revkey); |
| 804 | if (!commit) |
| 805 | die("cannot find commit %s (%s)", |
| 806 | ref_name[num_rev], revkey); |
| 807 | parse_commit(commit); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 808 | mark_seen(commit, &seen); |
| 809 | |
| 810 | /* rev#0 uses bit REV_SHIFT, rev#1 uses bit REV_SHIFT+1, |
| 811 | * and so on. REV_SHIFT bits from bit 0 are used for |
| 812 | * internal bookkeeping. |
| 813 | */ |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 814 | commit->object.flags |= flag; |
| 815 | if (commit->object.flags == flag) |
| 816 | insert_by_date(commit, &list); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 817 | rev[num_rev] = commit; |
| 818 | } |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 819 | for (i = 0; i < num_rev; i++) |
| 820 | rev_mask[i] = rev[i]->object.flags; |
| 821 | |
| 822 | if (0 <= extra) |
| 823 | join_revs(&list, &seen, num_rev, extra); |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 824 | |
Junio C Hamano | 26a8ad2 | 2006-07-16 00:00:09 -0700 | [diff] [blame] | 825 | sort_by_date(&seen); |
| 826 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 827 | if (merge_base) |
| 828 | return show_merge_base(seen, num_rev); |
| 829 | |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 830 | if (independent) |
| 831 | return show_independent(rev, num_rev, ref_name, rev_mask); |
| 832 | |
| 833 | /* Show list; --more=-1 means list-only */ |
Junio C Hamano | c9d023b | 2005-09-10 18:24:46 -0700 | [diff] [blame] | 834 | if (1 < num_rev || extra < 0) { |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 835 | for (i = 0; i < num_rev; i++) { |
| 836 | int j; |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 837 | int is_head = rev_is_head(head, |
| 838 | head_len, |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 839 | ref_name[i], |
| 840 | head_sha1, |
| 841 | rev[i]->object.sha1); |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 842 | if (extra < 0) |
| 843 | printf("%c [%s] ", |
| 844 | is_head ? '*' : ' ', ref_name[i]); |
| 845 | else { |
| 846 | for (j = 0; j < i; j++) |
| 847 | putchar(' '); |
| 848 | printf("%c [%s] ", |
| 849 | is_head ? '*' : '!', ref_name[i]); |
| 850 | } |
Junio C Hamano | 76a44c5 | 2007-01-19 01:20:23 -0800 | [diff] [blame] | 851 | |
| 852 | if (!reflog) { |
| 853 | /* header lines never need name */ |
| 854 | show_one_commit(rev[i], 1); |
| 855 | } |
| 856 | else |
| 857 | puts(reflog_msg[i]); |
| 858 | |
Junio C Hamano | ebedc31 | 2006-01-11 14:02:38 -0800 | [diff] [blame] | 859 | if (is_head) |
| 860 | head_at = i; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 861 | } |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 862 | if (0 <= extra) { |
| 863 | for (i = 0; i < num_rev; i++) |
| 864 | putchar('-'); |
| 865 | putchar('\n'); |
| 866 | } |
Junio C Hamano | f5e375c | 2005-08-22 23:16:46 -0700 | [diff] [blame] | 867 | } |
Junio C Hamano | 1f8af48 | 2005-09-09 15:40:45 -0700 | [diff] [blame] | 868 | if (extra < 0) |
| 869 | exit(0); |
Junio C Hamano | f5e375c | 2005-08-22 23:16:46 -0700 | [diff] [blame] | 870 | |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 871 | /* Sort topologically */ |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 872 | sort_in_topological_order(&seen, lifo); |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 873 | |
| 874 | /* Give names to commits */ |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 875 | if (!sha1_name && !no_name) |
| 876 | name_commits(seen, rev, ref_name, num_rev); |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 877 | |
| 878 | all_mask = ((1u << (REV_SHIFT + num_rev)) - 1); |
| 879 | all_revs = all_mask & ~((1u << REV_SHIFT) - 1); |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 880 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 881 | while (seen) { |
| 882 | struct commit *commit = pop_one_commit(&seen); |
| 883 | int this_flag = commit->object.flags; |
Junio C Hamano | f794c23 | 2006-03-03 14:34:40 -0800 | [diff] [blame] | 884 | int is_merge_point = ((this_flag & all_revs) == all_revs); |
Junio C Hamano | f5e375c | 2005-08-22 23:16:46 -0700 | [diff] [blame] | 885 | |
Junio C Hamano | f794c23 | 2006-03-03 14:34:40 -0800 | [diff] [blame] | 886 | shown_merge_point |= is_merge_point; |
Junio C Hamano | 8e5dd22 | 2005-08-29 17:19:47 -0700 | [diff] [blame] | 887 | |
Junio C Hamano | f5e375c | 2005-08-22 23:16:46 -0700 | [diff] [blame] | 888 | if (1 < num_rev) { |
Junio C Hamano | c24fe42 | 2006-05-01 17:12:26 -0700 | [diff] [blame] | 889 | int is_merge = !!(commit->parents && |
| 890 | commit->parents->next); |
Junio C Hamano | f794c23 | 2006-03-03 14:34:40 -0800 | [diff] [blame] | 891 | if (topics && |
| 892 | !is_merge_point && |
| 893 | (this_flag & (1u << REV_SHIFT))) |
| 894 | continue; |
Junio C Hamano | c24fe42 | 2006-05-01 17:12:26 -0700 | [diff] [blame] | 895 | if (dense && is_merge && |
| 896 | omit_in_dense(commit, rev, num_rev)) |
| 897 | continue; |
Junio C Hamano | ebedc31 | 2006-01-11 14:02:38 -0800 | [diff] [blame] | 898 | for (i = 0; i < num_rev; i++) { |
| 899 | int mark; |
| 900 | if (!(this_flag & (1u << (i + REV_SHIFT)))) |
| 901 | mark = ' '; |
| 902 | else if (is_merge) |
| 903 | mark = '-'; |
| 904 | else if (i == head_at) |
| 905 | mark = '*'; |
| 906 | else |
| 907 | mark = '+'; |
| 908 | putchar(mark); |
| 909 | } |
Junio C Hamano | f5e375c | 2005-08-22 23:16:46 -0700 | [diff] [blame] | 910 | putchar(' '); |
| 911 | } |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 912 | show_one_commit(commit, no_name); |
Junio C Hamano | 6b209d4 | 2005-11-10 15:47:58 -0800 | [diff] [blame] | 913 | |
| 914 | if (shown_merge_point && --extra < 0) |
| 915 | break; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 916 | } |
| 917 | return 0; |
| 918 | } |