Add destroy session feature
[lttng-tools.git] / lttng / options.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
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; either version 2
7 * of the License, or (at your option) any later version.
8 *
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.
13 *
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.
17 */
18
19 #include <popt.h>
20 #include <stdlib.h>
21
22 #include "lttng.h"
23
24 /* Option variables */
25 char *opt_tracing_group;
26 char *opt_session_name;
27 char *opt_create_session;
28 char *opt_sessiond_path;
29 char *opt_destroy_session;
30 int opt_trace_kernel = 0;
31 int opt_quiet = 0;
32 int opt_verbose = 0;
33 int opt_list_apps = 0;
34 int opt_no_sessiond = 0;
35 int opt_list_session = 0;
36
37 enum {
38 OPT_HELP = 42,
39 };
40
41 static struct poptOption long_options[] = {
42 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
43 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
44 {"group", 0, POPT_ARG_STRING, &opt_tracing_group, 0, 0},
45 {"kernel", 0, POPT_ARG_VAL, &opt_trace_kernel, 1, 0, 0},
46 {"no-kernel", 0, POPT_ARG_VAL, &opt_trace_kernel, 0, 0, 0},
47 {"session", 0, POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_session_name, 0, 0},
48 {"create-session", 'c', POPT_ARG_STRING, &opt_create_session, 0, 0},
49 {"quiet", 'q', POPT_ARG_VAL, &opt_quiet, 1, 0},
50 {"verbose", 'v', POPT_ARG_VAL, &opt_verbose, 1, 0},
51 {"list-apps", 'l', POPT_ARG_VAL, &opt_list_apps, 1, 0},
52 {"no-sessiond", 0, POPT_ARG_VAL, &opt_no_sessiond, 1, 0},
53 {"sessiond-path", 0, POPT_ARG_STRING, &opt_sessiond_path, 0, 0},
54 {"list-session", 0, POPT_ARG_VAL, &opt_list_session, 1, 0},
55 {"destroy-session", 'd', POPT_ARG_STRING, &opt_destroy_session, 0, 0},
56 {0, 0, 0, 0, 0, 0}
57 };
58
59
60 /*
61 * usage
62 */
63 static void usage(FILE *ofp)
64 {
65 fprintf(ofp, "LTTng Trace Control " VERSION"\n\n");
66 fprintf(ofp, "usage : lttng [OPTION]\n");
67 fprintf(ofp, "\n");
68 fprintf(ofp, "Options:\n");
69 fprintf(ofp, " -v, --verbose Verbose mode\n");
70 fprintf(ofp, " -q, --quiet Quiet mode\n");
71 fprintf(ofp, " --help Show help\n");
72 fprintf(ofp, " --group NAME Unix tracing group name. (default: tracing)\n");
73 fprintf(ofp, " --no-sessiond Don't spawn a session daemon.\n");
74 fprintf(ofp, " --sessiond-path Session daemon full path\n");
75 fprintf(ofp, "\n");
76 fprintf(ofp, "Session options:\n");
77 fprintf(ofp, " -c, --create-session NAME Create a new session\n");
78 fprintf(ofp, " --list-session List all available sessions\n");
79 fprintf(ofp, " --session [NAME] Specify tracing session. If no NAME is given\n");
80 fprintf(ofp, " or option is ommited, a session will be created\n");
81 fprintf(ofp, " -d, --destroy-session=NAME Destroy the session specified by NAME\n");
82 fprintf(ofp, "\n");
83 fprintf(ofp, "Tracing options:\n");
84 //fprintf(ofp, " --kernel Enable kernel tracing\n");
85 //fprintf(ofp, " --no-kernel Disable kernel tracing\n");
86 fprintf(ofp, " -l, --list-apps List traceable UST applications\n");
87 }
88
89 /*
90 * parse_args
91 *
92 * Parse command line arguments.
93 * Return 0 if OK, else -1
94 */
95 int parse_args(int argc, const char **argv)
96 {
97 static poptContext pc;
98 int opt;
99
100 pc = poptGetContext("lttng", argc, argv, long_options, 0);
101 poptReadDefaultConfig(pc, 0);
102
103 while ((opt = poptGetNextOpt(pc)) != -1) {
104 switch (opt) {
105 case OPT_HELP:
106 usage(stderr);
107 clean_exit(EXIT_SUCCESS);
108 break;
109 default:
110 usage(stderr);
111 clean_exit(EXIT_FAILURE);
112 break;
113 }
114 }
115
116 if (pc) {
117 poptFreeContext(pc);
118 }
119
120 return 0;
121 }
This page took 0.033357 seconds and 5 git commands to generate.