[protobuf] Re: Issue 512 in protobuf: Add support for atomic operations on powerpc architecture

2014-11-17 Thread protobuf
Comment #3 on issue 512 by oded.gab...@gmail.com: Add support for atomic operations on powerpc architecture https://code.google.com/p/protobuf/issues/detail?id=512 Hi, I'm no longer working on PowerPC processors, and I don't have the platform to test it. So, please feel free to send my ori

[protobuf] Re: Issue 512 in protobuf: Add support for atomic operations on powerpc architecture

2014-11-17 Thread protobuf
Comment #2 on issue 512 by austin.l...@gmail.com: Add support for atomic operations on powerpc architecture https://code.google.com/p/protobuf/issues/detail?id=512 This still isn't fixed in the latest repo. I ran across this bug report when debugging why my code wasn't working on powerpc.

[protobuf] Announcing ProtoBuf 2.6.1 Java Parser and FileDescriptorProto/FileDescriptor Builder + JSR-341 Expression Language 3.0 with ProtoBuf 2.6.1 + CRUD libraries

2014-11-17 Thread protobufel
Dear All, I've just officially published a collection of well tested Protocol Buffers' 2.6.1 compliant add-ons/extras for your consumption and productive delight. I've implemented 100% ProtoBuf 2.6.1 compatible: 1. pure Java .proto parser and "canonical" FileDescriptorProto/FileDescript

[protobuf] Re: Enum values are siblings of their type, not children of it.

2014-11-17 Thread WonHee Jung
I don't think it's added in 2.4.1+. I don't see any related changes in changelog. On Friday, November 1, 2013 12:45:03 PM UTC-7, greg.mal...@gmail.com wrote: > > The solution is available in the latest version??? Please elaborate. I'm > using 2.5.0 and I don't see it. > > -Greg > > On Tuesday, M

[protobuf] Re: Issue 515 in protobuf: More intelligent enums

2014-11-17 Thread protobuf
Comment #8 on issue 515 by wonhee.jung: More intelligent enums https://code.google.com/p/protobuf/issues/detail?id=515 Isn't it common practice to add UNKNOWN to be enum's 0th field to allow other side to pick it up as default value when there is a enum value that isn't their side but added

Re: [protobuf] RPC_Implementations: a Protobuf RPC lib and a minimal RPC server implementation

2014-11-17 Thread 'Feng Xiao' via Protocol Buffers
Done. Thanks! On Mon, Nov 17, 2014 at 8:44 AM, Madwyn Wen wrote: > Would you please add my new implementations to the wiki > . > > libpbrpc: https://github.com/madwyn/libpbrpc > > pbrpc: https://github.com/madwyn/pbrpc > > -- > You re

Re: [protobuf] Can't deserialize repeated double field

2014-11-17 Thread 'Feng Xiao' via Protocol Buffers
CodedInputStream has total bytes limit: https://github.com/google/protobuf/blob/master/src/google/protobuf/io/coded_stream.h#L587 Make sure you don't hit this limit (if you do, use CodedInputStream::SetTotalBytesLimit to set a larger limit). On Sun, Nov 16, 2014 at 2:48 AM, Alexey Chernushev < al

[protobuf] RPC_Implementations: a Protobuf RPC lib and a minimal RPC server implementation

2014-11-17 Thread Madwyn Wen
Would you please add my new implementations to the wiki . libpbrpc: https://github.com/madwyn/libpbrpc pbrpc: https://github.com/madwyn/pbrpc -- You received this message because you are subscribed to the Google Groups "Protocol Buf

[protobuf] Can't deserialize repeated double field

2014-11-17 Thread Alexey Chernushev
Hi! I have problem with repeated double field in deserializing process. I want to read 300 messages from protobuf file, but ReadRaw got failed in last message (sometimes 10 before last, it depended on number of encoding type). I've prepared little example where I am reproducing that error https: