Logging: standardize logging tags
[babeltrace.git] / src / lib / trace-ir / event-class.c
CommitLineData
272df73e 1/*
e2f7325d 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
350ad6c1 24#define BT_LOG_TAG "LIB/EVENT-CLASS"
578e048b 25#include "lib/lib-logging.h"
f8b979f9 26
578e048b 27#include "lib/assert-pre.h"
3fadfbc0 28#include <babeltrace2/trace-ir/field-class.h>
3fadfbc0
MJ
29#include <babeltrace2/trace-ir/event-class.h>
30#include <babeltrace2/trace-ir/event-class-const.h>
3fadfbc0 31#include <babeltrace2/trace-ir/stream-class.h>
578e048b
MJ
32#include "compat/compiler.h"
33#include "compat/endian.h"
3fadfbc0 34#include <babeltrace2/types.h>
578e048b
MJ
35#include "lib/value.h"
36#include "common/assert.h"
dc3fffef 37#include <inttypes.h>
0fbb9a9f 38#include <stdlib.h>
272df73e 39
578e048b
MJ
40#include "attributes.h"
41#include "clock-snapshot.h"
42#include "event-class.h"
43#include "event.h"
44#include "field-class.h"
45#include "field.h"
46#include "resolve-field-path.h"
47#include "stream-class.h"
48#include "trace.h"
49#include "utils.h"
50
44c440bc 51#define BT_ASSERT_PRE_EVENT_CLASS_HOT(_ec) \
40f4ba76 52 BT_ASSERT_PRE_HOT(((const struct bt_event_class *) (_ec)), \
e5be10ef 53 "Event class", ": %!+E", (_ec))
44c440bc
PP
54
55static
56void destroy_event_class(struct bt_object *obj)
272df73e 57{
44c440bc 58 struct bt_event_class *event_class = (void *) obj;
272df73e 59
44c440bc 60 BT_LIB_LOGD("Destroying event class: %!+E", event_class);
f8b979f9 61
44c440bc
PP
62 if (event_class->name.str) {
63 g_string_free(event_class->name.str, TRUE);
238b7404 64 event_class->name.str = NULL;
cf76ce92
PP
65 }
66
44c440bc
PP
67 if (event_class->emf_uri.str) {
68 g_string_free(event_class->emf_uri.str, TRUE);
238b7404 69 event_class->emf_uri.str = NULL;
272df73e
PP
70 }
71
e6276565 72 BT_LOGD_STR("Putting context field class.");
238b7404 73 BT_OBJECT_PUT_REF_AND_RESET(event_class->specific_context_fc);
e6276565 74 BT_LOGD_STR("Putting payload field class.");
238b7404 75 BT_OBJECT_PUT_REF_AND_RESET(event_class->payload_fc);
312c056a 76 bt_object_pool_finalize(&event_class->event_pool);
3dca2276 77 g_free(obj);
272df73e
PP
78}
79
312c056a
PP
80static
81void free_event(struct bt_event *event,
82 struct bt_event_class *event_class)
83{
84 bt_event_destroy(event);
85}
86
44c440bc
PP
87BT_ASSERT_PRE_FUNC
88static
40f4ba76
PP
89bool event_class_id_is_unique(const struct bt_stream_class *stream_class,
90 uint64_t id)
272df73e 91{
44c440bc
PP
92 uint64_t i;
93 bool is_unique = true;
272df73e 94
44c440bc 95 for (i = 0; i < stream_class->event_classes->len; i++) {
40f4ba76 96 const struct bt_event_class *ec =
44c440bc
PP
97 stream_class->event_classes->pdata[i];
98
99 if (ec->id == id) {
100 is_unique = false;
101 goto end;
102 }
cf76ce92 103 }
272df73e 104
44c440bc
PP
105end:
106 return is_unique;
107}
108
109static
110struct bt_event_class *create_event_class_with_id(
111 struct bt_stream_class *stream_class, uint64_t id)
112{
113 int ret;
114 struct bt_event_class *event_class;
115
116 BT_ASSERT(stream_class);
117 BT_ASSERT_PRE(event_class_id_is_unique(stream_class, id),
118 "Duplicate event class ID: %![sc-]+S, id=%" PRIu64,
119 stream_class, id);
120 BT_LIB_LOGD("Creating event class object: %![sc-]+S, id=%" PRIu64,
121 stream_class, id);
3dca2276 122 event_class = g_new0(struct bt_event_class, 1);
272df73e 123 if (!event_class) {
3dca2276
PP
124 BT_LOGE_STR("Failed to allocate one event class.");
125 goto error;
272df73e
PP
126 }
127
44c440bc
PP
128 bt_object_init_shared_with_parent(&event_class->base,
129 destroy_event_class);
130 event_class->id = id;
131 bt_property_uint_init(&event_class->log_level,
132 BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE, 0);
133 event_class->name.str = g_string_new(NULL);
134 if (!event_class->name.str) {
135 BT_LOGE_STR("Failed to allocate a GString.");
136 ret = -1;
137 goto end;
138 }
139
140 event_class->emf_uri.str = g_string_new(NULL);
141 if (!event_class->emf_uri.str) {
142 BT_LOGE_STR("Failed to allocate a GString.");
143 ret = -1;
144 goto end;
272df73e
PP
145 }
146
312c056a
PP
147 ret = bt_object_pool_initialize(&event_class->event_pool,
148 (bt_object_pool_new_object_func) bt_event_new,
149 (bt_object_pool_destroy_object_func) free_event,
150 event_class);
151 if (ret) {
152 BT_LOGE("Failed to initialize event pool: ret=%d",
153 ret);
154 goto error;
155 }
156
44c440bc
PP
157 bt_object_set_parent(&event_class->base, &stream_class->base);
158 g_ptr_array_add(stream_class->event_classes, event_class);
159 bt_stream_class_freeze(stream_class);
160 BT_LIB_LOGD("Created event class object: %!+E", event_class);
3dca2276 161 goto end;
272df73e 162
3dca2276 163error:
65300d60 164 BT_OBJECT_PUT_REF_AND_RESET(event_class);
272df73e
PP
165
166end:
3dca2276 167 return event_class;
272df73e
PP
168}
169
40f4ba76
PP
170struct bt_event_class *bt_event_class_create(
171 struct bt_stream_class *stream_class)
44c440bc
PP
172{
173 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
174 BT_ASSERT_PRE(stream_class->assigns_automatic_event_class_id,
175 "Stream class does not automatically assigns event class IDs: "
176 "%![sc-]+S", stream_class);
40f4ba76 177 return create_event_class_with_id(stream_class,
44c440bc
PP
178 (uint64_t) stream_class->event_classes->len);
179}
180
40f4ba76
PP
181struct bt_event_class *bt_event_class_create_with_id(
182 struct bt_stream_class *stream_class, uint64_t id)
44c440bc
PP
183{
184 BT_ASSERT_PRE(!stream_class->assigns_automatic_event_class_id,
185 "Stream class automatically assigns event class IDs: "
186 "%![sc-]+S", stream_class);
40f4ba76 187 return create_event_class_with_id(stream_class, id);
44c440bc
PP
188}
189
40f4ba76 190const char *bt_event_class_get_name(const struct bt_event_class *event_class)
272df73e 191{
cb6f1f7d 192 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
44c440bc 193 return event_class->name.value;
272df73e
PP
194}
195
d08300f5
PP
196enum bt_event_class_status bt_event_class_set_name(
197 struct bt_event_class *event_class, const char *name)
272df73e 198{
cb6f1f7d 199 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
44c440bc
PP
200 BT_ASSERT_PRE_NON_NULL(name, "Name");
201 BT_ASSERT_PRE_EVENT_CLASS_HOT(event_class);
202 g_string_assign(event_class->name.str, name);
203 event_class->name.value = event_class->name.str->str;
3f7d4d90 204 BT_LIB_LOGD("Set event class's name: %!+E", event_class);
d08300f5 205 return BT_EVENT_CLASS_STATUS_OK;
272df73e
PP
206}
207
40f4ba76 208uint64_t bt_event_class_get_id(const struct bt_event_class *event_class)
272df73e 209{
44c440bc
PP
210 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
211 return event_class->id;
272df73e
PP
212}
213
44c440bc 214enum bt_property_availability bt_event_class_get_log_level(
40f4ba76 215 const struct bt_event_class *event_class,
44c440bc 216 enum bt_event_class_log_level *log_level)
272df73e 217{
cb6f1f7d 218 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
44c440bc
PP
219 BT_ASSERT_PRE_NON_NULL(log_level, "Log level (output)");
220 *log_level = (enum bt_event_class_log_level)
221 event_class->log_level.value;
222 return event_class->log_level.base.avail;
272df73e
PP
223}
224
40f4ba76
PP
225void bt_event_class_set_log_level(
226 struct bt_event_class *event_class,
3dca2276 227 enum bt_event_class_log_level log_level)
272df73e 228{
44c440bc
PP
229 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
230 BT_ASSERT_PRE_EVENT_CLASS_HOT(event_class);
231 bt_property_uint_set(&event_class->log_level,
232 (uint64_t) log_level);
3f7d4d90 233 BT_LIB_LOGD("Set event class's log level: %!+E", event_class);
272df73e
PP
234}
235
40f4ba76 236const char *bt_event_class_get_emf_uri(const struct bt_event_class *event_class)
272df73e 237{
cb6f1f7d 238 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
44c440bc 239 return event_class->emf_uri.value;
272df73e
PP
240}
241
d08300f5 242enum bt_event_class_status bt_event_class_set_emf_uri(
40f4ba76 243 struct bt_event_class *event_class,
3dca2276 244 const char *emf_uri)
272df73e 245{
44c440bc
PP
246 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
247 BT_ASSERT_PRE_NON_NULL(emf_uri, "EMF URI");
248 BT_ASSERT_PRE_EVENT_CLASS_HOT(event_class);
249 g_string_assign(event_class->emf_uri.str, emf_uri);
250 event_class->emf_uri.value = event_class->emf_uri.str->str;
3f7d4d90 251 BT_LIB_LOGD("Set event class's EMF URI: %!+E", event_class);
d08300f5 252 return BT_EVENT_CLASS_STATUS_OK;
272df73e
PP
253}
254
094ff7c0 255struct bt_stream_class *bt_event_class_borrow_stream_class(
50842bdc 256 struct bt_event_class *event_class)
272df73e 257{
d975f66c 258 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
44c440bc 259 return bt_event_class_borrow_stream_class_inline(event_class);
272df73e
PP
260}
261
40f4ba76
PP
262const struct bt_stream_class *
263bt_event_class_borrow_stream_class_const(
264 const struct bt_event_class *event_class)
e5be10ef 265{
40f4ba76 266 return bt_event_class_borrow_stream_class((void *) event_class);
e5be10ef
PP
267}
268
40f4ba76
PP
269const struct bt_field_class *
270bt_event_class_borrow_specific_context_field_class_const(
271 const struct bt_event_class *event_class)
272df73e 272{
cb6f1f7d 273 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
5cd6d0e5 274 return event_class->specific_context_fc;
272df73e
PP
275}
276
740faaf4
PP
277struct bt_field_class *
278bt_event_class_borrow_specific_context_field_class(
279 struct bt_event_class *event_class)
280{
281 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
282 return event_class->specific_context_fc;
283}
284
d08300f5 285enum bt_event_class_status bt_event_class_set_specific_context_field_class(
40f4ba76
PP
286 struct bt_event_class *event_class,
287 struct bt_field_class *field_class)
272df73e 288{
44c440bc
PP
289 int ret;
290 struct bt_stream_class *stream_class;
44c440bc 291 struct bt_resolve_field_path_context resolve_ctx = {
44c440bc 292 .packet_context = NULL,
44c440bc 293 .event_common_context = NULL,
5cd6d0e5 294 .event_specific_context = field_class,
44c440bc
PP
295 .event_payload = NULL,
296 };
cb6f1f7d 297
44c440bc 298 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
5cd6d0e5 299 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
44c440bc 300 BT_ASSERT_PRE_EVENT_CLASS_HOT(event_class);
864cad70
PP
301 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
302 BT_FIELD_CLASS_TYPE_STRUCTURE,
e6276565 303 "Specific context field class is not a structure field class: "
5cd6d0e5 304 "%!+F", field_class);
44c440bc
PP
305 stream_class = bt_event_class_borrow_stream_class_inline(
306 event_class);
5cd6d0e5 307 resolve_ctx.packet_context = stream_class->packet_context_fc;
44c440bc 308 resolve_ctx.event_common_context =
5cd6d0e5 309 stream_class->event_common_context_fc;
44c440bc 310
5cd6d0e5 311 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
44c440bc 312 if (ret) {
d08300f5
PP
313 /*
314 * This is the only reason for which
315 * bt_resolve_field_paths() can fail: anything else
316 * would be because a precondition is not satisfied.
317 */
318 ret = BT_EVENT_CLASS_STATUS_NOMEM;
cb6f1f7d
PP
319 goto end;
320 }
321
862ca4ed 322 bt_field_class_make_part_of_trace_class(field_class);
65300d60 323 bt_object_put_ref(event_class->specific_context_fc);
398454ed
PP
324 event_class->specific_context_fc = field_class;
325 bt_object_get_no_null_check(event_class->specific_context_fc);
5cd6d0e5 326 bt_field_class_freeze(field_class);
3f7d4d90 327 BT_LIB_LOGD("Set event class's specific context field class: %!+E",
44c440bc 328 event_class);
cb6f1f7d 329
cb6f1f7d
PP
330end:
331 return ret;
272df73e
PP
332}
333
40f4ba76
PP
334const struct bt_field_class *bt_event_class_borrow_payload_field_class_const(
335 const struct bt_event_class *event_class)
272df73e 336{
cb6f1f7d 337 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
5cd6d0e5 338 return event_class->payload_fc;
272df73e
PP
339}
340
740faaf4
PP
341struct bt_field_class *bt_event_class_borrow_payload_field_class(
342 struct bt_event_class *event_class)
343{
344 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
345 return event_class->payload_fc;
346}
347
d08300f5 348enum bt_event_class_status bt_event_class_set_payload_field_class(
40f4ba76
PP
349 struct bt_event_class *event_class,
350 struct bt_field_class *field_class)
272df73e 351{
44c440bc
PP
352 int ret;
353 struct bt_stream_class *stream_class;
44c440bc 354 struct bt_resolve_field_path_context resolve_ctx = {
44c440bc 355 .packet_context = NULL,
44c440bc
PP
356 .event_common_context = NULL,
357 .event_specific_context = NULL,
5cd6d0e5 358 .event_payload = field_class,
44c440bc 359 };
cb6f1f7d 360
44c440bc 361 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
5cd6d0e5 362 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
44c440bc 363 BT_ASSERT_PRE_EVENT_CLASS_HOT(event_class);
864cad70
PP
364 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
365 BT_FIELD_CLASS_TYPE_STRUCTURE,
e6276565 366 "Payload field class is not a structure field class: %!+F",
5cd6d0e5 367 field_class);
44c440bc
PP
368 stream_class = bt_event_class_borrow_stream_class_inline(
369 event_class);
5cd6d0e5 370 resolve_ctx.packet_context = stream_class->packet_context_fc;
44c440bc 371 resolve_ctx.event_common_context =
5cd6d0e5
PP
372 stream_class->event_common_context_fc;
373 resolve_ctx.event_specific_context = event_class->specific_context_fc;
44c440bc 374
5cd6d0e5 375 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
44c440bc 376 if (ret) {
d08300f5
PP
377 /*
378 * This is the only reason for which
379 * bt_resolve_field_paths() can fail: anything else
380 * would be because a precondition is not satisfied.
381 */
382 ret = BT_EVENT_CLASS_STATUS_NOMEM;
cb6f1f7d
PP
383 goto end;
384 }
385
862ca4ed 386 bt_field_class_make_part_of_trace_class(field_class);
65300d60 387 bt_object_put_ref(event_class->payload_fc);
398454ed
PP
388 event_class->payload_fc = field_class;
389 bt_object_get_no_null_check(event_class->payload_fc);
5cd6d0e5 390 bt_field_class_freeze(field_class);
3f7d4d90 391 BT_LIB_LOGD("Set event class's payload field class: %!+E", event_class);
cb6f1f7d
PP
392
393end:
394 return ret;
272df73e
PP
395}
396
397BT_HIDDEN
40f4ba76 398void _bt_event_class_freeze(const struct bt_event_class *event_class)
2a3ced3c 399{
5cd6d0e5 400 /* The field classes are already frozen */
f6ccaed9 401 BT_ASSERT(event_class);
44c440bc 402 BT_LIB_LOGD("Freezing event class: %!+E", event_class);
40f4ba76 403 ((struct bt_event_class *) event_class)->frozen = true;
2a3ced3c 404}
c5b9b441
PP
405
406void bt_event_class_get_ref(const struct bt_event_class *event_class)
407{
408 bt_object_get_ref(event_class);
409}
410
411void bt_event_class_put_ref(const struct bt_event_class *event_class)
412{
413 bt_object_put_ref(event_class);
414}
This page took 0.087022 seconds and 4 git commands to generate.