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

Add support for unknown fields in JSON serialization #49

Closed
skybrian opened this issue Nov 20, 2015 · 0 comments · Fixed by #918
Closed

Add support for unknown fields in JSON serialization #49

skybrian opened this issue Nov 20, 2015 · 0 comments · Fixed by #918

Comments

@skybrian
Copy link
Contributor

When reading and writing protobufs to JSON, we currently only serialize extensions if they are registered. Unknown fields are ignored.

This is a problem for the JSON-encoded constants for metadata in .pb.dart files. Any extensions in the original protobuf descriptor get stripped. It would be good to encode them somehow, instead.

@osa1 osa1 closed this as completed in #918 Mar 4, 2024
osa1 added a commit that referenced this issue Mar 4, 2024
…r generated accessors. (#918)

Add support for unknown fields to JSON (de-)serialized proto messages.
This allows data to be roundtripped from a server via this format
without dropping fields when the client doesn't contain metadata for
some fields.

Store the data as decoded but unparsed json and append it back to the
message when re-serializing a message.

Ignore unknown json data for equality/hashing to preserve existing
behavior for users. Taking this data into account would change the
result of existing `==` and `hashCode` calls.

By separating out `$_setField` and `$_clearField` this allows one to
differentiate reflective uses of `setField` and `clearField` (i.e. from
user code, usually with the result of `getTagNumber`) vs. internal uses
from the generated accessors.

Fixes #49.

---

cl/611522109
cl/612283849

---------

Co-authored-by: Nate Biggs <natebiggs@google.com>
Co-authored-by: Ömer Sinan Ağacan <omersa@google.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant