4 * Copyright (C) Linus Torvalds, 2005
11 #include "parse-options.h"
14 #include "split-index.h"
20 static int filter
= ~0;
22 static const char *def
;
26 static int show_type
= NORMAL
;
28 #define SHOW_SYMBOLIC_ASIS 1
29 #define SHOW_SYMBOLIC_FULL 2
32 static int abbrev_ref
;
33 static int abbrev_ref_strict
;
36 static int stuck_long
;
37 static struct string_list
*ref_excludes
;
40 * Some arguments are relevant "revision" arguments,
41 * others are about output format or other details.
42 * This sorts it all out.
44 static int is_rev_argument(const char *arg
)
46 static const char *rev_args
[] = {
77 const char **p
= rev_args
;
79 /* accept -<digit>, like traditional "head" */
80 if ((*arg
== '-') && isdigit(arg
[1]))
84 const char *str
= *p
++;
89 if (!strcmp(arg
, str
) ||
90 (str
[len
-1] == '=' && !strncmp(arg
, str
, len
)))
95 /* Output argument as a string, either SQ or normal */
96 static void show(const char *arg
)
102 while ((ch
= *arg
++)) {
104 fputs("'\\'", stdout
);
114 /* Like show(), but with a negation prefix according to type */
115 static void show_with_type(int type
, const char *arg
)
117 if (type
!= show_type
)
122 /* Output a revision, only if filter allows it */
123 static void show_rev(int type
, const unsigned char *sha1
, const char *name
)
125 if (!(filter
& DO_REVS
))
129 if ((symbolic
|| abbrev_ref
) && name
) {
130 if (symbolic
== SHOW_SYMBOLIC_FULL
|| abbrev_ref
) {
131 unsigned char discard
[20];
134 switch (dwim_ref(name
, strlen(name
), discard
, &full
)) {
137 * Not found -- not a ref. We could
138 * emit "name" here, but symbolic-full
139 * users are interested in finding the
140 * refs spelled in full, and they would
141 * need to filter non-refs if we did so.
146 full
= shorten_unambiguous_ref(full
,
148 show_with_type(type
, full
);
150 default: /* ambiguous */
151 error("refname '%s' is ambiguous", name
);
156 show_with_type(type
, name
);
160 show_with_type(type
, find_unique_abbrev(sha1
, abbrev
));
162 show_with_type(type
, sha1_to_hex(sha1
));
165 /* Output a flag, only if filter allows it. */
166 static int show_flag(const char *arg
)
168 if (!(filter
& DO_FLAGS
))
170 if (filter
& (is_rev_argument(arg
) ? DO_REVS
: DO_NOREV
)) {
177 static int show_default(void)
182 unsigned char sha1
[20];
185 if (!get_sha1(s
, sha1
)) {
186 show_rev(NORMAL
, sha1
, s
);
193 static int show_reference(const char *refname
, const struct object_id
*oid
, int flag
, void *cb_data
)
195 if (ref_excluded(ref_excludes
, refname
))
197 show_rev(NORMAL
, oid
->hash
, refname
);
201 static int anti_reference(const char *refname
, const struct object_id
*oid
, int flag
, void *cb_data
)
203 show_rev(REVERSED
, oid
->hash
, refname
);
207 static int show_abbrev(const unsigned char *sha1
, void *cb_data
)
209 show_rev(NORMAL
, sha1
, NULL
);
213 static void show_datestring(const char *flag
, const char *datestr
)
215 static char buffer
[100];
217 /* date handling requires both flags and revs */
218 if ((filter
& (DO_FLAGS
| DO_REVS
)) != (DO_FLAGS
| DO_REVS
))
220 snprintf(buffer
, sizeof(buffer
), "%s%lu", flag
, approxidate(datestr
));
224 static int show_file(const char *arg
, int output_prefix
)
227 if ((filter
& (DO_NONFLAGS
|DO_NOREV
)) == (DO_NONFLAGS
|DO_NOREV
)) {
229 const char *prefix
= startup_info
->prefix
;
230 show(prefix_filename(prefix
,
231 prefix
? strlen(prefix
) : 0,
240 static int try_difference(const char *arg
)
243 unsigned char sha1
[20];
244 unsigned char end
[20];
248 static const char head_by_default
[] = "HEAD";
250 if (!(dotdot
= strstr(arg
, "..")))
254 symmetric
= (*next
== '.');
260 next
= head_by_default
;
262 this = head_by_default
;
264 if (this == head_by_default
&& next
== head_by_default
&&
267 * Just ".."? That is not a range but the
268 * pathspec for the parent directory.
274 if (!get_sha1_committish(this, sha1
) && !get_sha1_committish(next
, end
)) {
275 show_rev(NORMAL
, end
, next
);
276 show_rev(symmetric
? NORMAL
: REVERSED
, sha1
, this);
278 struct commit_list
*exclude
;
279 struct commit
*a
, *b
;
280 a
= lookup_commit_reference(sha1
);
281 b
= lookup_commit_reference(end
);
282 exclude
= get_merge_bases(a
, b
);
284 struct commit
*commit
= pop_commit(&exclude
);
285 show_rev(REVERSED
, commit
->object
.oid
.hash
, NULL
);
295 static int try_parent_shorthands(const char *arg
)
298 unsigned char sha1
[20];
299 struct commit
*commit
;
300 struct commit_list
*parents
;
303 int include_parents
= 0;
304 int exclude_parent
= 0;
306 if ((dotdot
= strstr(arg
, "^!"))) {
310 } else if ((dotdot
= strstr(arg
, "^@"))) {
314 } else if ((dotdot
= strstr(arg
, "^-"))) {
320 exclude_parent
= strtoul(dotdot
+ 2, &end
, 10);
321 if (*end
!= '\0' || !exclude_parent
)
328 if (get_sha1_committish(arg
, sha1
)) {
333 commit
= lookup_commit_reference(sha1
);
334 if (exclude_parent
&&
335 exclude_parent
> commit_list_count(commit
->parents
)) {
341 show_rev(NORMAL
, sha1
, arg
);
342 for (parents
= commit
->parents
, parent_number
= 1;
344 parents
= parents
->next
, parent_number
++) {
345 if (exclude_parent
&& parent_number
!= exclude_parent
)
348 show_rev(include_parents
? NORMAL
: REVERSED
,
349 parents
->item
->object
.oid
.hash
, arg
);
356 static int parseopt_dump(const struct option
*o
, const char *arg
, int unset
)
358 struct strbuf
*parsed
= o
->value
;
360 strbuf_addf(parsed
, " --no-%s", o
->long_name
);
361 else if (o
->short_name
&& (o
->long_name
== NULL
|| !stuck_long
))
362 strbuf_addf(parsed
, " -%c", o
->short_name
);
364 strbuf_addf(parsed
, " --%s", o
->long_name
);
367 strbuf_addch(parsed
, ' ');
368 else if (o
->long_name
)
369 strbuf_addch(parsed
, '=');
370 sq_quote_buf(parsed
, arg
);
375 static const char *skipspaces(const char *s
)
382 static int cmd_parseopt(int argc
, const char **argv
, const char *prefix
)
384 static int keep_dashdash
= 0, stop_at_non_option
= 0;
385 static char const * const parseopt_usage
[] = {
386 N_("git rev-parse --parseopt [<options>] -- [<args>...]"),
389 static struct option parseopt_opts
[] = {
390 OPT_BOOL(0, "keep-dashdash", &keep_dashdash
,
391 N_("keep the `--` passed as an arg")),
392 OPT_BOOL(0, "stop-at-non-option", &stop_at_non_option
,
393 N_("stop parsing after the "
394 "first non-option argument")),
395 OPT_BOOL(0, "stuck-long", &stuck_long
,
396 N_("output in stuck long form")),
399 static const char * const flag_chars
= "*=?!";
401 struct strbuf sb
= STRBUF_INIT
, parsed
= STRBUF_INIT
;
402 const char **usage
= NULL
;
403 struct option
*opts
= NULL
;
404 int onb
= 0, osz
= 0, unb
= 0, usz
= 0;
406 strbuf_addstr(&parsed
, "set --");
407 argc
= parse_options(argc
, argv
, prefix
, parseopt_opts
, parseopt_usage
,
408 PARSE_OPT_KEEP_DASHDASH
);
409 if (argc
< 1 || strcmp(argv
[0], "--"))
410 usage_with_options(parseopt_usage
, parseopt_opts
);
412 /* get the usage up to the first line with a -- on it */
414 if (strbuf_getline(&sb
, stdin
) == EOF
)
415 die("premature end of input");
416 ALLOC_GROW(usage
, unb
+ 1, usz
);
417 if (!strcmp("--", sb
.buf
)) {
419 die("no usage string given before the `--' separator");
423 usage
[unb
++] = strbuf_detach(&sb
, NULL
);
426 /* parse: (<short>|<short>,<long>|<long>)[*=?!]*<arghint>? SP+ <help> */
427 while (strbuf_getline(&sb
, stdin
) != EOF
) {
435 ALLOC_GROW(opts
, onb
+ 1, osz
);
436 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
439 help
= strchr(sb
.buf
, ' ');
440 if (!help
|| *sb
.buf
== ' ') {
441 o
->type
= OPTION_GROUP
;
442 o
->help
= xstrdup(skipspaces(sb
.buf
));
446 o
->type
= OPTION_CALLBACK
;
447 o
->help
= xstrdup(skipspaces(help
));
449 o
->flags
= PARSE_OPT_NOARG
;
450 o
->callback
= &parseopt_dump
;
453 s
= strpbrk(sb
.buf
, flag_chars
);
457 if (s
- sb
.buf
== 1) /* short option only */
458 o
->short_name
= *sb
.buf
;
459 else if (sb
.buf
[1] != ',') /* long option only */
460 o
->long_name
= xmemdupz(sb
.buf
, s
- sb
.buf
);
462 o
->short_name
= *sb
.buf
;
463 o
->long_name
= xmemdupz(sb
.buf
+ 2, s
- sb
.buf
- 2);
470 o
->flags
&= ~PARSE_OPT_NOARG
;
473 o
->flags
&= ~PARSE_OPT_NOARG
;
474 o
->flags
|= PARSE_OPT_OPTARG
;
477 o
->flags
|= PARSE_OPT_NONEG
;
480 o
->flags
|= PARSE_OPT_HIDDEN
;
488 o
->argh
= xmemdupz(s
, help
- s
);
492 /* put an OPT_END() */
493 ALLOC_GROW(opts
, onb
+ 1, osz
);
494 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
495 argc
= parse_options(argc
, argv
, prefix
, opts
, usage
,
496 (keep_dashdash
? PARSE_OPT_KEEP_DASHDASH
: 0) |
497 (stop_at_non_option
? PARSE_OPT_STOP_AT_NON_OPTION
: 0) |
498 PARSE_OPT_SHELL_EVAL
);
500 strbuf_addstr(&parsed
, " --");
501 sq_quote_argv(&parsed
, argv
, 0);
506 static int cmd_sq_quote(int argc
, const char **argv
)
508 struct strbuf buf
= STRBUF_INIT
;
511 sq_quote_argv(&buf
, argv
, 0);
512 printf("%s\n", buf
.buf
);
513 strbuf_release(&buf
);
518 static void die_no_single_rev(int quiet
)
523 die("Needed a single revision");
526 static const char builtin_rev_parse_usage
[] =
527 N_("git rev-parse --parseopt [<options>] -- [<args>...]\n"
528 " or: git rev-parse --sq-quote [<arg>...]\n"
529 " or: git rev-parse [<options>] [<arg>...]\n"
531 "Run \"git rev-parse --parseopt -h\" for more information on the first usage.");
533 int cmd_rev_parse(int argc
, const char **argv
, const char *prefix
)
535 int i
, as_is
= 0, verify
= 0, quiet
= 0, revs_count
= 0, type
= 0;
536 int did_repo_setup
= 0;
537 int has_dashdash
= 0;
538 int output_prefix
= 0;
539 unsigned char sha1
[20];
540 unsigned int flags
= 0;
541 const char *name
= NULL
;
542 struct object_context unused
;
544 if (argc
> 1 && !strcmp("--parseopt", argv
[1]))
545 return cmd_parseopt(argc
- 1, argv
+ 1, prefix
);
547 if (argc
> 1 && !strcmp("--sq-quote", argv
[1]))
548 return cmd_sq_quote(argc
- 2, argv
+ 2);
550 if (argc
> 1 && !strcmp("-h", argv
[1]))
551 usage(builtin_rev_parse_usage
);
553 for (i
= 1; i
< argc
; i
++) {
554 if (!strcmp(argv
[i
], "--")) {
560 /* No options; just report on whether we're in a git repo or not. */
562 setup_git_directory();
563 git_config(git_default_config
, NULL
);
567 for (i
= 1; i
< argc
; i
++) {
568 const char *arg
= argv
[i
];
570 if (!strcmp(arg
, "--local-env-vars")) {
572 for (i
= 0; local_repo_env
[i
]; i
++)
573 printf("%s\n", local_repo_env
[i
]);
576 if (!strcmp(arg
, "--resolve-git-dir")) {
577 const char *gitdir
= argv
[++i
];
579 die("--resolve-git-dir requires an argument");
580 gitdir
= resolve_gitdir(gitdir
);
582 die("not a gitdir '%s'", argv
[i
]);
587 /* The rest of the options require a git repository. */
588 if (!did_repo_setup
) {
589 prefix
= setup_git_directory();
590 git_config(git_default_config
, NULL
);
594 if (!strcmp(arg
, "--git-path")) {
596 die("--git-path requires an argument");
597 puts(git_path("%s", argv
[i
+ 1]));
602 if (show_file(arg
, output_prefix
) && as_is
< 2)
603 verify_filename(prefix
, arg
, 0);
606 if (!strcmp(arg
,"-n")) {
608 die("-n requires an argument");
609 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
)) {
615 if (starts_with(arg
, "-n")) {
616 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
))
622 if (!strcmp(arg
, "--")) {
624 /* Pass on the "--" if we show anything but files.. */
625 if (filter
& (DO_FLAGS
| DO_REVS
))
629 if (!strcmp(arg
, "--default")) {
632 die("--default requires an argument");
635 if (!strcmp(arg
, "--prefix")) {
638 die("--prefix requires an argument");
639 startup_info
->prefix
= prefix
;
643 if (!strcmp(arg
, "--revs-only")) {
647 if (!strcmp(arg
, "--no-revs")) {
651 if (!strcmp(arg
, "--flags")) {
652 filter
&= ~DO_NONFLAGS
;
655 if (!strcmp(arg
, "--no-flags")) {
659 if (!strcmp(arg
, "--verify")) {
660 filter
&= ~(DO_FLAGS
|DO_NOREV
);
664 if (!strcmp(arg
, "--quiet") || !strcmp(arg
, "-q")) {
666 flags
|= GET_SHA1_QUIETLY
;
669 if (!strcmp(arg
, "--short") ||
670 starts_with(arg
, "--short=")) {
671 filter
&= ~(DO_FLAGS
|DO_NOREV
);
673 abbrev
= DEFAULT_ABBREV
;
676 abbrev
= strtoul(arg
+ 8, NULL
, 10);
677 if (abbrev
< MINIMUM_ABBREV
)
678 abbrev
= MINIMUM_ABBREV
;
679 else if (40 <= abbrev
)
683 if (!strcmp(arg
, "--sq")) {
687 if (!strcmp(arg
, "--not")) {
688 show_type
^= REVERSED
;
691 if (!strcmp(arg
, "--symbolic")) {
692 symbolic
= SHOW_SYMBOLIC_ASIS
;
695 if (!strcmp(arg
, "--symbolic-full-name")) {
696 symbolic
= SHOW_SYMBOLIC_FULL
;
699 if (starts_with(arg
, "--abbrev-ref") &&
700 (!arg
[12] || arg
[12] == '=')) {
702 abbrev_ref_strict
= warn_ambiguous_refs
;
703 if (arg
[12] == '=') {
704 if (!strcmp(arg
+ 13, "strict"))
705 abbrev_ref_strict
= 1;
706 else if (!strcmp(arg
+ 13, "loose"))
707 abbrev_ref_strict
= 0;
709 die("unknown mode for %s", arg
);
713 if (!strcmp(arg
, "--all")) {
714 for_each_ref(show_reference
, NULL
);
717 if (starts_with(arg
, "--disambiguate=")) {
718 for_each_abbrev(arg
+ 15, show_abbrev
, NULL
);
721 if (!strcmp(arg
, "--bisect")) {
722 for_each_ref_in("refs/bisect/bad", show_reference
, NULL
);
723 for_each_ref_in("refs/bisect/good", anti_reference
, NULL
);
726 if (starts_with(arg
, "--branches=")) {
727 for_each_glob_ref_in(show_reference
, arg
+ 11,
728 "refs/heads/", NULL
);
729 clear_ref_exclusion(&ref_excludes
);
732 if (!strcmp(arg
, "--branches")) {
733 for_each_branch_ref(show_reference
, NULL
);
734 clear_ref_exclusion(&ref_excludes
);
737 if (starts_with(arg
, "--tags=")) {
738 for_each_glob_ref_in(show_reference
, arg
+ 7,
740 clear_ref_exclusion(&ref_excludes
);
743 if (!strcmp(arg
, "--tags")) {
744 for_each_tag_ref(show_reference
, NULL
);
745 clear_ref_exclusion(&ref_excludes
);
748 if (starts_with(arg
, "--glob=")) {
749 for_each_glob_ref(show_reference
, arg
+ 7, NULL
);
750 clear_ref_exclusion(&ref_excludes
);
753 if (starts_with(arg
, "--remotes=")) {
754 for_each_glob_ref_in(show_reference
, arg
+ 10,
755 "refs/remotes/", NULL
);
756 clear_ref_exclusion(&ref_excludes
);
759 if (!strcmp(arg
, "--remotes")) {
760 for_each_remote_ref(show_reference
, NULL
);
761 clear_ref_exclusion(&ref_excludes
);
764 if (starts_with(arg
, "--exclude=")) {
765 add_ref_exclusion(&ref_excludes
, arg
+ 10);
768 if (!strcmp(arg
, "--show-toplevel")) {
769 const char *work_tree
= get_git_work_tree();
774 if (!strcmp(arg
, "--show-prefix")) {
781 if (!strcmp(arg
, "--show-cdup")) {
782 const char *pfx
= prefix
;
783 if (!is_inside_work_tree()) {
784 const char *work_tree
=
787 printf("%s\n", work_tree
);
791 pfx
= strchr(pfx
, '/');
800 if (!strcmp(arg
, "--git-dir")) {
801 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
814 printf("%s%s.git\n", cwd
, len
&& cwd
[len
-1] != '/' ? "/" : "");
818 if (!strcmp(arg
, "--git-common-dir")) {
819 const char *pfx
= prefix
? prefix
: "";
820 puts(prefix_filename(pfx
, strlen(pfx
), get_git_common_dir()));
823 if (!strcmp(arg
, "--is-inside-git-dir")) {
824 printf("%s\n", is_inside_git_dir() ? "true"
828 if (!strcmp(arg
, "--is-inside-work-tree")) {
829 printf("%s\n", is_inside_work_tree() ? "true"
833 if (!strcmp(arg
, "--is-bare-repository")) {
834 printf("%s\n", is_bare_repository() ? "true"
838 if (!strcmp(arg
, "--shared-index-path")) {
839 if (read_cache() < 0)
840 die(_("Could not read the index"));
841 if (the_index
.split_index
) {
842 const unsigned char *sha1
= the_index
.split_index
->base_sha1
;
843 puts(git_path("sharedindex.%s", sha1_to_hex(sha1
)));
847 if (starts_with(arg
, "--since=")) {
848 show_datestring("--max-age=", arg
+8);
851 if (starts_with(arg
, "--after=")) {
852 show_datestring("--max-age=", arg
+8);
855 if (starts_with(arg
, "--before=")) {
856 show_datestring("--min-age=", arg
+9);
859 if (starts_with(arg
, "--until=")) {
860 show_datestring("--min-age=", arg
+8);
863 if (show_flag(arg
) && verify
)
864 die_no_single_rev(quiet
);
868 /* Not a flag argument */
869 if (try_difference(arg
))
871 if (try_parent_shorthands(arg
))
879 if (!get_sha1_with_context(name
, flags
, sha1
, &unused
)) {
883 show_rev(type
, sha1
, name
);
887 die_no_single_rev(quiet
);
889 die("bad revision '%s'", arg
);
891 if (!show_file(arg
, output_prefix
))
893 verify_filename(prefix
, arg
, 1);
896 if (revs_count
== 1) {
897 show_rev(type
, sha1
, name
);
899 } else if (revs_count
== 0 && show_default())
901 die_no_single_rev(quiet
);