7 #include "util/cache.h"
9 #include "util/exec_cmd.h"
10 #include "common-cmds.h"
11 #include "util/parse-options.h"
12 #include "util/run-command.h"
13 #include "util/help.h"
15 static struct man_viewer_list
{
16 struct man_viewer_list
*next
;
17 char name
[FLEX_ARRAY
];
20 static struct man_viewer_info_list
{
21 struct man_viewer_info_list
*next
;
23 char name
[FLEX_ARRAY
];
24 } *man_viewer_info_list
;
33 static enum help_format
parse_help_format(const char *format
)
35 if (!strcmp(format
, "man"))
36 return HELP_FORMAT_MAN
;
37 if (!strcmp(format
, "info"))
38 return HELP_FORMAT_INFO
;
39 if (!strcmp(format
, "web") || !strcmp(format
, "html"))
40 return HELP_FORMAT_WEB
;
42 pr_err("unrecognized help format '%s'", format
);
43 return HELP_FORMAT_NONE
;
46 static const char *get_man_viewer_info(const char *name
)
48 struct man_viewer_info_list
*viewer
;
50 for (viewer
= man_viewer_info_list
; viewer
; viewer
= viewer
->next
) {
51 if (!strcasecmp(name
, viewer
->name
))
57 static int check_emacsclient_version(void)
59 struct strbuf buffer
= STRBUF_INIT
;
60 struct child_process ec_process
;
61 const char *argv_ec
[] = { "emacsclient", "--version", NULL
};
64 /* emacsclient prints its version number on stderr */
65 memset(&ec_process
, 0, sizeof(ec_process
));
66 ec_process
.argv
= argv_ec
;
68 ec_process
.stdout_to_stderr
= 1;
69 if (start_command(&ec_process
)) {
70 fprintf(stderr
, "Failed to start emacsclient.\n");
73 strbuf_read(&buffer
, ec_process
.err
, 20);
74 close(ec_process
.err
);
77 * Don't bother checking return value, because "emacsclient --version"
78 * seems to always exits with code 1.
80 finish_command(&ec_process
);
82 if (prefixcmp(buffer
.buf
, "emacsclient")) {
83 fprintf(stderr
, "Failed to parse emacsclient version.\n");
84 strbuf_release(&buffer
);
88 strbuf_remove(&buffer
, 0, strlen("emacsclient"));
89 version
= atoi(buffer
.buf
);
93 "emacsclient version '%d' too old (< 22).\n",
95 strbuf_release(&buffer
);
99 strbuf_release(&buffer
);
103 static void exec_woman_emacs(const char *path
, const char *page
)
105 if (!check_emacsclient_version()) {
106 /* This works only with emacsclient version >= 22. */
107 struct strbuf man_page
= STRBUF_INIT
;
110 path
= "emacsclient";
111 strbuf_addf(&man_page
, "(woman \"%s\")", page
);
112 execlp(path
, "emacsclient", "-e", man_page
.buf
, NULL
);
113 warning("failed to exec '%s': %s", path
, strerror(errno
));
117 static void exec_man_konqueror(const char *path
, const char *page
)
119 const char *display
= getenv("DISPLAY");
120 if (display
&& *display
) {
121 struct strbuf man_page
= STRBUF_INIT
;
122 const char *filename
= "kfmclient";
124 /* It's simpler to launch konqueror using kfmclient. */
126 const char *file
= strrchr(path
, '/');
127 if (file
&& !strcmp(file
+ 1, "konqueror")) {
128 char *new = strdup(path
);
129 char *dest
= strrchr(new, '/');
131 /* strlen("konqueror") == strlen("kfmclient") */
132 strcpy(dest
+ 1, "kfmclient");
139 strbuf_addf(&man_page
, "man:%s(1)", page
);
140 execlp(path
, filename
, "newTab", man_page
.buf
, NULL
);
141 warning("failed to exec '%s': %s", path
, strerror(errno
));
145 static void exec_man_man(const char *path
, const char *page
)
149 execlp(path
, "man", page
, NULL
);
150 warning("failed to exec '%s': %s", path
, strerror(errno
));
153 static void exec_man_cmd(const char *cmd
, const char *page
)
155 struct strbuf shell_cmd
= STRBUF_INIT
;
156 strbuf_addf(&shell_cmd
, "%s %s", cmd
, page
);
157 execl("/bin/sh", "sh", "-c", shell_cmd
.buf
, NULL
);
158 warning("failed to exec '%s': %s", cmd
, strerror(errno
));
161 static void add_man_viewer(const char *name
)
163 struct man_viewer_list
**p
= &man_viewer_list
;
164 size_t len
= strlen(name
);
168 *p
= zalloc(sizeof(**p
) + len
+ 1);
169 strncpy((*p
)->name
, name
, len
);
172 static int supported_man_viewer(const char *name
, size_t len
)
174 return (!strncasecmp("man", name
, len
) ||
175 !strncasecmp("woman", name
, len
) ||
176 !strncasecmp("konqueror", name
, len
));
179 static void do_add_man_viewer_info(const char *name
,
183 struct man_viewer_info_list
*new = zalloc(sizeof(*new) + len
+ 1);
185 strncpy(new->name
, name
, len
);
186 new->info
= strdup(value
);
187 new->next
= man_viewer_info_list
;
188 man_viewer_info_list
= new;
191 static int add_man_viewer_path(const char *name
,
195 if (supported_man_viewer(name
, len
))
196 do_add_man_viewer_info(name
, len
, value
);
198 warning("'%s': path for unsupported man viewer.\n"
199 "Please consider using 'man.<tool>.cmd' instead.",
205 static int add_man_viewer_cmd(const char *name
,
209 if (supported_man_viewer(name
, len
))
210 warning("'%s': cmd for supported man viewer.\n"
211 "Please consider using 'man.<tool>.path' instead.",
214 do_add_man_viewer_info(name
, len
, value
);
219 static int add_man_viewer_info(const char *var
, const char *value
)
221 const char *name
= var
+ 4;
222 const char *subkey
= strrchr(name
, '.');
225 return error("Config with no key for man viewer: %s", name
);
227 if (!strcmp(subkey
, ".path")) {
229 return config_error_nonbool(var
);
230 return add_man_viewer_path(name
, subkey
- name
, value
);
232 if (!strcmp(subkey
, ".cmd")) {
234 return config_error_nonbool(var
);
235 return add_man_viewer_cmd(name
, subkey
- name
, value
);
238 warning("'%s': unsupported man viewer sub key.", subkey
);
242 static int perf_help_config(const char *var
, const char *value
, void *cb
)
244 enum help_format
*help_formatp
= cb
;
246 if (!strcmp(var
, "help.format")) {
248 return config_error_nonbool(var
);
249 *help_formatp
= parse_help_format(value
);
250 if (*help_formatp
== HELP_FORMAT_NONE
)
254 if (!strcmp(var
, "man.viewer")) {
256 return config_error_nonbool(var
);
257 add_man_viewer(value
);
260 if (!prefixcmp(var
, "man."))
261 return add_man_viewer_info(var
, value
);
263 return perf_default_config(var
, value
, cb
);
266 static struct cmdnames main_cmds
, other_cmds
;
268 void list_common_cmds_help(void)
270 unsigned int i
, longest
= 0;
272 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
273 if (longest
< strlen(common_cmds
[i
].name
))
274 longest
= strlen(common_cmds
[i
].name
);
277 puts(" The most commonly used perf commands are:");
278 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
279 printf(" %-*s ", longest
, common_cmds
[i
].name
);
280 puts(common_cmds
[i
].help
);
284 static int is_perf_command(const char *s
)
286 return is_in_cmdlist(&main_cmds
, s
) ||
287 is_in_cmdlist(&other_cmds
, s
);
290 static const char *prepend(const char *prefix
, const char *cmd
)
292 size_t pre_len
= strlen(prefix
);
293 size_t cmd_len
= strlen(cmd
);
294 char *p
= malloc(pre_len
+ cmd_len
+ 1);
295 memcpy(p
, prefix
, pre_len
);
296 strcpy(p
+ pre_len
, cmd
);
300 static const char *cmd_to_page(const char *perf_cmd
)
304 else if (!prefixcmp(perf_cmd
, "perf"))
307 return prepend("perf-", perf_cmd
);
310 static void setup_man_path(void)
312 struct strbuf new_path
= STRBUF_INIT
;
313 const char *old_path
= getenv("MANPATH");
315 /* We should always put ':' after our path. If there is no
316 * old_path, the ':' at the end will let 'man' to try
317 * system-wide paths after ours to find the manual page. If
318 * there is old_path, we need ':' as delimiter. */
319 strbuf_addstr(&new_path
, system_path(PERF_MAN_PATH
));
320 strbuf_addch(&new_path
, ':');
322 strbuf_addstr(&new_path
, old_path
);
324 setenv("MANPATH", new_path
.buf
, 1);
326 strbuf_release(&new_path
);
329 static void exec_viewer(const char *name
, const char *page
)
331 const char *info
= get_man_viewer_info(name
);
333 if (!strcasecmp(name
, "man"))
334 exec_man_man(info
, page
);
335 else if (!strcasecmp(name
, "woman"))
336 exec_woman_emacs(info
, page
);
337 else if (!strcasecmp(name
, "konqueror"))
338 exec_man_konqueror(info
, page
);
340 exec_man_cmd(info
, page
);
342 warning("'%s': unknown man viewer.", name
);
345 static int show_man_page(const char *perf_cmd
)
347 struct man_viewer_list
*viewer
;
348 const char *page
= cmd_to_page(perf_cmd
);
349 const char *fallback
= getenv("PERF_MAN_VIEWER");
352 for (viewer
= man_viewer_list
; viewer
; viewer
= viewer
->next
)
353 exec_viewer(viewer
->name
, page
); /* will return when unable */
356 exec_viewer(fallback
, page
);
357 exec_viewer("man", page
);
359 pr_err("no man viewer handled the request");
363 static int show_info_page(const char *perf_cmd
)
365 const char *page
= cmd_to_page(perf_cmd
);
366 setenv("INFOPATH", system_path(PERF_INFO_PATH
), 1);
367 execlp("info", "info", "perfman", page
, NULL
);
371 static int get_html_page_path(struct strbuf
*page_path
, const char *page
)
374 const char *html_path
= system_path(PERF_HTML_PATH
);
376 /* Check that we have a perf documentation directory. */
377 if (stat(mkpath("%s/perf.html", html_path
), &st
)
378 || !S_ISREG(st
.st_mode
)) {
379 pr_err("'%s': not a documentation directory.", html_path
);
383 strbuf_init(page_path
, 0);
384 strbuf_addf(page_path
, "%s/%s.html", html_path
, page
);
390 * If open_html is not defined in a platform-specific way (see for
391 * example compat/mingw.h), we use the script web--browse to display
395 static void open_html(const char *path
)
397 execl_perf_cmd("web--browse", "-c", "help.browser", path
, NULL
);
401 static int show_html_page(const char *perf_cmd
)
403 const char *page
= cmd_to_page(perf_cmd
);
404 struct strbuf page_path
; /* it leaks but we exec bellow */
406 if (get_html_page_path(&page_path
, page
) != 0)
409 open_html(page_path
.buf
);
414 int cmd_help(int argc
, const char **argv
, const char *prefix __maybe_unused
)
416 bool show_all
= false;
417 enum help_format help_format
= HELP_FORMAT_MAN
;
418 struct option builtin_help_options
[] = {
419 OPT_BOOLEAN('a', "all", &show_all
, "print all available commands"),
420 OPT_SET_UINT('m', "man", &help_format
, "show man page", HELP_FORMAT_MAN
),
421 OPT_SET_UINT('w', "web", &help_format
, "show manual in web browser",
423 OPT_SET_UINT('i', "info", &help_format
, "show info page",
427 const char * const builtin_help_usage
[] = {
428 "perf help [--all] [--man|--web|--info] [command]",
434 load_command_list("perf-", &main_cmds
, &other_cmds
);
436 perf_config(perf_help_config
, &help_format
);
438 argc
= parse_options(argc
, argv
, builtin_help_options
,
439 builtin_help_usage
, 0);
442 printf("\n usage: %s\n\n", perf_usage_string
);
443 list_commands("perf commands", &main_cmds
, &other_cmds
);
444 printf(" %s\n\n", perf_more_info_string
);
449 printf("\n usage: %s\n\n", perf_usage_string
);
450 list_common_cmds_help();
451 printf("\n %s\n\n", perf_more_info_string
);
455 alias
= alias_lookup(argv
[0]);
456 if (alias
&& !is_perf_command(argv
[0])) {
457 printf("`perf %s' is aliased to `%s'\n", argv
[0], alias
);
461 switch (help_format
) {
462 case HELP_FORMAT_MAN
:
463 rc
= show_man_page(argv
[0]);
465 case HELP_FORMAT_INFO
:
466 rc
= show_info_page(argv
[0]);
468 case HELP_FORMAT_WEB
:
469 rc
= show_html_page(argv
[0]);
471 case HELP_FORMAT_NONE
: