-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ntuple] Add GetView<void>
with type name string or std::type_info
argument
#18185
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just one question that probably doesn't belong to this PR
Test Results 19 files 19 suites 4d 14h 35m 3s ⏱️ For more details on these failures, see this check. Results for commit dec2acd. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG, thanks for the clear implementation!
template <typename T> | ||
RNTupleView<T> GetView(ROOT::DescriptorId_t fieldId, std::shared_ptr<T> objPtr, std::string_view typeName) | ||
{ | ||
static_assert(std::is_void_v<T>, "calling GetView with an type name string is only allowed for [T = void]"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
static_assert(std::is_void_v<T>, "calling GetView with an type name string is only allowed for [T = void]"); | |
static_assert(std::is_void_v<T>, "calling GetView with a type name string is only allowed for [T = void]"); |
template <typename T> | ||
RNTupleView<T> GetView(ROOT::DescriptorId_t fieldId, T *rawPtr, std::string_view typeName) | ||
{ | ||
static_assert(std::is_void_v<T>, "calling GetView with an type name string is only allowed for [T = void]"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
static_assert(std::is_void_v<T>, "calling GetView with an type name string is only allowed for [T = void]"); | |
static_assert(std::is_void_v<T>, "calling GetView with a type name string is only allowed for [T = void]"); |
6f2228b
to
bb4d08e
Compare
GetView<void>
with type name string argumentGetView<void>
with type name string or std::type_info
argument
bb4d08e
to
51503fd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many thanks! LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! But see comment before merging
51503fd
to
7ed3e89
Compare
Enables passing a type name string to `GetView<void>` to signal that the pointer has a different underlying type than the on-disk field's type. The field used by `RNTupleView` will be constructed with this type, in turn benefitting from RNTuples built-in type- and bounds-checking.
...which in turn calls the overload that takes a type name string.
7ed3e89
to
dec2acd
Compare
template <typename T> | ||
ROOT::RNTupleView<T> GetView(ROOT::DescriptorId_t fieldId, std::shared_ptr<T> objPtr, std::string_view typeName) | ||
{ | ||
static_assert(std::is_void_v<T>, "calling GetView with a type name string is only allowed for [T = void]"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, if we only allow T = void
, does it make sense to have this function templated at all? It would deviate from other overloads, but I find it less surprising than the documentation telling me it's a template function and then being presented a static_assert
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this is actually something I was asking myself as well when I was writing the docs. Hooking into your other comment, I don't think it is used in framework code so until it is I'm also fine removing it here.
/// | ||
/// \sa GetView(std::string_view, std::shared_ptr<T>) | ||
template <typename T> | ||
ROOT::RNTupleView<T> GetView(ROOT::DescriptorId_t fieldId, std::shared_ptr<T> objPtr, std::string_view typeName) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... and in that light, do we expect usage of std::shared_ptr<void>
from framework code?
Enables passing a type name string to
GetView<void>
to signal that the pointer has a different underlying type than the on-disk field's type. The field used byRNTupleView
will be constructed with this type, in turn benefitting from RNTuples built-in type- and bounds-checking.To illustrate further, assuming
myInt
is astd::uint64_t
on-disk:GetView<void>
will currently always reconstruct the field used for loading the values from the on-disk descriptor. However, in the example above this can lead to undefined behavior when the actual values on disk don't fit instd::int32_t
. The change proposed in this PR enables passing the type name string toGetView<void>
, which is then used for the construction of the field instead, leveraging RNTuple's internal type- and bounds-checking:This feature was requested by and discussed with ATLAS.