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

Fix Document serialization of maps with null values #627

Merged
merged 1 commit into from
Apr 3, 2025

Conversation

rhernandez35
Copy link
Contributor

I discovered that we can't serialize Document maps with null values while implementing CBOR documents. This uses the same approach that we're using in JsonDocuments$ListSerializer.

Fun fact: the JVM generates terrible stack traces when the receiver for an instance method reference is null. The reference Document::serializeContents throws a NPE from a synthetic method when the Document having its serializeContents method invoked is null. You can see that the param in the first argument slot is null in the debugger and infer what's going on, but debugging runtime-generated code is always a nightmare.

@rhernandez35 rhernandez35 requested a review from mtdowling April 3, 2025 02:17
@rhernandez35 rhernandez35 force-pushed the fix-document-map-with-null-value branch 2 times, most recently from 401240a to d281a17 Compare April 3, 2025 02:18
@rhernandez35 rhernandez35 force-pushed the fix-document-map-with-null-value branch from d281a17 to e9f3f08 Compare April 3, 2025 02:18
@rhernandez35 rhernandez35 changed the title Fix JSON serialization of maps with null values Fix Document serialization of maps with null values Apr 3, 2025
@rhernandez35 rhernandez35 enabled auto-merge (rebase) April 3, 2025 02:29
@rhernandez35 rhernandez35 merged commit ad95cf0 into main Apr 3, 2025
3 checks passed
@rhernandez35 rhernandez35 deleted the fix-document-map-with-null-value branch April 3, 2025 02:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants