Re: [protobuf] Possible Protbuf cmake problem, or cmake bug

2016-05-16 Thread Robert Bielik
Hi Feng, Den måndag 16 maj 2016 kl. 22:32:06 UTC+2 skrev Feng Xiao: > > > > Could you create a github issue for this? We are happy to accept a pull > request if you have found a workaround for this problem. > The only workaround so far though, is to omit the "include(install.cmake)" line. But

Re: [grpc-io] Re: [protobuf] How can I make python sync calls and streaming responses faster?

2016-05-16 Thread Yan Yan
ty -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To post to this group, send email to protobuf@googlegroups.com.

Re: [protobuf] Recommended C# library and compiler for ProtoBuf 2.6.1 and build instructions for VS2015

2016-05-16 Thread 'Feng Xiao' via Protocol Buffers
On Thu, May 12, 2016 at 3:55 PM, Kiran Desai wrote: > We are evaluating Protobuf 2.6.1 for cross-language messaging. Primary > languages are going to be C++, Java and C#. > > >1. Is there a release date planned for ProtoBuf 3.0? > > We hope to release 3.0 soon but

Re: [protobuf] Generated library language versions

2016-05-16 Thread 'Feng Xiao' via Protocol Buffers
On Tue, May 10, 2016 at 5:20 PM, Trent Billington wrote: > Where can I find information about which version of a target language is > generated by the protobuf compilers? I can't find anything in the tutorials > or reference information on the developers.google.com

Re: [protobuf] Any vs. oneof in message wrappers

2016-05-16 Thread 'Feng Xiao' via Protocol Buffers
On Mon, May 16, 2016 at 11:30 AM, 'David Koch' via Protocol Buffers < protobuf@googlegroups.com> wrote: > Our platform generates/processes different types of proto3 messages with > Kafka as buffer. We currently store this type as part of the Kafka message > key so message consumers know which

Re: [protobuf] Possible Protbuf cmake problem, or cmake bug

2016-05-16 Thread 'Feng Xiao' via Protocol Buffers
On Sun, May 15, 2016 at 12:46 AM, Robert Bielik wrote: > Hi all, > > I'm using protobuf in our CMake based projects, and I've encountered a > problem with TARGET_INCLUDE_DIRECTORIES not working as expected. Nominally > if my target APP depens on libprotobuf, the PUBLIC

Re: [protobuf] How to erase particular field with MergeFrom()

2016-05-16 Thread 'Feng Xiao' via Protocol Buffers
On Wed, May 11, 2016 at 5:09 AM, Denis Bakhvalov wrote: > Hi, > > Suppose I have such message structure: > > > package msg_RepAndOpt; > > message RepAndOpt{ > repeated string name = 1; > optional string surname = 2; > ... > // there are lots of others.} > > >

[protobuf] Any vs. oneof in message wrappers

2016-05-16 Thread 'David Koch' via Protocol Buffers
Our platform generates/processes different types of proto3 messages with Kafka as buffer. We currently store this type as part of the Kafka message key so message consumers know which class to use for de-serialization. I want to add the type to the serialized message in order to not rely on

[protobuf] Possible Protbuf cmake problem, or cmake bug

2016-05-16 Thread Robert Bielik
Hi all, I'm using protobuf in our CMake based projects, and I've encountered a problem with TARGET_INCLUDE_DIRECTORIES not working as expected. Nominally if my target APP depens on libprotobuf, the PUBLIC part of TARGET_INCLUDE_DIRECTORIES should propagate to target APP. This does not work

[protobuf] Possible CMake bug, or Protobuf cmake problem.

2016-05-16 Thread Robert Bielik
Hi all, We use the CMake files of Protobuf to include the libprotobuf target. However, in the Protobuf CMakeLists.txt file, the "include(install.cmake)" at bottom seems to mess up the target_include_directories directive for libprotobuf, so that my targets do NOT get the specified include

[protobuf] Recommended C# library and compiler for ProtoBuf 2.6.1 and build instructions for VS2015

2016-05-16 Thread Kiran Desai
We are evaluating Protobuf 2.6.1 for cross-language messaging. Primary languages are going to be C++, Java and C#. 1. Is there a release date planned for ProtoBuf 3.0? 2. Is the protobuf-csharp-port way to go for C# code (proto2)? If so, will it work with VS2015? -- You received

[protobuf] Protobuf-Converter transforms Domain Model Objects into Google Protobuf Messages

2016-05-16 Thread Misha Mixailov
Hi all. Would anybody be interested in an Protobuf-Converter transforms Domain Model Objects into Google Protobuf Messages? How to use it ? Domain model classes that have to be transformed into protobuf messages must satisfy conditions: Class has to be marked by @ProtoClass annotaion

[protobuf] encode repeated field without c++ api

2016-05-16 Thread Fezin ET
Hi All, I am new to this google protobuf. I am using nanopb for my project. and not using cpp --cpp out compiler option. I came across a message type which contains array of 10 structures. How can I fill data without cpp APIs. For eg: message structA { required float x = 3; required

Re: [protobuf] protobuf-dt required password from eclipse marketplace

2016-05-16 Thread workingmeloen
Me and a collegue have encountered this exact problem too, looking forward to the fix! On Tuesday, 10 May 2016 00:35:36 UTC+2, Adam Cozzette wrote: > > Thanks for reporting this, Yan. I've passed this along to the team that > maintains the plugin; they were able to reproduce the problem and are

[protobuf] Protobuf : How to generate the descriptor file dynamically from .proto

2016-05-16 Thread jigmesherab2016
Hi, I wanted to generate FileDescriptor dynamically from .proto without referencing, as in the given example we have reference Student.Interop.DTO so that we can get the StudentDTO.Descriptor and EmployeeDTO.Descriptor, so i wanted to avoid this reference. *Example :* namespace Student.WebApi

[protobuf] Protobuf-Converter transforms Domain Model Objects into Google Protobuf Messages

2016-05-16 Thread Misha Mixailov
Hi all. Would anybody be interested in an Protobuf-Converter transforms Domain Model Objects into Google Protobuf Messages? How to use it ? Domain model classes that have to be transformed into protobuf messages must satisfy conditions: Class has to be marked by @ProtoClass annotaion

[protobuf] Generated library language versions

2016-05-16 Thread Trent Billington
Where can I find information about which version of a target language is generated by the protobuf compilers? I can't find anything in the tutorials or reference information on the developers.google.com website. I would like to know with protobuf3, which version of python, and php is generated

[protobuf] How to erase particular field with MergeFrom()

2016-05-16 Thread Denis Bakhvalov
Hi, Suppose I have such message structure: package msg_RepAndOpt; message RepAndOpt{ repeated string name = 1; optional string surname = 2; ... // there are lots of others.} And I have two components that have copies of this message: // component1:RepAndOpt A;