2 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
10 #include <common/exception.hpp>
11 #include <common/format.hpp>
15 namespace lst
= lttng::sessiond::trace
;
18 template <class FieldTypeSet
>
19 bool fields_are_equal(const FieldTypeSet
& a
, const FieldTypeSet
& b
)
21 if (a
.size() != b
.size()) {
25 return std::equal(a
.cbegin(), a
.cend(), b
.cbegin(),
26 [](typename
FieldTypeSet::const_reference field_a
,
27 typename
FieldTypeSet::const_reference field_b
) {
28 return *field_a
== *field_b
;
33 lst::field_location::field_location(lst::field_location::root in_lookup_root
,
34 lst::field_location::elements in_elements
) :
35 root_
{in_lookup_root
}, elements_
{std::move(in_elements
)}
39 bool lst::field_location::operator==(const lst::field_location
& other
) const noexcept
41 return root_
== other
.root_
&&
42 elements_
== other
.elements_
;
45 lst::type::type(unsigned int in_alignment
) : alignment
{in_alignment
}
53 bool lst::type::operator==(const lst::type
& other
) const noexcept
55 return typeid(*this) == typeid(other
) &&
56 alignment
== other
.alignment
&&
57 /* defer to concrete type comparison */
58 this->_is_equal(other
);
61 bool lst::type::operator!=(const lst::type
& other
) const noexcept
63 return !(*this == other
);
66 lst::field::field(std::string in_name
, lst::type::cuptr in_type
) :
67 name
{std::move(in_name
)}, _type
{std::move(in_type
)}
70 LTTNG_THROW_ERROR(fmt::format("Invalid type used to create field: field name = `{}`", name
));
74 void lst::field::accept(lst::field_visitor
& visitor
) const
79 bool lst::field::operator==(const lst::field
& other
) const noexcept
81 return name
== other
.name
&& *_type
== *other
._type
;
84 lst::type::cuptr
lst::field::move_type() noexcept
86 return std::move(_type
);
89 const lst::type
&lst::field::get_type() const
94 LTTNG_THROW_ERROR(fmt::format("Invalid attempt to access field type after transfer: field name = `{}`", name
));
98 lst::integer_type::integer_type(unsigned int in_alignment
,
99 enum lst::byte_order in_byte_order
,
100 unsigned int in_size
,
101 enum lst::integer_type::signedness in_signedness
,
102 enum lst::integer_type::base in_base
,
105 byte_order
{in_byte_order
},
107 signedness_
{in_signedness
},
109 roles_
{std::move(in_roles
)}
113 bool lst::integer_type::_is_equal(const type
&base_other
) const noexcept
115 const auto& other
= static_cast<decltype(*this)&>(base_other
);
117 return this->byte_order
== other
.byte_order
&&
118 this->size
== other
.size
&&
119 this->signedness_
== other
.signedness_
&&
120 this->base_
== other
.base_
&&
121 this->roles_
== other
.roles_
;
124 void lst::integer_type::accept(type_visitor
& visitor
) const
126 visitor
.visit(*this);
129 lst::byte_order
lst::type::reverse_byte_order(lst::byte_order byte_order
) noexcept
131 if (byte_order
== lst::byte_order::BIG_ENDIAN_
) {
132 return lst::byte_order::LITTLE_ENDIAN_
;
134 return lst::byte_order::BIG_ENDIAN_
;
138 lst::floating_point_type::floating_point_type(unsigned int in_alignment
,
139 lst::byte_order in_byte_order
,
140 unsigned int in_exponent_digits
,
141 unsigned int in_mantissa_digits
) :
143 byte_order(in_byte_order
),
144 exponent_digits
{in_exponent_digits
},
145 mantissa_digits(in_mantissa_digits
)
147 /* Allowed (exponent, mantissa) pairs. */
148 static const std::set
<std::pair
<unsigned int, unsigned int>> allowed_pairs
{
149 {5, 11}, /* binary16 */
150 {8, 24}, /* binary32 */
151 {11, 53}, /* binary64 */
152 {15, 113}, /* binary128 */
155 if (allowed_pairs
.find({exponent_digits
, mantissa_digits
}) != allowed_pairs
.end()) {
156 /* mantissa and exponent digits is a valid pair. */
160 LTTNG_THROW_INVALID_ARGUMENT_ERROR(
161 fmt::format("Invalid exponent/mantissa values provided while creating {}",
165 void lst::floating_point_type::accept(type_visitor
& visitor
) const
167 visitor
.visit(*this);
170 bool lst::floating_point_type::_is_equal(const type
& base_other
) const noexcept
172 const auto& other
= static_cast<decltype(*this)&>(base_other
);
174 return this->byte_order
== other
.byte_order
&&
175 this->exponent_digits
== other
.exponent_digits
&&
176 this->mantissa_digits
== other
.mantissa_digits
;
179 lst::enumeration_type::enumeration_type(unsigned int in_alignment
,
180 enum lst::byte_order in_byte_order
,
181 unsigned int in_size
,
182 enum signedness in_signedness
,
184 lst::integer_type::roles in_roles
) :
185 integer_type(in_alignment
,
198 void lst::signed_enumeration_type::accept(type_visitor
& visitor
) const
200 visitor
.visit(*this);
204 void lst::unsigned_enumeration_type::accept(type_visitor
& visitor
) const
206 visitor
.visit(*this);
208 } /* namespace trace */
209 } /* namespace sessiond */
210 } /* namespace lttng */
213 void lst::variant_type
<lst::signed_enumeration_type::mapping::range_t::range_integer_t
>::accept(
214 lst::type_visitor
& visitor
) const
216 visitor
.visit(*this);
220 void lst::variant_type
<lst::unsigned_enumeration_type::mapping::range_t::range_integer_t
>::accept(
221 lst::type_visitor
& visitor
) const
223 visitor
.visit(*this);
226 lst::array_type::array_type(unsigned int in_alignment
, type::cuptr in_element_type
) :
227 type(in_alignment
), element_type
{std::move(in_element_type
)}
231 bool lst::array_type::_is_equal(const type
& base_other
) const noexcept
233 const auto& other
= static_cast<decltype(*this)&>(base_other
);
235 return *this->element_type
== *other
.element_type
;
238 lst::static_length_array_type::static_length_array_type(unsigned int in_alignment
,
239 type::cuptr in_element_type
,
240 uint64_t in_length
) :
241 array_type(in_alignment
, std::move(in_element_type
)),
246 bool lst::static_length_array_type::_is_equal(const type
& base_other
) const noexcept
248 const auto& other
= static_cast<decltype(*this)&>(base_other
);
250 return array_type::_is_equal(base_other
) && this->length
== other
.length
;
253 void lst::static_length_array_type::accept(type_visitor
& visitor
) const
255 visitor
.visit(*this);
258 lst::dynamic_length_array_type::dynamic_length_array_type(unsigned int in_alignment
,
259 type::cuptr in_element_type
,
260 lst::field_location in_length_field_location
) :
261 array_type(in_alignment
, std::move(in_element_type
)),
262 length_field_location
{std::move(in_length_field_location
)}
266 bool lst::dynamic_length_array_type::_is_equal(const type
& base_other
) const noexcept
268 const auto& other
= static_cast<decltype(*this)&>(base_other
);
270 return array_type::_is_equal(base_other
) &&
271 this->length_field_location
== other
.length_field_location
;
274 void lst::dynamic_length_array_type::accept(type_visitor
& visitor
) const
276 visitor
.visit(*this);
279 lst::static_length_blob_type::static_length_blob_type(
280 unsigned int in_alignment
, uint64_t in_length_bytes
, roles in_roles
) :
281 type(in_alignment
), length_bytes
{in_length_bytes
}, roles_
{std::move(in_roles
)}
285 bool lst::static_length_blob_type::_is_equal(const type
& base_other
) const noexcept
287 const auto& other
= static_cast<decltype(*this)&>(base_other
);
289 return length_bytes
== other
.length_bytes
&& roles_
== other
.roles_
;
292 void lst::static_length_blob_type::accept(type_visitor
& visitor
) const
294 visitor
.visit(*this);
297 lst::dynamic_length_blob_type::dynamic_length_blob_type(
298 unsigned int in_alignment
, lst::field_location in_length_field_location
) :
299 type(in_alignment
), length_field_location
{std::move(in_length_field_location
)}
303 bool lst::dynamic_length_blob_type::_is_equal(const type
& base_other
) const noexcept
305 const auto& other
= dynamic_cast<decltype(*this)&>(base_other
);
307 return length_field_location
== other
.length_field_location
;
310 void lst::dynamic_length_blob_type::accept(type_visitor
& visitor
) const
312 visitor
.visit(*this);
315 lst::string_type::string_type(unsigned int in_alignment
, enum encoding in_encoding
) :
316 type(in_alignment
), encoding_
{in_encoding
}
320 bool lst::string_type::_is_equal(const type
& base_other
) const noexcept
322 const auto& other
= static_cast<decltype(*this)&>(base_other
);
324 return this->encoding_
== other
.encoding_
;
327 lst::static_length_string_type::static_length_string_type(
328 unsigned int in_alignment
, enum encoding in_encoding
, uint64_t in_length
) :
329 string_type(in_alignment
, in_encoding
), length
{in_length
}
333 bool lst::static_length_string_type::_is_equal(const type
& base_other
) const noexcept
335 const auto& other
= static_cast<decltype(*this)&>(base_other
);
337 return string_type::_is_equal(base_other
) && this->length
== other
.length
;
340 void lst::static_length_string_type::accept(type_visitor
& visitor
) const
342 visitor
.visit(*this);
345 lst::dynamic_length_string_type::dynamic_length_string_type(unsigned int in_alignment
,
346 enum encoding in_encoding
,
347 field_location in_length_field_location
) :
348 string_type(in_alignment
, in_encoding
),
349 length_field_location
{std::move(in_length_field_location
)}
353 bool lst::dynamic_length_string_type::_is_equal(const type
& base_other
) const noexcept
355 const auto& other
= static_cast<decltype(*this)&>(base_other
);
357 return string_type::_is_equal(base_other
) &&
358 this->length_field_location
== other
.length_field_location
;
361 void lst::dynamic_length_string_type::accept(type_visitor
& visitor
) const
363 visitor
.visit(*this);
366 lst::null_terminated_string_type::null_terminated_string_type(unsigned int in_alignment
,
367 enum encoding in_encoding
) :
368 string_type(in_alignment
, in_encoding
)
372 void lst::null_terminated_string_type::accept(type_visitor
& visitor
) const
374 visitor
.visit(*this);
377 lst::structure_type::structure_type(unsigned int in_alignment
, fields in_fields
) :
378 type(in_alignment
), _fields
{std::move(in_fields
)}
382 bool lst::structure_type::_is_equal(const type
& base_other
) const noexcept
384 const auto &other
= static_cast<decltype(*this)&>(base_other
);
386 return fields_are_equal(this->_fields
, other
._fields
);
389 void lst::structure_type::accept(type_visitor
& visitor
) const
391 visitor
.visit(*this);