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)

3
votes
2answers
2k views

How to make CMake find google protobuf on windows?

I am using Google Protobuf with CMake. On Linux the Protobuf library is found by: find_package( Protobuf REQUIRED ) CMake knows where to look for the library. How though do I get this to work in ...
3
votes
1answer
528 views

How can I know what message I've received while using Protocol Buffers library?

It seems I don't understand something simple about Protocol Buffers, but this is very important question for me and for my real use-case. While reading documentation about Protocol Buffers I don't ...
3
votes
4answers
3k views

how to automatically copy values from java bean to protobuf message object using java reflection?

Typically I could copy values between two java beans , which have identical property names, using beanutils with java reflection e.g. PropertyUtils.setProperty(....) In protobuf Message, we use the ...
3
votes
2answers
477 views

Is there a good C implementation of Google Protocol Buffers

Google officially provides a C++ implementation of Google Protocol buffers, but I'm looking for a C implementation. I will not be using it myself, but my hope is that I can use this tool to generate ...
3
votes
2answers
1k views

How can I send multiple types of objects across Protobuf?

I'm implementing a client-server application, and am looking into various ways to serialize and transmit data. I began working with Xml Serializers, which worked rather well, but generate data slowly, ...
3
votes
1answer
3k views

How would you encode a Map<String, Object> using Protocol Buffers?

I'm trying to use Protocol Buffers for message serialization. My message format should contain Map< String, Object > entries ... but how do I write the .proto definition? As far as I know, ...
3
votes
1answer
144 views

Parse Google Protocol Buffers datagram without .proto file?

is it possible to parse an incoming google protocol buffers datagram without any .proto file? I merely now its been serialized using protocol buffers but have no idea about the IDL file. I'm looking ...
3
votes
3answers
828 views

Using JMeter TCP Sampler is it possible to determine message length using first bytes of the response

I need some help on identifying the length of the response using the the first byte(s) of the message. Currently using JMeter to send some TCP request but unfortunately it is not able to determine ...
3
votes
1answer
209 views

Define dictionary in protocol buffer

I'm new to both protocol buffers and C++, so this may be a basic question, but I haven't had any luck finding answers. Basically, I want the functionality of a dictionary defined in my .proto file ...
3
votes
1answer
225 views

What's an enum's value if it's required but not in range?

Application A uses a this proto file message The_message { enum The_enum { one = 1; two = 2; } required The_enum the_enum = 1; } Application B uses the next version of the ...
3
votes
1answer
235 views

Protobuf-net in WP7 throws FieldAccessExceptions

I have a very simple class that I'm trying to serialize: [ProtoContract] public class SettingStore { public event EventHandler ContentsChanged; [ProtoMember(1)] private ...
3
votes
3answers
702 views

Protocol buffers for serializing several data objects of a post/comment into a single serialized piece of data

I am developing a social application on top of Java and Cassandra database. I need to store posts/comments of the user's shared posts, in database for which I am looking to serialize data per single ...
3
votes
1answer
698 views

How do i get the length number using PrefixStyle with ProtoBuf-net?

in the example below how do i get the length number using PrefixStyle with ProtoBuf-net? and what's the difference between PrefixStyle.Base128 and PrefixStyle.Fixed32? Thanks! PerfTest ...
3
votes
1answer
860 views

Java & Google Protocol Buffers: Does anyone have a simple example of getting started with this?

I'm not really sure where to start. Like, some sites I saw wanted me to install maven, and do a bunch of things with copying files to system directories, and adding those directories to $path (which ...
3
votes
2answers
1k views

protobuf-net and rpc over tcp

I'm looking for a rpc over tcp implementation that uses protobuf-net (or any other .net implementation of protobuf). Any suggestions?
3
votes
1answer
1k views

Google Protocol Buffers - Fixed size buffer?

Using Google Protocol Buffers, can I set a maximum size for all messages I encode? if I know that what I encode is never larger than X bytes, then Google Protobuffs would always produce a buffer of ...
3
votes
1answer
38 views

