Clean-up: sessiond: rename public accessors
[lttng-tools.git] / src / bin / lttng-sessiond / ust-registry-channel.cpp
index d03c89c6e832cbc28cfcda045eec4a1096fb9de6..f8295df4513806d60fb66a7b0903b47a49626894 100644 (file)
@@ -13,6 +13,7 @@
 #include <common/exception.hpp>
 #include <common/hashtable/utils.hpp>
 #include <common/make-unique-wrapper.hpp>
+#include <common/make-unique.hpp>
 #include <common/urcu.hpp>
 
 namespace lst = lttng::sessiond::trace;
@@ -48,12 +49,7 @@ int ht_match_event(struct cds_lfht_node *node, const void *_key)
        LTTNG_ASSERT(node);
        LTTNG_ASSERT(_key);
 
-       DIAGNOSTIC_PUSH
-       DIAGNOSTIC_IGNORE_INVALID_OFFSETOF
-       event = caa_container_of(node, lttng::sessiond::ust::registry_event, _node.node);
-       DIAGNOSTIC_POP
-
-       LTTNG_ASSERT(event);
+       event = lttng::utils::container_of(node, &lttng::sessiond::ust::registry_event::_node);
        key = (lttng::sessiond::ust::registry_event *) _key;
 
        /* It has to be a perfect match. First, compare the event names. */
@@ -82,15 +78,215 @@ int ht_match_event(struct cds_lfht_node *node, const void *_key)
 no_match:
        return 0;
 }
