Change licensing
[lttng-tools.git] / lttng / commands / start.c
CommitLineData
f3ed775e
DG
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
82a3637f
DG
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
f3ed775e
DG
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#define _GNU_SOURCE
20#include <popt.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
27
28#include "cmd.h"
beb8c75a 29#include "conf.h"
f3ed775e
DG
30#include "utils.h"
31
32static char *opt_session_name;
33
34enum {
35 OPT_HELP = 1,
36};
37
38static struct poptOption long_options[] = {
39 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
40 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
41 {0, 0, 0, 0, 0, 0, 0}
42};
43
44/*
45 * usage
46 */
47static void usage(FILE *ofp)
48{
49 fprintf(ofp, "usage: lttng start [options] [NAME]\n");
50 fprintf(ofp, "\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");
53 fprintf(ofp, "\n");
54 fprintf(ofp, " -h, --help Show this help\n");
55 fprintf(ofp, "\n");
56}
57
58/*
59 * start_tracing
60 *
61 * Start tracing for all trace of the session.
62 */
63static int start_tracing(void)
64{
65 int ret = CMD_SUCCESS;
66 char *session_name;
67
68 if (opt_session_name == NULL) {
69 session_name = get_session_name();
70 if (session_name == NULL) {
71 ret = CMD_ERROR;
72 goto error;
73 }
74 } else {
75 session_name = opt_session_name;
76 }
77
78 DBG("Starting tracing for session %s", session_name);
79
80 ret = lttng_start_tracing(session_name);
81 if (ret < 0) {
82 goto free_name;
83 }
84
85 MSG("Tracing started for session %s", session_name);
86
87free_name:
b73d0b29
MD
88 if (opt_session_name == NULL) {
89 free(session_name);
90 }
f3ed775e
DG
91error:
92 return ret;
93}
94
95/*
96 * cmd_start
97 *
98 * The 'start <options>' first level command
99 */
100int cmd_start(int argc, const char **argv)
101{
102 int opt, ret;
103 static poptContext pc;
104
105 pc = poptGetContext(NULL, 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 ret = CMD_SUCCESS;
113 goto end;
114 default:
115 usage(stderr);
116 ret = CMD_UNDEFINED;
117 goto end;
118 }
119 }
120
121 opt_session_name = (char*) poptGetArg(pc);
122
123 ret = start_tracing();
124
125end:
126 return ret;
127}
This page took 0.028551 seconds and 5 git commands to generate.