lib: remove clock class priority map, use default clock value
[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
PP
108
109/**
110@name Creation and parent access functions
111@{
112*/
f79cf0f0 113
f5efa812
PP
114/**
115@brief Creates a default CTF IR packet with \p stream as its parent
116 CTF IR stream.
117
118On success, the packet object's trace packet header and stream packet
119context fields are not set. You can set them with resp.
50842bdc 120bt_packet_set_header() and bt_packet_set_context().
f5efa812
PP
121
122@param[in] stream Parent CTF IR stream of the packet to create.
123@returns Created packet, or \c NULL on error.
124
125@prenotnull{stream}
126@postsuccessrefcountret1
127*/
312c056a 128extern struct bt_packet *bt_packet_create(struct bt_stream *stream);
f79cf0f0 129
312c056a 130extern struct bt_stream *bt_packet_borrow_stream(struct bt_packet *packet);
094ff7c0 131
f5efa812
PP
132/**
133@brief Returns the parent CTF IR stream of the CTF IR packet \p packet.
134
135This function returns a reference to the stream which was used to create
50842bdc 136the packet object in the first place with bt_packet_create().
f5efa812
PP
137
138@param[in] packet Packet of which to get the parent stream.
139@returns Parent stream of \p packet, or \c NULL on error.
140
141@prenotnull{packet}
c2f29fb9 142@postrefcountsame{packet}
f5efa812
PP
143@postsuccessrefcountretinc
144*/
094ff7c0
PP
145static inline
146struct bt_stream *bt_packet_get_stream(
147 struct bt_packet *packet)
148{
149 return bt_get(bt_packet_borrow_stream(packet));
150}
f79cf0f0 151
f5efa812
PP
152/** @} */
153
154/**
155@name Contained fields functions
156@{
157*/
158
094ff7c0
PP
159extern
160struct bt_field *bt_packet_borrow_header(struct bt_packet *packet);
161
312c056a
PP
162extern
163int bt_packet_move_header(struct bt_packet *packet,
164 struct bt_packet_header_field *header);
f5efa812 165
312c056a
PP
166extern
167struct bt_field *bt_packet_borrow_context(struct bt_packet *packet);
f5efa812 168
312c056a
PP
169extern
170int bt_packet_move_context(struct bt_packet *packet,
171 struct bt_packet_context_field *context);
f79cf0f0 172
f5efa812
PP
173/** @} */
174
e22b45d0
PP
175extern int bt_packet_set_beginning_clock_value(struct bt_packet *packet,
176 struct bt_clock_class *clock_class, uint64_t raw_value,
177 bt_bool is_default);
178
179extern struct bt_clock_value *bt_packet_borrow_default_beginning_clock_value(
180 struct bt_packet *packet);
181
182extern int bt_packet_set_end_clock_value(struct bt_packet *packet,
183 struct bt_clock_class *clock_class, uint64_t raw_value,
184 bt_bool is_default);
185
186extern struct bt_clock_value *bt_packet_borrow_default_end_clock_value(
187 struct bt_packet *packet);
188
a0491f93
PP
189/** @} */
190
f79cf0f0
PP
191#ifdef __cplusplus
192}
193#endif
194
195#endif /* BABELTRACE_CTF_IR_PACKET_H */
This page took 0.047171 seconds and 4 git commands to generate.