+
+lst::type::cuptr create_event_header(const lst::abi& trace_abi, lst::stream_class::header_type header_type)
+{
+       lst::structure_type::fields event_header_fields;
+
+       if (header_type == lst::stream_class::header_type::COMPACT) {
+               auto enum_mappings = std::make_shared<lst::unsigned_enumeration_type::mappings>();
+               lst::unsigned_enumeration_type::mapping compact_mapping{
+                               "compact", lst::unsigned_enumeration_type::mapping::range_t(0, 30)};
+               lst::unsigned_enumeration_type::mapping extended_mapping{"extended", 31};
+
+               enum_mappings->emplace_back(compact_mapping);
+               enum_mappings->emplace_back(extended_mapping);
+
+               lst::type::cuptr choice_enum = lttng::make_unique<lst::unsigned_enumeration_type>(1,
+                               trace_abi.byte_order, 5, lst::integer_type::base::DECIMAL,
+                               std::move(enum_mappings),
+                               std::initializer_list<lst::integer_type::role>(
+                                               {lst::integer_type::role::EVENT_RECORD_CLASS_ID}));
+
+               lst::variant_type<lst::unsigned_enumeration_type::mapping::range_t::range_integer_t>::
+                               choices variant_choices;
+
+               lst::structure_type::fields compact_fields;
+               compact_fields.emplace_back(lttng::make_unique<lst::field>("timestamp",
+                               lttng::make_unique<lst::integer_type>(1, trace_abi.byte_order, 27,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               DEFAULT_CLOCK_TIMESTAMP}))));
+
+               auto compact_type = lttng::make_unique<lst::structure_type>(
+                               0, std::move(compact_fields));
+               variant_choices.emplace_back(std::move(compact_mapping), std::move(compact_type));
+
+               lst::structure_type::fields extended_fields;
+               extended_fields.emplace_back(lttng::make_unique<lst::field>("id",
+                               lttng::make_unique<lst::integer_type>(trace_abi.uint32_t_alignment,
+                                               trace_abi.byte_order, 32,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               EVENT_RECORD_CLASS_ID}))));
+               extended_fields.emplace_back(lttng::make_unique<lst::field>("timestamp",
+                               lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                               trace_abi.byte_order, 64,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               DEFAULT_CLOCK_TIMESTAMP}))));
+
+               lst::type::cuptr extended_type = lttng::make_unique<lst::structure_type>(0, std::move(extended_fields));
+               variant_choices.emplace_back(std::move(extended_mapping), std::move(extended_type));
+
+               auto variant = lttng::make_unique<lst::variant_type<
+                               lst::unsigned_enumeration_type::mapping::range_t::range_integer_t>>(
+                               0,
+                               lst::field_location(lst::field_location::root::EVENT_RECORD_HEADER,
+                                               {"id"}),
+                               std::move(variant_choices));
+
+               event_header_fields.emplace_back(lttng::make_unique<lst::field>("id", std::move(choice_enum)));
+               event_header_fields.emplace_back(
+                               lttng::make_unique<lst::field>("v", std::move(variant)));
+       } else {
+               auto enum_mappings = std::make_shared<lst::unsigned_enumeration_type::mappings>();
+               lst::unsigned_enumeration_type::mapping compact_mapping{"compact",
+                               lst::unsigned_enumeration_type::mapping::range_t(0, 65534)};
+               lst::unsigned_enumeration_type::mapping extended_mapping{"extended", 65535};
+               enum_mappings->emplace_back(compact_mapping);
+               enum_mappings->emplace_back(extended_mapping);
+
+               auto choice_enum = lttng::make_unique<lst::unsigned_enumeration_type>(
+                               trace_abi.uint16_t_alignment, trace_abi.byte_order, 16,
+                               lst::integer_type::base::DECIMAL, std::move(enum_mappings),
+                               std::initializer_list<lst::integer_type::role>(
+                                               {lst::integer_type::role::EVENT_RECORD_CLASS_ID}));
+
+               lst::variant_type<lst::unsigned_enumeration_type::mapping::range_t::range_integer_t>::
+                               choices variant_choices;
+
+               lst::structure_type::fields compact_fields;
+               compact_fields.emplace_back(lttng::make_unique<lst::field>("timestamp",
+                               lttng::make_unique<lst::integer_type>(trace_abi.uint32_t_alignment,
+                                               trace_abi.byte_order, 32,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               DEFAULT_CLOCK_TIMESTAMP}))));
+
+               lst::type::cuptr compact_type = lttng::make_unique<lst::structure_type>(
+                               0, std::move(compact_fields));
+               variant_choices.emplace_back(std::move(compact_mapping), std::move(compact_type));
+
+               lst::structure_type::fields extended_fields;
+               extended_fields.emplace_back(lttng::make_unique<lst::field>("id",
+                               lttng::make_unique<lst::integer_type>(trace_abi.uint32_t_alignment,
+                                               trace_abi.byte_order, 32,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               EVENT_RECORD_CLASS_ID}))));
+               extended_fields.emplace_back(lttng::make_unique<lst::field>("timestamp",
+                               lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                               trace_abi.byte_order, 64,
+                                               lst::integer_type::signedness::UNSIGNED,
+                                               lst::integer_type::base::DECIMAL,
+                                               std::initializer_list<lst::integer_type::
+                                                                               role>({lst::integer_type::role::
+                                                                               DEFAULT_CLOCK_TIMESTAMP}))));
+
+               auto extended_type = lttng::make_unique<lst::structure_type>(
+                               0, std::move(extended_fields));
+               variant_choices.emplace_back(std::move(extended_mapping), std::move(extended_type));
+
+               auto variant = lttng::make_unique<lst::variant_type<
+                               lst::unsigned_enumeration_type::mapping::range_t::range_integer_t>>(
+                               0,
+                               lst::field_location(lst::field_location::root::EVENT_RECORD_HEADER,
+                                               {"id"}),
+                               std::move(variant_choices));
+
+               event_header_fields.emplace_back(
+                               lttng::make_unique<lst::field>("id", std::move(choice_enum)));
+               event_header_fields.emplace_back(
+                               lttng::make_unique<lst::field>("v", std::move(variant)));
+       }
+
+       return lttng::make_unique<lst::structure_type>(0, std::move(event_header_fields));
+}
+
+lst::type::cuptr create_packet_context(const lst::abi& trace_abi)
+{
+       lst::structure_type::fields packet_context_fields;
+
+       /* uint64_t timestamp_begin */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("timestamp_begin",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                       trace_abi.byte_order, 64,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::DEFAULT_CLOCK_TIMESTAMP}))));
+
+       /* uint64_t timestamp_end */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("timestamp_end",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                       trace_abi.byte_order, 64,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::PACKET_END_DEFAULT_CLOCK_TIMESTAMP}))));
+
+       /* uint64_t content_size */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("content_size",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                       trace_abi.byte_order, 64,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::PACKET_CONTENT_LENGTH}))));
+
+       /* uint64_t packet_size */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("packet_size",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                       trace_abi.byte_order, 64,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::PACKET_TOTAL_LENGTH}))));
+
+       /* uint64_t packet_seq_num */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("packet_seq_num",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint64_t_alignment,
+                                       trace_abi.byte_order, 64,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::PACKET_SEQUENCE_NUMBER}))));
+
+       /* unsigned long events_discarded */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("events_discarded",
+                       lttng::make_unique<lst::integer_type>(trace_abi.long_alignment,
+                                       trace_abi.byte_order, trace_abi.bits_per_long,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL,
+                                       std::initializer_list<lst::integer_type::role>({lst::integer_type::role::DISCARDED_EVENT_RECORD_COUNTER_SNAPSHOT}))));
+
+       /* uint32_t cpu_id */
+       packet_context_fields.emplace_back(lttng::make_unique<lst::field>("cpu_id",
+                       lttng::make_unique<lst::integer_type>(trace_abi.uint32_t_alignment,
+                                       trace_abi.byte_order, 32,
+                                       lst::integer_type::signedness::UNSIGNED,
+                                       lst::integer_type::base::DECIMAL)));
+
+       return lttng::make_unique<lst::structure_type>(0, std::move(packet_context_fields));
+}
 }; /* namespace */
 
 lsu::registry_channel::registry_channel(unsigned int channel_id,
+               const lst::abi& trace_abi,
+               std::string in_default_clock_class_name,
                lsu::registry_channel::registered_listener_fn channel_registered_listener,
                lsu::registry_channel::event_added_listener_fn event_added_listener) :
