[protobuf] What is the future roadmap for Protocol Buffers?

2017-06-16 Thread david . richardson
Hello. I'm currently architecting a data platform, and am looking at Protocol Buffers to solve a variety of problems. However to assess if Protocol Buffers will be applicable to our solution I need to know what the roadmap is for future releases. Many thanks. Dave. -- You received this

[protobuf] Any type with python

2016-02-26 Thread Tim Richardson
Is the Any type implemented in the python libraries yet? I read this on the documentation *Currently the runtime libraries for working with Any types are under development*. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe

[protobuf] Scoping in definitions

2016-02-25 Thread Tim Richardson
Hi, just wanted to check my declaration with you guys, is it possible to reuse the `Study` declaration in the `Denormalised` package mypackage; message Dataset { required string accession = 1; required string url_self = 2; optional string title = 3; optional string description = 4;

[protobuf] Transform data from one schema to another

2016-02-24 Thread Tim Richardson
I have a data modelling problem and I'm wondering if protobuf could be the right tool to help me solve this problem. I have data in one schema and i want to transform it to another schema. message Dataset { required string title = 1; required string description = 2; } message Study {

[protobuf] Re: Safe way to access the functionality of MutableCProtoInsidePyProto

2011-07-08 Thread A Richardson
not be 'done' yet =) Alex On Jul 6, 11:32 am, A Richardson arichardatw...@gmail.com wrote: I am writing a python extension (in C++) which needs to work with protobufs. I would also like to make use of the experimental C++/ Python extension in my application. (i.e. I would like my extension

[protobuf] Safe way to access the functionality of MutableCProtoInsidePyProto

2011-07-06 Thread A Richardson
I am writing a python extension (in C++) which needs to work with protobufs. I would also like to make use of the experimental C++/ Python extension in my application. (i.e. I would like my extension to handle python protobuf messages which are actually backed by c++ messages.) Is there a

Re: [protobuf] The best way to determine message type for real time apps

2010-01-16 Thread Alex Richardson
Madhav, When you receive a raw string of bytes containing a message, you must first know the type of the message before you can parse/deserialize it. For example, with C++, you must first instantiate a message of the appropriate type, and then parse the bytes into the newly instantiated message