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
[] = {
66 const char **p
= rev_args
;
68 /* accept -<digit>, like traditional "head" */
69 if ((*arg
== '-') && isdigit(arg
[1]))
73 const char *str
= *p
++;
78 if (!strcmp(arg
, str
) ||
79 (str
[len
-1] == '=' && !strncmp(arg
, str
, len
)))
84 /* Output argument as a string, either SQ or normal */
85 static void show(const char *arg
)
91 while ((ch
= *arg
++)) {
93 fputs("'\\'", stdout
);
103 /* Like show(), but with a negation prefix according to type */
104 static void show_with_type(int type
, const char *arg
)
106 if (type
!= show_type
)
111 /* Output a revision, only if filter allows it */
112 static void show_rev(int type
, const unsigned char *sha1
, const char *name
)
114 if (!(filter
& DO_REVS
))
118 if ((symbolic
|| abbrev_ref
) && name
) {
119 if (symbolic
== SHOW_SYMBOLIC_FULL
|| abbrev_ref
) {
120 unsigned char discard
[20];
123 switch (dwim_ref(name
, strlen(name
), discard
, &full
)) {
126 * Not found -- not a ref. We could
127 * emit "name" here, but symbolic-full
128 * users are interested in finding the
129 * refs spelled in full, and they would
130 * need to filter non-refs if we did so.
135 full
= shorten_unambiguous_ref(full
,
137 show_with_type(type
, full
);
139 default: /* ambiguous */
140 error("refname '%s' is ambiguous", name
);
144 show_with_type(type
, name
);
148 show_with_type(type
, find_unique_abbrev(sha1
, abbrev
));
150 show_with_type(type
, sha1_to_hex(sha1
));
153 /* Output a flag, only if filter allows it. */
154 static int show_flag(const char *arg
)
156 if (!(filter
& DO_FLAGS
))
158 if (filter
& (is_rev_argument(arg
) ? DO_REVS
: DO_NOREV
)) {
165 static int show_default(void)
170 unsigned char sha1
[20];
173 if (!get_sha1(s
, sha1
)) {
174 show_rev(NORMAL
, sha1
, s
);
181 static int show_reference(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
183 show_rev(NORMAL
, sha1
, refname
);
187 static int anti_reference(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
189 show_rev(REVERSED
, sha1
, refname
);
193 static void show_datestring(const char *flag
, const char *datestr
)
195 static char buffer
[100];
197 /* date handling requires both flags and revs */
198 if ((filter
& (DO_FLAGS
| DO_REVS
)) != (DO_FLAGS
| DO_REVS
))
200 snprintf(buffer
, sizeof(buffer
), "%s%lu", flag
, approxidate(datestr
));
204 static int show_file(const char *arg
)
207 if ((filter
& (DO_NONFLAGS
|DO_NOREV
)) == (DO_NONFLAGS
|DO_NOREV
)) {
214 static int try_difference(const char *arg
)
217 unsigned char sha1
[20];
218 unsigned char end
[20];
223 if (!(dotdot
= strstr(arg
, "..")))
227 symmetric
= (*next
== '.');
236 if (!get_sha1(this, sha1
) && !get_sha1(next
, end
)) {
237 show_rev(NORMAL
, end
, next
);
238 show_rev(symmetric
? NORMAL
: REVERSED
, sha1
, this);
240 struct commit_list
*exclude
;
241 struct commit
*a
, *b
;
242 a
= lookup_commit_reference(sha1
);
243 b
= lookup_commit_reference(end
);
244 exclude
= get_merge_bases(a
, b
, 1);
246 struct commit_list
*n
= exclude
->next
;
248 exclude
->item
->object
.sha1
,NULL
);
259 static int try_parent_shorthands(const char *arg
)
262 unsigned char sha1
[20];
263 struct commit
*commit
;
264 struct commit_list
*parents
;
267 if ((dotdot
= strstr(arg
, "^!")))
269 else if ((dotdot
= strstr(arg
, "^@")))
272 if (!dotdot
|| dotdot
[2])
276 if (get_sha1(arg
, sha1
))
280 show_rev(NORMAL
, sha1
, arg
);
281 commit
= lookup_commit_reference(sha1
);
282 for (parents
= commit
->parents
; parents
; parents
= parents
->next
)
283 show_rev(parents_only
? NORMAL
: REVERSED
,
284 parents
->item
->object
.sha1
, arg
);
289 static int parseopt_dump(const struct option
*o
, const char *arg
, int unset
)
291 struct strbuf
*parsed
= o
->value
;
293 strbuf_addf(parsed
, " --no-%s", o
->long_name
);
294 else if (o
->short_name
)
295 strbuf_addf(parsed
, " -%c", o
->short_name
);
297 strbuf_addf(parsed
, " --%s", o
->long_name
);
299 strbuf_addch(parsed
, ' ');
300 sq_quote_buf(parsed
, arg
);
305 static const char *skipspaces(const char *s
)
312 static int cmd_parseopt(int argc
, const char **argv
, const char *prefix
)
314 static int keep_dashdash
= 0, stop_at_non_option
= 0;
315 static char const * const parseopt_usage
[] = {
316 "git rev-parse --parseopt [options] -- [<args>...]",
319 static struct option parseopt_opts
[] = {
320 OPT_BOOLEAN(0, "keep-dashdash", &keep_dashdash
,
321 "keep the `--` passed as an arg"),
322 OPT_BOOLEAN(0, "stop-at-non-option", &stop_at_non_option
,
323 "stop parsing after the "
324 "first non-option argument"),
328 struct strbuf sb
= STRBUF_INIT
, parsed
= STRBUF_INIT
;
329 const char **usage
= NULL
;
330 struct option
*opts
= NULL
;
331 int onb
= 0, osz
= 0, unb
= 0, usz
= 0;
333 strbuf_addstr(&parsed
, "set --");
334 argc
= parse_options(argc
, argv
, prefix
, parseopt_opts
, parseopt_usage
,
335 PARSE_OPT_KEEP_DASHDASH
);
336 if (argc
< 1 || strcmp(argv
[0], "--"))
337 usage_with_options(parseopt_usage
, parseopt_opts
);
339 /* get the usage up to the first line with a -- on it */
341 if (strbuf_getline(&sb
, stdin
, '\n') == EOF
)
342 die("premature end of input");
343 ALLOC_GROW(usage
, unb
+ 1, usz
);
344 if (!strcmp("--", sb
.buf
)) {
346 die("no usage string given before the `--' separator");
350 usage
[unb
++] = strbuf_detach(&sb
, NULL
);
353 /* parse: (<short>|<short>,<long>|<long>)[=?]? SP+ <help> */
354 while (strbuf_getline(&sb
, stdin
, '\n') != EOF
) {
361 ALLOC_GROW(opts
, onb
+ 1, osz
);
362 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
365 s
= strchr(sb
.buf
, ' ');
366 if (!s
|| *sb
.buf
== ' ') {
367 o
->type
= OPTION_GROUP
;
368 o
->help
= xstrdup(skipspaces(sb
.buf
));
372 o
->type
= OPTION_CALLBACK
;
373 o
->help
= xstrdup(skipspaces(s
));
375 o
->flags
= PARSE_OPT_NOARG
;
376 o
->callback
= &parseopt_dump
;
377 while (s
> sb
.buf
&& strchr("*=?!", s
[-1])) {
380 o
->flags
&= ~PARSE_OPT_NOARG
;
383 o
->flags
&= ~PARSE_OPT_NOARG
;
384 o
->flags
|= PARSE_OPT_OPTARG
;
387 o
->flags
|= PARSE_OPT_NONEG
;
390 o
->flags
|= PARSE_OPT_HIDDEN
;
395 if (s
- sb
.buf
== 1) /* short option only */
396 o
->short_name
= *sb
.buf
;
397 else if (sb
.buf
[1] != ',') /* long option only */
398 o
->long_name
= xmemdupz(sb
.buf
, s
- sb
.buf
);
400 o
->short_name
= *sb
.buf
;
401 o
->long_name
= xmemdupz(sb
.buf
+ 2, s
- sb
.buf
- 2);
406 /* put an OPT_END() */
407 ALLOC_GROW(opts
, onb
+ 1, osz
);
408 memset(opts
+ onb
, 0, sizeof(opts
[onb
]));
409 argc
= parse_options(argc
, argv
, prefix
, opts
, usage
,
410 keep_dashdash
? PARSE_OPT_KEEP_DASHDASH
: 0 |
411 stop_at_non_option
? PARSE_OPT_STOP_AT_NON_OPTION
: 0);
413 strbuf_addf(&parsed
, " --");
414 sq_quote_argv(&parsed
, argv
, 0);
419 static int cmd_sq_quote(int argc
, const char **argv
)
421 struct strbuf buf
= STRBUF_INIT
;
424 sq_quote_argv(&buf
, argv
, 0);
425 printf("%s\n", buf
.buf
);
426 strbuf_release(&buf
);
431 static void die_no_single_rev(int quiet
)
436 die("Needed a single revision");
439 static const char builtin_rev_parse_usage
[] =
440 "git rev-parse --parseopt [options] -- [<args>...]\n"
441 " or: git rev-parse --sq-quote [<arg>...]\n"
442 " or: git rev-parse [options] [<arg>...]\n"
444 "Run \"git rev-parse --parseopt -h\" for more information on the first usage.";
446 int cmd_rev_parse(int argc
, const char **argv
, const char *prefix
)
448 int i
, as_is
= 0, verify
= 0, quiet
= 0, revs_count
= 0, type
= 0;
449 unsigned char sha1
[20];
450 const char *name
= NULL
;
452 if (argc
> 1 && !strcmp("--parseopt", argv
[1]))
453 return cmd_parseopt(argc
- 1, argv
+ 1, prefix
);
455 if (argc
> 1 && !strcmp("--sq-quote", argv
[1]))
456 return cmd_sq_quote(argc
- 2, argv
+ 2);
458 if (argc
== 2 && !strcmp("--local-env-vars", argv
[1])) {
460 for (i
= 0; local_repo_env
[i
]; i
++)
461 printf("%s\n", local_repo_env
[i
]);
465 if (argc
> 1 && !strcmp("-h", argv
[1]))
466 usage(builtin_rev_parse_usage
);
468 prefix
= setup_git_directory();
469 git_config(git_default_config
, NULL
);
470 for (i
= 1; i
< argc
; i
++) {
471 const char *arg
= argv
[i
];
474 if (show_file(arg
) && as_is
< 2)
475 verify_filename(prefix
, arg
);
478 if (!strcmp(arg
,"-n")) {
480 die("-n requires an argument");
481 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
)) {
487 if (!prefixcmp(arg
, "-n")) {
488 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
))
494 if (!strcmp(arg
, "--")) {
496 /* Pass on the "--" if we show anything but files.. */
497 if (filter
& (DO_FLAGS
| DO_REVS
))
501 if (!strcmp(arg
, "--default")) {
506 if (!strcmp(arg
, "--revs-only")) {
510 if (!strcmp(arg
, "--no-revs")) {
514 if (!strcmp(arg
, "--flags")) {
515 filter
&= ~DO_NONFLAGS
;
518 if (!strcmp(arg
, "--no-flags")) {
522 if (!strcmp(arg
, "--verify")) {
523 filter
&= ~(DO_FLAGS
|DO_NOREV
);
527 if (!strcmp(arg
, "--quiet") || !strcmp(arg
, "-q")) {
531 if (!strcmp(arg
, "--short") ||
532 !prefixcmp(arg
, "--short=")) {
533 filter
&= ~(DO_FLAGS
|DO_NOREV
);
535 abbrev
= DEFAULT_ABBREV
;
537 abbrev
= strtoul(arg
+ 8, NULL
, 10);
538 if (abbrev
< MINIMUM_ABBREV
)
539 abbrev
= MINIMUM_ABBREV
;
540 else if (40 <= abbrev
)
544 if (!strcmp(arg
, "--sq")) {
548 if (!strcmp(arg
, "--not")) {
549 show_type
^= REVERSED
;
552 if (!strcmp(arg
, "--symbolic")) {
553 symbolic
= SHOW_SYMBOLIC_ASIS
;
556 if (!strcmp(arg
, "--symbolic-full-name")) {
557 symbolic
= SHOW_SYMBOLIC_FULL
;
560 if (!prefixcmp(arg
, "--abbrev-ref") &&
561 (!arg
[12] || arg
[12] == '=')) {
563 abbrev_ref_strict
= warn_ambiguous_refs
;
564 if (arg
[12] == '=') {
565 if (!strcmp(arg
+ 13, "strict"))
566 abbrev_ref_strict
= 1;
567 else if (!strcmp(arg
+ 13, "loose"))
568 abbrev_ref_strict
= 0;
570 die("unknown mode for %s", arg
);
574 if (!strcmp(arg
, "--all")) {
575 for_each_ref(show_reference
, NULL
);
578 if (!strcmp(arg
, "--bisect")) {
579 for_each_ref_in("refs/bisect/bad", show_reference
, NULL
);
580 for_each_ref_in("refs/bisect/good", anti_reference
, NULL
);
583 if (!prefixcmp(arg
, "--branches=")) {
584 for_each_glob_ref_in(show_reference
, arg
+ 11,
585 "refs/heads/", NULL
);
588 if (!strcmp(arg
, "--branches")) {
589 for_each_branch_ref(show_reference
, NULL
);
592 if (!prefixcmp(arg
, "--tags=")) {
593 for_each_glob_ref_in(show_reference
, arg
+ 7,
597 if (!strcmp(arg
, "--tags")) {
598 for_each_tag_ref(show_reference
, NULL
);
601 if (!prefixcmp(arg
, "--glob=")) {
602 for_each_glob_ref(show_reference
, arg
+ 7, NULL
);
605 if (!prefixcmp(arg
, "--remotes=")) {
606 for_each_glob_ref_in(show_reference
, arg
+ 10,
607 "refs/remotes/", NULL
);
610 if (!strcmp(arg
, "--remotes")) {
611 for_each_remote_ref(show_reference
, NULL
);
614 if (!strcmp(arg
, "--show-toplevel")) {
615 const char *work_tree
= get_git_work_tree();
620 if (!strcmp(arg
, "--show-prefix")) {
625 if (!strcmp(arg
, "--show-cdup")) {
626 const char *pfx
= prefix
;
627 if (!is_inside_work_tree()) {
628 const char *work_tree
=
631 printf("%s\n", work_tree
);
635 pfx
= strchr(pfx
, '/');
644 if (!strcmp(arg
, "--git-dir")) {
645 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
646 static char cwd
[PATH_MAX
];
656 if (!getcwd(cwd
, PATH_MAX
))
657 die_errno("unable to get current working directory");
659 printf("%s%s.git\n", cwd
, len
&& cwd
[len
-1] != '/' ? "/" : "");
662 if (!strcmp(arg
, "--is-inside-git-dir")) {
663 printf("%s\n", is_inside_git_dir() ? "true"
667 if (!strcmp(arg
, "--is-inside-work-tree")) {
668 printf("%s\n", is_inside_work_tree() ? "true"
672 if (!strcmp(arg
, "--is-bare-repository")) {
673 printf("%s\n", is_bare_repository() ? "true"
677 if (!prefixcmp(arg
, "--since=")) {
678 show_datestring("--max-age=", arg
+8);
681 if (!prefixcmp(arg
, "--after=")) {
682 show_datestring("--max-age=", arg
+8);
685 if (!prefixcmp(arg
, "--before=")) {
686 show_datestring("--min-age=", arg
+9);
689 if (!prefixcmp(arg
, "--until=")) {
690 show_datestring("--min-age=", arg
+8);
693 if (show_flag(arg
) && verify
)
694 die_no_single_rev(quiet
);
698 /* Not a flag argument */
699 if (try_difference(arg
))
701 if (try_parent_shorthands(arg
))
709 if (!get_sha1(name
, sha1
)) {
713 show_rev(type
, sha1
, name
);
717 die_no_single_rev(quiet
);
721 verify_filename(prefix
, arg
);
724 if (revs_count
== 1) {
725 show_rev(type
, sha1
, name
);
727 } else if (revs_count
== 0 && show_default())
729 die_no_single_rev(quiet
);