-       lst::stream_class(channel_id, lst::stream_class::header_type::LARGE),
+       lst::stream_class(channel_id,
+                       lst::stream_class::header_type::LARGE,
+                       std::move(in_default_clock_class_name)),
        _key{-1ULL},
        _consumer_key{-1ULL},
-       _metadata_dumped{false},
        _next_event_id{0},
        _is_registered_listener{channel_registered_listener},
        _event_added_listener{event_added_listener},
@@ -104,6 +300,16 @@ lsu::registry_channel::registry_channel(unsigned int channel_id,
        /* Set custom match function. */
        _events->match_fct = ht_match_event;
        _events->hash_fct = ht_hash_event;
+
+       _rcu_head = {};
+       /*
+        * Node's key is initialized by the channel's parent session. Its value is irrelevant to the
+        * channel object itself.
+        */
+       _node = {};
+
+       _packet_context = create_packet_context(trace_abi);
+       _event_header = create_event_header(trace_abi, header_type_);
 }
 
 void lsu::registry_channel::add_event(
@@ -158,18 +364,15 @@ void lsu::registry_channel::add_event(
         * are matched using the event name and signature.
         */
        nptr = cds_lfht_add_unique(_events->ht, _events->hash_fct(event.get(), lttng_ht_seed),
-                       _events->match_fct, event.get(), &event->_node.node);
-       if (nptr != &event->_node.node) {
+                       _events->match_fct, event.get(), &event->_node);
+       if (nptr != &event->_node) {
                if (buffer_type == LTTNG_BUFFER_PER_UID) {
                        /*
                         * This is normal, we just have to send the event id of the
                         * returned node.
                         */
-                       DIAGNOSTIC_PUSH
-                       DIAGNOSTIC_IGNORE_INVALID_OFFSETOF
-                       const auto existing_event = caa_container_of(
-                                       nptr, lttng::sessiond::ust::registry_event, _node.node);
-                       DIAGNOSTIC_POP
+                       const auto existing_event = lttng::utils::container_of(
+                                       nptr, &lttng::sessiond::ust::registry_event::_node);
                        event_id = existing_event->id;
                } else {
                        LTTNG_THROW_INVALID_ARGUMENT_ERROR(fmt::format(
@@ -201,17 +404,17 @@ lsu::registry_channel::~registry_channel()
        lttng_ht_destroy(_events);
 }
 
-const lttng::sessiond::trace::type& lsu::registry_channel::get_context() const
+const lttng::sessiond::trace::type* lsu::registry_channel::event_context() const
 {
        LTTNG_ASSERT(_is_registered);
-       return lst::stream_class::get_context();
+       return lst::stream_class::event_context();
 }
 
-void lsu::registry_channel::set_context(lttng::sessiond::trace::type::cuptr context)
+void lsu::registry_channel::event_context(lttng::sessiond::trace::type::cuptr context)
 {
        /* Must only be set once, on the first channel registration provided by an application. */
-       LTTNG_ASSERT(!_context);
-       _context = std::move(context);
+       LTTNG_ASSERT(!_event_context);
+       _event_context = std::move(context);
 }
 
 bool lsu::registry_channel::is_registered() const
@@ -239,7 +442,7 @@ void lsu::registry_channel::_accept_on_event_classes(
 
                DIAGNOSTIC_PUSH
                DIAGNOSTIC_IGNORE_INVALID_OFFSETOF
-               cds_lfht_for_each_entry(_events->ht, &iter.iter, event, _node.node) {
+               cds_lfht_for_each_entry(_events->ht, &iter.iter, event, _node) {
                        sorted_event_classes.emplace_back(event);
                }
                DIAGNOSTIC_POP
This page took 0.027658 seconds and 4 git commands to generate.