lib: add pre condition asserts to check current thread has no error
[babeltrace.git] / src / lib / trace-ir / packet.c
CommitLineData
f79cf0f0 1/*
e2f7325d 2 * Copyright 2016-2018 Philippe Proulx <pproulx@efficios.com>
f79cf0f0
PP
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
350ad6c1 23#define BT_LOG_TAG "LIB/PACKET"
c2d9d9cf 24#include "lib/logging.h"
8ea705f0 25
578e048b 26#include "lib/assert-pre.h"
3fadfbc0
MJ
27#include <babeltrace2/trace-ir/packet-const.h>
28#include <babeltrace2/trace-ir/packet.h>
3fadfbc0 29#include <babeltrace2/trace-ir/trace.h>
3fadfbc0
MJ
30#include <babeltrace2/trace-ir/stream-class.h>
31#include <babeltrace2/trace-ir/stream.h>
578e048b
MJ
32#include "lib/object.h"
33#include "common/assert.h"
be514b0c 34#include <inttypes.h>
c4f23e30 35#include <stdbool.h>
f79cf0f0 36
578e048b
MJ
37#include "field.h"
38#include "field-wrapper.h"
39#include "packet.h"
40#include "stream-class.h"
41#include "stream.h"
42#include "trace.h"
d24d5663 43#include "lib/func-status.h"
578e048b 44
094ff7c0 45struct bt_stream *bt_packet_borrow_stream(struct bt_packet *packet)
f79cf0f0 46{
bdb288b3 47 BT_ASSERT_PRE_DEV_NON_NULL(packet, "Packet");
094ff7c0 48 return packet->stream;
f79cf0f0
PP
49}
50
40f4ba76
PP
51const struct bt_stream *bt_packet_borrow_stream_const(
52 const struct bt_packet *packet)
e5be10ef 53{
40f4ba76 54 return bt_packet_borrow_stream((void *) packet);
e5be10ef
PP
55}
56
44c440bc 57struct bt_field *bt_packet_borrow_context_field(struct bt_packet *packet)
f79cf0f0 58{
bdb288b3 59 BT_ASSERT_PRE_DEV_NON_NULL(packet, "Packet");
44c440bc 60 return packet->context_field ? packet->context_field->field : NULL;
312c056a 61}
c5c82c6e 62
40f4ba76
PP
63const struct bt_field *bt_packet_borrow_context_field_const(
64 const struct bt_packet *packet)
e5be10ef 65{
40f4ba76 66 return bt_packet_borrow_context_field((void *) packet);
e5be10ef
PP
67}
68
312c056a 69BT_HIDDEN
40f4ba76 70void _bt_packet_set_is_frozen(const struct bt_packet *packet, bool is_frozen)
312c056a 71{
59e3c4db 72 if (!packet) {
312c056a 73 return;
c5c82c6e
PP
74 }
75
44c440bc
PP
76 BT_LIB_LOGD("Setting packet's frozen state: %![packet-]+a, "
77 "is-frozen=%d", packet, is_frozen);
312c056a 78
44c440bc
PP
79 if (packet->context_field) {
80 BT_LOGD_STR("Setting packet's context field's frozen state.");
81 bt_field_set_is_frozen(packet->context_field->field,
6c677fb5 82 is_frozen);
312c056a
PP
83 }
84
40f4ba76 85 ((struct bt_packet *) packet)->frozen = is_frozen;
f6ccaed9
PP
86}
87
312c056a 88static inline
44c440bc 89void reset_packet(struct bt_packet *packet)
f6ccaed9 90{
312c056a 91 BT_ASSERT(packet);
44c440bc 92 BT_LIB_LOGD("Resetting packet: %!+a", packet);
6c677fb5 93 bt_packet_set_is_frozen(packet, false);
312c056a 94
44c440bc
PP
95 if (packet->context_field) {
96 bt_field_set_is_frozen(packet->context_field->field, false);
97 bt_field_reset(packet->context_field->field);
312c056a 98 }
f79cf0f0
PP
99}
100
312c056a 101static
44c440bc 102void recycle_context_field(struct bt_field_wrapper *context_field,
312c056a 103 struct bt_stream_class *stream_class)
f79cf0f0 104{
312c056a
PP
105 BT_ASSERT(context_field);
106 BT_LIB_LOGD("Recycling packet context field: "
107 "addr=%p, %![sc-]+S, %![field-]+f", context_field,
108 stream_class, context_field->field);
109 bt_object_pool_recycle_object(&stream_class->packet_context_field_pool,
110 context_field);
f79cf0f0
PP
111}
112
113BT_HIDDEN
312c056a 114void bt_packet_recycle(struct bt_packet *packet)
f79cf0f0 115{
312c056a 116 struct bt_stream *stream;
f79cf0f0 117
312c056a
PP
118 BT_ASSERT(packet);
119 BT_LIB_LOGD("Recycling packet: %!+a", packet);
120
121 /*
122 * Those are the important ordered steps:
123 *
124 * 1. Reset the packet object (put any permanent reference it
125 * has, unfreeze it and its fields in developer mode, etc.),
126 * but do NOT put its stream's reference. This stream
127 * contains the pool to which we're about to recycle this
128 * packet object, so we must guarantee its existence thanks
129 * to this existing reference.
130 *
131 * 2. Move the stream reference to our `stream`
132 * variable so that we can set the packet's stream member
133 * to NULL before recycling it. We CANNOT do this after
65300d60 134 * we put the stream reference because this bt_object_put_ref()
312c056a
PP
135 * could destroy the stream, also destroying its
136 * packet pool, thus also destroying our packet object (this
137 * would result in an invalid write access).
138 *
139 * 3. Recycle the packet object.
140 *
141 * 4. Put our stream reference.
142 */
44c440bc 143 reset_packet(packet);
312c056a
PP
144 stream = packet->stream;
145 BT_ASSERT(stream);
146 packet->stream = NULL;
147 bt_object_pool_recycle_object(&stream->packet_pool, packet);
6871026b 148 bt_object_put_ref_no_null_check(&stream->base);
f79cf0f0
PP
149}
150
312c056a
PP
151BT_HIDDEN
152void bt_packet_destroy(struct bt_packet *packet)
f79cf0f0 153{
44c440bc 154 BT_LIB_LOGD("Destroying packet: %!+a", packet);
312c056a 155
44c440bc 156 if (packet->context_field) {
312c056a
PP
157 if (packet->stream) {
158 BT_LOGD_STR("Recycling packet's context field.");
44c440bc
PP
159 recycle_context_field(packet->context_field,
160 packet->stream->class);
312c056a 161 } else {
44c440bc 162 bt_field_wrapper_destroy(packet->context_field);
312c056a 163 }
238b7404
PP
164
165 packet->context_field = NULL;
312c056a
PP
166 }
167
d409daba 168 BT_LOGD_STR("Putting packet's stream.");
238b7404 169 BT_OBJECT_PUT_REF_AND_RESET(packet->stream);
f79cf0f0
PP
170 g_free(packet);
171}
172
312c056a
PP
173BT_HIDDEN
174struct bt_packet *bt_packet_new(struct bt_stream *stream)
f79cf0f0 175{
50842bdc 176 struct bt_packet *packet = NULL;
862ca4ed 177 struct bt_trace_class *trace_class = NULL;
f79cf0f0 178
312c056a 179 BT_ASSERT(stream);
44c440bc 180 BT_LIB_LOGD("Creating packet object: %![stream-]+s", stream);
50842bdc 181 packet = g_new0(struct bt_packet, 1);
f79cf0f0 182 if (!packet) {
870631a2
PP
183 BT_LIB_LOGE_APPEND_CAUSE(
184 "Failed to allocate one packet object.");
44c440bc 185 goto error;
f79cf0f0
PP
186 }
187
3fea54f6
PP
188 bt_object_init_shared(&packet->base,
189 (bt_object_release_func) bt_packet_recycle);
398454ed 190 packet->stream = stream;
6871026b 191 bt_object_get_ref_no_null_check(stream);
862ca4ed
PP
192 trace_class = bt_stream_class_borrow_trace_class_inline(stream->class);
193 BT_ASSERT(trace_class);
be514b0c 194
5cd6d0e5 195 if (stream->class->packet_context_fc) {
44c440bc
PP
196 BT_LOGD_STR("Creating initial packet context field.");
197 packet->context_field = bt_field_wrapper_create(
198 &stream->class->packet_context_field_pool,
5cd6d0e5 199 stream->class->packet_context_fc);
44c440bc 200 if (!packet->context_field) {
870631a2
PP
201 BT_LIB_LOGE_APPEND_CAUSE(
202 "Cannot create packet context field wrapper.");
44c440bc 203 goto error;
be514b0c 204 }
f79cf0f0
PP
205 }
206
44c440bc
PP
207 BT_LIB_LOGD("Created packet object: %!+a", packet);
208 goto end;
ccf82993 209
44c440bc 210error:
65300d60 211 BT_OBJECT_PUT_REF_AND_RESET(packet);
ccf82993
PP
212
213end:
44c440bc 214 return packet;
ccf82993
PP
215}
216
58085ca4 217struct bt_packet *bt_packet_create(const struct bt_stream *c_stream)
312c056a
PP
218{
219 struct bt_packet *packet = NULL;
58085ca4 220 struct bt_stream *stream = (void *) c_stream;
312c056a 221
17f3083a 222 BT_ASSERT_PRE_NO_ERROR();
312c056a 223 BT_ASSERT_PRE_NON_NULL(stream, "Stream");
26fc5aed
PP
224 BT_ASSERT_PRE(stream->class->supports_packets,
225 "Stream class does not support packets: %![sc-]+S",
226 stream->class);
312c056a 227 packet = bt_object_pool_create_object(&stream->packet_pool);
91d81473 228 if (G_UNLIKELY(!packet)) {
870631a2
PP
229 BT_LIB_LOGE_APPEND_CAUSE(
230 "Cannot allocate one packet from stream's packet pool: "
312c056a 231 "%![stream-]+s", stream);
6c677fb5 232 goto end;
312c056a
PP
233 }
234
91d81473 235 if (G_LIKELY(!packet->stream)) {
6c677fb5 236 packet->stream = stream;
6871026b 237 bt_object_get_ref_no_null_check_no_parent_check(
cb6f1f7d 238 &packet->stream->base);
312c056a
PP
239 }
240
312c056a 241end:
e5be10ef 242 return (void *) packet;
312c056a
PP
243}
244
d24d5663
PP
245enum bt_packet_move_context_field_status bt_packet_move_context_field(
246 struct bt_packet *packet,
40f4ba76 247 struct bt_packet_context_field *context_field)
312c056a
PP
248{
249 struct bt_stream_class *stream_class;
250 struct bt_field_wrapper *field_wrapper = (void *) context_field;
251
17f3083a 252 BT_ASSERT_PRE_DEV_NO_ERROR();
bdb288b3
PP
253 BT_ASSERT_PRE_DEV_NON_NULL(packet, "Packet");
254 BT_ASSERT_PRE_DEV_NON_NULL(field_wrapper, "Context field");
255 BT_ASSERT_PRE_DEV_HOT(packet, "Packet", ": %!+a", packet);
44c440bc 256 stream_class = packet->stream->class;
bdb288b3 257 BT_ASSERT_PRE_DEV(stream_class->packet_context_fc,
e6276565 258 "Stream class has no packet context field class: %!+S",
312c056a 259 stream_class);
bdb288b3 260 BT_ASSERT_PRE_DEV(field_wrapper->field->class ==
5cd6d0e5 261 stream_class->packet_context_fc,
83ebb7f1 262 "Unexpected packet context field's class: "
5cd6d0e5
PP
263 "%![fc-]+F, %![expected-fc-]+F", field_wrapper->field->class,
264 stream_class->packet_context_fc);
312c056a
PP
265
266 /* Recycle current context field: always exists */
44c440bc
PP
267 BT_ASSERT(packet->context_field);
268 recycle_context_field(packet->context_field, stream_class);
312c056a
PP
269
270 /* Move new field */
44c440bc 271 packet->context_field = field_wrapper;
d24d5663 272 return BT_FUNC_STATUS_OK;
312c056a 273}
e22b45d0 274
c5b9b441
PP
275void bt_packet_get_ref(const struct bt_packet *packet)
276{
277 bt_object_get_ref(packet);
278}
279
280void bt_packet_put_ref(const struct bt_packet *packet)
281{
282 bt_object_put_ref(packet);
283}
This page took 0.086354 seconds and 4 git commands to generate.