4 * Builtin help-related commands (help, usage, version)
9 #include "common-cmds.h"
10 #include "parse-options.h"
11 #include "run-command.h"
13 static struct man_viewer_list
{
14 struct man_viewer_list
*next
;
15 char name
[FLEX_ARRAY
];
18 static struct man_viewer_info_list
{
19 struct man_viewer_info_list
*next
;
21 char name
[FLEX_ARRAY
];
22 } *man_viewer_info_list
;
30 static int show_all
= 0;
31 static enum help_format help_format
= HELP_FORMAT_MAN
;
32 static struct option builtin_help_options
[] = {
33 OPT_BOOLEAN('a', "all", &show_all
, "print all available commands"),
34 OPT_SET_INT('m', "man", &help_format
, "show man page", HELP_FORMAT_MAN
),
35 OPT_SET_INT('w', "web", &help_format
, "show manual in web browser",
37 OPT_SET_INT('i', "info", &help_format
, "show info page",
42 static const char * const builtin_help_usage
[] = {
43 "git help [--all] [--man|--web|--info] [command]",
47 static enum help_format
parse_help_format(const char *format
)
49 if (!strcmp(format
, "man"))
50 return HELP_FORMAT_MAN
;
51 if (!strcmp(format
, "info"))
52 return HELP_FORMAT_INFO
;
53 if (!strcmp(format
, "web") || !strcmp(format
, "html"))
54 return HELP_FORMAT_WEB
;
55 die("unrecognized help format '%s'", format
);
58 static const char *get_man_viewer_info(const char *name
)
60 struct man_viewer_info_list
*viewer
;
62 for (viewer
= man_viewer_info_list
; viewer
; viewer
= viewer
->next
)
64 if (!strcasecmp(name
, viewer
->name
))
70 static int check_emacsclient_version(void)
72 struct strbuf buffer
= STRBUF_INIT
;
73 struct child_process ec_process
;
74 const char *argv_ec
[] = { "emacsclient", "--version", NULL
};
77 /* emacsclient prints its version number on stderr */
78 memset(&ec_process
, 0, sizeof(ec_process
));
79 ec_process
.argv
= argv_ec
;
81 ec_process
.stdout_to_stderr
= 1;
82 if (start_command(&ec_process
)) {
83 fprintf(stderr
, "Failed to start emacsclient.\n");
86 strbuf_read(&buffer
, ec_process
.err
, 20);
87 close(ec_process
.err
);
90 * Don't bother checking return value, because "emacsclient --version"
91 * seems to always exits with code 1.
93 finish_command(&ec_process
);
95 if (prefixcmp(buffer
.buf
, "emacsclient")) {
96 fprintf(stderr
, "Failed to parse emacsclient version.\n");
97 strbuf_release(&buffer
);
101 strbuf_remove(&buffer
, 0, strlen("emacsclient"));
102 version
= atoi(buffer
.buf
);
106 "emacsclient version '%d' too old (< 22).\n",
108 strbuf_release(&buffer
);
112 strbuf_release(&buffer
);
116 static void exec_woman_emacs(const char* path
, const char *page
)
118 if (!check_emacsclient_version()) {
119 /* This works only with emacsclient version >= 22. */
120 struct strbuf man_page
= STRBUF_INIT
;
123 path
= "emacsclient";
124 strbuf_addf(&man_page
, "(woman \"%s\")", page
);
125 execlp(path
, "emacsclient", "-e", man_page
.buf
, NULL
);
126 warning("failed to exec '%s': %s", path
, strerror(errno
));
130 static void exec_man_konqueror(const char* path
, const char *page
)
132 const char *display
= getenv("DISPLAY");
133 if (display
&& *display
) {
134 struct strbuf man_page
= STRBUF_INIT
;
135 const char *filename
= "kfmclient";
137 /* It's simpler to launch konqueror using kfmclient. */
139 const char *file
= strrchr(path
, '/');
140 if (file
&& !strcmp(file
+ 1, "konqueror")) {
141 char *new = xstrdup(path
);
142 char *dest
= strrchr(new, '/');
144 /* strlen("konqueror") == strlen("kfmclient") */
145 strcpy(dest
+ 1, "kfmclient");
152 strbuf_addf(&man_page
, "man:%s(1)", page
);
153 execlp(path
, filename
, "newTab", man_page
.buf
, NULL
);
154 warning("failed to exec '%s': %s", path
, strerror(errno
));
158 static void exec_man_man(const char* path
, const char *page
)
162 execlp(path
, "man", page
, NULL
);
163 warning("failed to exec '%s': %s", path
, strerror(errno
));
166 static void exec_man_cmd(const char *cmd
, const char *page
)
168 struct strbuf shell_cmd
= STRBUF_INIT
;
169 strbuf_addf(&shell_cmd
, "%s %s", cmd
, page
);
170 execl("/bin/sh", "sh", "-c", shell_cmd
.buf
, NULL
);
171 warning("failed to exec '%s': %s", cmd
, strerror(errno
));
174 static void add_man_viewer(const char *name
)
176 struct man_viewer_list
**p
= &man_viewer_list
;
177 size_t len
= strlen(name
);
181 *p
= xcalloc(1, (sizeof(**p
) + len
+ 1));
182 strncpy((*p
)->name
, name
, len
);
185 static int supported_man_viewer(const char *name
, size_t len
)
187 return (!strncasecmp("man", name
, len
) ||
188 !strncasecmp("woman", name
, len
) ||
189 !strncasecmp("konqueror", name
, len
));
192 static void do_add_man_viewer_info(const char *name
,
196 struct man_viewer_info_list
*new = xcalloc(1, sizeof(*new) + len
+ 1);
198 strncpy(new->name
, name
, len
);
199 new->info
= xstrdup(value
);
200 new->next
= man_viewer_info_list
;
201 man_viewer_info_list
= new;
204 static int add_man_viewer_path(const char *name
,
208 if (supported_man_viewer(name
, len
))
209 do_add_man_viewer_info(name
, len
, value
);
211 warning("'%s': path for unsupported man viewer.\n"
212 "Please consider using 'man.<tool>.cmd' instead.",
218 static int add_man_viewer_cmd(const char *name
,
222 if (supported_man_viewer(name
, len
))
223 warning("'%s': cmd for supported man viewer.\n"
224 "Please consider using 'man.<tool>.path' instead.",
227 do_add_man_viewer_info(name
, len
, value
);
232 static int add_man_viewer_info(const char *var
, const char *value
)
234 const char *name
= var
+ 4;
235 const char *subkey
= strrchr(name
, '.');
238 return error("Config with no key for man viewer: %s", name
);
240 if (!strcmp(subkey
, ".path")) {
242 return config_error_nonbool(var
);
243 return add_man_viewer_path(name
, subkey
- name
, value
);
245 if (!strcmp(subkey
, ".cmd")) {
247 return config_error_nonbool(var
);
248 return add_man_viewer_cmd(name
, subkey
- name
, value
);
251 warning("'%s': unsupported man viewer sub key.", subkey
);
255 static int git_help_config(const char *var
, const char *value
, void *cb
)
257 if (!strcmp(var
, "help.format")) {
259 return config_error_nonbool(var
);
260 help_format
= parse_help_format(value
);
263 if (!strcmp(var
, "man.viewer")) {
265 return config_error_nonbool(var
);
266 add_man_viewer(value
);
269 if (!prefixcmp(var
, "man."))
270 return add_man_viewer_info(var
, value
);
272 return git_default_config(var
, value
, cb
);
275 /* most GUI terminals set COLUMNS (although some don't export it) */
276 static int term_columns(void)
278 char *col_string
= getenv("COLUMNS");
281 if (col_string
&& (n_cols
= atoi(col_string
)) > 0)
287 if (!ioctl(1, TIOCGWINSZ
, &ws
)) {
297 static inline void mput_char(char c
, unsigned int num
)
303 static struct cmdnames
{
310 } main_cmds
, other_cmds
;
312 static void add_cmdname(struct cmdnames
*cmds
, const char *name
, int len
)
314 struct cmdname
*ent
= xmalloc(sizeof(*ent
) + len
);
317 memcpy(ent
->name
, name
, len
);
320 ALLOC_GROW(cmds
->names
, cmds
->cnt
+ 1, cmds
->alloc
);
321 cmds
->names
[cmds
->cnt
++] = ent
;
324 static int cmdname_compare(const void *a_
, const void *b_
)
326 struct cmdname
*a
= *(struct cmdname
**)a_
;
327 struct cmdname
*b
= *(struct cmdname
**)b_
;
328 return strcmp(a
->name
, b
->name
);
331 static void uniq(struct cmdnames
*cmds
)
338 for (i
= j
= 1; i
< cmds
->cnt
; i
++)
339 if (strcmp(cmds
->names
[i
]->name
, cmds
->names
[i
-1]->name
))
340 cmds
->names
[j
++] = cmds
->names
[i
];
345 static void exclude_cmds(struct cmdnames
*cmds
, struct cmdnames
*excludes
)
351 while (ci
< cmds
->cnt
&& ei
< excludes
->cnt
) {
352 cmp
= strcmp(cmds
->names
[ci
]->name
, excludes
->names
[ei
]->name
);
354 cmds
->names
[cj
++] = cmds
->names
[ci
++];
361 while (ci
< cmds
->cnt
)
362 cmds
->names
[cj
++] = cmds
->names
[ci
++];
367 static void pretty_print_string_list(struct cmdnames
*cmds
, int longest
)
370 int space
= longest
+ 1; /* min 1 SP between words */
371 int max_cols
= term_columns() - 1; /* don't print *on* the edge */
374 if (space
< max_cols
)
375 cols
= max_cols
/ space
;
376 rows
= (cmds
->cnt
+ cols
- 1) / cols
;
378 for (i
= 0; i
< rows
; i
++) {
381 for (j
= 0; j
< cols
; j
++) {
382 int n
= j
* rows
+ i
;
386 if (j
== cols
-1 || n
+ rows
>= cmds
->cnt
)
388 printf("%-*s", size
, cmds
->names
[n
]->name
);
394 static int is_executable(const char *name
)
398 if (stat(name
, &st
) || /* stat, not lstat */
399 !S_ISREG(st
.st_mode
))
403 /* cannot trust the executable bit, peek into the file instead */
406 int fd
= open(name
, O_RDONLY
);
407 st
.st_mode
&= ~S_IXUSR
;
409 n
= read(fd
, buf
, 2);
411 /* DOS executables start with "MZ" */
412 if (!strcmp(buf
, "#!") || !strcmp(buf
, "MZ"))
413 st
.st_mode
|= S_IXUSR
;
417 return st
.st_mode
& S_IXUSR
;
420 static unsigned int list_commands_in_dir(struct cmdnames
*cmds
,
423 unsigned int longest
= 0;
424 const char *prefix
= "git-";
425 int prefix_len
= strlen(prefix
);
426 DIR *dir
= opendir(path
);
428 struct strbuf buf
= STRBUF_INIT
;
434 strbuf_addf(&buf
, "%s/", path
);
437 while ((de
= readdir(dir
)) != NULL
) {
440 if (prefixcmp(de
->d_name
, prefix
))
443 strbuf_setlen(&buf
, len
);
444 strbuf_addstr(&buf
, de
->d_name
);
445 if (!is_executable(buf
.buf
))
448 entlen
= strlen(de
->d_name
) - prefix_len
;
449 if (has_extension(de
->d_name
, ".exe"))
452 if (longest
< entlen
)
455 add_cmdname(cmds
, de
->d_name
+ prefix_len
, entlen
);
458 strbuf_release(&buf
);
463 static unsigned int load_command_list(void)
465 unsigned int longest
= 0;
467 const char *env_path
= getenv("PATH");
468 char *paths
, *path
, *colon
;
469 const char *exec_path
= git_exec_path();
472 longest
= list_commands_in_dir(&main_cmds
, exec_path
);
475 fprintf(stderr
, "PATH not set\n");
479 path
= paths
= xstrdup(env_path
);
481 if ((colon
= strchr(path
, PATH_SEP
)))
484 len
= list_commands_in_dir(&other_cmds
, path
);
494 qsort(main_cmds
.names
, main_cmds
.cnt
,
495 sizeof(*main_cmds
.names
), cmdname_compare
);
498 qsort(other_cmds
.names
, other_cmds
.cnt
,
499 sizeof(*other_cmds
.names
), cmdname_compare
);
501 exclude_cmds(&other_cmds
, &main_cmds
);
506 static void list_commands(void)
508 unsigned int longest
= load_command_list();
509 const char *exec_path
= git_exec_path();
512 printf("available git commands in '%s'\n", exec_path
);
513 printf("----------------------------");
514 mput_char('-', strlen(exec_path
));
516 pretty_print_string_list(&main_cmds
, longest
);
520 if (other_cmds
.cnt
) {
521 printf("git commands available from elsewhere on your $PATH\n");
522 printf("---------------------------------------------------\n");
523 pretty_print_string_list(&other_cmds
, longest
);
528 void list_common_cmds_help(void)
532 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
533 if (longest
< strlen(common_cmds
[i
].name
))
534 longest
= strlen(common_cmds
[i
].name
);
537 puts("The most commonly used git commands are:");
538 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
539 printf(" %s ", common_cmds
[i
].name
);
540 mput_char(' ', longest
- strlen(common_cmds
[i
].name
));
541 puts(common_cmds
[i
].help
);
545 static int is_in_cmdlist(struct cmdnames
*c
, const char *s
)
548 for (i
= 0; i
< c
->cnt
; i
++)
549 if (!strcmp(s
, c
->names
[i
]->name
))
554 static int is_git_command(const char *s
)
557 return is_in_cmdlist(&main_cmds
, s
) ||
558 is_in_cmdlist(&other_cmds
, s
);
561 static const char *prepend(const char *prefix
, const char *cmd
)
563 size_t pre_len
= strlen(prefix
);
564 size_t cmd_len
= strlen(cmd
);
565 char *p
= xmalloc(pre_len
+ cmd_len
+ 1);
566 memcpy(p
, prefix
, pre_len
);
567 strcpy(p
+ pre_len
, cmd
);
571 static const char *cmd_to_page(const char *git_cmd
)
575 else if (!prefixcmp(git_cmd
, "git"))
577 else if (is_git_command(git_cmd
))
578 return prepend("git-", git_cmd
);
580 return prepend("git", git_cmd
);
583 static void setup_man_path(void)
585 struct strbuf new_path
;
586 const char *old_path
= getenv("MANPATH");
588 strbuf_init(&new_path
, 0);
590 /* We should always put ':' after our path. If there is no
591 * old_path, the ':' at the end will let 'man' to try
592 * system-wide paths after ours to find the manual page. If
593 * there is old_path, we need ':' as delimiter. */
594 strbuf_addstr(&new_path
, GIT_MAN_PATH
);
595 strbuf_addch(&new_path
, ':');
597 strbuf_addstr(&new_path
, old_path
);
599 setenv("MANPATH", new_path
.buf
, 1);
601 strbuf_release(&new_path
);
604 static void exec_viewer(const char *name
, const char *page
)
606 const char *info
= get_man_viewer_info(name
);
608 if (!strcasecmp(name
, "man"))
609 exec_man_man(info
, page
);
610 else if (!strcasecmp(name
, "woman"))
611 exec_woman_emacs(info
, page
);
612 else if (!strcasecmp(name
, "konqueror"))
613 exec_man_konqueror(info
, page
);
615 exec_man_cmd(info
, page
);
617 warning("'%s': unknown man viewer.", name
);
620 static void show_man_page(const char *git_cmd
)
622 struct man_viewer_list
*viewer
;
623 const char *page
= cmd_to_page(git_cmd
);
626 for (viewer
= man_viewer_list
; viewer
; viewer
= viewer
->next
)
628 exec_viewer(viewer
->name
, page
); /* will return when unable */
630 exec_viewer("man", page
);
631 die("no man viewer handled the request");
634 static void show_info_page(const char *git_cmd
)
636 const char *page
= cmd_to_page(git_cmd
);
637 setenv("INFOPATH", GIT_INFO_PATH
, 1);
638 execlp("info", "info", "gitman", page
, NULL
);
641 static void get_html_page_path(struct strbuf
*page_path
, const char *page
)
644 const char *html_path
= system_path(GIT_HTML_PATH
);
646 /* Check that we have a git documentation directory. */
647 if (stat(mkpath("%s/git.html", html_path
), &st
)
648 || !S_ISREG(st
.st_mode
))
649 die("'%s': not a documentation directory.", html_path
);
651 strbuf_init(page_path
, 0);
652 strbuf_addf(page_path
, "%s/%s.html", html_path
, page
);
656 * If open_html is not defined in a platform-specific way (see for
657 * example compat/mingw.h), we use the script web--browse to display
661 void open_html(const char *path
)
663 execl_git_cmd("web--browse", "-c", "help.browser", path
, NULL
);
667 static void show_html_page(const char *git_cmd
)
669 const char *page
= cmd_to_page(git_cmd
);
670 struct strbuf page_path
; /* it leaks but we exec bellow */
672 get_html_page_path(&page_path
, page
);
674 open_html(page_path
.buf
);
677 void help_unknown_cmd(const char *cmd
)
679 fprintf(stderr
, "git: '%s' is not a git-command. See 'git --help'.\n", cmd
);
683 int cmd_version(int argc
, const char **argv
, const char *prefix
)
685 printf("git version %s\n", git_version_string
);
689 int cmd_help(int argc
, const char **argv
, const char *prefix
)
694 setup_git_directory_gently(&nongit
);
695 git_config(git_help_config
, NULL
);
697 argc
= parse_options(argc
, argv
, builtin_help_options
,
698 builtin_help_usage
, 0);
701 printf("usage: %s\n\n", git_usage_string
);
703 printf("%s\n", git_more_info_string
);
708 printf("usage: %s\n\n", git_usage_string
);
709 list_common_cmds_help();
710 printf("\n%s\n", git_more_info_string
);
714 alias
= alias_lookup(argv
[0]);
715 if (alias
&& !is_git_command(argv
[0])) {
716 printf("`git %s' is aliased to `%s'\n", argv
[0], alias
);
720 switch (help_format
) {
721 case HELP_FORMAT_MAN
:
722 show_man_page(argv
[0]);
724 case HELP_FORMAT_INFO
:
725 show_info_page(argv
[0]);
727 case HELP_FORMAT_WEB
:
728 show_html_page(argv
[0]);