2 * Copyright (C) 2015 - Philippe Proulx <pproulx@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "../command.h"
25 #include <common/utils.h>
32 static struct poptOption long_options
[] = {
33 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
34 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
35 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
42 int cmd_help(int argc
, const char **argv
, const struct cmd_struct commands
[])
44 int opt
, ret
= CMD_SUCCESS
;
46 static poptContext pc
;
47 const struct cmd_struct
*cmd
;
50 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
51 poptReadDefaultConfig(pc
, 0);
53 while ((opt
= poptGetNextOpt(pc
)) != -1) {
58 case OPT_LIST_OPTIONS
:
59 list_cmd_options(stdout
, long_options
);
67 /* Get command name */
68 cmd_name
= (char *) poptGetArg(pc
);
70 if (cmd_name
== NULL
) {
71 /* Fall back to lttng(1) */
72 ret
= utils_show_man_page(1, "lttng");
75 ERR("Cannot view man page lttng(1)");
82 /* Make sure command name exists */
85 while (cmd
->name
!= NULL
) {
86 if (strcmp(cmd
->name
, cmd_name
) == 0) {
95 ERR("Unknown command \"%s\"", cmd_name
);
100 /* Show command's man page */
101 ret
= show_cmd_man_page(cmd_name
);
104 ERR("Cannot view man page lttng-%s(1)", cmd_name
);
This page took 0.031639 seconds and 4 git commands to generate.