protocol-buffers serialization with large list of non-primitive types

I am switching some of my DataContractSerializer usage over to protocol-buffers serialization (specifically using protobuf-net) with the goal of faster serialization and smaller serialized data size ...
3
votes
1answer
195 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 ...
3
votes
1answer
151 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 ...
3
votes
1answer
231 views

Protobuf-net possible recursion detected: serialize children and parents

I am new to serialization in general, and even newer to protobuf. Here is my problem, I have these classes: [ProtoContract] class Controle { [ProtoMember(1, AsReference=true)] public ...
3
votes
1answer
424 views

Protobuf-PHP: Cannot Successfully Execute protoc-gen-php

I cloned the Protobuf-PHP repository: https://github.com/drslump/Protobuf-PHP.git that I found at https://github.com/drslump/Protobuf-PHP, and I have been working on installation and configuration ...
3
votes
1answer
524 views

Protobuf.net: how to handle inheritance without [ProtoInclude]

I am using Protobuf.net to serialize some classes. I would like to be able to serialize the SuperHero class (below) without having to specify [ProtoInclude] on the base class. This is because the ...
3
votes
1answer
794 views

Length prefix for protobuf messages in C++

I'm using protobuf to serialize message I send over a socket connection in C++. For the communication I'd like to add a header to the messags indicating the length of the message. What do you think ...
3
votes
1answer
449 views

Adding protobuf-net to my WCF Rest service

Is there any canonical straight way of enabling protobuf-net serialization on .NET 4 WCF? I tried to simplify code to the point where it can be easy to build on: Here is my service code: ...
3
votes
1answer
286 views

Why is Haskell/unpack messing with my bytes?

I've built a tiny UDP/protobuf transmitter and receiver. I've spent the morning trying to track down why the protobuf decoding was producing errors, only to find that it was the transmitter ...
3
votes
1answer
447 views

Reading Protobuf objects using boost::asio::read_async

I am writing an application using Boost asio in which the client and the server exchange messages that are serialized using google proto-buffers. I do not know what is the size of the serialized ...
3
votes
1answer
528 views

C# .net protocol buffers - protobuf-net support for serializing dictionary of object values?

i'm new to protocol buffers and I am using protobuf-net for VS2010. from what i'm reading here Dictionary in protocol buffers, it doesn't seem that protobuf can serialize a dictionary with object ...
3
votes
1answer
755 views

Extending Protocol Buffers in Java

I'm having trouble accessing extended protocol buffer members. Here is the scenario: Message Foo { optional int i = 1; } message Bar { extend Foo { optional int j = 10001; } } I don't ...
3
votes
1answer
193 views

How to define custom compiler for some file type in IntelliJ IDEA?

Is it possible to define custom compiler for particular file type in IntelliJ IDEA ? I found how to define custom formatting though. I have bunch of *.proto files in my project. It would be nice if I ...
3
votes
2answers
783 views

does protobuf need a network packet header?

I am using 'protobuf' for C/S network program using TCP. here is my steps for client: 1, pack data into a 'protobuf' 2, get size in bytes of the pack and construct a length-prefix frame 3, write ...
3
votes
1answer
970 views

“An item with the same key has already been added” error with protobuf-net

I'm trying to replace an existing serializer with protobuf for C# by Marc Gravell. My code is extensive and my goal is to be able to do the switch with minimal changes. I came across an issue which I ...
3
votes
1answer
397 views

Protocol buffers on Game Consoles

Have anyone tried google protocol buffers on game consoles? I'm more interested in High End consoles such as PS3 or Xbox360 than handheld systems. Things I'm interested in hearing about are: Does ...
3
votes
1answer
2k views

Google protocol buffers and stl vectors, maps and boost shared pointers

Does google protocol buffers support stl vectors, maps and boost shared pointers? I have some objects that make heavy use of stl containers like maps, vectors and also boost::shared_ptr. I want to use ...
3
votes
1answer
708 views

Platform independent protobuf socket protocol - what message will I receive?

I am preparing to write a platform independent socket protocol. After some initial research protobuf seems the way to go. I am new to protobuf and I can't seem to figure out one specific issue. My ...
3
votes
1answer
1k views

Protobuf-net .proto file generation for inheritance

I am prototyping Protobuf-net to replace some of our existing C# code which is currently using [Datacontract] to Serialize objects to Xml. Using protobuffer we can easily share data with Java. I am ...
3
votes
1answer
631 views

adding protoc to xcode

How does one add the protoc (Protocol Buffers) compiler to xcode so .proto files are compiled when building the project? also, these files have to be built first so the auto generated files are then ...
3
votes
1answer
450 views

How to get structure of a Google Protobuf message without the definition

I have to get the message structure of a protobuf message transfered to me without the message's definition. Using UnknownFieldSet methods, I was able to get a string representation of the message as ...
3
votes
1answer
2k views

Serializing a List of objects using Protobuf-net

I've been looking to do some binary serialization to file and protobuf-net seems like a well-performing alternative. I'm a bit stuck in getting started though. Since I want to decouple the definition ...
3
votes
1answer
167 views

protobuf required field and default value

I am new to protobuf and I have started considering the following trivial example message Entry { required int32 id = 1; } used by the c++ code #include <iostream> #include "example.pb.h" ...
3
votes
1answer
88 views

Does thrift persist unknown fields/bytes when it deserializes and serializes back again?

So the example case for this is: I have the type Message. It is passed between server A -> B -> C Now let's say version 2.0 of the Message is created that has a couple of new fields/ids. Servers A ...
3
votes
1answer
174 views

Protocol buffer and OO design

I'm using protocol buffer as a wire data-format in a client-server architecture. Domain objects (java beans) will go through following life-cycle. Used in client side business logic Converted to ...
3
votes
1answer
277 views

Is protobuf in java thread-safe?

I have the following protobuf msg defined: message Counts { repeated int32 counts = 1; } which is shared between threads R and W as a builder: private final Counts.Builder countsBuilder; ...
3
votes
1answer
288 views

Encoding cyclic data structures (eg directed graphs) using protocol buffers

I have a graph data structure that I'd like to encode with protocol buffers. There are cyclic connections between the graph vertices. Is there a standard/common way to encode such structures in ...
3
votes
1answer
2k views

Simple working example of GzipOutputStream and GzipInputStream with Protocol Buffers

after some days of experimenting with Protocol Buffers I tried to compress the files. With Python this is quite simple to do and does not require any play with streams. Since most of our code is ...
3
votes
1answer
1k views

How to add protocol buffers support to a maven project ?

How to integrate protocol buffers with a maven project ? Couldn't find any information for maven users on the protocol buffers page. I need to add PB support to my web app project with protoc compiler ...
3
votes
1answer
507 views

protobuf-net v2 type meta

According to this post (from March), protobuf v2 allows us to resolve types from a stream. Since v2 is now in beta 5, I think this feature has already been implemented, so I was wondering how to use ...
3
votes
1answer
2k views

Exceptions when reading protobuf messages in Java

I am using protobuf now for some weeks, but I still keep getting exceptions when parsing protobuf messages in Java. I use C++ to create my protobuf messages and send them with boost sockets to a ...
3
votes
1answer
497 views

In protobuf-net is it possible to partially deserialize a message based on a base type

in protobuf-net is it possible to partially deserialize a message based on a base type? In my system I have an inheritance hierarchy where every message inherits from a MessageBase. The MessageBase ...
3
votes
1answer
530 views

Are protobuf messages compatible across versions of protobuf

I started building an app with protobuf 2.2.0 as it was the latest. Now I'm considering upgrading to protobuf 2.4.0a which is the latest. If I do so will the messages generated by one version of the ...
3
votes
2answers
238 views

Using the same .proto file for both a C# and C++ project

I am attempting to use the same .proto file (protobuf) for a C# and a C++ project. My problem is that the C# file requires an import and some options set (protobuf-csharp-port) while the C++ file ...

1 3 4 5 6 7 20