protobuf
protobuf copied to clipboard
A Clojure interface to Google's protocol buffers
Hey folks, I am evaluating this and testing some simple scenarios of mutation. What I am trying to test is: 1. creating a proto object 2. mutate in some Clojure...
This PR resolves #41 and : - Adds additional Persistent Map behaviours: `assoc-in`, `update-in`, `merge` and `merge-with` to `protobuf.impl.flatland.core.FlatlandProtoBuf` and `protobuf.PersistentProtocolBufferMap` allowing users to work with constructed objects as if...
Hi, is there a way to somehow convert from and to a native protobuf object? I want to (-> read native protobuf objects from parquet ( via org.apache.parquet.proto/ProtoReadSupport) Transform them...
I want to put some message to `Any`. but the problem occurs. let me assume. we have that kind of message. ``` protobuf message A { Any any; } messsage...
As far as I understand this library, it allows only to read protos from and into bytes. I would be useful to also add text proto support which is sometimes...
Tasks: * [x] Add proto3 examples * [ ] Add proto3 tests * [ ] Add proto3 support for default value in enums - #30 * [x] Add support for...
How can extensions be accessed? Say, a provided proto is defined with: 'extend google.protobuf.FieldOptions' (not the predefined map/map-by/meta etc) How can one pull that info?
We noticed funny behaviour when trying to deserialize a byte array that was generated from a proto. I understand that default values don't get serialized, and hence deserializing them is...
Using the Photo example, I added a `capture_by` field which is `oneof` either a `Phone` or `Camera`. ```protobuf syntax = "proto3"; package protobuf.examples.photo; import "protobuf/extensions.proto"; option java_package = "examples"; option...