Document return values
[lttng-tools.git] / src / bin / lttng / commands / create.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 <time.h>
27#include <unistd.h>
28
c399183f 29#include "../command.h"
679b4943 30#include "../utils.h"
f3ed775e
DG
31
32static char *opt_output_path;
33static char *opt_session_name;
34
35enum {
36 OPT_HELP = 1,
679b4943 37 OPT_LIST_OPTIONS,
f3ed775e
DG
38};
39
40static struct poptOption long_options[] = {
41 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
679b4943
SM
42 {"help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL},
43 {"output", 'o', POPT_ARG_STRING, &opt_output_path, 0, NULL, NULL},
44 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
f3ed775e
DG
45 {0, 0, 0, 0, 0, 0, 0}
46};
47
48/*
49 * usage
50 */
51static void usage(FILE *ofp)
52{
53 fprintf(ofp, "usage: lttng create [options] [NAME]\n");
54 fprintf(ofp, "\n");
1c8d13c8 55 fprintf(ofp, " The default NAME is 'auto-yyyymmdd-hhmmss'\n");
f3ed775e 56 fprintf(ofp, " -h, --help Show this help\n");
1c8d13c8 57 fprintf(ofp, " --list-options Simple listing of options\n");
58a97671 58 fprintf(ofp, " -o, --output PATH Specify output path for traces\n");
f3ed775e
DG
59 fprintf(ofp, "\n");
60}
61
62/*
1c8d13c8
TD
63 * Create a tracing session.
64 * If no name is specified, a default name is generated.
f3ed775e 65 *
1c8d13c8 66 * Returns one of the CMD_* result constants.
f3ed775e
DG
67 */
68static int create_session()
69{
31e43e7f 70 int ret, have_name = 0;
d6175221 71 char datetime[16];
58a97671 72 char *session_name, *traces_path = NULL, *alloc_path = NULL;
f3ed775e
DG
73 time_t rawtime;
74 struct tm *timeinfo;
75
d6175221
DG
76 /* Get date and time for automatic session name/path */
77 time(&rawtime);
78 timeinfo = localtime(&rawtime);
79 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
80
f3ed775e
DG
81 /* Auto session name creation */
82 if (opt_session_name == NULL) {
d6175221
DG
83 ret = asprintf(&session_name, "auto-%s", datetime);
84 if (ret < 0) {
85 perror("asprintf session name");
86 goto error;
87 }
f3ed775e
DG
88 DBG("Auto session name set to %s", session_name);
89 } else {
90 session_name = opt_session_name;
31e43e7f 91 have_name = 1;
f3ed775e
DG
92 }
93
94 /* Auto output path */
95 if (opt_output_path == NULL) {
58a97671 96 alloc_path = strdup(config_get_default_path());
f3ed775e 97 if (alloc_path == NULL) {
b082db07
DG
98 ERR("Home path not found.\n \
99 Please specify an output path using -o, --output PATH");
f3ed775e
DG
100 ret = CMD_FATAL;
101 goto error;
102 }
f3ed775e 103
f2e0110c 104 if (have_name) {
bbccc3d2 105 ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME
f2e0110c
DG
106 "/%s-%s", alloc_path, session_name, datetime);
107 } else {
bbccc3d2 108 ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME
f2e0110c
DG
109 "/%s", alloc_path, session_name);
110 }
111
58a97671
DG
112 if (ret < 0) {
113 perror("asprintf trace dir name");
114 goto error;
115 }
116 } else {
117 traces_path = opt_output_path;
f3ed775e
DG
118 }
119
58a97671 120 ret = lttng_create_session(session_name, traces_path);
f3ed775e
DG
121 if (ret < 0) {
122 goto error;
123 }
124
58a97671
DG
125 /* Init lttng session config */
126 ret = config_init(session_name);
f3ed775e 127 if (ret < 0) {
e0ac0dd5
DG
128 if (ret == -1) {
129 ret = CMD_ERROR;
130 }
f3ed775e
DG
131 goto error;
132 }
133
134 MSG("Session %s created.", session_name);
0052ffe6 135 MSG("Traces will be written in %s" , traces_path);
f3ed775e
DG
136
137 ret = CMD_SUCCESS;
138
139error:
140 if (alloc_path) {
141 free(alloc_path);
142 }
143
58a97671
DG
144 if (traces_path) {
145 free(traces_path);
f3ed775e
DG
146 }
147 return ret;
148}
149
150/*
74cc1d0f 151 * The 'create <options>' first level command
1c8d13c8
TD
152 *
153 * Returns one of the CMD_* result constants.
f3ed775e
DG
154 */
155int cmd_create(int argc, const char **argv)
156{
157 int opt, ret = CMD_SUCCESS;
158 static poptContext pc;
159
160 pc = poptGetContext(NULL, argc, argv, long_options, 0);
161 poptReadDefaultConfig(pc, 0);
162
163 while ((opt = poptGetNextOpt(pc)) != -1) {
164 switch (opt) {
165 case OPT_HELP:
166 usage(stderr);
167 goto end;
679b4943
SM
168 case OPT_LIST_OPTIONS:
169 list_cmd_options(stdout, long_options);
170 ret = CMD_SUCCESS;
171 goto end;
f3ed775e
DG
172 default:
173 usage(stderr);
174 ret = CMD_UNDEFINED;
175 goto end;
176 }
177 }
178
179 opt_session_name = (char*) poptGetArg(pc);
180
181 ret = create_session();
182
183end:
184 return ret;
185}
This page took 0.03308 seconds and 4 git commands to generate.