X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fevents.c;h=8174293b28e85b80b2038ecec808c3490488636f;hp=f38278aadc6d64ebd4be1f5d9165bf31b313f339;hb=3a068915df64d2480d176ae58913f9d04d72f87c;hpb=812e668277c70fdaf7124b2e58f3562f82cb2dac diff --git a/formats/ctf/events.c b/formats/ctf/events.c index f38278aa..8174293b 100644 --- a/formats/ctf/events.c +++ b/formats/ctf/events.c @@ -637,6 +637,18 @@ const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field return ret; } + +uint64_t bt_ctf_get_struct_field_count(const struct bt_definition *field) +{ + uint64_t ret = -1; + const struct bt_declaration *declaration = + bt_ctf_get_decl_from_def(field); + + if (field && bt_ctf_field_type(declaration) == CTF_TYPE_STRUCT) { + const struct declaration_struct *struct_declaration = + container_of(declaration, struct declaration_struct, p); + + ret = bt_struct_declaration_len(struct_declaration); } else { bt_ctf_field_set_error(-EINVAL); } @@ -644,6 +656,27 @@ const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field return ret; } +const struct bt_definition *bt_ctf_get_struct_field_index( + const struct bt_definition *field, uint64_t i) +{ + const struct bt_definition *ret = NULL; + + if (field && bt_ctf_field_type( + bt_ctf_get_decl_from_def(field)) == CTF_TYPE_STRUCT && + i < bt_ctf_get_struct_field_count(field)) { + const struct definition_struct *structure = container_of( + field, struct definition_struct, p); + + ret = bt_struct_definition_get_field_from_index(structure, i); + } + + if (!ret) { + bt_ctf_field_set_error(-EINVAL); + } + + return ret; +} + int bt_ctf_get_event_decl_list(int handle_id, struct bt_context *ctx, struct bt_ctf_event_decl * const **list, unsigned int *count)