4 * Copyright (C) Linus Torvalds, 2005
11 #include "parse-options.h"
19 static int filter = ~0;
21 static const char *def;
25 static int show_type = NORMAL;
27 #define SHOW_SYMBOLIC_ASIS 1
28 #define SHOW_SYMBOLIC_FULL 2
31 static int abbrev_ref;
32 static int abbrev_ref_strict;
35 static int stuck_long;
36 static struct string_list *ref_excludes;
39 * Some arguments are relevant "revision" arguments,
40 * others are about output format or other details.
41 * This sorts it all out.
43 static int is_rev_argument(const char *arg)
45 static const char *rev_args[] = {
76 const char **p = rev_args;
78 /* accept -<digit>, like traditional "head" */
79 if ((*arg == '-') && isdigit(arg[1]))
83 const char *str = *p++;
88 if (!strcmp(arg, str) ||
89 (str[len-1] == '=' && !strncmp(arg, str, len)))
94 /* Output argument as a string, either SQ or normal */
95 static void show(const char *arg)
101 while ((ch = *arg++)) {
103 fputs("'\\'", stdout);
113 /* Like show(), but with a negation prefix according to type */
114 static void show_with_type(int type, const char *arg)
116 if (type != show_type)
121 /* Output a revision, only if filter allows it */
122 static void show_rev(int type, const unsigned char *sha1, const char *name)
124 if (!(filter & DO_REVS))
128 if ((symbolic || abbrev_ref) && name) {
129 if (symbolic == SHOW_SYMBOLIC_FULL || abbrev_ref) {
130 unsigned char discard[20];
133 switch (dwim_ref(name, strlen(name), discard, &full)) {
136 * Not found -- not a ref. We could
137 * emit "name" here, but symbolic-full
138 * users are interested in finding the
139 * refs spelled in full, and they would
140 * need to filter non-refs if we did so.
145 full = shorten_unambiguous_ref(full,
147 show_with_type(type, full);
149 default: /* ambiguous */
150 error("refname '%s' is ambiguous", name);
154 show_with_type(type, name);
158 show_with_type(type, find_unique_abbrev(sha1, abbrev));
160 show_with_type(type, sha1_to_hex(sha1));
163 /* Output a flag, only if filter allows it. */
164 static int show_flag(const char *arg)
166 if (!(filter & DO_FLAGS))
168 if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV)) {
175 static int show_default(void)
180 unsigned char sha1[20];
183 if (!get_sha1(s, sha1)) {
184 show_rev(NORMAL, sha1, s);
191 static int show_reference(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
193 if (ref_excluded(ref_excludes, refname))
195 show_rev(NORMAL, sha1, refname);
199 static int anti_reference(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
201 show_rev(REVERSED, sha1, refname);
205 static int show_abbrev(const unsigned char *sha1, void *cb_data)
207 show_rev(NORMAL, sha1, NULL);
211 static void show_datestring(const char *flag, const char *datestr)
213 static char buffer[100];
215 /* date handling requires both flags and revs */
216 if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS))
218 snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr));
222 static int show_file(const char *arg, int output_prefix)
225 if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV)) {
227 const char *prefix = startup_info->prefix;
228 show(prefix_filename(prefix,
229 prefix ? strlen(prefix) : 0,
238 static int try_difference(const char *arg)
241 unsigned char sha1[20];
242 unsigned char end[20];
246 static const char head_by_default[] = "HEAD";
248 if (!(dotdot = strstr(arg, "..")))
252 symmetric = (*next == '.');
258 next = head_by_default;
260 this = head_by_default;
262 if (this == head_by_default && next == head_by_default &&
265 * Just ".."? That is not a range but the
266 * pathspec for the parent directory.
272 if (!get_sha1_committish(this, sha1) && !get_sha1_committish(next, end)) {
273 show_rev(NORMAL, end, next);
274 show_rev(symmetric ? NORMAL : REVERSED, sha1, this);
276 struct commit_list *exclude;
277 struct commit *a, *b;
278 a = lookup_commit_reference(sha1);
279 b = lookup_commit_reference(end);
280 exclude = get_merge_bases(a, b, 1);
282 struct commit_list *n = exclude->next;
284 exclude->item->object.sha1,NULL);
296 static int try_parent_shorthands(const char *arg)
299 unsigned char sha1[20];
300 struct commit *commit;
301 struct commit_list *parents;
304 if ((dotdot = strstr(arg, "^!")))
306 else if ((dotdot = strstr(arg, "^@")))
309 if (!dotdot || dotdot[2])
313 if (get_sha1_committish(arg, sha1)) {
319 show_rev(NORMAL, sha1, arg);
320 commit = lookup_commit_reference(sha1);
321 for (parents = commit->parents; parents; parents = parents->next)
322 show_rev(parents_only ? NORMAL : REVERSED,
323 parents->item->object.sha1, arg);
329 static int parseopt_dump(const struct option *o, const char *arg, int unset)
331 struct strbuf *parsed = o->value;
333 strbuf_addf(parsed, " --no-%s", o->long_name);
334 else if (o->short_name && (o->long_name == NULL || !stuck_long))
335 strbuf_addf(parsed, " -%c", o->short_name);
337 strbuf_addf(parsed, " --%s", o->long_name);
340 strbuf_addch(parsed, ' ');
341 else if (o->long_name)
342 strbuf_addch(parsed, '=');
343 sq_quote_buf(parsed, arg);
348 static const char *skipspaces(const char *s)
355 static int cmd_parseopt(int argc, const char **argv, const char *prefix)
357 static int keep_dashdash = 0, stop_at_non_option = 0;
358 static char const * const parseopt_usage[] = {
359 N_("git rev-parse --parseopt [options] -- [<args>...]"),
362 static struct option parseopt_opts[] = {
363 OPT_BOOL(0, "keep-dashdash", &keep_dashdash,
364 N_("keep the `--` passed as an arg")),
365 OPT_BOOL(0, "stop-at-non-option", &stop_at_non_option,
366 N_("stop parsing after the "
367 "first non-option argument")),
368 OPT_BOOL(0, "stuck-long", &stuck_long,
369 N_("output in stuck long form")),
373 struct strbuf sb = STRBUF_INIT, parsed = STRBUF_INIT;
374 const char **usage = NULL;
375 struct option *opts = NULL;
376 int onb = 0, osz = 0, unb = 0, usz = 0;
378 strbuf_addstr(&parsed, "set --");
379 argc = parse_options(argc, argv, prefix, parseopt_opts, parseopt_usage,
380 PARSE_OPT_KEEP_DASHDASH);
381 if (argc < 1 || strcmp(argv[0], "--"))
382 usage_with_options(parseopt_usage, parseopt_opts);
384 /* get the usage up to the first line with a -- on it */
386 if (strbuf_getline(&sb, stdin, '\n') == EOF)
387 die("premature end of input");
388 ALLOC_GROW(usage, unb + 1, usz);
389 if (!strcmp("--", sb.buf)) {
391 die("no usage string given before the `--' separator");
395 usage[unb++] = strbuf_detach(&sb, NULL);
398 /* parse: (<short>|<short>,<long>|<long>)[*=?!]*<arghint>? SP+ <help> */
399 while (strbuf_getline(&sb, stdin, '\n') != EOF) {
407 ALLOC_GROW(opts, onb + 1, osz);
408 memset(opts + onb, 0, sizeof(opts[onb]));
411 s = strchr(sb.buf, ' ');
412 if (!s || *sb.buf == ' ') {
413 o->type = OPTION_GROUP;
414 o->help = xstrdup(skipspaces(sb.buf));
418 o->type = OPTION_CALLBACK;
419 o->help = xstrdup(skipspaces(s));
421 o->flags = PARSE_OPT_NOARG;
422 o->callback = &parseopt_dump;
424 /* Possible argument name hint */
426 while (s > sb.buf && strchr("*=?!", s[-1]) == NULL)
428 if (s != sb.buf && s != end)
429 o->argh = xmemdupz(s, end - s);
433 while (s > sb.buf && strchr("*=?!", s[-1])) {
436 o->flags &= ~PARSE_OPT_NOARG;
439 o->flags &= ~PARSE_OPT_NOARG;
440 o->flags |= PARSE_OPT_OPTARG;
443 o->flags |= PARSE_OPT_NONEG;
446 o->flags |= PARSE_OPT_HIDDEN;
451 if (s - sb.buf == 1) /* short option only */
452 o->short_name = *sb.buf;
453 else if (sb.buf[1] != ',') /* long option only */
454 o->long_name = xmemdupz(sb.buf, s - sb.buf);
456 o->short_name = *sb.buf;
457 o->long_name = xmemdupz(sb.buf + 2, s - sb.buf - 2);
462 /* put an OPT_END() */
463 ALLOC_GROW(opts, onb + 1, osz);
464 memset(opts + onb, 0, sizeof(opts[onb]));
465 argc = parse_options(argc, argv, prefix, opts, usage,
466 (keep_dashdash ? PARSE_OPT_KEEP_DASHDASH : 0) |
467 (stop_at_non_option ? PARSE_OPT_STOP_AT_NON_OPTION : 0) |
468 PARSE_OPT_SHELL_EVAL);
470 strbuf_addf(&parsed, " --");
471 sq_quote_argv(&parsed, argv, 0);
476 static int cmd_sq_quote(int argc, const char **argv)
478 struct strbuf buf = STRBUF_INIT;
481 sq_quote_argv(&buf, argv, 0);
482 printf("%s\n", buf.buf);
483 strbuf_release(&buf);
488 static void die_no_single_rev(int quiet)
493 die("Needed a single revision");
496 static const char builtin_rev_parse_usage[] =
497 N_("git rev-parse --parseopt [options] -- [<args>...]\n"
498 " or: git rev-parse --sq-quote [<arg>...]\n"
499 " or: git rev-parse [options] [<arg>...]\n"
501 "Run \"git rev-parse --parseopt -h\" for more information on the first usage.");
503 int cmd_rev_parse(int argc, const char **argv, const char *prefix)
505 int i, as_is = 0, verify = 0, quiet = 0, revs_count = 0, type = 0;
506 int has_dashdash = 0;
507 int output_prefix = 0;
508 unsigned char sha1[20];
509 const char *name = NULL;
511 if (argc > 1 && !strcmp("--parseopt", argv[1]))
512 return cmd_parseopt(argc - 1, argv + 1, prefix);
514 if (argc > 1 && !strcmp("--sq-quote", argv[1]))
515 return cmd_sq_quote(argc - 2, argv + 2);
517 if (argc > 1 && !strcmp("-h", argv[1]))
518 usage(builtin_rev_parse_usage);
520 for (i = 1; i < argc; i++) {
521 if (!strcmp(argv[i], "--")) {
527 prefix = setup_git_directory();
528 git_config(git_default_config, NULL);
529 for (i = 1; i < argc; i++) {
530 const char *arg = argv[i];
533 if (show_file(arg, output_prefix) && as_is < 2)
534 verify_filename(prefix, arg, 0);
537 if (!strcmp(arg,"-n")) {
539 die("-n requires an argument");
540 if ((filter & DO_FLAGS) && (filter & DO_REVS)) {
546 if (starts_with(arg, "-n")) {
547 if ((filter & DO_FLAGS) && (filter & DO_REVS))
553 if (!strcmp(arg, "--")) {
555 /* Pass on the "--" if we show anything but files.. */
556 if (filter & (DO_FLAGS | DO_REVS))
560 if (!strcmp(arg, "--default")) {
563 die("--default requires an argument");
566 if (!strcmp(arg, "--prefix")) {
569 die("--prefix requires an argument");
570 startup_info->prefix = prefix;
574 if (!strcmp(arg, "--revs-only")) {
578 if (!strcmp(arg, "--no-revs")) {
582 if (!strcmp(arg, "--flags")) {
583 filter &= ~DO_NONFLAGS;
586 if (!strcmp(arg, "--no-flags")) {
590 if (!strcmp(arg, "--verify")) {
591 filter &= ~(DO_FLAGS|DO_NOREV);
595 if (!strcmp(arg, "--quiet") || !strcmp(arg, "-q")) {
599 if (!strcmp(arg, "--short") ||
600 starts_with(arg, "--short=")) {
601 filter &= ~(DO_FLAGS|DO_NOREV);
603 abbrev = DEFAULT_ABBREV;
605 abbrev = strtoul(arg + 8, NULL, 10);
606 if (abbrev < MINIMUM_ABBREV)
607 abbrev = MINIMUM_ABBREV;
608 else if (40 <= abbrev)
612 if (!strcmp(arg, "--sq")) {
616 if (!strcmp(arg, "--not")) {
617 show_type ^= REVERSED;
620 if (!strcmp(arg, "--symbolic")) {
621 symbolic = SHOW_SYMBOLIC_ASIS;
624 if (!strcmp(arg, "--symbolic-full-name")) {
625 symbolic = SHOW_SYMBOLIC_FULL;
628 if (starts_with(arg, "--abbrev-ref") &&
629 (!arg[12] || arg[12] == '=')) {
631 abbrev_ref_strict = warn_ambiguous_refs;
632 if (arg[12] == '=') {
633 if (!strcmp(arg + 13, "strict"))
634 abbrev_ref_strict = 1;
635 else if (!strcmp(arg + 13, "loose"))
636 abbrev_ref_strict = 0;
638 die("unknown mode for %s", arg);
642 if (!strcmp(arg, "--all")) {
643 for_each_ref(show_reference, NULL);
646 if (starts_with(arg, "--disambiguate=")) {
647 for_each_abbrev(arg + 15, show_abbrev, NULL);
650 if (!strcmp(arg, "--bisect")) {
651 for_each_ref_in("refs/bisect/bad", show_reference, NULL);
652 for_each_ref_in("refs/bisect/good", anti_reference, NULL);
655 if (starts_with(arg, "--branches=")) {
656 for_each_glob_ref_in(show_reference, arg + 11,
657 "refs/heads/", NULL);
658 clear_ref_exclusion(&ref_excludes);
661 if (!strcmp(arg, "--branches")) {
662 for_each_branch_ref(show_reference, NULL);
663 clear_ref_exclusion(&ref_excludes);
666 if (starts_with(arg, "--tags=")) {
667 for_each_glob_ref_in(show_reference, arg + 7,
669 clear_ref_exclusion(&ref_excludes);
672 if (!strcmp(arg, "--tags")) {
673 for_each_tag_ref(show_reference, NULL);
674 clear_ref_exclusion(&ref_excludes);
677 if (starts_with(arg, "--glob=")) {
678 for_each_glob_ref(show_reference, arg + 7, NULL);
679 clear_ref_exclusion(&ref_excludes);
682 if (starts_with(arg, "--remotes=")) {
683 for_each_glob_ref_in(show_reference, arg + 10,
684 "refs/remotes/", NULL);
685 clear_ref_exclusion(&ref_excludes);
688 if (!strcmp(arg, "--remotes")) {
689 for_each_remote_ref(show_reference, NULL);
690 clear_ref_exclusion(&ref_excludes);
693 if (starts_with(arg, "--exclude=")) {
694 add_ref_exclusion(&ref_excludes, arg + 10);
697 if (!strcmp(arg, "--local-env-vars")) {
699 for (i = 0; local_repo_env[i]; i++)
700 printf("%s\n", local_repo_env[i]);
703 if (!strcmp(arg, "--show-toplevel")) {
704 const char *work_tree = get_git_work_tree();
709 if (!strcmp(arg, "--show-prefix")) {
716 if (!strcmp(arg, "--show-cdup")) {
717 const char *pfx = prefix;
718 if (!is_inside_work_tree()) {
719 const char *work_tree =
722 printf("%s\n", work_tree);
726 pfx = strchr(pfx, '/');
735 if (!strcmp(arg, "--git-dir")) {
736 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
749 printf("%s%s.git\n", cwd, len && cwd[len-1] != '/' ? "/" : "");
753 if (!strcmp(arg, "--resolve-git-dir")) {
754 const char *gitdir = argv[++i];
756 die("--resolve-git-dir requires an argument");
757 gitdir = resolve_gitdir(gitdir);
759 die("not a gitdir '%s'", argv[i]);
763 if (!strcmp(arg, "--is-inside-git-dir")) {
764 printf("%s\n", is_inside_git_dir() ? "true"
768 if (!strcmp(arg, "--is-inside-work-tree")) {
769 printf("%s\n", is_inside_work_tree() ? "true"
773 if (!strcmp(arg, "--is-bare-repository")) {
774 printf("%s\n", is_bare_repository() ? "true"
778 if (starts_with(arg, "--since=")) {
779 show_datestring("--max-age=", arg+8);
782 if (starts_with(arg, "--after=")) {
783 show_datestring("--max-age=", arg+8);
786 if (starts_with(arg, "--before=")) {
787 show_datestring("--min-age=", arg+9);
790 if (starts_with(arg, "--until=")) {
791 show_datestring("--min-age=", arg+8);
794 if (show_flag(arg) && verify)
795 die_no_single_rev(quiet);
799 /* Not a flag argument */
800 if (try_difference(arg))
802 if (try_parent_shorthands(arg))
810 if (!get_sha1(name, sha1)) {
814 show_rev(type, sha1, name);
818 die_no_single_rev(quiet);
820 die("bad revision '%s'", arg);
822 if (!show_file(arg, output_prefix))
824 verify_filename(prefix, arg, 1);
827 if (revs_count == 1) {
828 show_rev(type, sha1, name);
830 } else if (revs_count == 0 && show_default())
832 die_no_single_rev(quiet);