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.
25 #include "../command.h"
26 #include <common/utils.h>
28 #ifdef LTTNG_EMBED_HELP
29 static const char *help_msg
=
30 #include <lttng-help.1.h>
34 static const char *lttng_help_msg
=
35 #ifdef LTTNG_EMBED_HELP
47 static struct poptOption long_options
[] = {
48 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
49 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
50 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
57 int cmd_help(int argc
, const char **argv
, const struct cmd_struct commands
[])
59 int opt
, ret
= CMD_SUCCESS
;
61 static poptContext pc
;
62 const struct cmd_struct
*cmd
;
64 const char *cmd_argv
[2];
66 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
67 poptReadDefaultConfig(pc
, 0);
69 while ((opt
= poptGetNextOpt(pc
)) != -1) {
74 case OPT_LIST_OPTIONS
:
75 list_cmd_options(stdout
, long_options
);
83 /* Get command name */
84 cmd_name
= (char *) poptGetArg(pc
);
86 if (cmd_name
== NULL
) {
87 /* Fall back to lttng(1) */
88 ret
= utils_show_help(1, "lttng", lttng_help_msg
);
90 ERR("Cannot show --help for `lttng`");
98 /* Help about help? */
99 if (strcmp(cmd_name
, "help") == 0) {
104 /* Make sure command name exists */
107 while (cmd
->name
!= NULL
) {
108 if (strcmp(cmd
->name
, cmd_name
) == 0) {
117 ERR("Unknown command \"%s\"", cmd_name
);
122 /* Show command's help */
123 cmd_argv
[0] = cmd
->name
;
124 cmd_argv
[1] = "--help";
126 ret
= cmd
->func(2, cmd_argv
);
This page took 0.035079 seconds and 4 git commands to generate.