2 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <common/mi-lttng.h>
28 #include "../command.h"
29 #include <lttng/save.h>
31 static char *opt_output_path
;
32 static bool opt_force
;
33 static bool opt_save_all
;
34 static struct mi_writer
*writer
;
36 #ifdef LTTNG_EMBED_HELP
37 static const char help_msg
[] =
38 #include <lttng-save.1.h>
49 static struct poptOption save_opts
[] = {
50 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
51 {"help", 'h', POPT_ARG_NONE
, NULL
, OPT_HELP
, NULL
, NULL
},
52 {"all", 'a', POPT_ARG_NONE
, NULL
, OPT_ALL
, NULL
, NULL
},
53 {"output-path", 'o', POPT_ARG_STRING
, &opt_output_path
, 0, NULL
, NULL
},
54 {"force", 'f', POPT_ARG_NONE
, NULL
, OPT_FORCE
, NULL
, NULL
},
55 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
59 static int mi_partial_session(const char *session_name
)
65 /* Open session element */
66 ret
= mi_lttng_writer_open_element(writer
, config_element_session
);
71 ret
= mi_lttng_writer_write_element_string(writer
, config_element_name
,
77 /* Closing session element */
78 ret
= mi_lttng_writer_close_element(writer
);
84 * Mi print of save command
86 static int mi_save_print(const char *session_name
)
92 /* We use a wildcard to represent all sessions */
96 /* Print save element */
97 ret
= mi_lttng_writer_open_element(writer
, mi_lttng_element_save
);
102 /* Print session element */
103 ret
= mi_partial_session(session_name
);
109 if (opt_output_path
) {
110 ret
= mi_lttng_writer_write_element_string(writer
, config_element_path
,
117 /* Close save element */
118 ret
= mi_lttng_writer_close_element(writer
);
124 * The 'save <options>' first level command
126 int cmd_save(int argc
, const char **argv
)
128 int ret
= CMD_SUCCESS
, command_ret
= CMD_SUCCESS
, success
;
130 const char *session_name
= NULL
;
132 struct lttng_save_session_attr
*attr
;
134 pc
= poptGetContext(NULL
, argc
, argv
, save_opts
, 0);
135 poptReadDefaultConfig(pc
, 0);
137 while ((opt
= poptGetNextOpt(pc
)) != -1) {
148 case OPT_LIST_OPTIONS
:
149 list_cmd_options(stdout
, save_opts
);
158 session_name
= poptGetArg(pc
);
160 DBG2("Session name: %s", session_name
);
162 /* default to opt_save_all */
167 attr
= lttng_save_session_attr_create();
173 if (lttng_save_session_attr_set_session_name(attr
, session_name
)) {
178 if (lttng_save_session_attr_set_overwrite(attr
, opt_force
)) {
183 if (lttng_save_session_attr_set_output_url(attr
, opt_output_path
)) {
190 writer
= mi_lttng_writer_create(fileno(stdout
), lttng_opt_mi
);
192 ret
= -LTTNG_ERR_NOMEM
;
196 /* Open command element */
197 ret
= mi_lttng_writer_command_open(writer
,
198 mi_lttng_element_command_save
);
204 /* Open output element */
205 ret
= mi_lttng_writer_open_element(writer
,
206 mi_lttng_element_command_output
);
213 command_ret
= lttng_save_session(attr
);
214 if (command_ret
< 0) {
215 ERR("%s", lttng_strerror(command_ret
));
218 /* Inform the user of what just happened on success. */
219 if (session_name
&& opt_output_path
) {
220 MSG("Session %s saved successfully in %s.", session_name
,
222 } else if (session_name
&& !opt_output_path
) {
223 MSG("Session %s saved successfully.", session_name
);
224 } else if (!session_name
&& opt_output_path
) {
225 MSG("All sessions have been saved successfully in %s.",
228 MSG("All sessions have been saved successfully.");
233 /* Mi Printing and closing */
236 ret
= mi_save_print(session_name
);
242 /* Close output element */
243 ret
= mi_lttng_writer_close_element(writer
);
250 ret
= mi_lttng_writer_write_element_bool(writer
,
251 mi_lttng_element_command_success
, success
);
257 /* Command element close */
258 ret
= mi_lttng_writer_command_close(writer
);
265 lttng_save_session_attr_destroy(attr
);
268 if (writer
&& mi_lttng_writer_destroy(writer
)) {
269 /* Preserve original error code */
270 ret
= ret
? ret
: -LTTNG_ERR_MI_IO_FAIL
;
273 /* Overwrite ret if command failed */
274 ret
= command_ret
? -command_ret
: ret
;