2 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <lttng/lttng-error.h>
23 #include <lttng/save.h>
24 #include <lttng/save-internal.h>
25 #include <common/sessiond-comm/sessiond-comm.h>
27 #include "lttng-ctl-helper.h"
29 struct lttng_save_session_attr
*lttng_save_session_attr_create(void)
31 return zmalloc(sizeof(struct lttng_save_session_attr
));
34 void lttng_save_session_attr_destroy(struct lttng_save_session_attr
*output
)
41 const char *lttng_save_session_attr_get_session_name(
42 struct lttng_save_session_attr
*attr
)
44 const char *ret
= NULL
;
46 if (attr
&& attr
->session_name
[0]) {
47 ret
= attr
->session_name
;
53 const char *lttng_save_session_attr_get_output_url(
54 struct lttng_save_session_attr
*attr
)
56 const char *ret
= NULL
;
58 if (attr
&& attr
->configuration_url
[0]) {
59 ret
= attr
->configuration_url
;
65 int lttng_save_session_attr_get_overwrite(
66 struct lttng_save_session_attr
*attr
)
68 return attr
? attr
->overwrite
: -LTTNG_ERR_INVALID
;
71 int lttng_save_session_attr_set_session_name(
72 struct lttng_save_session_attr
*attr
, const char *session_name
)
77 ret
= -LTTNG_ERR_INVALID
;
84 len
= strlen(session_name
);
85 if (len
>= NAME_MAX
) {
86 ret
= -LTTNG_ERR_INVALID
;
90 strncpy(attr
->session_name
, session_name
, len
);
92 attr
->session_name
[0] = '\0';
98 int lttng_save_session_attr_set_output_url(
99 struct lttng_save_session_attr
*attr
, const char *url
)
103 struct lttng_uri
*uris
= NULL
;
106 ret
= -LTTNG_ERR_INVALID
;
111 attr
->configuration_url
[0] = '\0';
117 if (len
>= PATH_MAX
) {
118 ret
= -LTTNG_ERR_INVALID
;
122 size
= uri_parse_str_urls(url
, NULL
, &uris
);
123 if (size
<= 0 || uris
[0].dtype
!= LTTNG_DST_PATH
) {
124 ret
= -LTTNG_ERR_INVALID
;
128 /* Copy string plus the NULL terminated byte. */
129 lttng_ctl_copy_string(attr
->configuration_url
, uris
[0].dst
.path
,
130 sizeof(attr
->configuration_url
));
138 int lttng_save_session_attr_set_overwrite(
139 struct lttng_save_session_attr
*attr
, int overwrite
)
144 ret
= -LTTNG_ERR_INVALID
;
148 attr
->overwrite
= !!overwrite
;
154 * The lttng-ctl API does not expose all the information needed to save the
155 * session configurations. Thus, we must send a save command to the session
156 * daemon which will, in turn, save its current session configuration.
158 int lttng_save_session(struct lttng_save_session_attr
*attr
)
160 struct lttcomm_session_msg lsm
;
164 ret
= -LTTNG_ERR_INVALID
;
168 memset(&lsm
, 0, sizeof(lsm
));
169 lsm
.cmd_type
= LTTNG_SAVE_SESSION
;
171 memcpy(&lsm
.u
.save_session
.attr
, attr
,
172 sizeof(struct lttng_save_session_attr
));
173 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
This page took 0.033517 seconds and 4 git commands to generate.