Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.

learn more… | top users | synonyms (1)

0
votes
1answer
18 views

Read jpeg file in Python, encode it into Unicode and put it into protobuf

I am transferring an image from a python backend to a c++ backend. I chose Google protobuf, with the following simple structure: message data { optional string image = 1; } I then use Python to ...
1
vote
1answer
16 views

Accessing field of Protobuf message of unknown type in Python

Let's say I have 2 Protobuf-Messages, A and B. Their overall structure is similar, but not identical. So we moved the shared stuff out into a separate message we called Common. This works beautifully. ...
5
votes
1answer
68 views

Protobuf-net (de)serialization of decimals throws when using custom decimal proto contract (C#/C++ interop)

Say I want to serialize, then deserialize a decimal using protobuf-net: const decimal originalDecimal = 1.6641007661819458m; using (var memoryStream = new MemoryStream()) { ...
3
votes
1answer
38 views

Deserializing a different List with protobuf-net

I have a problem with deserialization Protobuf-net. I serialize a List<> but when I deserialize the List<> returned is not identical to the first. There is missing data. I do not ...
0
votes
0answers
19 views

decorate objective classes with protobuf

like in .net version we can decorate classes with [ProtoContract] and [ProtoMember] and there is no .proto file to complies and use the outputs in the project is this possible in objective c version ...
0
votes
0answers
23 views

how to use protocolbuffers from static lib

i have followed this : http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers i was able to compile the Person.proto file got the .h and .m files added to to my static lib project (libIOS) ...
1
vote
3answers
30 views

is there something like protoc but cross-platform compiler instead

protoc.exe is built for windows. Every other distro, you have to compile protoc yourself to use it. We really want to drop something like protoc into our project but then have the hassle on anyone ...
1
vote
1answer
52 views

Issue deserializing (protocolBuffer) serialized data using protobuf-net

I serialized data using protobuf-net, and am able to deser the same in C#. putting a C# dummy w# var file = File.Create("animal.bin"); //Creating Msg - Fill the Data animal.id = "1"; animal.Name = ...
1
vote
2answers
35 views

Differences between various protobuf implementations

What are the trade-offs, advantages and disadvantages of each of these implementations ? Are they any different at all ? What I want achieve is to store a vector of box'es, into a protobuf. Impl 1 ...
0
votes
1answer
27 views

Unable to get automake to build .proto files into .pb.cc files with google protocol buffers

I've been trying to get automake to automagically determine how to build .pb.cc and .pb.hh files from a google protocol buffers .proto description, but have had no luck. I've tried using this post on ...
0
votes
2answers
29 views

Can Protobuf dynamically parse a field?

File my_protocol.proto: Message MyProtocol { required int32 protocolId = 1; required **unknownType** protocolBody = 2; } I want to parse protocolBody according to protocolId. For example, ...
1
vote
1answer
29 views

Invalid binary character when transmitting ProtoBuf-net messages over AWS SQS

I'm using Protobuf-net (https://code.google.com/p/protobuf-net/) to serialize my class, and then trying to transmit this via amazon SQS. When I do that I get this error: ...
2
votes
1answer
49 views

Serialize a protoBuf-net message to a stream c# - getting error “Only data-contract classes can be processed”

I have a message in protoBuf which called "package", I generated my .proto file to classes in purpose to fill all the required fields in that "package" and it works fine. Now, I have that protoBuf ...
0
votes
0answers
59 views

How python interpret message generated by erlang_protobuffs?

I try sending message encoded by erlang_protobuffs to python node, but how to interpret message via python protobuffers? My code: package test; message book { required int32 book_id = 1; required ...
1
vote
0answers
63 views

Send protobuf(binary) data using rabbitmq stomp

I have create one example for rabbitmq stomp using protobuf.js on client side. protobuf example link: https://github.com/dcodeIO/ProtoBuf.js Send message file content:- var Game = ...
0
votes
0answers
27 views

Writing to a Protobuf CodedOutputStream

I'm having issues writing to a CodedOutput Stream using the Objective-C port of Protobuf: POPMessage_Builder* builder = [[POPMessage_Builder alloc] init]; [builder setPayload:@"Hello, ...
0
votes
1answer
42 views

Is there a Protocol Buffers binding for Codegear C++ Builder 2007?

From my understanding reading this thread from several years ago, somebody once got Protocol Buffers working with Codegear C++ Builder 2007 ...
1
vote
1answer
36 views

Is it possible to parse non-protobuf messages using protobuf?

I am working on a project where we are using protocol buffers to create and parse some of our messages (protobuf-net). This is so elegant, that I would like to use this same deserialization method to ...
2
votes
1answer
35 views

How to integrate ServiceStack service using protobuf with a non-ServiceStack client?

I would like to use ServiceStack on the server side, and I would like to use protobuf-net as the serialization system used by ServiceStack. However, some of the clients will not be using the ...
1
vote
2answers
65 views

Please help me understand protocol buffers [closed]

I'm missing something with protobuffers. Here is some questions that I have that I'm having difficulties answering. Is a .proto file enough to have get all the data out of? In the address book ...
1
vote
1answer
51 views

Linking protobuf library using GNU makefile on Linux

I know that the protobuf library must be linked using GNU makefile flags -lprotobuf -lpthread or maybe -l:libprotobuf.so -lpthread; however when I make with -Wl,--verbose I see the following output: ...
1
vote
1answer
92 views

Protobuf 2.5.0 bug?

I've migrated from google protobuf v. 2.4.1 to v. 2.5.0 (no other change). I had a perfectly working client-server [android<>gae dev server] communication using 2.4.1. Now with 2.5.0 it is broken. ...
2
votes
3answers
47 views

How do I make Java protocol buffer types mutable? Protoc.exe doesn't generate setters?

How do I make Java protocol buffer types mutable? Protoc.exe doesn't generate setters? Basically I need to create an object then change a field value. Thanks
0
votes
1answer
80 views

how to use external jars in Cloudera hadoop?

i have a cloudera hadoop version 4 installed on my cluster. It comes packaged with google protobuffer jar version 2.4. in my application code i use protobuffer classes compiled with protobuffer ...
-5
votes
0answers
27 views

What's the best Java Protocol Buffers lib? [closed]

For c# I use protobuf-net which is great. It uses annotations to mark protobuf fields. Is there a Java lib which does this? Thanks
0
votes
0answers
25 views

Simultaneous adapters showing multiple lists in android

Following is the android method which sets the adapter for 2 lists on the same page. I am gettong only one item in each list although both the list have multiple items. After debugging i found that ...
-1
votes
1answer
44 views

How to close the socket from the server? [closed]

I was trying to do a rpc server client program using protobuf-rpc-pro library.I wanted to close the socket at the end. I could close the socket from the client side .I wanted to how to close the ...
0
votes
1answer
50 views

Use google protocolBuffers have some error in xcode

When build it in my works have some error: Undefined symbols for architecture i386:` "computeDataSize(int, NSData*)", referenced from:` -[OuterMessage serializedSize] in ...
3
votes
2answers
45 views

Exposing protocol-buffers interfaces

I am building a distributed system which consist of modules/application with interfaces defined by protobuf messages. Is it a good idea to expose those protobuf messages to a client directly? ... or ...
1
vote
1answer
46 views

How to get protobuf for Java Object by given message type name and raw bytes?

I have message type name in string and raw bytes. how to create java object by these meterials? b.proto pakage foo; message Bar { required int32 id = 1; required string name = 2; } TestMain.java ...
3
votes
1answer
83 views

error with serialization with protobuf

I'm trying to serialize a structure with protobuf. after many hours trying to figure out what I'm doing wrong I decided to test the google's example and it didn't worked as well I have the following ...
0
votes
2answers
40 views

Protocol buffer - usecases

I tried reading Protobuf docs, but couldn't imagine many usecases it can be used. I would like to know some real-world performance improvement usecases of protocol buffer . Thanks
0
votes
1answer
42 views

protobuf: RepeatedField unique elements

I want to have in a google protocol buffer repeated field only unique elements. In other words, need to use it as a std::set instead of std::vector. Any idea which is the simplest and most efficient ...
1
vote
2answers
129 views

C# protobuf-net serialized object to java

So I have a small problem: A message is sent using MQTT, it consists of a series of serialized objects using protobuf-net in C# (I can't modify this code, but I have access to the source). At the ...
3
votes
1answer
155 views

Override protocol buffers default behavior of throwing NPE when setting null to fields

I use protocol buffers maven plugin to compile .proto files. I really like protocol buffers except for one thing that it doesn't accepts nulls as default or no value. Instead it throws NPE whenever ...
4
votes
2answers
128 views

Reading and writing structs remotely

I'm currently building a robot which has some sensors attached to it. The control unit on the robot is an ARM Cortex-M3, all sensors are attached to it and it is connected via Ethernet to the "ground ...
0
votes
1answer
65 views

Deserializing a Message multiple times with Google Protocol Buffers

I am working with a system that is extremely modular. Messages can be determined by the by the 3-tuple of src, dest, type. I'm looking into reimplementing our messages with Protocol Buffers. I've ...
1
vote
0answers
27 views

Separating header and source files after compiling .proto with Protocol Buffers

I'm working on the project with the a structure similar to the following: root/inc/foo/bar/ root/src I've just started to use Google Protocol Buffers and when I compile the code I found that I need ...
1
vote
1answer
80 views

What am I missing in this Proguard configuration for Android?

I've tried countless things but I'm not being able to prevent my app to crash while using Proguard to shrink the code (obfuscation is disabled). I always get the following exception when Proguard is ...
0
votes
0answers
27 views

variable named TYPE_BOOL(c++ code) is conflicted with ios macro

I'm trying to build protobuf c++ into ios. But its implementation contains a TYPE_BOOL enum variable that conflicts with TYPE_BOOL in ios macro. And compile failed. How to solve this?
2
votes
2answers
121 views

mosh: dyld: Library not loaded: /usr/local/lib/libprotobuf.7.dylib

I really like mosh (http://mosh.mit.edu/) but after a brew upgrade it stopped working, yielding the below error. > mosh example.com dyld: Library not loaded: /usr/local/lib/libprotobuf.7.dylib ...
0
votes
0answers
59 views

Charles Web Proxy and Google Protobuf

I'm trying to use Charles Web Proxy to read my google protobuffers over HTTP. I'm getting the following error: IOException retrieving Protocol Buggers descriptor file: ...
0
votes
3answers
280 views

Where to find protobuf.jar for using Google protocol buffers in Java?

I downloaded protobuf-2.5.0.tar.gz, extracted it, did the usual ./configure, make, make check, and make install. However, the file protobuf.jar which seems to be needed for using protocol buffers in ...
0
votes
2answers
209 views

YAML vs GPB vs JSON vs XML, which is better?

I would like to know the merits & de-merits of 1) YAML 2) Google Protocol Buffers 3) JSON 4) XML I would like to make one common framework for serialization which will be used by Perl and Java ...
1
vote
1answer
57 views

