Harmonise lttng.h and lttng-ctl.c documentation
[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{
318e4c83 70 int ret;
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) {
318e4c83 83 ret = asprintf(&session_name, "auto");
d6175221
DG
84 if (ret < 0) {
85 perror("asprintf session name");
318e4c83 86 ret = CMD_ERROR;
d6175221
DG
87 goto error;
88 }
f3ed775e
DG
89 DBG("Auto session name set to %s", session_name);
90 } else {
91 session_name = opt_session_name;
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) {
318e4c83
TD
98 ERR("Home path not found.\n"
99 "Please specify an output path using -o, --output PATH\n");
f3ed775e
DG
100 ret = CMD_FATAL;
101 goto error;
102 }
f3ed775e 103
318e4c83 104 ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME
f2e0110c 105 "/%s-%s", alloc_path, session_name, datetime);
f2e0110c 106
58a97671
DG
107 if (ret < 0) {
108 perror("asprintf trace dir name");
318e4c83 109 ret = CMD_ERROR;
58a97671
DG
110 goto error;
111 }
112 } else {
113 traces_path = opt_output_path;
f3ed775e
DG
114 }
115
58a97671 116 ret = lttng_create_session(session_name, traces_path);
f3ed775e 117 if (ret < 0) {
27089920 118 ret = CMD_ERROR;
f3ed775e
DG
119 goto error;
120 }
121
58a97671
DG
122 /* Init lttng session config */
123 ret = config_init(session_name);
f3ed775e 124 if (ret < 0) {
27089920 125 ret = CMD_ERROR;
f3ed775e
DG
126 goto error;
127 }
128
129 MSG("Session %s created.", session_name);
0052ffe6 130 MSG("Traces will be written in %s" , traces_path);
f3ed775e
DG
131
132 ret = CMD_SUCCESS;
133
134error:
135 if (alloc_path) {
136 free(alloc_path);
137 }
138
58a97671
DG
139 if (traces_path) {
140 free(traces_path);
f3ed775e
DG
141 }
142 return ret;
143}
144
145/*
74cc1d0f 146 * The 'create <options>' first level command
1c8d13c8
TD
147 *
148 * Returns one of the CMD_* result constants.
f3ed775e
DG
149 */
150int cmd_create(int argc, const char **argv)
151{
152 int opt, ret = CMD_SUCCESS;
153 static poptContext pc;
154
155 pc = poptGetContext(NULL, argc, argv, long_options, 0);
156 poptReadDefaultConfig(pc, 0);
157
158 while ((opt = poptGetNextOpt(pc)) != -1) {
159 switch (opt) {
160 case OPT_HELP:
27089920 161 usage(stdout);
f3ed775e 162 goto end;
679b4943
SM
163 case OPT_LIST_OPTIONS:
164 list_cmd_options(stdout, long_options);
679b4943 165 goto end;
f3ed775e
DG
166 default:
167 usage(stderr);
168 ret = CMD_UNDEFINED;
169 goto end;
170 }
171 }
172
173 opt_session_name = (char*) poptGetArg(pc);
174
175 ret = create_session();
176
177end:
178 return ret;
179}
This page took 0.032741 seconds and 4 git commands to generate.