4 * Copyright (C) Linus Torvalds, 2005
11 #include "parse-options.h"
17 static int filter
= ~0;
19 static const char *def
;
23 static int show_type
= NORMAL
;
25 #define SHOW_SYMBOLIC_ASIS 1
26 #define SHOW_SYMBOLIC_FULL 2
29 static int abbrev_ref
;
30 static int abbrev_ref_strict
;
34 * Some arguments are relevant "revision" arguments,
35 * others are about output format or other details.
36 * This sorts it all out.
38 static int is_rev_argument(const char *arg
)
40 static const char *rev_args
[] = {
71 const char **p
= rev_args
;
73 /* accept -<digit>, like traditional "head" */
74 if ((*arg
== '-') && isdigit(arg
[1]))
78 const char *str
= *p
++;
83 if (!strcmp(arg
, str
) ||
84 (str
[len
-1] == '=' && !strncmp(arg
, str
, len
)))
89 /* Output argument as a string, either SQ or normal */
90 static void show(const char *arg
)
96 while ((ch
= *arg
++)) {
98 fputs("'\\'", stdout
);
108 /* Like show(), but with a negation prefix according to type */
109 static void show_with_type(int type
, const char *arg
)
111 if (type
!= show_type
)
116 /* Output a revision, only if filter allows it */
117 static void show_rev(int type
, const unsigned char *sha1
, const char *name
)
119 if (!(filter
& DO_REVS
))
123 if ((symbolic
|| abbrev_ref
) && name
) {
124 if (symbolic
== SHOW_SYMBOLIC_FULL
|| abbrev_ref
) {
125 unsigned char discard
[20];
128 switch (dwim_ref(name
, strlen(name
), discard
, &full
)) {
131 * Not found -- not a ref. We could
132 * emit "name" here, but symbolic-full
133 * users are interested in finding the
134 * refs spelled in full, and they would
135 * need to filter non-refs if we did so.
140 full
= shorten_unambiguous_ref(full
,
142 show_with_type(type
, full
);
144 default: /* ambiguous */
145 error("refname '%s' is ambiguous", name
);
149 show_with_type(type
, name
);
153 show_with_type(type
, find_unique_abbrev(sha1
, abbrev
));
155 show_with_type(type
, sha1_to_hex(sha1
));
158 /* Output a flag, only if filter allows it. */
159 static int show_flag(const char *arg
)
161 if (!(filter
& DO_FLAGS
))
163 if (filter
& (is_rev_argument(arg
) ? DO_REVS
: DO_NOREV
)) {
170 static int show_default(void)
175 unsigned char sha1
[20];
178 if (!get_sha1(s
, sha1
)) {
179 show_rev(NORMAL
, sha1
, s
);
186 static int show_reference(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
188 show_rev(NORMAL
, sha1
, refname
);
192 static int anti_reference(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
194 show_rev(REVERSED
, sha1
, refname
);
198 static int show_abbrev(const unsigned char *sha1
, void *cb_data
)
200 show_rev(NORMAL
, sha1
, NULL
);
204 static void show_datestring(const char *flag
, const char *datestr
)
206 static char buffer
[100];
208 /* date handling requires both flags and revs */
209 if ((filter
& (DO_FLAGS
| DO_REVS
)) != (DO_FLAGS
| DO_REVS
))
211 snprintf(buffer
, sizeof(buffer
), "%s%lu", flag
, approxidate(datestr
));
215 static int show_file(const char *arg
)
218 if ((filter
& (DO_NONFLAGS
|DO_NOREV
)) == (DO_NONFLAGS
|DO_NOREV
)) {
225 static int try_difference(const char *arg
)
228 unsigned char sha1
[20];
229 unsigned char end
[20];
234 if (!(dotdot
= strstr(arg
, "..")))
238 symmetric
= (*next
== '.');
247 if (!get_sha1_committish(this, sha1
) && !get_sha1_committish(next
, end
)) {
248 show_rev(NORMAL
, end
, next
);
249 show_rev(symmetric
? NORMAL
: REVERSED
, sha1
, this);
251 struct commit_list
*exclude
;
252 struct commit
*a
, *b
;
253 a
= lookup_commit_reference(sha1
);
254 b
= lookup_commit_reference(end
);
255 exclude
= get_merge_bases(a
, b
, 1);
257 struct commit_list
*n
= exclude
->next
;
259 exclude
->item
->object
.sha1
,NULL
);
270 static int try_parent_shorthands(const char *arg
)
273 unsigned char sha1
[20];
274 struct commit
*commit
;
275 struct commit_list
*parents
;
278 if ((dotdot
= strstr(arg
, "^!")))
280 else if ((dotdot
= strstr(arg
, "^@")))
283 if (!dotdot
|| dotdot
[2])
287 if (get_sha1_committish(arg
, sha1
))
291 show_rev(NORMAL
, sha1
, arg
);
292 commit
= lookup_commit_reference(sha1
);
293 for (parents
= commit
->parents
; parents
; parents
= parents
->next
)
294 show_rev(parents_only
? NORMAL
: REVERSED
,
295 parents
->item
->object
.sha1
, arg
);
300 static int parseopt_dump(const struct option
*o
, const char *arg
, int unset
)
302 struct strbuf
*parsed
= o
->value
;
304 strbuf_addf(parsed
, " --no-%s", o
->long_name
);
305 else if (o
->short_name
)
306 strbuf_addf(parsed
, " -%c", o
->short_name
);
308 strbuf_addf(parsed
, " --%s", o
->long_name
);
310 strbuf_addch(parsed
, ' ');
311 sq_quote_buf(parsed
, arg
);
316 static const char *skipspaces(const char *s
)
323 static int cmd_parseopt(int argc
, const char **argv
, const char *prefix
)
325 static int keep_dashdash
= 0, stop_at_non_option
= 0;
326 static char const * const parseopt_usage
[] = {
327 "git rev-parse --parseopt [options] -- [<args>...]",
330 static struct option parseopt_opts
[] = {
331 OPT_BOOLEAN(0, "keep-dashdash", &keep_dashdash
,
332 "keep the `--` passed as an arg"),
333 OPT_BOOLEAN(0, "stop-at-non-option", &stop_at_non_option
,
334 "stop parsing after the "
335 "first non-option argument"),
339 struct strbuf sb
= STRBUF_INIT
, parsed
= STRBUF_INIT
;
340 const char **usage
= NULL
;
341 struct option
*opts
= NULL
;
342 int onb
= 0, osz
= 0, unb
= 0, usz
= 0;
344 strbuf_addstr(&parsed
, "set --");
345 argc
= parse_options(argc
, argv
, prefix
, parseopt_opts
, parseopt_usage
,
346 PARSE_OPT_KEEP_DASHDASH
);
347 if (argc
< 1 || strcmp(argv
[0], "--"))
348 usage_with_options(parseopt_usage
, parseopt_opts
);
350 /* get the usage up to the first line with a -- on it */
352 if (strbuf_getline(&sb
, stdin
, '\n') == EOF
)
353 die("premature end of input");
354 ALLOC_GROW(usage
, unb
+ 1, usz
);
355 if (!strcmp("--", sb
.buf
)) {
357 die("no usage string given before the `--' separator");
361 usage
[unb
++] = strbuf_detach(&sb
, NULL
);
364 /* parse: (<short>|<short>,<long>|<long>)[=?]? SP+ <help> */
365 while (strbuf_getline(&sb
, stdin
, '\n') != EOF
) {
372 ALLOC_GROW(opts
, onb
+ 1, osz
);
373 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
376 s
= strchr(sb
.buf
, ' ');
377 if (!s
|| *sb
.buf
== ' ') {
378 o
->type
= OPTION_GROUP
;
379 o
->help
= xstrdup(skipspaces(sb
.buf
));
383 o
->type
= OPTION_CALLBACK
;
384 o
->help
= xstrdup(skipspaces(s
));
386 o
->flags
= PARSE_OPT_NOARG
;
387 o
->callback
= &parseopt_dump
;
388 while (s
> sb
.buf
&& strchr("*=?!", s
[-1])) {
391 o
->flags
&= ~PARSE_OPT_NOARG
;
394 o
->flags
&= ~PARSE_OPT_NOARG
;
395 o
->flags
|= PARSE_OPT_OPTARG
;
398 o
->flags
|= PARSE_OPT_NONEG
;
401 o
->flags
|= PARSE_OPT_HIDDEN
;
406 if (s
- sb
.buf
== 1) /* short option only */
407 o
->short_name
= *sb
.buf
;
408 else if (sb
.buf
[1] != ',') /* long option only */
409 o
->long_name
= xmemdupz(sb
.buf
, s
- sb
.buf
);
411 o
->short_name
= *sb
.buf
;
412 o
->long_name
= xmemdupz(sb
.buf
+ 2, s
- sb
.buf
- 2);
417 /* put an OPT_END() */
418 ALLOC_GROW(opts
, onb
+ 1, osz
);
419 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
420 argc
= parse_options(argc
, argv
, prefix
, opts
, usage
,
421 (keep_dashdash
? PARSE_OPT_KEEP_DASHDASH
: 0) |
422 (stop_at_non_option
? PARSE_OPT_STOP_AT_NON_OPTION
: 0) |
423 PARSE_OPT_SHELL_EVAL
);
425 strbuf_addf(&parsed
, " --");
426 sq_quote_argv(&parsed
, argv
, 0);
431 static int cmd_sq_quote(int argc
, const char **argv
)
433 struct strbuf buf
= STRBUF_INIT
;
436 sq_quote_argv(&buf
, argv
, 0);
437 printf("%s\n", buf
.buf
);
438 strbuf_release(&buf
);
443 static void die_no_single_rev(int quiet
)
448 die("Needed a single revision");
451 static const char builtin_rev_parse_usage
[] =
452 "git rev-parse --parseopt [options] -- [<args>...]\n"
453 " or: git rev-parse --sq-quote [<arg>...]\n"
454 " or: git rev-parse [options] [<arg>...]\n"
456 "Run \"git rev-parse --parseopt -h\" for more information on the first usage.";
458 int cmd_rev_parse(int argc
, const char **argv
, const char *prefix
)
460 int i
, as_is
= 0, verify
= 0, quiet
= 0, revs_count
= 0, type
= 0;
461 unsigned char sha1
[20];
462 const char *name
= NULL
;
464 if (argc
> 1 && !strcmp("--parseopt", argv
[1]))
465 return cmd_parseopt(argc
- 1, argv
+ 1, prefix
);
467 if (argc
> 1 && !strcmp("--sq-quote", argv
[1]))
468 return cmd_sq_quote(argc
- 2, argv
+ 2);
470 if (argc
== 2 && !strcmp("--local-env-vars", argv
[1])) {
472 for (i
= 0; local_repo_env
[i
]; i
++)
473 printf("%s\n", local_repo_env
[i
]);
477 if (argc
> 2 && !strcmp(argv
[1], "--resolve-git-dir")) {
478 const char *gitdir
= resolve_gitdir(argv
[2]);
480 die("not a gitdir '%s'", argv
[2]);
485 if (argc
> 1 && !strcmp("-h", argv
[1]))
486 usage(builtin_rev_parse_usage
);
488 prefix
= setup_git_directory();
489 git_config(git_default_config
, NULL
);
490 for (i
= 1; i
< argc
; i
++) {
491 const char *arg
= argv
[i
];
494 if (show_file(arg
) && as_is
< 2)
495 verify_filename(prefix
, arg
, 0);
498 if (!strcmp(arg
,"-n")) {
500 die("-n requires an argument");
501 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
)) {
507 if (!prefixcmp(arg
, "-n")) {
508 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
))
514 if (!strcmp(arg
, "--")) {
516 /* Pass on the "--" if we show anything but files.. */
517 if (filter
& (DO_FLAGS
| DO_REVS
))
521 if (!strcmp(arg
, "--default")) {
526 if (!strcmp(arg
, "--revs-only")) {
530 if (!strcmp(arg
, "--no-revs")) {
534 if (!strcmp(arg
, "--flags")) {
535 filter
&= ~DO_NONFLAGS
;
538 if (!strcmp(arg
, "--no-flags")) {
542 if (!strcmp(arg
, "--verify")) {
543 filter
&= ~(DO_FLAGS
|DO_NOREV
);
547 if (!strcmp(arg
, "--quiet") || !strcmp(arg
, "-q")) {
551 if (!strcmp(arg
, "--short") ||
552 !prefixcmp(arg
, "--short=")) {
553 filter
&= ~(DO_FLAGS
|DO_NOREV
);
555 abbrev
= DEFAULT_ABBREV
;
557 abbrev
= strtoul(arg
+ 8, NULL
, 10);
558 if (abbrev
< MINIMUM_ABBREV
)
559 abbrev
= MINIMUM_ABBREV
;
560 else if (40 <= abbrev
)
564 if (!strcmp(arg
, "--sq")) {
568 if (!strcmp(arg
, "--not")) {
569 show_type
^= REVERSED
;
572 if (!strcmp(arg
, "--symbolic")) {
573 symbolic
= SHOW_SYMBOLIC_ASIS
;
576 if (!strcmp(arg
, "--symbolic-full-name")) {
577 symbolic
= SHOW_SYMBOLIC_FULL
;
580 if (!prefixcmp(arg
, "--abbrev-ref") &&
581 (!arg
[12] || arg
[12] == '=')) {
583 abbrev_ref_strict
= warn_ambiguous_refs
;
584 if (arg
[12] == '=') {
585 if (!strcmp(arg
+ 13, "strict"))
586 abbrev_ref_strict
= 1;
587 else if (!strcmp(arg
+ 13, "loose"))
588 abbrev_ref_strict
= 0;
590 die("unknown mode for %s", arg
);
594 if (!strcmp(arg
, "--all")) {
595 for_each_ref(show_reference
, NULL
);
598 if (!prefixcmp(arg
, "--disambiguate=")) {
599 for_each_abbrev(arg
+ 15, show_abbrev
, NULL
);
602 if (!strcmp(arg
, "--bisect")) {
603 for_each_ref_in("refs/bisect/bad", show_reference
, NULL
);
604 for_each_ref_in("refs/bisect/good", anti_reference
, NULL
);
607 if (!prefixcmp(arg
, "--branches=")) {
608 for_each_glob_ref_in(show_reference
, arg
+ 11,
609 "refs/heads/", NULL
);
612 if (!strcmp(arg
, "--branches")) {
613 for_each_branch_ref(show_reference
, NULL
);
616 if (!prefixcmp(arg
, "--tags=")) {
617 for_each_glob_ref_in(show_reference
, arg
+ 7,
621 if (!strcmp(arg
, "--tags")) {
622 for_each_tag_ref(show_reference
, NULL
);
625 if (!prefixcmp(arg
, "--glob=")) {
626 for_each_glob_ref(show_reference
, arg
+ 7, NULL
);
629 if (!prefixcmp(arg
, "--remotes=")) {
630 for_each_glob_ref_in(show_reference
, arg
+ 10,
631 "refs/remotes/", NULL
);
634 if (!strcmp(arg
, "--remotes")) {
635 for_each_remote_ref(show_reference
, NULL
);
638 if (!strcmp(arg
, "--show-toplevel")) {
639 const char *work_tree
= get_git_work_tree();
644 if (!strcmp(arg
, "--show-prefix")) {
651 if (!strcmp(arg
, "--show-cdup")) {
652 const char *pfx
= prefix
;
653 if (!is_inside_work_tree()) {
654 const char *work_tree
=
657 printf("%s\n", work_tree
);
661 pfx
= strchr(pfx
, '/');
670 if (!strcmp(arg
, "--git-dir")) {
671 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
672 static char cwd
[PATH_MAX
];
682 if (!getcwd(cwd
, PATH_MAX
))
683 die_errno("unable to get current working directory");
685 printf("%s%s.git\n", cwd
, len
&& cwd
[len
-1] != '/' ? "/" : "");
688 if (!strcmp(arg
, "--is-inside-git-dir")) {
689 printf("%s\n", is_inside_git_dir() ? "true"
693 if (!strcmp(arg
, "--is-inside-work-tree")) {
694 printf("%s\n", is_inside_work_tree() ? "true"
698 if (!strcmp(arg
, "--is-bare-repository")) {
699 printf("%s\n", is_bare_repository() ? "true"
703 if (!prefixcmp(arg
, "--since=")) {
704 show_datestring("--max-age=", arg
+8);
707 if (!prefixcmp(arg
, "--after=")) {
708 show_datestring("--max-age=", arg
+8);
711 if (!prefixcmp(arg
, "--before=")) {
712 show_datestring("--min-age=", arg
+9);
715 if (!prefixcmp(arg
, "--until=")) {
716 show_datestring("--min-age=", arg
+8);
719 if (show_flag(arg
) && verify
)
720 die_no_single_rev(quiet
);
724 /* Not a flag argument */
725 if (try_difference(arg
))
727 if (try_parent_shorthands(arg
))
735 if (!get_sha1(name
, sha1
)) {
739 show_rev(type
, sha1
, name
);
743 die_no_single_rev(quiet
);
747 verify_filename(prefix
, arg
, 1);
750 if (revs_count
== 1) {
751 show_rev(type
, sha1
, name
);
753 } else if (revs_count
== 0 && show_default())
755 die_no_single_rev(quiet
);