Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

enirolf
Copy link
Contributor

@enirolf enirolf commented Mar 28, 2025

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.

To illustrate further, assuming myInt is a std::uint64_t on-disk:

std::int32_t myInt;
void* myIntPtr = &myInt;
auto myIntView = reader->GetView<void>("myInt", myIntPtr);
myIntView(0);
doSomething(myInt);

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 in std::int32_t. The change proposed in this PR enables passing the type name string to GetView<void>, which is then used for the construction of the field instead, leveraging RNTuple's internal type- and bounds-checking:

std::int32_t myInt;
void* myIntPtr = &myInt;
auto myIntView = reader->GetView<void>("myInt", myIntPtr, "std::int32_t");
myIntView(0);
doSomething(myInt);

This feature was requested by and discussed with ATLAS.

@enirolf enirolf self-assigned this Mar 28, 2025
@enirolf enirolf requested a review from jblomer as a code owner March 28, 2025 10:21
Copy link
Contributor

@silverweed silverweed left a 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

Copy link

github-actions bot commented Mar 28, 2025

Test Results

    19 files      19 suites   4d 14h 35m 3s ⏱️
 2 717 tests  2 716 ✅ 0 💤 1 ❌
49 832 runs  49 831 ✅ 0 💤 1 ❌

For more details on these failures, see this check.

Results for commit dec2acd.

♻️ This comment has been updated with latest results.

Copy link
Member

@hahnjo hahnjo left a 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]");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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]");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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]");

@enirolf enirolf force-pushed the ntuple-view-typename branch from 6f2228b to bb4d08e Compare April 2, 2025 08:11
@enirolf enirolf changed the title [ntuple] Add GetView<void> with type name string argument [ntuple] Add GetView<void> with type name string or std::type_info argument Apr 2, 2025
@enirolf enirolf force-pushed the ntuple-view-typename branch from bb4d08e to 51503fd Compare April 2, 2025 08:12
@enirolf enirolf requested review from hahnjo, silverweed and pcanal April 2, 2025 08:12
Copy link
Contributor

@jblomer jblomer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Many thanks! LGTM!

Copy link
Member

@vepadulano vepadulano left a 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

@enirolf enirolf force-pushed the ntuple-view-typename branch from 51503fd to 7ed3e89 Compare April 4, 2025 13:17
enirolf added 3 commits April 4, 2025 15:20
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.
@enirolf enirolf force-pushed the ntuple-view-typename branch from 7ed3e89 to dec2acd Compare April 4, 2025 13:22
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]");
Copy link
Member

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...

Copy link
Contributor Author

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)
Copy link
Member

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants