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

[json] Check dictionary for std::map object in streaming #18266

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

Conversation

linev
Copy link
Member

@linev linev commented Apr 4, 2025

When stream directly std::map object in macro like:

   std::map<int,string> m;
   m[1] = "number 1";
   m[2] = "number 2";
   auto json = TBufferJSON::ToJSON(&m);

Real dictionary class for std::map is required.
It checked automatically when map is member of user class,
but was not checked when map object itself streamed

linev added 2 commits April 4, 2025 16:26
When stream directly std::map object in macro like:
```
   std::map<int,string> m;
   m[1] = "number 1";
   m[2] = "number 2";
   auto json = TBufferJSON::ToJSON(&m);
```
Real dictionary class for std::map is required.
It checked automatically when map is member of user class,
but was not checked when map object intself streamed
Same when write object, reading is not possible for std::map<>
object without dictionary
@linev linev self-assigned this Apr 4, 2025
@linev linev requested a review from pcanal as a code owner April 4, 2025 14:28
@dpiparo
Copy link
Member

dpiparo commented Apr 4, 2025

Is this fixing #18195 ?

@linev
Copy link
Member Author

linev commented Apr 4, 2025

It prevents crash of ROOT in situation reported in #18195 - which is just our documentation.

But it is still open question if code was working before without dictionary.

@dpiparo
Copy link
Member

dpiparo commented Apr 4, 2025

It is my understanding that this never worked, right @rlalik?

@linev
Copy link
Member Author

linev commented Apr 4, 2025

Code taken from here: https://github.com/root-project/root/blob/master/io/io/src/TBufferJSON.cxx#L50-L64

I put it in comments in ROOT version 6.18.
But I cannot guarantee that I did it without dictionary.

One probably can try to start ROOT 6.18 and test it

@rlalik
Copy link
Contributor

rlalik commented Apr 4, 2025

It is my understanding that this never worked, right @rlalik?

It was the very first time I used this feature so cannot say about the past.

@linev
Copy link
Member Author

linev commented Apr 4, 2025

I check 6.20.08-ubuntu20.04 docker image - it does not work without dictionary.
I will adjust documentation

While std::map uses in TBufferJSON in documentaiton,
mention gInterpreter->GenerateDictionary
Copy link

github-actions bot commented Apr 4, 2025

Test Results

    17 files      17 suites   4d 9h 49m 1s ⏱️
 2 717 tests  2 716 ✅ 0 💤 1 ❌
44 734 runs  44 733 ✅ 0 💤 1 ❌

For more details on these failures, see this check.

Results for commit 50c6fd4.

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.

4 participants