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