Using google's protobuf in python without installing it

It seems to me that when I'm using protobuf in python I need to install it first so that I also have setuptools installed. To me it seems like this is severly limiting portability as I would have to ...
1
vote
1answer
48 views

Invalid delete with zLib

I have code which uses zLib and Google's Protocol Buffers. The Problem is, that valgrind detects invalid frees inside a class which uses both. ==1419== Invalid free() / delete / delete[] / realloc() ...
-1
votes
1answer
131 views

rpc server C++ Linux server and Windows client [duplicate]

Is there a nice implementation of an RPC server that runs on Linux and has a client for Windows. It should use protcolbuf for messages. All code is C++. The only examples I can find all compile well ...
0
votes
0answers
22 views

Grails ClassNotFound error with Protocol Buffer generated classes

I am using Protocol Buffer to serialize Java model objects. A jar lib is created that takes in the model objects and serializes them and stores them. Clients can retrieve those objects later. If I ...
0
votes
0answers
162 views

Copy a std::vector to a repeated field from protobuf with memcpy

At first I have this simple protobuf file message messagetest { ... repeated float samples = 6; .... } Which creates a headerfile with this methods //repeated float samples = 6; ...
3
votes
1answer
139 views

protobuf RPC structure (embedded ARM)

I need to use protobuf in embeded arm system. Need the support of pure C. The project will use a client-server architecture (C server with the java, Python clients). The project requires to consider ...

1 2 3 4 5 20