blob: 3b716fba133ae2f0375ef73d6a50a4d93112b5e4 [file] [log] [blame]
Linus Torvalds178cb242005-06-13 10:06:50 -07001/*
2 * rev-parse.c
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
6#include "cache.h"
Linus Torvaldsa8be83f2005-06-20 20:28:09 -07007#include "commit.h"
Linus Torvalds960bba02005-07-03 13:07:52 -07008#include "refs.h"
Linus Torvaldsc1babb12005-09-20 14:13:24 -07009#include "quote.h"
Christian Couder895f10c2006-06-03 18:45:43 +020010#include "builtin.h"
Linus Torvaldsa8be83f2005-06-20 20:28:09 -070011
Junio C Hamano4866ccf2005-08-24 14:30:04 -070012#define DO_REVS 1
13#define DO_NOREV 2
14#define DO_FLAGS 4
15#define DO_NONFLAGS 8
16static int filter = ~0;
17
David Rientjes96f1e582006-08-15 10:23:48 -070018static const char *def;
Linus Torvalds023d66e2005-06-24 10:12:55 -070019
Linus Torvalds042a4ed2005-06-26 11:34:30 -070020#define NORMAL 0
21#define REVERSED 1
22static int show_type = NORMAL;
David Rientjes96f1e582006-08-15 10:23:48 -070023static int symbolic;
24static int abbrev;
25static int output_sq;
Junio C Hamano4866ccf2005-08-24 14:30:04 -070026
David Rientjes96f1e582006-08-15 10:23:48 -070027static int revs_count;
Linus Torvalds042a4ed2005-06-26 11:34:30 -070028
Linus Torvalds921d8652005-06-13 11:14:20 -070029/*
30 * Some arguments are relevant "revision" arguments,
31 * others are about output format or other details.
32 * This sorts it all out.
33 */
34static int is_rev_argument(const char *arg)
35{
36 static const char *rev_args[] = {
Junio C Hamanoe091eb92005-10-05 14:49:54 -070037 "--all",
Junio C Hamano5ccfb752005-08-08 19:31:37 -070038 "--bisect",
Junio C Hamano5a83f3b2005-10-30 01:08:35 -080039 "--dense",
Seana62be772006-05-13 21:43:00 -040040 "--branches",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070041 "--header",
42 "--max-age=",
43 "--max-count=",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070044 "--min-age=",
Junio C Hamano5ccfb752005-08-08 19:31:37 -070045 "--no-merges",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070046 "--objects",
Junio C Hamanoc6496572006-02-19 03:32:31 -080047 "--objects-edge",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070048 "--parents",
49 "--pretty",
Seana62be772006-05-13 21:43:00 -040050 "--remotes",
Junio C Hamano5a83f3b2005-10-30 01:08:35 -080051 "--sparse",
Seana62be772006-05-13 21:43:00 -040052 "--tags",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070053 "--topo-order",
Junio C Hamano4c8725f2006-02-15 22:05:33 -080054 "--date-order",
Junio C Hamano4866ccf2005-08-24 14:30:04 -070055 "--unpacked",
Linus Torvalds921d8652005-06-13 11:14:20 -070056 NULL
57 };
58 const char **p = rev_args;
59
Eric Wong82333402006-01-29 16:28:02 -080060 /* accept -<digit>, like traditional "head" */
61 if ((*arg == '-') && isdigit(arg[1]))
62 return 1;
63
Linus Torvalds921d8652005-06-13 11:14:20 -070064 for (;;) {
65 const char *str = *p++;
66 int len;
67 if (!str)
68 return 0;
69 len = strlen(str);
Junio C Hamano4866ccf2005-08-24 14:30:04 -070070 if (!strcmp(arg, str) ||
71 (str[len-1] == '=' && !strncmp(arg, str, len)))
Linus Torvalds921d8652005-06-13 11:14:20 -070072 return 1;
73 }
74}
75
Junio C Hamano4866ccf2005-08-24 14:30:04 -070076/* Output argument as a string, either SQ or normal */
Junio C Hamano5bb2c652005-07-22 19:08:32 -070077static void show(const char *arg)
78{
79 if (output_sq) {
80 int sq = '\'', ch;
81
82 putchar(sq);
83 while ((ch = *arg++)) {
84 if (ch == sq)
85 fputs("'\\'", stdout);
86 putchar(ch);
87 }
88 putchar(sq);
89 putchar(' ');
90 }
91 else
92 puts(arg);
93}
94
Junio C Hamano4866ccf2005-08-24 14:30:04 -070095/* Output a revision, only if filter allows it */
Junio C Hamano30b96fc2005-08-16 12:36:46 -070096static void show_rev(int type, const unsigned char *sha1, const char *name)
Linus Torvalds023d66e2005-06-24 10:12:55 -070097{
Junio C Hamano4866ccf2005-08-24 14:30:04 -070098 if (!(filter & DO_REVS))
Linus Torvalds023d66e2005-06-24 10:12:55 -070099 return;
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700100 def = NULL;
101 revs_count++;
Junio C Hamano5bb2c652005-07-22 19:08:32 -0700102
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700103 if (type != show_type)
104 putchar('^');
105 if (symbolic && name)
106 show(name);
Junio C Hamanod5012502006-01-25 01:35:38 -0800107 else if (abbrev)
108 show(find_unique_abbrev(sha1, abbrev));
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700109 else
110 show(sha1_to_hex(sha1));
Linus Torvalds023d66e2005-06-24 10:12:55 -0700111}
112
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700113/* Output a flag, only if filter allows it. */
Junio C Hamano16cee382006-06-05 22:36:21 -0700114static int show_flag(const char *arg)
Linus Torvalds023d66e2005-06-24 10:12:55 -0700115{
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700116 if (!(filter & DO_FLAGS))
Linus Torvalds9523a4c2006-02-05 11:58:34 -0800117 return 0;
118 if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV)) {
Linus Torvalds0360e992005-08-23 10:47:54 -0700119 show(arg);
Linus Torvalds9523a4c2006-02-05 11:58:34 -0800120 return 1;
121 }
122 return 0;
Linus Torvalds023d66e2005-06-24 10:12:55 -0700123}
124
Linus Torvalds023d66e2005-06-24 10:12:55 -0700125static void show_default(void)
126{
Junio C Hamano16cee382006-06-05 22:36:21 -0700127 const char *s = def;
Linus Torvalds023d66e2005-06-24 10:12:55 -0700128
129 if (s) {
130 unsigned char sha1[20];
131
132 def = NULL;
Junio C Hamano9938af62005-08-03 22:15:49 -0700133 if (!get_sha1(s, sha1)) {
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700134 show_rev(NORMAL, sha1, s);
Linus Torvalds023d66e2005-06-24 10:12:55 -0700135 return;
136 }
Linus Torvalds023d66e2005-06-24 10:12:55 -0700137 }
138}
139
Junio C Hamano8da19772006-09-20 22:02:01 -0700140static int show_reference(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
Linus Torvalds960bba02005-07-03 13:07:52 -0700141{
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700142 show_rev(NORMAL, sha1, refname);
Linus Torvalds960bba02005-07-03 13:07:52 -0700143 return 0;
144}
145
Linus Torvaldsc1babb12005-09-20 14:13:24 -0700146static void show_datestring(const char *flag, const char *datestr)
147{
Linus Torvaldsc1babb12005-09-20 14:13:24 -0700148 static char buffer[100];
Linus Torvaldsc1babb12005-09-20 14:13:24 -0700149
150 /* date handling requires both flags and revs */
151 if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS))
152 return;
Linus Torvalds3c07b1d2005-11-14 19:29:06 -0800153 snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr));
Linus Torvaldsc1babb12005-09-20 14:13:24 -0700154 show(buffer);
155}
156
Linus Torvalds9ad0a932006-02-05 21:41:47 -0800157static int show_file(const char *arg)
Linus Torvalds7a3dd472005-10-18 00:16:45 -0700158{
Linus Torvalds7b34c2f2005-10-25 15:24:55 -0700159 show_default();
Linus Torvalds9ad0a932006-02-05 21:41:47 -0800160 if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV)) {
Linus Torvalds7a3dd472005-10-18 00:16:45 -0700161 show(arg);
Linus Torvalds9ad0a932006-02-05 21:41:47 -0800162 return 1;
163 }
164 return 0;
Linus Torvalds7a3dd472005-10-18 00:16:45 -0700165}
166
Junio C Hamanob7d936b2006-07-06 00:16:35 -0700167static int try_difference(const char *arg)
Santi BĂ©jar3dd4e732006-07-04 11:02:22 +0200168{
169 char *dotdot;
170 unsigned char sha1[20];
171 unsigned char end[20];
172 const char *next;
173 const char *this;
174 int symmetric;
175
176 if (!(dotdot = strstr(arg, "..")))
177 return 0;
178 next = dotdot + 2;
179 this = arg;
180 symmetric = (*next == '.');
181
182 *dotdot = 0;
183 next += symmetric;
184
185 if (!*next)
186 next = "HEAD";
187 if (dotdot == arg)
188 this = "HEAD";
189 if (!get_sha1(this, sha1) && !get_sha1(next, end)) {
190 show_rev(NORMAL, end, next);
191 show_rev(symmetric ? NORMAL : REVERSED, sha1, this);
192 if (symmetric) {
193 struct commit_list *exclude;
194 struct commit *a, *b;
195 a = lookup_commit_reference(sha1);
196 b = lookup_commit_reference(end);
197 exclude = get_merge_bases(a, b, 1);
198 while (exclude) {
199 struct commit_list *n = exclude->next;
200 show_rev(REVERSED,
201 exclude->item->object.sha1,NULL);
202 free(exclude);
203 exclude = n;
204 }
205 }
206 return 1;
207 }
208 *dotdot = '.';
209 return 0;
210}
211
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700212int cmd_rev_parse(int argc, const char **argv, const char *prefix)
Linus Torvalds178cb242005-06-13 10:06:50 -0700213{
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700214 int i, as_is = 0, verify = 0;
Linus Torvalds178cb242005-06-13 10:06:50 -0700215 unsigned char sha1[20];
Seana62be772006-05-13 21:43:00 -0400216
Junio C Hamano84a9b582006-03-23 23:41:18 -0800217 git_config(git_default_config);
218
Linus Torvalds178cb242005-06-13 10:06:50 -0700219 for (i = 1; i < argc; i++) {
Junio C Hamano16cee382006-06-05 22:36:21 -0700220 const char *arg = argv[i];
Linus Torvaldsfb18a2e2006-03-26 16:28:20 -0800221
Linus Torvalds178cb242005-06-13 10:06:50 -0700222 if (as_is) {
Linus Torvaldsfb18a2e2006-03-26 16:28:20 -0800223 if (show_file(arg) && as_is < 2)
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700224 verify_filename(prefix, arg);
Linus Torvalds178cb242005-06-13 10:06:50 -0700225 continue;
226 }
Eric Wong3af06982006-01-29 16:26:40 -0800227 if (!strcmp(arg,"-n")) {
228 if (++i >= argc)
229 die("-n requires an argument");
230 if ((filter & DO_FLAGS) && (filter & DO_REVS)) {
231 show(arg);
232 show(argv[i]);
233 }
234 continue;
235 }
236 if (!strncmp(arg,"-n",2)) {
237 if ((filter & DO_FLAGS) && (filter & DO_REVS))
238 show(arg);
239 continue;
240 }
241
Linus Torvalds178cb242005-06-13 10:06:50 -0700242 if (*arg == '-') {
243 if (!strcmp(arg, "--")) {
Linus Torvaldsfb18a2e2006-03-26 16:28:20 -0800244 as_is = 2;
Linus Torvaldsa08b6502005-10-20 17:16:30 -0700245 /* Pass on the "--" if we show anything but files.. */
246 if (filter & (DO_FLAGS | DO_REVS))
247 show_file(arg);
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700248 continue;
Linus Torvalds178cb242005-06-13 10:06:50 -0700249 }
250 if (!strcmp(arg, "--default")) {
Linus Torvalds178cb242005-06-13 10:06:50 -0700251 def = argv[i+1];
252 i++;
253 continue;
254 }
Linus Torvalds8ebb0182005-06-13 10:21:11 -0700255 if (!strcmp(arg, "--revs-only")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700256 filter &= ~DO_NOREV;
Linus Torvalds8ebb0182005-06-13 10:21:11 -0700257 continue;
258 }
259 if (!strcmp(arg, "--no-revs")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700260 filter &= ~DO_REVS;
Linus Torvalds8ebb0182005-06-13 10:21:11 -0700261 continue;
262 }
Linus Torvaldsf79b65a2005-07-06 10:08:08 -0700263 if (!strcmp(arg, "--flags")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700264 filter &= ~DO_NONFLAGS;
Linus Torvaldsf79b65a2005-07-06 10:08:08 -0700265 continue;
266 }
267 if (!strcmp(arg, "--no-flags")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700268 filter &= ~DO_FLAGS;
Linus Torvaldsf79b65a2005-07-06 10:08:08 -0700269 continue;
270 }
Linus Torvalds023d66e2005-06-24 10:12:55 -0700271 if (!strcmp(arg, "--verify")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700272 filter &= ~(DO_FLAGS|DO_NOREV);
273 verify = 1;
Linus Torvalds023d66e2005-06-24 10:12:55 -0700274 continue;
Linus Torvalds921d8652005-06-13 11:14:20 -0700275 }
Junio C Hamano62a604b2006-01-26 17:02:07 -0800276 if (!strcmp(arg, "--short") ||
Jonas Fonseca44de0da2006-02-18 02:10:53 +0100277 !strncmp(arg, "--short=", 8)) {
Junio C Hamanod5012502006-01-25 01:35:38 -0800278 filter &= ~(DO_FLAGS|DO_NOREV);
279 verify = 1;
280 abbrev = DEFAULT_ABBREV;
Jonas Fonseca44de0da2006-02-18 02:10:53 +0100281 if (arg[7] == '=')
282 abbrev = strtoul(arg + 8, NULL, 10);
Junio C Hamano1dc4fb82006-01-26 00:48:19 -0800283 if (abbrev < MINIMUM_ABBREV)
284 abbrev = MINIMUM_ABBREV;
285 else if (40 <= abbrev)
286 abbrev = 40;
Junio C Hamanod5012502006-01-25 01:35:38 -0800287 continue;
288 }
Junio C Hamano5bb2c652005-07-22 19:08:32 -0700289 if (!strcmp(arg, "--sq")) {
290 output_sq = 1;
291 continue;
292 }
Linus Torvalds042a4ed2005-06-26 11:34:30 -0700293 if (!strcmp(arg, "--not")) {
294 show_type ^= REVERSED;
295 continue;
296 }
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700297 if (!strcmp(arg, "--symbolic")) {
298 symbolic = 1;
299 continue;
300 }
Linus Torvalds960bba02005-07-03 13:07:52 -0700301 if (!strcmp(arg, "--all")) {
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700302 for_each_ref(show_reference, NULL);
Linus Torvalds960bba02005-07-03 13:07:52 -0700303 continue;
304 }
Seana62be772006-05-13 21:43:00 -0400305 if (!strcmp(arg, "--branches")) {
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700306 for_each_branch_ref(show_reference, NULL);
Seana62be772006-05-13 21:43:00 -0400307 continue;
308 }
309 if (!strcmp(arg, "--tags")) {
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700310 for_each_tag_ref(show_reference, NULL);
Seana62be772006-05-13 21:43:00 -0400311 continue;
312 }
313 if (!strcmp(arg, "--remotes")) {
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700314 for_each_remote_ref(show_reference, NULL);
Seana62be772006-05-13 21:43:00 -0400315 continue;
316 }
Linus Torvaldsd288a702005-08-16 18:06:34 -0700317 if (!strcmp(arg, "--show-prefix")) {
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700318 if (prefix)
319 puts(prefix);
Linus Torvaldsd288a702005-08-16 18:06:34 -0700320 continue;
321 }
Junio C Hamano5f94c732005-12-22 22:35:38 -0800322 if (!strcmp(arg, "--show-cdup")) {
323 const char *pfx = prefix;
324 while (pfx) {
325 pfx = strchr(pfx, '/');
326 if (pfx) {
327 pfx++;
328 printf("../");
329 }
330 }
331 putchar('\n');
332 continue;
333 }
Linus Torvaldsa8783ee2005-09-18 11:18:30 -0700334 if (!strcmp(arg, "--git-dir")) {
335 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
336 static char cwd[PATH_MAX];
337 if (gitdir) {
338 puts(gitdir);
339 continue;
340 }
341 if (!prefix) {
342 puts(".git");
343 continue;
344 }
345 if (!getcwd(cwd, PATH_MAX))
346 die("unable to get current working directory");
347 printf("%s/.git\n", cwd);
348 continue;
349 }
Linus Torvaldsc1babb12005-09-20 14:13:24 -0700350 if (!strncmp(arg, "--since=", 8)) {
351 show_datestring("--max-age=", arg+8);
352 continue;
353 }
354 if (!strncmp(arg, "--after=", 8)) {
355 show_datestring("--max-age=", arg+8);
356 continue;
357 }
358 if (!strncmp(arg, "--before=", 9)) {
359 show_datestring("--min-age=", arg+9);
360 continue;
361 }
362 if (!strncmp(arg, "--until=", 8)) {
363 show_datestring("--min-age=", arg+8);
364 continue;
365 }
Linus Torvalds9523a4c2006-02-05 11:58:34 -0800366 if (show_flag(arg) && verify)
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700367 die("Needed a single revision");
Linus Torvalds178cb242005-06-13 10:06:50 -0700368 continue;
369 }
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700370
371 /* Not a flag argument */
Santi BĂ©jar3dd4e732006-07-04 11:02:22 +0200372 if (try_difference(arg))
373 continue;
Junio C Hamano9938af62005-08-03 22:15:49 -0700374 if (!get_sha1(arg, sha1)) {
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700375 show_rev(NORMAL, sha1, arg);
Linus Torvalds800644c2005-06-20 08:29:13 -0700376 continue;
377 }
Junio C Hamano9938af62005-08-03 22:15:49 -0700378 if (*arg == '^' && !get_sha1(arg+1, sha1)) {
Junio C Hamano30b96fc2005-08-16 12:36:46 -0700379 show_rev(REVERSED, sha1, arg+1);
Linus Torvalds800644c2005-06-20 08:29:13 -0700380 continue;
381 }
Linus Torvalds9ad0a932006-02-05 21:41:47 -0800382 as_is = 1;
383 if (!show_file(arg))
384 continue;
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700385 if (verify)
386 die("Needed a single revision");
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700387 verify_filename(prefix, arg);
Linus Torvalds178cb242005-06-13 10:06:50 -0700388 }
Linus Torvalds023d66e2005-06-24 10:12:55 -0700389 show_default();
Junio C Hamano4866ccf2005-08-24 14:30:04 -0700390 if (verify && revs_count != 1)
391 die("Needed a single revision");
Linus Torvalds178cb242005-06-13 10:06:50 -0700392 return 0;
393}