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