1eca989e6cdd6e826b28f452dd1bbdb1209073af
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <sys/types.h>
32 static char *opt_session_name
;
38 static struct poptOption long_options
[] = {
39 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
40 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
47 static void usage(FILE *ofp
)
49 fprintf(ofp
, "usage: lttng destroy [options] [NAME]\n");
51 fprintf(ofp
, "Where NAME is an optional session name. If not specified, lttng will\n");
52 fprintf(ofp
, "get it from the configuration directory (.lttng).\n");
54 fprintf(ofp
, " -h, --help Show this help\n");
61 * Destroy a session removing the config directory and unregistering to the
64 static int destroy_session()
67 char *session_name
, *path
;
69 if (opt_session_name
== NULL
) {
70 session_name
= get_session_name();
71 if (session_name
== NULL
) {
76 session_name
= opt_session_name
;
79 ret
= lttng_destroy_session(session_name
);
84 path
= config_get_default_path();
90 if (opt_session_name
== NULL
) {
92 MSG("Session %s destroyed at %s", session_name
, path
);
94 MSG("Session %s destroyed", session_name
);
100 if (opt_session_name
== NULL
) {
110 * The 'destroy <options>' first level command
112 int cmd_destroy(int argc
, const char **argv
)
114 int opt
, ret
= CMD_SUCCESS
;
115 static poptContext pc
;
117 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
118 poptReadDefaultConfig(pc
, 0);
120 while ((opt
= poptGetNextOpt(pc
)) != -1) {
132 opt_session_name
= (char*) poptGetArg(pc
);
134 ret
= destroy_session();
This page took 0.031576 seconds and 3 git commands to generate.