2 * Copyright (C) 2017 - 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
18 #ifndef LTTNG_LOCATION_INTERNAL_H
19 #define LTTNG_LOCATION_INTERNAL_H
21 #include <lttng/location.h>
22 #include <common/dynamic-buffer.h>
23 #include <common/buffer-view.h>
24 #include <common/macros.h>
25 #include <sys/types.h>
27 struct lttng_trace_archive_location
{
28 enum lttng_trace_archive_location_type type
;
35 enum lttng_trace_archive_location_relay_protocol_type protocol
;
37 uint16_t control
, data
;
44 struct lttng_trace_archive_location_comm
{
45 /* A value from enum lttng_trace_archive_location_type */
49 /* Includes the trailing \0. */
50 uint32_t absolute_path_len
;
53 /* Includes the trailing \0. */
54 uint32_t hostname_len
;
57 * enum lttng_trace_archive_location_relay_protocol_type.
61 uint16_t control
, data
;
63 /* Includes the trailing \0. */
64 uint32_t relative_path_len
;
68 * Payload is composed of:
69 * - LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL
70 * - absolute path, including \0
71 * - LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY
72 * - hostname, including \0
73 * - relative path, including \0
80 struct lttng_trace_archive_location
*lttng_trace_archive_location_local_create(
84 struct lttng_trace_archive_location
*lttng_trace_archive_location_relay_create(
86 enum lttng_trace_archive_location_relay_protocol_type protocol
,
87 uint16_t control_port
, uint16_t data_port
,
88 const char *relative_path
);
91 ssize_t
lttng_trace_archive_location_create_from_buffer(
92 const struct lttng_buffer_view
*buffer
,
93 struct lttng_trace_archive_location
**location
);
96 ssize_t
lttng_trace_archive_location_serialize(
97 const struct lttng_trace_archive_location
*location
,
98 struct lttng_dynamic_buffer
*buffer
);
101 void lttng_trace_archive_location_destroy(
102 struct lttng_trace_archive_location
*location
);
104 #endif /* LTTNG_LOCATION_INTERNAL_H */