lib: add pre condition asserts to check current thread has no error
[babeltrace.git] / src / lib / trace-ir / event-class.c
1 /*
2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
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
24 #define BT_LOG_TAG "LIB/EVENT-CLASS"
25 #include "lib/logging.h"
26
27 #include "lib/assert-pre.h"
28 #include <babeltrace2/trace-ir/field-class.h>
29 #include <babeltrace2/trace-ir/event-class.h>
30 #include <babeltrace2/trace-ir/event-class-const.h>
31 #include <babeltrace2/trace-ir/stream-class.h>
32 #include "compat/compiler.h"
33 #include "compat/endian.h"
34 #include <babeltrace2/types.h>
35 #include "lib/value.h"
36 #include "common/assert.h"
37 #include <inttypes.h>
38 #include <stdbool.h>
39 #include <stdlib.h>
40
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"
51 #include "lib/func-status.h"
52
53 #define BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(_ec) \
54 BT_ASSERT_PRE_DEV_HOT(((const struct bt_event_class *) (_ec)), \
55 "Event class", ": %!+E", (_ec))
56
57 static
58 void destroy_event_class(struct bt_object *obj)
59 {
60 struct bt_event_class *event_class = (void *) obj;
61
62 BT_LIB_LOGD("Destroying event class: %!+E", event_class);
63 BT_OBJECT_PUT_REF_AND_RESET(event_class->user_attributes);
64
65 if (event_class->name.str) {
66 g_string_free(event_class->name.str, TRUE);
67 event_class->name.str = NULL;
68 }
69
70 if (event_class->emf_uri.str) {
71 g_string_free(event_class->emf_uri.str, TRUE);
72 event_class->emf_uri.str = NULL;
73 }
74
75 BT_LOGD_STR("Putting context field class.");
76 BT_OBJECT_PUT_REF_AND_RESET(event_class->specific_context_fc);
77 BT_LOGD_STR("Putting payload field class.");
78 BT_OBJECT_PUT_REF_AND_RESET(event_class->payload_fc);
79 bt_object_pool_finalize(&event_class->event_pool);
80 g_free(obj);
81 }
82
83 static
84 void free_event(struct bt_event *event,
85 struct bt_event_class *event_class)
86 {
87 bt_event_destroy(event);
88 }
89
90 static
91 bool event_class_id_is_unique(const struct bt_stream_class *stream_class,
92 uint64_t id)
93 {
94 uint64_t i;
95 bool is_unique = true;
96
97 for (i = 0; i < stream_class->event_classes->len; i++) {
98 const struct bt_event_class *ec =
99 stream_class->event_classes->pdata[i];
100
101 if (ec->id == id) {
102 is_unique = false;
103 goto end;
104 }
105 }
106
107 end:
108 return is_unique;
109 }
110
111 static
112 struct 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);
124 event_class = g_new0(struct bt_event_class, 1);
125 if (!event_class) {
126 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one event class.");
127 goto error;
128 }
129
130 bt_object_init_shared_with_parent(&event_class->base,
131 destroy_event_class);
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
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) {
144 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
145 goto error;
146 }
147
148 event_class->emf_uri.str = g_string_new(NULL);
149 if (!event_class->emf_uri.str) {
150 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
151 goto error;
152 }
153
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) {
159 BT_LIB_LOGE_APPEND_CAUSE(
160 "Failed to initialize event pool: ret=%d",
161 ret);
162 goto error;
163 }
164
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);
169 goto end;
170
171 error:
172 BT_OBJECT_PUT_REF_AND_RESET(event_class);
173
174 end:
175 return event_class;
176 }
177
178 struct bt_event_class *bt_event_class_create(
179 struct bt_stream_class *stream_class)
180 {
181 BT_ASSERT_PRE_NO_ERROR();
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);
186 return create_event_class_with_id(stream_class,
187 (uint64_t) stream_class->event_classes->len);
188 }
189
190 struct bt_event_class *bt_event_class_create_with_id(
191 struct bt_stream_class *stream_class, uint64_t id)
192 {
193 BT_ASSERT_PRE_NO_ERROR();
194 BT_ASSERT_PRE(!stream_class->assigns_automatic_event_class_id,
195 "Stream class automatically assigns event class IDs: "
196 "%![sc-]+S", stream_class);
197 return create_event_class_with_id(stream_class, id);
198 }
199
200 const char *bt_event_class_get_name(const struct bt_event_class *event_class)
201 {
202 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
203 return event_class->name.value;
204 }
205
206 enum bt_event_class_set_name_status bt_event_class_set_name(
207 struct bt_event_class *event_class, const char *name)
208 {
209 BT_ASSERT_PRE_NO_ERROR();
210 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
211 BT_ASSERT_PRE_NON_NULL(name, "Name");
212 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
213 g_string_assign(event_class->name.str, name);
214 event_class->name.value = event_class->name.str->str;
215 BT_LIB_LOGD("Set event class's name: %!+E", event_class);
216 return BT_FUNC_STATUS_OK;
217 }
218
219 uint64_t bt_event_class_get_id(const struct bt_event_class *event_class)
220 {
221 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
222 return event_class->id;
223 }
224
225 enum bt_property_availability bt_event_class_get_log_level(
226 const struct bt_event_class *event_class,
227 enum bt_event_class_log_level *log_level)
228 {
229 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
230 BT_ASSERT_PRE_DEV_NON_NULL(log_level, "Log level (output)");
231 *log_level = (enum bt_event_class_log_level)
232 event_class->log_level.value;
233 return event_class->log_level.base.avail;
234 }
235
236 void bt_event_class_set_log_level(
237 struct bt_event_class *event_class,
238 enum bt_event_class_log_level log_level)
239 {
240 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
241 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
242 bt_property_uint_set(&event_class->log_level,
243 (uint64_t) log_level);
244 BT_LIB_LOGD("Set event class's log level: %!+E", event_class);
245 }
246
247 const char *bt_event_class_get_emf_uri(const struct bt_event_class *event_class)
248 {
249 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
250 return event_class->emf_uri.value;
251 }
252
253 enum bt_event_class_set_emf_uri_status bt_event_class_set_emf_uri(
254 struct bt_event_class *event_class,
255 const char *emf_uri)
256 {
257 BT_ASSERT_PRE_NO_ERROR();
258 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
259 BT_ASSERT_PRE_NON_NULL(emf_uri, "EMF URI");
260 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
261 g_string_assign(event_class->emf_uri.str, emf_uri);
262 event_class->emf_uri.value = event_class->emf_uri.str->str;
263 BT_LIB_LOGD("Set event class's EMF URI: %!+E", event_class);
264 return BT_FUNC_STATUS_OK;
265 }
266
267 struct bt_stream_class *bt_event_class_borrow_stream_class(
268 struct bt_event_class *event_class)
269 {
270 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
271 return bt_event_class_borrow_stream_class_inline(event_class);
272 }
273
274 const struct bt_stream_class *
275 bt_event_class_borrow_stream_class_const(
276 const struct bt_event_class *event_class)
277 {
278 return bt_event_class_borrow_stream_class((void *) event_class);
279 }
280
281 const struct bt_field_class *
282 bt_event_class_borrow_specific_context_field_class_const(
283 const struct bt_event_class *event_class)
284 {
285 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
286 return event_class->specific_context_fc;
287 }
288
289 struct bt_field_class *
290 bt_event_class_borrow_specific_context_field_class(
291 struct bt_event_class *event_class)
292 {
293 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
294 return event_class->specific_context_fc;
295 }
296
297 enum bt_event_class_set_field_class_status
298 bt_event_class_set_specific_context_field_class(
299 struct bt_event_class *event_class,
300 struct bt_field_class *field_class)
301 {
302 int ret;
303 struct bt_stream_class *stream_class;
304 struct bt_resolve_field_path_context resolve_ctx = {
305 .packet_context = NULL,
306 .event_common_context = NULL,
307 .event_specific_context = field_class,
308 .event_payload = NULL,
309 };
310
311 BT_ASSERT_PRE_NO_ERROR();
312 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
313 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
314 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
315 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
316 BT_FIELD_CLASS_TYPE_STRUCTURE,
317 "Specific context field class is not a structure field class: "
318 "%!+F", field_class);
319 stream_class = bt_event_class_borrow_stream_class_inline(
320 event_class);
321 resolve_ctx.packet_context = stream_class->packet_context_fc;
322 resolve_ctx.event_common_context =
323 stream_class->event_common_context_fc;
324
325 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
326 if (ret) {
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 */
332 ret = BT_FUNC_STATUS_MEMORY_ERROR;
333 goto end;
334 }
335
336 bt_field_class_make_part_of_trace_class(field_class);
337 bt_object_put_ref(event_class->specific_context_fc);
338 event_class->specific_context_fc = field_class;
339 bt_object_get_ref_no_null_check(event_class->specific_context_fc);
340 bt_field_class_freeze(field_class);
341 BT_LIB_LOGD("Set event class's specific context field class: %!+E",
342 event_class);
343
344 end:
345 return ret;
346 }
347
348 const struct bt_field_class *bt_event_class_borrow_payload_field_class_const(
349 const struct bt_event_class *event_class)
350 {
351 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
352 return event_class->payload_fc;
353 }
354
355 struct bt_field_class *bt_event_class_borrow_payload_field_class(
356 struct bt_event_class *event_class)
357 {
358 BT_ASSERT_PRE_DEV_NON_NULL(event_class, "Event class");
359 return event_class->payload_fc;
360 }
361
362 enum bt_event_class_set_field_class_status
363 bt_event_class_set_payload_field_class(
364 struct bt_event_class *event_class,
365 struct bt_field_class *field_class)
366 {
367 int ret;
368 struct bt_stream_class *stream_class;
369 struct bt_resolve_field_path_context resolve_ctx = {
370 .packet_context = NULL,
371 .event_common_context = NULL,
372 .event_specific_context = NULL,
373 .event_payload = field_class,
374 };
375
376 BT_ASSERT_PRE_NO_ERROR();
377 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
378 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
379 BT_ASSERT_PRE_DEV_EVENT_CLASS_HOT(event_class);
380 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
381 BT_FIELD_CLASS_TYPE_STRUCTURE,
382 "Payload field class is not a structure field class: %!+F",
383 field_class);
384 stream_class = bt_event_class_borrow_stream_class_inline(
385 event_class);
386 resolve_ctx.packet_context = stream_class->packet_context_fc;
387 resolve_ctx.event_common_context =
388 stream_class->event_common_context_fc;
389 resolve_ctx.event_specific_context = event_class->specific_context_fc;
390
391 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
392 if (ret) {
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 */
398 ret = BT_FUNC_STATUS_MEMORY_ERROR;
399 goto end;
400 }
401
402 bt_field_class_make_part_of_trace_class(field_class);
403 bt_object_put_ref(event_class->payload_fc);
404 event_class->payload_fc = field_class;
405 bt_object_get_ref_no_null_check(event_class->payload_fc);
406 bt_field_class_freeze(field_class);
407 BT_LIB_LOGD("Set event class's payload field class: %!+E", event_class);
408
409 end:
410 return ret;
411 }
412
413 BT_HIDDEN
414 void _bt_event_class_freeze(const struct bt_event_class *event_class)
415 {
416 /* The field classes are already frozen */
417 BT_ASSERT(event_class);
418 BT_LIB_LOGD("Freezing event class's user attributes: %!+v",
419 event_class->user_attributes);
420 bt_value_freeze(event_class->user_attributes);
421 BT_LIB_LOGD("Freezing event class: %!+E", event_class);
422 ((struct bt_event_class *) event_class)->frozen = true;
423 }
424
425 const 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
432 struct 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
439 void 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);
448 bt_object_put_ref_no_null_check(event_class->user_attributes);
449 event_class->user_attributes = (void *) user_attributes;
450 bt_object_get_ref_no_null_check(event_class->user_attributes);
451 }
452
453 void bt_event_class_get_ref(const struct bt_event_class *event_class)
454 {
455 bt_object_get_ref(event_class);
456 }
457
458 void 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.039494 seconds and 4 git commands to generate.