lib: add structure FC member and variant FC option objects
[babeltrace.git] / plugins / ctf / common / metadata / ctf-meta-translate.c
CommitLineData
44c440bc
PP
1/*
2 * Copyright 2018 - Philippe Proulx <pproulx@efficios.com>
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
15#define BT_LOG_TAG "PLUGIN-CTF-METADATA-META-TRANSLATE"
16#include "logging.h"
17
18#include <babeltrace/babeltrace.h>
19#include <babeltrace/babeltrace-internal.h>
20#include <babeltrace/assert-internal.h>
21#include <glib.h>
22#include <stdint.h>
23#include <string.h>
24#include <inttypes.h>
25
26#include "ctf-meta-visitors.h"
27
83ebb7f1 28struct ctx {
7fcdb0a9 29 bt_self_component_source *self_comp;
83ebb7f1
PP
30 bt_trace_class *ir_tc;
31 bt_stream_class *ir_sc;
32 struct ctf_trace_class *tc;
33 struct ctf_stream_class *sc;
34 struct ctf_event_class *ec;
35 enum ctf_scope scope;
36};
37
44c440bc 38static inline
83ebb7f1
PP
39bt_field_class *ctf_field_class_to_ir(struct ctx *ctx,
40 struct ctf_field_class *fc);
44c440bc
PP
41
42static inline
5cd6d0e5 43void ctf_field_class_int_set_props(struct ctf_field_class_int *fc,
b19ff26f 44 bt_field_class *ir_fc)
44c440bc 45{
40f4ba76 46 bt_field_class_integer_set_field_value_range(ir_fc,
e5be10ef 47 fc->base.size);
40f4ba76 48 bt_field_class_integer_set_preferred_display_base(ir_fc,
5cd6d0e5 49 fc->disp_base);
44c440bc
PP
50}
51
52static inline
83ebb7f1 53bt_field_class *ctf_field_class_int_to_ir(struct ctx *ctx,
e5be10ef 54 struct ctf_field_class_int *fc)
44c440bc 55{
b19ff26f 56 bt_field_class *ir_fc;
44c440bc 57
5cd6d0e5 58 if (fc->is_signed) {
83ebb7f1 59 ir_fc = bt_field_class_signed_integer_create(ctx->ir_tc);
44c440bc 60 } else {
83ebb7f1 61 ir_fc = bt_field_class_unsigned_integer_create(ctx->ir_tc);
44c440bc
PP
62 }
63
5cd6d0e5
PP
64 BT_ASSERT(ir_fc);
65 ctf_field_class_int_set_props(fc, ir_fc);
66 return ir_fc;
44c440bc
PP
67}
68
69static inline
83ebb7f1 70bt_field_class *ctf_field_class_enum_to_ir(struct ctx *ctx,
e5be10ef 71 struct ctf_field_class_enum *fc)
44c440bc
PP
72{
73 int ret;
b19ff26f 74 bt_field_class *ir_fc;
44c440bc
PP
75 uint64_t i;
76
5cd6d0e5 77 if (fc->base.is_signed) {
83ebb7f1 78 ir_fc = bt_field_class_signed_enumeration_create(ctx->ir_tc);
44c440bc 79 } else {
83ebb7f1 80 ir_fc = bt_field_class_unsigned_enumeration_create(ctx->ir_tc);
44c440bc
PP
81 }
82
5cd6d0e5
PP
83 BT_ASSERT(ir_fc);
84 ctf_field_class_int_set_props((void *) fc, ir_fc);
44c440bc 85
5cd6d0e5
PP
86 for (i = 0; i < fc->mappings->len; i++) {
87 struct ctf_field_class_enum_mapping *mapping =
88 ctf_field_class_enum_borrow_mapping_by_index(fc, i);
44c440bc 89
5cd6d0e5 90 if (fc->base.is_signed) {
40f4ba76 91 ret = bt_field_class_signed_enumeration_map_range(
5cd6d0e5 92 ir_fc, mapping->label->str,
44c440bc
PP
93 mapping->range.lower.i, mapping->range.upper.i);
94 } else {
40f4ba76 95 ret = bt_field_class_unsigned_enumeration_map_range(
5cd6d0e5 96 ir_fc, mapping->label->str,
44c440bc
PP
97 mapping->range.lower.u, mapping->range.upper.u);
98 }
99
100 BT_ASSERT(ret == 0);
101 }
102
5cd6d0e5 103 return ir_fc;
44c440bc
PP
104}
105
106static inline
83ebb7f1 107bt_field_class *ctf_field_class_float_to_ir(struct ctx *ctx,
5cd6d0e5 108 struct ctf_field_class_float *fc)
44c440bc 109{
b19ff26f 110 bt_field_class *ir_fc;
44c440bc 111
83ebb7f1 112 ir_fc = bt_field_class_real_create(ctx->ir_tc);
5cd6d0e5 113 BT_ASSERT(ir_fc);
44c440bc 114
5cd6d0e5 115 if (fc->base.size == 32) {
40f4ba76 116 bt_field_class_real_set_is_single_precision(ir_fc,
44c440bc 117 BT_TRUE);
44c440bc
PP
118 }
119
5cd6d0e5 120 return ir_fc;
44c440bc
PP
121}
122
123static inline
83ebb7f1 124bt_field_class *ctf_field_class_string_to_ir(struct ctx *ctx,
5cd6d0e5 125 struct ctf_field_class_string *fc)
44c440bc 126{
83ebb7f1 127 bt_field_class *ir_fc = bt_field_class_string_create(ctx->ir_tc);
44c440bc 128
5cd6d0e5
PP
129 BT_ASSERT(ir_fc);
130 return ir_fc;
44c440bc
PP
131}
132
133static inline
83ebb7f1
PP
134void translate_struct_field_class_members(struct ctx *ctx,
135 struct ctf_field_class_struct *fc, bt_field_class *ir_fc,
136 bool with_header_prefix,
137 struct ctf_field_class_struct *context_fc)
44c440bc 138{
44c440bc 139 uint64_t i;
83ebb7f1 140 int ret;
44c440bc 141
5cd6d0e5
PP
142 for (i = 0; i < fc->members->len; i++) {
143 struct ctf_named_field_class *named_fc =
144 ctf_field_class_struct_borrow_member_by_index(fc, i);
b19ff26f 145 bt_field_class *member_ir_fc;
83ebb7f1 146 const char *name = named_fc->name->str;
44c440bc 147
5cd6d0e5 148 if (!named_fc->fc->in_ir) {
44c440bc
PP
149 continue;
150 }
151
83ebb7f1 152 member_ir_fc = ctf_field_class_to_ir(ctx, named_fc->fc);
5cd6d0e5 153 BT_ASSERT(member_ir_fc);
83ebb7f1
PP
154 ret = bt_field_class_structure_append_member(ir_fc, name,
155 member_ir_fc);
44c440bc 156 BT_ASSERT(ret == 0);
c5b9b441 157 bt_field_class_put_ref(member_ir_fc);
44c440bc 158 }
83ebb7f1 159}
44c440bc 160
83ebb7f1
PP
161static inline
162bt_field_class *ctf_field_class_struct_to_ir(struct ctx *ctx,
163 struct ctf_field_class_struct *fc)
164{
165 bt_field_class *ir_fc = bt_field_class_structure_create(ctx->ir_tc);
166
167 BT_ASSERT(ir_fc);
168 translate_struct_field_class_members(ctx, fc, ir_fc, false, NULL);
5cd6d0e5 169 return ir_fc;
44c440bc
PP
170}
171
172static inline
83ebb7f1
PP
173bt_field_class *borrow_ir_fc_from_field_path(struct ctx *ctx,
174 struct ctf_field_path *field_path)
44c440bc 175{
b19ff26f 176 bt_field_class *ir_fc = NULL;
5cd6d0e5 177 struct ctf_field_class *fc = ctf_field_path_borrow_field_class(
83ebb7f1 178 field_path, ctx->tc, ctx->sc, ctx->ec);
44c440bc 179
5cd6d0e5 180 BT_ASSERT(fc);
44c440bc 181
5cd6d0e5
PP
182 if (fc->in_ir) {
183 ir_fc = fc->ir_fc;
44c440bc
PP
184 }
185
5cd6d0e5 186 return ir_fc;
44c440bc
PP
187}
188
189static inline
83ebb7f1
PP
190bt_field_class *ctf_field_class_variant_to_ir(struct ctx *ctx,
191 struct ctf_field_class_variant *fc)
44c440bc
PP
192{
193 int ret;
83ebb7f1 194 bt_field_class *ir_fc = bt_field_class_variant_create(ctx->ir_tc);
44c440bc
PP
195 uint64_t i;
196
5cd6d0e5 197 BT_ASSERT(ir_fc);
83ebb7f1
PP
198
199 if (fc->tag_path.root != CTF_SCOPE_PACKET_HEADER &&
200 fc->tag_path.root != CTF_SCOPE_EVENT_HEADER) {
201 ret = bt_field_class_variant_set_selector_field_class(
202 ir_fc, borrow_ir_fc_from_field_path(ctx,
203 &fc->tag_path));
204 BT_ASSERT(ret == 0);
205 }
44c440bc 206
5cd6d0e5
PP
207 for (i = 0; i < fc->options->len; i++) {
208 struct ctf_named_field_class *named_fc =
209 ctf_field_class_variant_borrow_option_by_index(fc, i);
b19ff26f 210 bt_field_class *option_ir_fc;
44c440bc 211
5cd6d0e5 212 BT_ASSERT(named_fc->fc->in_ir);
83ebb7f1 213 option_ir_fc = ctf_field_class_to_ir(ctx, named_fc->fc);
5cd6d0e5 214 BT_ASSERT(option_ir_fc);
40f4ba76 215 ret = bt_field_class_variant_append_option(
e5be10ef 216 ir_fc, named_fc->name->str, option_ir_fc);
44c440bc 217 BT_ASSERT(ret == 0);
c5b9b441 218 bt_field_class_put_ref(option_ir_fc);
44c440bc
PP
219 }
220
5cd6d0e5 221 return ir_fc;
44c440bc
PP
222}
223
224static inline
83ebb7f1
PP
225bt_field_class *ctf_field_class_array_to_ir(struct ctx *ctx,
226 struct ctf_field_class_array *fc)
44c440bc 227{
b19ff26f
PP
228 bt_field_class *ir_fc;
229 bt_field_class *elem_ir_fc;
44c440bc 230
5cd6d0e5 231 if (fc->base.is_text) {
83ebb7f1 232 ir_fc = bt_field_class_string_create(ctx->ir_tc);
5cd6d0e5 233 BT_ASSERT(ir_fc);
44c440bc
PP
234 goto end;
235 }
236
83ebb7f1 237 elem_ir_fc = ctf_field_class_to_ir(ctx, fc->base.elem_fc);
5cd6d0e5 238 BT_ASSERT(elem_ir_fc);
83ebb7f1 239 ir_fc = bt_field_class_static_array_create(ctx->ir_tc, elem_ir_fc,
e5be10ef 240 fc->length);
5cd6d0e5 241 BT_ASSERT(ir_fc);
c5b9b441 242 bt_field_class_put_ref(elem_ir_fc);
44c440bc
PP
243
244end:
5cd6d0e5 245 return ir_fc;
44c440bc
PP
246}
247
248static inline
83ebb7f1
PP
249bt_field_class *ctf_field_class_sequence_to_ir(struct ctx *ctx,
250 struct ctf_field_class_sequence *fc)
44c440bc
PP
251{
252 int ret;
b19ff26f
PP
253 bt_field_class *ir_fc;
254 bt_field_class *elem_ir_fc;
44c440bc 255
5cd6d0e5 256 if (fc->base.is_text) {
83ebb7f1 257 ir_fc = bt_field_class_string_create(ctx->ir_tc);
5cd6d0e5 258 BT_ASSERT(ir_fc);
44c440bc
PP
259 goto end;
260 }
261
83ebb7f1 262 elem_ir_fc = ctf_field_class_to_ir(ctx, fc->base.elem_fc);
5cd6d0e5 263 BT_ASSERT(elem_ir_fc);
83ebb7f1 264 ir_fc = bt_field_class_dynamic_array_create(ctx->ir_tc, elem_ir_fc);
5cd6d0e5 265 BT_ASSERT(ir_fc);
c5b9b441 266 bt_field_class_put_ref(elem_ir_fc);
5cd6d0e5 267 BT_ASSERT(ir_fc);
83ebb7f1
PP
268
269 if (fc->length_path.root != CTF_SCOPE_PACKET_HEADER &&
270 fc->length_path.root != CTF_SCOPE_EVENT_HEADER) {
271 ret = bt_field_class_dynamic_array_set_length_field_class(
272 ir_fc, borrow_ir_fc_from_field_path(ctx, &fc->length_path));
273 BT_ASSERT(ret == 0);
274 }
44c440bc
PP
275
276end:
5cd6d0e5 277 return ir_fc;
44c440bc
PP
278}
279
280static inline
83ebb7f1
PP
281bt_field_class *ctf_field_class_to_ir(struct ctx *ctx,
282 struct ctf_field_class *fc)
44c440bc 283{
b19ff26f 284 bt_field_class *ir_fc = NULL;
44c440bc 285
5cd6d0e5
PP
286 BT_ASSERT(fc);
287 BT_ASSERT(fc->in_ir);
44c440bc 288
864cad70
PP
289 switch (fc->type) {
290 case CTF_FIELD_CLASS_TYPE_INT:
83ebb7f1 291 ir_fc = ctf_field_class_int_to_ir(ctx, (void *) fc);
44c440bc 292 break;
864cad70 293 case CTF_FIELD_CLASS_TYPE_ENUM:
83ebb7f1 294 ir_fc = ctf_field_class_enum_to_ir(ctx, (void *) fc);
44c440bc 295 break;
864cad70 296 case CTF_FIELD_CLASS_TYPE_FLOAT:
83ebb7f1 297 ir_fc = ctf_field_class_float_to_ir(ctx, (void *) fc);
44c440bc 298 break;
864cad70 299 case CTF_FIELD_CLASS_TYPE_STRING:
83ebb7f1 300 ir_fc = ctf_field_class_string_to_ir(ctx, (void *) fc);
44c440bc 301 break;
864cad70 302 case CTF_FIELD_CLASS_TYPE_STRUCT:
83ebb7f1 303 ir_fc = ctf_field_class_struct_to_ir(ctx, (void *) fc);
44c440bc 304 break;
864cad70 305 case CTF_FIELD_CLASS_TYPE_ARRAY:
83ebb7f1 306 ir_fc = ctf_field_class_array_to_ir(ctx, (void *) fc);
44c440bc 307 break;
864cad70 308 case CTF_FIELD_CLASS_TYPE_SEQUENCE:
83ebb7f1 309 ir_fc = ctf_field_class_sequence_to_ir(ctx, (void *) fc);
44c440bc 310 break;
864cad70 311 case CTF_FIELD_CLASS_TYPE_VARIANT:
83ebb7f1 312 ir_fc = ctf_field_class_variant_to_ir(ctx, (void *) fc);
44c440bc
PP
313 break;
314 default:
315 abort();
316 }
317
5cd6d0e5
PP
318 fc->ir_fc = ir_fc;
319 return ir_fc;
44c440bc
PP
320}
321
322static inline
5cd6d0e5
PP
323bool ctf_field_class_struct_has_immediate_member_in_ir(
324 struct ctf_field_class_struct *fc)
44c440bc
PP
325{
326 uint64_t i;
327 bool has_immediate_member_in_ir = false;
328
5cd6d0e5
PP
329 for (i = 0; i < fc->members->len; i++) {
330 struct ctf_named_field_class *named_fc =
331 ctf_field_class_struct_borrow_member_by_index(fc, i);
44c440bc 332
5cd6d0e5 333 if (named_fc->fc->in_ir) {
44c440bc
PP
334 has_immediate_member_in_ir = true;
335 goto end;
336 }
337 }
338
339end:
340 return has_immediate_member_in_ir;
341}
342
343static inline
83ebb7f1 344bt_field_class *scope_ctf_field_class_to_ir(struct ctx *ctx)
44c440bc 345{
b19ff26f 346 bt_field_class *ir_fc = NULL;
83ebb7f1 347 struct ctf_field_class *fc = NULL;
44c440bc 348
83ebb7f1
PP
349 switch (ctx->scope) {
350 case CTF_SCOPE_PACKET_CONTEXT:
351 fc = ctx->sc->packet_context_fc;
352 break;
353 case CTF_SCOPE_EVENT_COMMON_CONTEXT:
354 fc = ctx->sc->event_common_context_fc;
355 break;
356 case CTF_SCOPE_EVENT_SPECIFIC_CONTEXT:
357 fc = ctx->ec->spec_context_fc;
358 break;
359 case CTF_SCOPE_EVENT_PAYLOAD:
360 fc = ctx->ec->payload_fc;
361 break;
362 default:
363 abort();
44c440bc
PP
364 }
365
83ebb7f1
PP
366 if (fc && ctf_field_class_struct_has_immediate_member_in_ir(
367 (void *) fc)) {
368 ir_fc = ctf_field_class_to_ir(ctx, fc);
44c440bc
PP
369 }
370
5cd6d0e5 371 return ir_fc;
44c440bc
PP
372}
373
44c440bc 374static inline
83ebb7f1 375void ctf_event_class_to_ir(struct ctx *ctx)
44c440bc
PP
376{
377 int ret;
b19ff26f 378 bt_event_class *ir_ec = NULL;
83ebb7f1 379 bt_field_class *ir_fc;
44c440bc 380
83ebb7f1
PP
381 BT_ASSERT(ctx->ec);
382
383 if (ctx->ec->is_translated) {
40f4ba76 384 ir_ec = bt_stream_class_borrow_event_class_by_id(
83ebb7f1 385 ctx->ir_sc, ctx->ec->id);
44c440bc
PP
386 BT_ASSERT(ir_ec);
387 goto end;
388 }
389
83ebb7f1 390 ir_ec = bt_event_class_create_with_id(ctx->ir_sc, ctx->ec->id);
44c440bc 391 BT_ASSERT(ir_ec);
c5b9b441 392 bt_event_class_put_ref(ir_ec);
83ebb7f1
PP
393 ctx->scope = CTF_SCOPE_EVENT_SPECIFIC_CONTEXT;
394 ir_fc = scope_ctf_field_class_to_ir(ctx);
395 if (ir_fc) {
396 ret = bt_event_class_set_specific_context_field_class(
397 ir_ec, ir_fc);
398 BT_ASSERT(ret == 0);
399 bt_field_class_put_ref(ir_fc);
44c440bc
PP
400 }
401
83ebb7f1
PP
402 ctx->scope = CTF_SCOPE_EVENT_PAYLOAD;
403 ir_fc = scope_ctf_field_class_to_ir(ctx);
404 if (ir_fc) {
405 ret = bt_event_class_set_payload_field_class(ir_ec,
406 ir_fc);
407 BT_ASSERT(ret == 0);
408 bt_field_class_put_ref(ir_fc);
44c440bc
PP
409 }
410
83ebb7f1
PP
411 if (ctx->ec->name->len > 0) {
412 ret = bt_event_class_set_name(ir_ec, ctx->ec->name->str);
44c440bc
PP
413 BT_ASSERT(ret == 0);
414 }
415
83ebb7f1
PP
416 if (ctx->ec->emf_uri->len > 0) {
417 ret = bt_event_class_set_emf_uri(ir_ec, ctx->ec->emf_uri->str);
44c440bc
PP
418 BT_ASSERT(ret == 0);
419 }
420
83ebb7f1
PP
421 if (ctx->ec->log_level != -1) {
422 bt_event_class_set_log_level(ir_ec, ctx->ec->log_level);
44c440bc
PP
423 }
424
83ebb7f1
PP
425 ctx->ec->is_translated = true;
426 ctx->ec->ir_ec = ir_ec;
44c440bc
PP
427
428end:
83ebb7f1 429 return;
44c440bc
PP
430}
431
432
433static inline
83ebb7f1 434void ctf_stream_class_to_ir(struct ctx *ctx)
44c440bc
PP
435{
436 int ret;
83ebb7f1 437 bt_field_class *ir_fc;
44c440bc 438
83ebb7f1 439 BT_ASSERT(ctx->sc);
44c440bc 440
83ebb7f1
PP
441 if (ctx->sc->is_translated) {
442 ctx->ir_sc = bt_trace_class_borrow_stream_class_by_id(
443 ctx->ir_tc, ctx->sc->id);
444 BT_ASSERT(ctx->ir_sc);
445 goto end;
44c440bc
PP
446 }
447
83ebb7f1
PP
448 ctx->ir_sc = bt_stream_class_create_with_id(ctx->ir_tc, ctx->sc->id);
449 BT_ASSERT(ctx->ir_sc);
450 bt_stream_class_put_ref(ctx->ir_sc);
451 ctx->scope = CTF_SCOPE_PACKET_CONTEXT;
452 ir_fc = scope_ctf_field_class_to_ir(ctx);
453 if (ir_fc) {
454 ret = bt_stream_class_set_packet_context_field_class(
455 ctx->ir_sc, ir_fc);
456 BT_ASSERT(ret == 0);
457 bt_field_class_put_ref(ir_fc);
44c440bc
PP
458 }
459
83ebb7f1
PP
460 ctx->scope = CTF_SCOPE_EVENT_COMMON_CONTEXT;
461 ir_fc = scope_ctf_field_class_to_ir(ctx);
462 if (ir_fc) {
463 ret = bt_stream_class_set_event_common_context_field_class(
464 ctx->ir_sc, ir_fc);
465 BT_ASSERT(ret == 0);
466 bt_field_class_put_ref(ir_fc);
44c440bc
PP
467 }
468
83ebb7f1 469 bt_stream_class_set_assigns_automatic_event_class_id(ctx->ir_sc,
44c440bc 470 BT_FALSE);
83ebb7f1 471 bt_stream_class_set_assigns_automatic_stream_id(ctx->ir_sc, BT_FALSE);
44c440bc 472
83ebb7f1
PP
473 if (ctx->sc->default_clock_class) {
474 BT_ASSERT(ctx->sc->default_clock_class->ir_cc);
475 ret = bt_stream_class_set_default_clock_class(ctx->ir_sc,
476 ctx->sc->default_clock_class->ir_cc);
44c440bc
PP
477 BT_ASSERT(ret == 0);
478 }
479
83ebb7f1
PP
480 ctx->sc->is_translated = true;
481 ctx->sc->ir_sc = ctx->ir_sc;
44c440bc
PP
482
483end:
83ebb7f1 484 return;
44c440bc
PP
485}
486
487static inline
0f2d58c9
PP
488void ctf_clock_class_to_ir(bt_clock_class *ir_cc, struct ctf_clock_class *cc)
489{
490 int ret;
491
492 if (strlen(cc->name->str) > 0) {
493 ret = bt_clock_class_set_name(ir_cc, cc->name->str);
494 BT_ASSERT(ret == 0);
495 }
496
497 if (strlen(cc->description->str) > 0) {
498 ret = bt_clock_class_set_description(ir_cc, cc->description->str);
499 BT_ASSERT(ret == 0);
500 }
501
502 bt_clock_class_set_frequency(ir_cc, cc->frequency);
503 bt_clock_class_set_precision(ir_cc, cc->precision);
504 bt_clock_class_set_offset(ir_cc, cc->offset_seconds, cc->offset_cycles);
505
506 if (cc->has_uuid) {
507 bt_clock_class_set_uuid(ir_cc, cc->uuid);
508 }
509
5552377a 510 bt_clock_class_set_origin_is_unix_epoch(ir_cc, cc->is_absolute);
0f2d58c9
PP
511}
512
513static inline
83ebb7f1 514int ctf_trace_class_to_ir(struct ctx *ctx)
44c440bc
PP
515{
516 int ret = 0;
517 uint64_t i;
518
83ebb7f1
PP
519 BT_ASSERT(ctx->tc);
520 BT_ASSERT(ctx->ir_tc);
44c440bc 521
83ebb7f1
PP
522 if (ctx->tc->is_translated) {
523 goto end;
44c440bc
PP
524 }
525
83ebb7f1
PP
526 if (ctx->tc->is_uuid_set) {
527 bt_trace_class_set_uuid(ctx->ir_tc, ctx->tc->uuid);
44c440bc
PP
528 }
529
83ebb7f1 530 for (i = 0; i < ctx->tc->env_entries->len; i++) {
44c440bc 531 struct ctf_trace_class_env_entry *env_entry =
83ebb7f1 532 ctf_trace_class_borrow_env_entry_by_index(ctx->tc, i);
44c440bc
PP
533
534 switch (env_entry->type) {
535 case CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT:
862ca4ed 536 ret = bt_trace_class_set_environment_entry_integer(
83ebb7f1 537 ctx->ir_tc, env_entry->name->str,
44c440bc
PP
538 env_entry->value.i);
539 break;
540 case CTF_TRACE_CLASS_ENV_ENTRY_TYPE_STR:
862ca4ed 541 ret = bt_trace_class_set_environment_entry_string(
83ebb7f1 542 ctx->ir_tc, env_entry->name->str,
44c440bc
PP
543 env_entry->value.str->str);
544 break;
545 default:
546 abort();
547 }
548
549 if (ret) {
550 goto end;
551 }
552 }
553
83ebb7f1
PP
554 for (i = 0; i < ctx->tc->clock_classes->len; i++) {
555 struct ctf_clock_class *cc = ctx->tc->clock_classes->pdata[i];
0f2d58c9 556
7fcdb0a9
FD
557 cc->ir_cc = bt_clock_class_create(
558 bt_self_component_source_as_self_component(
559 ctx->self_comp));
0f2d58c9
PP
560 ctf_clock_class_to_ir(cc->ir_cc, cc);
561 }
562
83ebb7f1 563 bt_trace_class_set_assigns_automatic_stream_class_id(ctx->ir_tc,
44c440bc 564 BT_FALSE);
83ebb7f1
PP
565 ctx->tc->is_translated = true;
566 ctx->tc->ir_tc = ctx->ir_tc;
44c440bc
PP
567
568end:
569 return ret;
570}
571
572BT_HIDDEN
7fcdb0a9
FD
573int ctf_trace_class_translate(bt_self_component_source *self_comp,
574 bt_trace_class *ir_tc, struct ctf_trace_class *tc)
44c440bc
PP
575{
576 int ret = 0;
577 uint64_t i;
83ebb7f1 578 struct ctx ctx = { 0 };
44c440bc 579
7fcdb0a9 580 ctx.self_comp = self_comp;
83ebb7f1
PP
581 ctx.tc = tc;
582 ctx.ir_tc = ir_tc;
583 ret = ctf_trace_class_to_ir(&ctx);
44c440bc
PP
584 if (ret) {
585 goto end;
586 }
587
588 for (i = 0; i < tc->stream_classes->len; i++) {
589 uint64_t j;
83ebb7f1 590 ctx.sc = tc->stream_classes->pdata[i];
44c440bc 591
83ebb7f1 592 ctf_stream_class_to_ir(&ctx);
44c440bc 593
83ebb7f1
PP
594 for (j = 0; j < ctx.sc->event_classes->len; j++) {
595 ctx.ec = ctx.sc->event_classes->pdata[j];
44c440bc 596
83ebb7f1
PP
597 ctf_event_class_to_ir(&ctx);
598 ctx.ec = NULL;
44c440bc 599 }
83ebb7f1
PP
600
601 ctx.sc = NULL;
44c440bc
PP
602 }
603
604end:
605 return ret;
606}
This page took 0.05625 seconds and 4 git commands to generate.