2 * Copyright (C) 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright (C) 2014 David Goulet <dgoulet@efficios.com>
5 * SPDX-License-Identifier: LGPL-2.1-only
12 #include <lttng/lttng-export.h>
19 * The lttng_load_session_attr object is opaque to the user. Use the helper
20 * functions below to use it.
22 struct lttng_load_session_attr
;
25 * Return a newly allocated load session attribute object or NULL on error.
27 LTTNG_EXPORT
extern struct lttng_load_session_attr
*lttng_load_session_attr_create(void);
30 * Free a given load session attribute object.
32 LTTNG_EXPORT
extern void lttng_load_session_attr_destroy(struct lttng_load_session_attr
*attr
);
36 * Load session attribute getter family of functions.
39 /* Return session name. NULL indicates all sessions must be loaded. */
40 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_session_name(
41 struct lttng_load_session_attr
*attr
);
43 * Return input URL. A NULL value indicates the default session
44 * configuration location. The URL format used is documented in lttng-create(1).
45 * NULL indicates that the default session configuration path is used.
47 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_input_url(
48 struct lttng_load_session_attr
*attr
);
51 * Return the configuration overwrite attribute. This attribute indicates
52 * whether or not the loaded session should be loaded even if a session with the
53 * same name already exists. If such a session exists, it is destroyed before
54 * the replacement is loaded.
56 LTTNG_EXPORT
extern int lttng_load_session_attr_get_overwrite(
57 struct lttng_load_session_attr
*attr
);
60 * Return the destination URL configuration override attribute. This attribute
61 * indicates a destination URL override to be applied during the loading of the
64 * NULL indicates no override will be applied on configuration load.
66 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_override_url(
67 struct lttng_load_session_attr
*attr
);
70 * Return the configuration override control URL attribute. This attribute
71 * indicates a control URL override to be applied during the loading of the
74 * NULL indicates no control URL override will be applied on configuration load.
76 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_override_ctrl_url(
77 struct lttng_load_session_attr
*attr
);
80 * Return the configuration override data URL attribute. This attribute
81 * indicates a data URL override to be applied during the loading of the
84 * NULL indicates no data URL override will be applied on configuration load.
86 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_override_data_url(
87 struct lttng_load_session_attr
*attr
);
90 * Return the configuration override session name attribute.
91 * This attribute indicates a session name override to be applied during
92 * the loading of the configuration(s).
94 * NULL indicates no session name override will be applied on configuration
97 LTTNG_EXPORT
extern const char *lttng_load_session_attr_get_override_session_name(
98 struct lttng_load_session_attr
*attr
);
101 * Load session attribute setter family of functions.
103 * For every set* call, 0 is returned on success or else -LTTNG_ERR_INVALID is
104 * returned indicating that at least one given parameter is invalid.
108 * Set the name of the session to load. A NULL name means all sessions
109 * found at the input URL will be loaded.
111 LTTNG_EXPORT
extern int lttng_load_session_attr_set_session_name(
112 struct lttng_load_session_attr
*attr
, const char *session_name
);
115 * Set the URL of the session configuration to load. A NULL value indicates the
116 * use of the default session configuration location.
118 * Note that file:// is the only supported URL format.
120 LTTNG_EXPORT
extern int lttng_load_session_attr_set_input_url(
121 struct lttng_load_session_attr
*attr
, const char *url
);
124 * Set the overwrite attribute. If set to true, current sessions matching the
125 * loaded sessions will be destroyed and be replaced by the session(s) being
128 LTTNG_EXPORT
extern int lttng_load_session_attr_set_overwrite(
129 struct lttng_load_session_attr
*attr
, int overwrite
);
132 * The following setter are for overriding sessions attributes during the
133 * loading of a configuration files. Those attributes prevail upon those
134 * specified in the loaded configuration file.
138 * Set the url override attribute.
142 * NETPROTO://(HOST | IPADDR)[:CTRLPORT[:DATAPORT]][/TRACEPATH]
144 * Where NETPROTO is one of {tcp, tcp6}
146 * See lttng-create(1) for more detail.
148 LTTNG_EXPORT
extern int lttng_load_session_attr_set_override_url(
149 struct lttng_load_session_attr
*attr
, const char *url
);
152 * Set the control url override attribute.
155 * NETPROTO://(HOST | IPADDR)[:PORT][/TRACEPATH]
157 * Where NETPROTO is one of {tcp, tcp6}
159 * See lttng-create(1) for more detail.
161 LTTNG_EXPORT
extern int lttng_load_session_attr_set_override_ctrl_url(
162 struct lttng_load_session_attr
*attr
, const char *url
);
165 * Set the data url override attribute.
168 * NETPROTO://(HOST | IPADDR)[:PORT][/TRACEPATH]
170 * Where NETPROTO is one of {tcp, tcp6}
172 * See lttng-create(1) for more detail.
174 LTTNG_EXPORT
extern int lttng_load_session_attr_set_override_data_url(
175 struct lttng_load_session_attr
*attr
, const char *url
);
178 * Set the session name override attribute.
180 * Loading a configuration file defining multiple sessions will fail if a
181 * session name is provided.
183 LTTNG_EXPORT
extern int lttng_load_session_attr_set_override_session_name(
184 struct lttng_load_session_attr
*attr
, const char *session_name
);
187 * Load session configuration(s).
189 * The lttng_load_session_attr object must not be NULL. No ownership of the
190 * object is kept by the function; it must be released by the caller.
192 * Returns 0 on success or a negative LTTNG_ERR value on error.
194 LTTNG_EXPORT
extern int lttng_load_session(struct lttng_load_session_attr
*attr
);
200 #endif /* LTTNG_LOAD_H */
This page took 0.048556 seconds and 4 git commands to generate.