lib: bt_packet_create(): accept previous packet to set properties
[babeltrace.git] / include / babeltrace / ctf-ir / packet.h
CommitLineData
f79cf0f0
PP
1#ifndef BABELTRACE_CTF_IR_PACKET_H
2#define BABELTRACE_CTF_IR_PACKET_H
3
4/*
5 * BabelTrace - CTF IR: Stream packet
6 *
7 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * The Common Trace Format (CTF) Specification is available at
28 * http://www.efficios.com/ctf
29 */
30
e22b45d0
PP
31#include <stdint.h>
32
094ff7c0
PP
33/* For bt_get() */
34#include <babeltrace/ref.h>
35
e22b45d0
PP
36/* For bt_bool */
37#include <babeltrace/types.h>
f79cf0f0
PP
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
f5efa812
PP
43/**
44@defgroup ctfirpacket CTF IR packet
45@ingroup ctfir
46@brief CTF IR packet.
47
6dd2bd0c
PP
48@code
49#include <babeltrace/ctf-ir/packet.h>
50@endcode
51
f5efa812
PP
52A CTF IR <strong><em>packet</em></strong> is a container of packet
53fields, that is, of the <strong>trace packet header</strong> and
54<strong>stream packet context</strong> fields.
55
56As a reminder, here's the structure of a CTF packet:
57
58@imgpacketstructure
59
60You can create a CTF IR packet \em from a
50842bdc 61\link ctfirstream CTF IR stream\endlink with bt_packet_create(). The
f5efa812
PP
62stream you use to create a packet object becomes its parent.
63
64When you set the trace packet header and stream packet context fields of
50842bdc
PP
65a packet with resp. bt_packet_set_header() and
66bt_packet_set_context(), their field type \em must be equivalent to
67the field types returned by resp. bt_trace_get_packet_header_type()
68and bt_stream_class_get_packet_context_type() for its parent trace
f5efa812
PP
69class and stream class.
70
71You can attach a packet object to a \link ctfirevent CTF IR
50842bdc 72event\endlink object with bt_event_set_packet().
f5efa812
PP
73
74As with any Babeltrace object, CTF IR packet objects have
75<a href="https://en.wikipedia.org/wiki/Reference_counting">reference
76counts</a>. See \ref refs to learn more about the reference counting
77management of Babeltrace objects.
78
79bt_notification_event_create() \em freezes its event parameter on
80success, which in turns freezes the event's associated packet object.
81This is the only way that a CTF IR packet object can be frozen.
82You cannot modify a frozen packet: it is considered immutable,
83except for \link refs reference counting\endlink.
84
85@sa ctfirstream
86@sa ctfirstreamclass
87@sa ctfirtraceclass
88
89@file
90@brief CTF IR packet type and functions.
91@sa ctfirpacket
92
93@addtogroup ctfirpacket
94@{
95*/
96
97/**
50842bdc 98@struct bt_packet
f5efa812
PP
99@brief A CTF IR packet.
100@sa ctfirpacket
101*/
50842bdc 102struct bt_packet;
312c056a
PP
103struct bt_packet_header_field;
104struct bt_packet_context_field;
50842bdc 105struct bt_stream;
e22b45d0
PP
106struct bt_clock_value;
107struct bt_clock_class;
f5efa812 108
ccf82993
PP
109enum bt_packet_previous_packet_availability {
110 BT_PACKET_PREVIOUS_PACKET_AVAILABILITY_ERROR = -1,
111 BT_PACKET_PREVIOUS_PACKET_AVAILABILITY_AVAILABLE,
112 BT_PACKET_PREVIOUS_PACKET_AVAILABILITY_NOT_AVAILABLE,
113 BT_PACKET_PREVIOUS_PACKET_AVAILABILITY_NONE,
114};
115
116enum bt_packet_property_availability {
117 BT_PACKET_PROPERTY_AVAILABILITY_ERROR = -1,
118 BT_PACKET_PROPERTY_AVAILABILITY_AVAILABLE,
119 BT_PACKET_PROPERTY_AVAILABILITY_NOT_AVAILABLE,
120};
121
f5efa812
PP
122/**
123@name Creation and parent access functions
124@{
125*/
f79cf0f0 126
f5efa812
PP
127/**
128@brief Creates a default CTF IR packet with \p stream as its parent
129 CTF IR stream.
130
131On success, the packet object's trace packet header and stream packet
132context fields are not set. You can set them with resp.
50842bdc 133bt_packet_set_header() and bt_packet_set_context().
f5efa812
PP
134
135@param[in] stream Parent CTF IR stream of the packet to create.
136@returns Created packet, or \c NULL on error.
137
138@prenotnull{stream}
139@postsuccessrefcountret1
140*/
ccf82993
PP
141extern struct bt_packet *bt_packet_create(struct bt_stream *stream,
142 enum bt_packet_previous_packet_availability previous_packet_availability,
143 struct bt_packet *previous_packet);
f79cf0f0 144
312c056a 145extern struct bt_stream *bt_packet_borrow_stream(struct bt_packet *packet);
094ff7c0 146
f5efa812
PP
147/**
148@brief Returns the parent CTF IR stream of the CTF IR packet \p packet.
149
150This function returns a reference to the stream which was used to create
50842bdc 151the packet object in the first place with bt_packet_create().
f5efa812
PP
152
153@param[in] packet Packet of which to get the parent stream.
154@returns Parent stream of \p packet, or \c NULL on error.
155
156@prenotnull{packet}
c2f29fb9 157@postrefcountsame{packet}
f5efa812
PP
158@postsuccessrefcountretinc
159*/
094ff7c0
PP
160static inline
161struct bt_stream *bt_packet_get_stream(
162 struct bt_packet *packet)
163{
164 return bt_get(bt_packet_borrow_stream(packet));
165}
f79cf0f0 166
f5efa812
PP
167/** @} */
168
169/**
170@name Contained fields functions
171@{
172*/
173
094ff7c0
PP
174extern
175struct bt_field *bt_packet_borrow_header(struct bt_packet *packet);
176
312c056a
PP
177extern
178int bt_packet_move_header(struct bt_packet *packet,
179 struct bt_packet_header_field *header);
f5efa812 180
312c056a
PP
181extern
182struct bt_field *bt_packet_borrow_context(struct bt_packet *packet);
f5efa812 183
312c056a
PP
184extern
185int bt_packet_move_context(struct bt_packet *packet,
186 struct bt_packet_context_field *context);
f79cf0f0 187
f5efa812
PP
188/** @} */
189
ccf82993
PP
190extern
191enum bt_packet_property_availability
192bt_packet_borrow_default_beginning_clock_value(struct bt_packet *packet,
193 struct bt_clock_value **clock_value);
e22b45d0 194
ccf82993
PP
195extern
196enum bt_packet_property_availability
197bt_packet_borrow_default_end_clock_value(struct bt_packet *packet,
198 struct bt_clock_value **clock_value);
e22b45d0 199
ccf82993
PP
200extern
201enum bt_packet_previous_packet_availability
202bt_packet_get_previous_packet_availability(struct bt_packet *packet);
e22b45d0 203
ccf82993
PP
204extern
205enum bt_packet_property_availability
206bt_packet_borrow_previous_packet_default_end_clock_value(
207 struct bt_packet *packet, struct bt_clock_value **clock_value);
208
209extern
210enum bt_packet_property_availability bt_packet_get_discarded_event_counter(
211 struct bt_packet *packet, uint64_t *counter);
212
213extern
214enum bt_packet_property_availability bt_packet_get_sequence_number(
215 struct bt_packet *packet, uint64_t *sequence_number);
216
217extern
218enum bt_packet_property_availability bt_packet_get_discarded_event_count(
219 struct bt_packet *packet, uint64_t *count);
220
221extern
222enum bt_packet_property_availability bt_packet_get_discarded_packet_count(
223 struct bt_packet *packet, uint64_t *count);
e22b45d0 224
a0491f93
PP
225/** @} */
226
f79cf0f0
PP
227#ifdef __cplusplus
228}
229#endif
230
231#endif /* BABELTRACE_CTF_IR_PACKET_H */
This page took 0.047827 seconds and 4 git commands to generate.