4238016e40867c897299678d41097e2e497b33c6
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
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 <sys/types.h>
27 #include "../command.h"
29 static char *opt_session_name
;
36 static struct poptOption long_options
[] = {
37 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
38 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
39 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
46 static void usage(FILE *ofp
)
48 fprintf(ofp
, "usage: lttng set-session NAME [OPTIONS]\n");
50 fprintf(ofp
, "Options:\n");
51 fprintf(ofp
, " -h, --help Show this help\n");
52 fprintf(ofp
, " --list-options Simple listing of options\n");
59 static int set_session(void)
61 int ret
= CMD_SUCCESS
;
63 if (opt_session_name
&& strlen(opt_session_name
) > NAME_MAX
) {
64 ERR("Session name too long. Length must be lower or equal to %d",
70 ret
= config_init(opt_session_name
);
72 ERR("Unable to set session name");
77 MSG("Session set to %s", opt_session_name
);
87 int cmd_set_session(int argc
, const char **argv
)
89 int opt
, ret
= CMD_SUCCESS
;
90 static poptContext pc
;
92 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
93 poptReadDefaultConfig(pc
, 0);
95 while ((opt
= poptGetNextOpt(pc
)) != -1) {
100 case OPT_LIST_OPTIONS
:
101 list_cmd_options(stdout
, long_options
);
110 opt_session_name
= (char *) poptGetArg(pc
);
111 if (opt_session_name
== NULL
) {
112 ERR("Missing session name");
This page took 0.042709 seconds and 4 git commands to generate.