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 lttng_handle
*handle
;
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},
49 static void usage(FILE *ofp
)
51 fprintf(ofp
, "usage: lttng start [options] [NAME]\n");
53 fprintf(ofp
, "Where NAME is an optional session name. If not specified, lttng will\n");
54 fprintf(ofp
, "get it from the configuration directory (.lttng).\n");
56 fprintf(ofp
, " -h, --help Show this help\n");
63 * Start tracing for all trace of the session.
65 static int start_tracing(void)
67 int ret
= CMD_SUCCESS
;
70 if (opt_session_name
== NULL
) {
71 session_name
= get_session_name();
72 if (session_name
== NULL
) {
77 session_name
= opt_session_name
;
80 handle
= lttng_create_handle(session_name
, NULL
);
86 DBG("Starting tracing for session %s", session_name
);
88 ret
= lttng_start_tracing(handle
);
93 MSG("Tracing started for session %s", session_name
);
96 if (opt_session_name
== NULL
) {
100 lttng_destroy_handle(handle
);
108 * The 'start <options>' first level command
110 int cmd_start(int argc
, const char **argv
)
113 static poptContext pc
;
115 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
116 poptReadDefaultConfig(pc
, 0);
118 while ((opt
= poptGetNextOpt(pc
)) != -1) {
131 opt_session_name
= (char*) poptGetArg(pc
);
133 ret
= start_tracing();
This page took 0.031655 seconds and 4 git commands to generate.