lib: add pre condition asserts to check current thread has no error
[babeltrace.git] / src / lib / trace-ir / event-class.c
CommitLineData
272df73e 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
272df73e
PP
3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
272df73e
PP
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
b03487ab 24#define BT_LOG_TAG "LIB/EVENT-CLASS"
1633ef46 25#include "lib/logging.h"
f8b979f9 26
57952005 27#include "lib/assert-pre.h"
71c5da58 28#include <babeltrace2/trace-ir/field-class.h>
71c5da58
MJ
29#include <babeltrace2/trace-ir/event-class.h>
30#include <babeltrace2/trace-ir/event-class-const.h>
71c5da58 31#include <babeltrace2/trace-ir/stream-class.h>
57952005
MJ
32#include "compat/compiler.h"
33#include "compat/endian.h"
71c5da58 34#include <babeltrace2/types.h>
57952005
MJ
35#include "lib/value.h"
36#include "common/assert.h"
dc3fffef 37#include <inttypes.h>
969c1d8a 38#include <stdbool.h>
0fbb9a9f 39#include <stdlib.h>
272df73e 40
57952005
MJ
41#include "attributes.h"
42#include "clock-snapshot.h"
43#include "event-class.h"
44#include "event.h"
45#include "field-class.h"
46#include "field.h"
47#include "resolve-field-path.h"
48#include "stream-class.h"
49#include "trace.h"
50#include "utils.h"
fb25b9e3 51#include "lib/func-status.h"
57952005 52
fa6cfec3
PP
53#define BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(_ec) \
54 BT_ASSERT_PRE_DEV_HOT(((const struct bt_event_class *) (_ec)), \
9e550e5f 55 "Event class", ": %!+E", (_ec))
7b33a0e0
PP
56
57static
58void destroy_event_class(struct bt_object *obj)
272df73e 59{
7b33a0e0 60 struct bt_event_class *event_class = (void *) obj;
272df73e 61
7b33a0e0 62 BT_LIB_LOGD("Destroying event class: %!+E", event_class);
af90138b 63 BT_OBJECT_PUT_REF_AND_RESET(event_class->user_attributes);
f8b979f9 64
7b33a0e0
PP
65 if (event_class->name.str) {
66 g_string_free(event_class->name.str, TRUE);
1248f5ea 67 event_class->name.str = NULL;
9cf5d083
PP
68 }
69
7b33a0e0
PP
70 if (event_class->emf_uri.str) {
71 g_string_free(event_class->emf_uri.str, TRUE);
1248f5ea 72 event_class->emf_uri.str = NULL;
272df73e
PP
73 }
74
66fd07a5 75 BT_LOGD_STR("Putting context field class.");
1248f5ea 76 BT_OBJECT_PUT_REF_AND_RESET(event_class->specific_context_fc);
66fd07a5 77 BT_LOGD_STR("Putting payload field class.");
1248f5ea 78 BT_OBJECT_PUT_REF_AND_RESET(event_class->payload_fc);
a6918753 79 bt_object_pool_finalize(&event_class->event_pool);
8deee039 80 g_free(obj);
272df73e
PP
81}
82
a6918753
PP
83static
84void free_event(struct bt_event *event,
85 struct bt_event_class *event_class)
86{
87 bt_event_destroy(event);
88}
89
7b33a0e0 90static
78cf9df6
PP
91bool event_class_id_is_unique(const struct bt_stream_class *stream_class,
92 uint64_t id)
272df73e 93{
7b33a0e0
PP
94 uint64_t i;
95 bool is_unique = true;
272df73e 96
7b33a0e0 97 for (i = 0; i < stream_class->event_classes->len; i++) {
78cf9df6 98 const struct bt_event_class *ec =
7b33a0e0
PP
99 stream_class->event_classes->pdata[i];
100
101 if (ec->id == id) {
102 is_unique = false;
103 goto end;
104 }
9cf5d083 105 }
272df73e 106
7b33a0e0
PP
107end:
108 return is_unique;
109}
110
111static
112struct bt_event_class *create_event_class_with_id(
113 struct bt_stream_class *stream_class, uint64_t id)
114{
115 int ret;
116 struct bt_event_class *event_class;
117
118 BT_ASSERT(stream_class);
119 BT_ASSERT_PRE(event_class_id_is_unique(stream_class, id),
120 "Duplicate event class ID: %![sc-]+S, id=%" PRIu64,
121 stream_class, id);
122 BT_LIB_LOGD("Creating event class object: %![sc-]+S, id=%" PRIu64,
123 stream_class, id);
8deee039 124 event_class = g_new0(struct bt_event_class, 1);
272df73e 125 if (!event_class) {
a8f90e5d 126 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one event class.");
8deee039 127 goto error;
272df73e
PP
128 }
129
7b33a0e0
PP
130 bt_object_init_shared_with_parent(&event_class->base,
131 destroy_event_class);
af90138b
PP
132 event_class->user_attributes = bt_value_map_create();
133 if (!event_class->user_attributes) {
134 BT_LIB_LOGE_APPEND_CAUSE(
135 "Failed to create a map value object.");
136 goto error;
137 }
138
7b33a0e0
PP
139 event_class->id = id;
140 bt_property_uint_init(&event_class->log_level,
141 BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE, 0);
142 event_class->name.str = g_string_new(NULL);
143 if (!event_class->name.str) {
a8f90e5d 144 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
af90138b 145 goto error;
7b33a0e0
PP
146 }
147
148 event_class->emf_uri.str = g_string_new(NULL);
149 if (!event_class->emf_uri.str) {
a8f90e5d 150 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
af90138b 151 goto error;
272df73e
PP
152 }
153
a6918753
PP
154 ret = bt_object_pool_initialize(&event_class->event_pool,
155 (bt_object_pool_new_object_func) bt_event_new,
156 (bt_object_pool_destroy_object_func) free_event,
157 event_class);
158 if (ret) {
a8f90e5d
PP
159 BT_LIB_LOGE_APPEND_CAUSE(
160 "Failed to initialize event pool: ret=%d",
a6918753
PP
161 ret);
162 goto error;
163 }
164
7b33a0e0
PP
165 bt_object_set_parent(&event_class->base, &stream_class->base);
166 g_ptr_array_add(stream_class->event_classes, event_class);
167 bt_stream_class_freeze(stream_class);
168 BT_LIB_LOGD("Created event class object: %!+E", event_class);
8deee039 169 goto end;
272df73e 170
8deee039 171error:
8138bfe1 172 BT_OBJECT_PUT_REF_AND_RESET(event_class);
272df73e
PP
173
174end:
8deee039 175 return event_class;
272df73e
PP
176}
177
78cf9df6
PP
178struct bt_event_class *bt_event_class_create(
179 struct bt_stream_class *stream_class)
7b33a0e0 180{
7c7324d3 181 BT_ASSERT_PRE_NO_ERROR();
7b33a0e0
PP
182 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
183 BT_ASSERT_PRE(stream_class->assigns_automatic_event_class_id,
184 "Stream class does not automatically assigns event class IDs: "
185 "%![sc-]+S", stream_class);
78cf9df6 186 return create_event_class_with_id(stream_class,
7b33a0e0
PP
187 (uint64_t) stream_class->event_classes->len);
188}
189
78cf9df6
PP
190struct bt_event_class *bt_event_class_create_with_id(
191 struct bt_stream_class *stream_class, uint64_t id)
7b33a0e0 192{
7c7324d3 193 BT_ASSERT_PRE_NO_ERROR();
7b33a0e0
PP
194 BT_ASSERT_PRE(!stream_class->assigns_automatic_event_class_id,
195 "Stream class automatically assigns event class IDs: "
196 "%![sc-]+S", stream_class);
78cf9df6 197 return create_event_class_with_id(stream_class, id);
7b33a0e0
PP
198}
199
78cf9df6 200const char *bt_event_class_get_name(const struct bt_event_class *event_class)
272df73e 201{
fa6cfec3 202 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
7b33a0e0 203 return event_class->name.value;
272df73e
PP
204}
205
fb25b9e3 206enum bt_event_class_set_name_status bt_event_class_set_name(
4caa7d56 207 struct bt_event_class *event_class, const char *name)
272df73e 208{
7c7324d3 209 BT_ASSERT_PRE_NO_ERROR();
18acc6f8 210 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
7b33a0e0 211 BT_ASSERT_PRE_NON_NULL(name, "Name");
fa6cfec3 212 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
7b33a0e0
PP
213 g_string_assign(event_class->name.str, name);
214 event_class->name.value = event_class->name.str->str;
a684a357 215 BT_LIB_LOGD("Set event class's name: %!+E", event_class);
fb25b9e3 216 return BT_FUNC_STATUS_OK;
272df73e
PP
217}
218
78cf9df6 219uint64_t bt_event_class_get_id(const struct bt_event_class *event_class)
272df73e 220{
fa6cfec3 221 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
7b33a0e0 222 return event_class->id;
272df73e
PP
223}
224
7b33a0e0 225enum bt_property_availability bt_event_class_get_log_level(
78cf9df6 226 const struct bt_event_class *event_class,
7b33a0e0 227 enum bt_event_class_log_level *log_level)
272df73e 228{
fa6cfec3
PP
229 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
230 BT_ASSERT_PRE_DEV_NON_NULL(log_level, "Log level (output)");
7b33a0e0
PP
231 *log_level = (enum bt_event_class_log_level)
232 event_class->log_level.value;
233 return event_class->log_level.base.avail;
272df73e
PP
234}
235
78cf9df6
PP
236void bt_event_class_set_log_level(
237 struct bt_event_class *event_class,
8deee039 238 enum bt_event_class_log_level log_level)
272df73e 239{
7b33a0e0 240 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
fa6cfec3 241 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
7b33a0e0
PP
242 bt_property_uint_set(&event_class->log_level,
243 (uint64_t) log_level);
a684a357 244 BT_LIB_LOGD("Set event class's log level: %!+E", event_class);
272df73e
PP
245}
246
78cf9df6 247const char *bt_event_class_get_emf_uri(const struct bt_event_class *event_class)
272df73e 248{
fa6cfec3 249 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
7b33a0e0 250 return event_class->emf_uri.value;
272df73e
PP
251}
252
fb25b9e3 253enum bt_event_class_set_emf_uri_status bt_event_class_set_emf_uri(
78cf9df6 254 struct bt_event_class *event_class,
8deee039 255 const char *emf_uri)
272df73e 256{
7c7324d3 257 BT_ASSERT_PRE_NO_ERROR();
7b33a0e0
PP
258 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
259 BT_ASSERT_PRE_NON_NULL(emf_uri, "EMF URI");
fa6cfec3 260 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
7b33a0e0
PP
261 g_string_assign(event_class->emf_uri.str, emf_uri);
262 event_class->emf_uri.value = event_class->emf_uri.str->str;
a684a357 263 BT_LIB_LOGD("Set event class's EMF URI: %!+E", event_class);
fb25b9e3 264 return BT_FUNC_STATUS_OK;
272df73e
PP
265}
266
5fe68922 267struct bt_stream_class *bt_event_class_borrow_stream_class(
839d52a5 268 struct bt_event_class *event_class)
272df73e 269{
fa6cfec3 270 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
7b33a0e0 271 return bt_event_class_borrow_stream_class_inline(event_class);
272df73e
PP
272}
273
78cf9df6
PP
274const struct bt_stream_class *
275bt_event_class_borrow_stream_class_const(
276 const struct bt_event_class *event_class)
9e550e5f 277{
78cf9df6 278 return bt_event_class_borrow_stream_class((void *) event_class);
9e550e5f
PP
279}
280
78cf9df6
PP
281const struct bt_field_class *
282bt_event_class_borrow_specific_context_field_class_const(
283 const struct bt_event_class *event_class)
272df73e 284{
fa6cfec3 285 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
939190b3 286 return event_class->specific_context_fc;
272df73e
PP
287}
288
909d0a89
PP
289struct bt_field_class *
290bt_event_class_borrow_specific_context_field_class(
291 struct bt_event_class *event_class)
292{
fa6cfec3 293 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
909d0a89
PP
294 return event_class->specific_context_fc;
295}
296
fb25b9e3
PP
297enum bt_event_class_set_field_class_status
298bt_event_class_set_specific_context_field_class(
78cf9df6
PP
299 struct bt_event_class *event_class,
300 struct bt_field_class *field_class)
272df73e 301{
7b33a0e0
PP
302 int ret;
303 struct bt_stream_class *stream_class;
7b33a0e0 304 struct bt_resolve_field_path_context resolve_ctx = {
7b33a0e0 305 .packet_context = NULL,
7b33a0e0 306 .event_common_context = NULL,
939190b3 307 .event_specific_context = field_class,
7b33a0e0
PP
308 .event_payload = NULL,
309 };
18acc6f8 310
7c7324d3 311 BT_ASSERT_PRE_NO_ERROR();
7b33a0e0 312 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
939190b3 313 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
fa6cfec3 314 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
af0c18e3
PP
315 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
316 BT_FIELD_CLASS_TYPE_STRUCTURE,
66fd07a5 317 "Specific context field class is not a structure field class: "
939190b3 318 "%!+F", field_class);
7b33a0e0
PP
319 stream_class = bt_event_class_borrow_stream_class_inline(
320 event_class);
939190b3 321 resolve_ctx.packet_context = stream_class->packet_context_fc;
7b33a0e0 322 resolve_ctx.event_common_context =
939190b3 323 stream_class->event_common_context_fc;
7b33a0e0 324
939190b3 325 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
7b33a0e0 326 if (ret) {
4caa7d56
PP
327 /*
328 * This is the only reason for which
329 * bt_resolve_field_paths() can fail: anything else
330 * would be because a precondition is not satisfied.
331 */
fb25b9e3 332 ret = BT_FUNC_STATUS_MEMORY_ERROR;
18acc6f8
PP
333 goto end;
334 }
335
10b7a2e4 336 bt_field_class_make_part_of_trace_class(field_class);
8138bfe1 337 bt_object_put_ref(event_class->specific_context_fc);
4b70020d 338 event_class->specific_context_fc = field_class;
864aa43f 339 bt_object_get_ref_no_null_check(event_class->specific_context_fc);
939190b3 340 bt_field_class_freeze(field_class);
a684a357 341 BT_LIB_LOGD("Set event class's specific context field class: %!+E",
7b33a0e0 342 event_class);
18acc6f8 343
18acc6f8
PP
344end:
345 return ret;
272df73e
PP
346}
347
78cf9df6
PP
348const struct bt_field_class *bt_event_class_borrow_payload_field_class_const(
349 const struct bt_event_class *event_class)
272df73e 350{
fa6cfec3 351 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
939190b3 352 return event_class->payload_fc;
272df73e
PP
353}
354
909d0a89
PP
355struct bt_field_class *bt_event_class_borrow_payload_field_class(
356 struct bt_event_class *event_class)
357{
fa6cfec3 358 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
909d0a89
PP
359 return event_class->payload_fc;
360}
361
fb25b9e3
PP
362enum bt_event_class_set_field_class_status
363bt_event_class_set_payload_field_class(
78cf9df6
PP
364 struct bt_event_class *event_class,
365 struct bt_field_class *field_class)
272df73e 366{
7b33a0e0
PP
367 int ret;
368 struct bt_stream_class *stream_class;
7b33a0e0 369 struct bt_resolve_field_path_context resolve_ctx = {
7b33a0e0 370 .packet_context = NULL,
7b33a0e0
PP
371 .event_common_context = NULL,
372 .event_specific_context = NULL,
939190b3 373 .event_payload = field_class,
7b33a0e0 374 };
18acc6f8 375
7c7324d3 376 BT_ASSERT_PRE_NO_ERROR();
7b33a0e0 377 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
939190b3 378 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
fa6cfec3 379 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
af0c18e3
PP
380 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
381 BT_FIELD_CLASS_TYPE_STRUCTURE,
66fd07a5 382 "Payload field class is not a structure field class: %!+F",
939190b3 383 field_class);
7b33a0e0
PP
384 stream_class = bt_event_class_borrow_stream_class_inline(
385 event_class);
939190b3 386 resolve_ctx.packet_context = stream_class->packet_context_fc;
7b33a0e0 387 resolve_ctx.event_common_context =
939190b3
PP
388 stream_class->event_common_context_fc;
389 resolve_ctx.event_specific_context = event_class->specific_context_fc;
7b33a0e0 390
939190b3 391 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
7b33a0e0 392 if (ret) {
4caa7d56
PP
393 /*
394 * This is the only reason for which
395 * bt_resolve_field_paths() can fail: anything else
396 * would be because a precondition is not satisfied.
397 */
fb25b9e3 398 ret = BT_FUNC_STATUS_MEMORY_ERROR;
18acc6f8
PP
399 goto end;
400 }
401
10b7a2e4 402 bt_field_class_make_part_of_trace_class(field_class);
8138bfe1 403 bt_object_put_ref(event_class->payload_fc);
4b70020d 404 event_class->payload_fc = field_class;
864aa43f 405 bt_object_get_ref_no_null_check(event_class->payload_fc);
939190b3 406 bt_field_class_freeze(field_class);
a684a357 407 BT_LIB_LOGD("Set event class's payload field class: %!+E", event_class);
18acc6f8
PP
408
409end:
410 return ret;
272df73e
PP
411}
412
413BT_HIDDEN
78cf9df6 414void _bt_event_class_freeze(const struct bt_event_class *event_class)
8c4a29ba 415{
939190b3 416 /* The field classes are already frozen */
8b45963b 417 BT_ASSERT(event_class);
af90138b
PP
418 BT_LIB_LOGD("Freezing event class's user attributes: %!+v",
419 event_class->user_attributes);
420 bt_value_freeze(event_class->user_attributes);
7b33a0e0 421 BT_LIB_LOGD("Freezing event class: %!+E", event_class);
78cf9df6 422 ((struct bt_event_class *) event_class)->frozen = true;
8c4a29ba 423}
8c6884d9 424
af90138b
PP
425const struct bt_value *bt_event_class_borrow_user_attributes_const(
426 const struct bt_event_class *event_class)
427{
428 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
429 return event_class->user_attributes;
430}
431
432struct bt_value *bt_event_class_borrow_user_attributes(
433 struct bt_event_class *event_class)
434{
435 return (void *) bt_event_class_borrow_user_attributes_const(
436 (void *) event_class);
437}
438
439void bt_event_class_set_user_attributes(
440 struct bt_event_class *event_class,
441 const struct bt_value *user_attributes)
442{
443 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
444 BT_ASSERT_PRE_NON_NULL(user_attributes, "User attributes");
445 BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP,
446 "User attributes object is not a map value object.");
447 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
864aa43f 448 bt_object_put_ref_no_null_check(event_class->user_attributes);
af90138b 449 event_class->user_attributes = (void *) user_attributes;
864aa43f 450 bt_object_get_ref_no_null_check(event_class->user_attributes);
af90138b
PP
451}
452
8c6884d9
PP
453void bt_event_class_get_ref(const struct bt_event_class *event_class)
454{
455 bt_object_get_ref(event_class);
456}
457
458void bt_event_class_put_ref(const struct bt_event_class *event_class)
459{
460 bt_object_put_ref(event_class);
461}
This page took 0.096211 seconds and 4 git commands to generate.