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