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 #include <common/sessiond-comm/sessiond-comm.h>
31 static char *opt_session_name
;
32 static int opt_destroy_all
;
39 static struct poptOption long_options
[] = {
40 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
41 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
42 {"all", 'a', POPT_ARG_VAL
, &opt_destroy_all
, 1, 0, 0},
43 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
50 static void usage(FILE *ofp
)
52 fprintf(ofp
, "usage: lttng destroy [options] [NAME]\n");
54 fprintf(ofp
, "Where NAME is an optional session name. If not specified, lttng will\n");
55 fprintf(ofp
, "get it from the configuration directory (.lttng).\n");
57 fprintf(ofp
, " -h, --help Show this help\n");
58 fprintf(ofp
, " -a, --all Destroy all sessions\n");
59 fprintf(ofp
, " --list-options Simple listing of options\n");
66 * Unregister the provided session to the session daemon. On success, removes
67 * the default configuration.
69 static int destroy_session(const char *session_name
)
73 ret
= lttng_destroy_session(session_name
);
76 case LTTCOMM_SESS_NOT_FOUND
:
77 WARN("Session name %s not found", session_name
);
85 MSG("Session %s destroyed", session_name
);
86 config_destroy_default();
93 * destroy_all_sessions
95 * Call destroy_sessions for each registered sessions
97 static int destroy_all_sessions()
99 int count
, i
, ret
= CMD_SUCCESS
;
100 struct lttng_session
*sessions
;
102 count
= lttng_list_sessions(&sessions
);
104 MSG("No session found, nothing to do.");
106 for (i
= 0; i
< count
; i
++) {
107 ret
= destroy_session(sessions
[i
].name
);
117 * The 'destroy <options>' first level command
119 int cmd_destroy(int argc
, const char **argv
)
122 int ret
= CMD_SUCCESS
;
123 static poptContext pc
;
124 char *session_name
= NULL
;
126 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
127 poptReadDefaultConfig(pc
, 0);
129 while ((opt
= poptGetNextOpt(pc
)) != -1) {
134 case OPT_LIST_OPTIONS
:
135 list_cmd_options(stdout
, long_options
);
145 /* Ignore session name in case all sessions are to be destroyed */
146 if (opt_destroy_all
) {
147 ret
= destroy_all_sessions();
151 opt_session_name
= (char *) poptGetArg(pc
);
153 if (opt_session_name
== NULL
) {
154 /* No session name specified, lookup default */
155 session_name
= get_session_name();
156 if (session_name
== NULL
) {
161 session_name
= opt_session_name
;
164 ret
= destroy_session(session_name
);
167 if (opt_session_name
== NULL
) {
This page took 0.032216 seconds and 4 git commands to generate.