frostfs-api-go/status
Evgenii Stratonikov 29f2157563
[#123] protogen: Treat bytes field as non-nullable
In protobuf 3.12 they have added an support for `optional` keyword,
which has made it into the main branch in 3.15.
https://github.com/protocolbuffers/protobuf/blob/main/docs/implementing_proto3_presence.md
https://github.com/protocolbuffers/protobuf/blob/v3.12.0/docs/field_presence.md#presence-in-proto3-apis

This means that without an explicit `optional` keyword field presence
for scalars is not tracked, thus empty string in JSON should be
unmarshaled to a nil byte slice. Relevant decoding code and tests from
protojson:
fb995f184a/internal/impl/message_reflect_field.go (L327)
fb995f184a/encoding/protojson/decode_test.go (L134)
fb995f184a/encoding/protojson/decode_test.go (L156)

We do not support `optional` keyword and the generator will fail if it sees on.
So only implement the default behaviour.

Refs #122

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-10-11 14:40:54 +03:00
..
grpc [#123] protogen: Treat bytes field as non-nullable 2024-10-11 14:40:54 +03:00
test [#28] Replace interface{} with any 2023-05-15 17:25:04 +03:00
convert.go [#113] go.mod: Use range over int 2024-09-04 15:44:59 +03:00
details.go [#369] status: Support WRONG_MAGIC_NUMBER code and detail 2022-01-27 16:53:16 +03:00
marshal.go [#51] *: Do not panic in StableSize() 2023-08-02 10:55:10 +03:00
message_test.go Rename package name 2023-03-07 13:42:36 +03:00
status.go [#118] status: Support INVALID_ARGUMENT status 2024-09-24 14:38:14 +03:00
types.go [#388] *: Remove nil check from setters 2022-03-31 11:32:04 +03:00