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)

1
vote
1answer
65 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
140 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
23 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
174 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
142 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 ...
2
votes
1answer
88 views

Using Protocol buffers in PhoneGap - iOS

I have used the c++ google protobuf classes in iOS using the native app approach, i.e. using Xcode, objective c, cocoa etc. Now, I want to migrate to hybrid apps and I have explored the options on ...
4
votes
1answer
166 views

Error building protocol buffer with the Android NDK

I try to build the protocol buffer library in the Android NDK (full lib). (How to build protocol buffer by Android NDK). But when I execute ndk-build, I get an error ... Compile++ thumb : protobuf ...
0
votes
1answer
46 views

Are there any applications currently offering a Protocol Buffers API?

I recently stumbled upon Google's Protocol Buffers as a Kickstarter project I'm following, Lifx, plans to release an SDK utilizing Protocol Buffers as the interface. I was just wondering if anyone ...
3
votes
3answers
371 views

How to solve the issue with Dalvik compiler limitation on 64K methods?

My team and I have inherited a large Android project from another team. The whole application with all the included libraries is reported to have around 35000 methods. We now have the task to ...
0
votes
1answer
91 views

messageReceived (netty) not called

my source TestMessage - is my protobuf object @Override public ChannelPipeline getPipeline() { ChannelPipeline next = Channels.pipeline(); ...
1
vote
1answer
707 views

Maven & Protobuf compile error: Cannot find symbol in package com.google.protobuf

I'm new to Linux and Protobuf.. I need help. I'm trying to "mvn package" a project that contains many ".proto" files, and a pom.xml file of course... I'm working on Ubuntu ...
1
vote
1answer
135 views

how use protocol buffers?

I watched a lot of tutorials, but I can not understand how to use protocol buffers Why "message User "? why not "class User "? and how Eclipse has created such a message? and why name = 2 ? not name ...
0
votes
2answers
49 views

How Can I Remove a Property From a Protobuf?

I want to remove a property from an instantiated entity_pb.EntityProto, instantiated in this way: pb = entity_pb.EntityProto() prop1 = pb.add_property() prop1.set_name('prop1') prop2 = ...
3
votes
1answer
56 views

Protocol Buffers for VB6?

I can't seem to find any libraries for using Protocol Buffers in VB6? Is my only option to use a wrapper C# library via COM Interop?
0
votes
0answers
54 views

IntelliJ include a directory contained in an excluded directory?

Can IntelliJ include a source directory contained in an excluded directory? I am using Google Protocol Buffers and am placing the generated class files in the target/proto-generated directory. I have ...
3
votes
1answer
117 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" ...
0
votes
1answer
171 views

Communicate with zeromq with protobuf serialized messages

I am unable to receive message serialized in protobuf over ZeroMQ sockets using C. I have serialized message entered by client and send this buffer to server using s_send() function defined in ...
0
votes
3answers
137 views

How can I remove an item from a repeated protobuf field in python?

I have a protobuf message that contains a repeated field. I would like to remove one of the items in the list but I can't seem to find a good way to do so without copying all of the items out of the ...
3
votes
2answers
105 views

Protocol Buffer Challenge

I am developing an application that uses the protocol buffer as a serializer . My application will be a client to a server. The requirement is that before sending the protobuf data I have to prepend ...
1
vote
1answer
117 views

How to Deserialize “Serialized Protobuffer” in c++ which is generated using C# protobuf-net

I have a struct [ProtoContract] public struct TenprintTemplateStructure { [ProtoMember(1)] public byte[] FeatureTenprint { get; set; } //Tenpritn NTemplate's NBuffer ...
0
votes
1answer
128 views

Logging Multiple JSON Objects to a Single File - File Format

I have a solution where I need to be able to log multiple JSON Objects to a file. Essentially doing one log file per day. What is the easiest way to write (and later read) these from a single file? ...
6
votes
0answers
30 views

protobuf serialization of IEnumerable<Interface> [duplicate]

[ProtoContract] class A { [ProtoMember(1)] public B bbb { get;set; //getter & setter is here } } [ProtoContract] public class B : IData { ///???0 [ProtoMember(1)] public IEnumerable ...
2
votes
1answer
82 views

Finding protocol buffer message type from serialized data

I have some binary data, which was obtained by serializing a google protocol buffer class. How do I find out, at runtime, the class for which the data was serialized. For example, suppose i have a ...
0
votes
0answers
17 views

dlopen error about using protobuf.a

I'm writing a server plugin program which we call it mcd.so,and mcd.so uses the protobuf utilities,as we don't want to copy the libprotobuf.so files into every server machine so that we decided ...
1
vote
1answer
137 views

“repeated” type fields not compiling in Google Protocol Buffer Objective C

I'm using an ARC enabled objective c version of protocol buffer and I have integrated it with XCode 4.5. I compiled a simple proto file, serialized and deserialized it to check if its working fine. ...
1
vote
1answer
139 views

Adding C++ Google Protocol Buffers to iOS app is failing to load headers from Header Search Path

I am following this post: Google protocol buffers on iOS I copied the Google Folder and Config.h into my project. I have finished everything, but the problem I am having is to do with this step: ...
0
votes
1answer
152 views

How can i Linking the Protocol Buffer(C++) into the Xcode

I added the protobuf class "xxx.pb.h","xxx.pb.cc" in Project. I added a path"/usr/local/include" in Header Search Paths, and added a path"/usr/local/lib" in Library Search Paths. Now I encountered a ...
0
votes
1answer
116 views

Reading protobuf in python. Extracting data

I am trying to work with data from spinn3r. The data is returned as a protobuf. In python, when I print the protobuf object, I get this: print data source { link { href: "" resource: "" } ...
0
votes
0answers
124 views

Calling protobuf rpc method of c++ from c#

I have a RPC server in C++ using protobuf having a remote method. Protobuf created a .pb.cc file in which it has implementation of the RPCService. It has the difintion of stub also. I created a client ...
0
votes
1answer
96 views

Google Protocol Buffer error

I am using the following code int lenSend = odl->ByteSize(); char* buf = (char *)malloc(lenSend); odl->SerializeToArray(buf, lenSend); I get this error and I can't understand why I get it ...
1
vote
1answer
70 views

Best practices for sharing contracts when using Google Protocol Buffers?

What are some effective ways to share contracts between peer applications, when using Google Protobuffers as the transport? Have any best practices emerged? Previously I would have used binary ...
1
vote
1answer
232 views

C# RestSharp PUT method and send raw bytes (protobuf)

How to send a byte array using HTTP PUT method? Method AddFile of the class RestRequest sends extra headers. Method AddParameter takes an Object type. How I do it: byte[] data; using (var ms = new ...
1
vote
1answer
39 views

How do you manage protocol buffer definition files?

At my company, we've standardized on using Protocol Buffers over a message bus as a way to allow services to communicate. This is fine, however I'm running into a problem in trying to figure out how ...
0
votes
1answer
90 views

How do I process Protocol Buffer files in Hadoop Map/Reduce using compression other than LZO?

I would like to use Hadoop Map/Reduce to process delimited Protocol Buffer files that are compressed using something other than LZO, e.g. xz or gzip. Twitter's elephant-bird library seems to mainly ...
1
vote
1answer
224 views

Google Protocol Buffers - protobuf-net deserialization not working properly

I am experiencing difficulties successfully deserializing a byte array that had been serialized with a pre-compiled protobuff serializer class ModelSerializer. Using this, the serialization and ...
0
votes
1answer
29 views

Missing functions in protobuf generated file

I compiled the following file lsp.proto message LSPMessage { required uint32 connid=1; // Connection ID required uint32 seqnum=2; // Sequence Num required bytes payload=3; // Payload } In another ...
5
votes
2answers
83 views

How do I convert MySQL unsigned ints to Protocol Buffer uint32s in Java?

I'm working on converting a bunch of old tab-separated MySQL database dump files into Protocol Buffers and have run into a snag. The MySQL table includes a field of type int(11) unsigned, which I have ...
1
vote
1answer
69 views

problems building the protobuf example apps

I'm new to protobufs and was trying to learn more about using them. I've downloaded the protobuf packaged from here. There is a README.txt file inside the examples folder of the archive which gives ...
1
vote
1answer
88 views

Protobuf-net on Windows Phone 8

I try use Google protobuf in my WP8 application. I use protobuf-net for my purpoces. When I generate my proto.cs file from qwerty.proto I see next string (below) ... [global::System.Serializable, ...
0
votes
0answers
72 views

Grails 2.2.0 upgrade causing protocol buffers mismatch

We are in the process of upgrading our grails 2.0.3 application to grails 2.2.0 with groovy 2 and jdk 1.7. However, we found that grails 2.2.0 comes with protobuf-java 2.4.1 which is causing a ...
1
vote
1answer
124 views

Serializing and Deserializing with Polymorphism and Protobuf-net

I'm trying to use protobuf-net to serialize objects. I'm not sure if what I'm trying to do with inheritance is supported, but I thought I'd check and see if it is or if I'm just doing something wrong. ...
5
votes
1answer
214 views

Static method invocation via Method.invoke() gave me NPE

I'm dealing with Google Protobuf messages. Since my needs are to set instance fields of an Object (some of them are Protobuff messages), I've wrote a function that retrieve via reflection the builder ...
1
vote
2answers
99 views

Can protobuf read partially?

I want to save my terrain data to a file and load only some parts of it, because it's just too big to store it in memory as a whole. Actually I don't even know whether the protobuf is good for this ...
0
votes
1answer
56 views

Does GreenHat support ProtoBuf?

We are looking to use Google's Protocol Buffers (ProtoBuf) data interchange format. We already have a Greenhat or IBM Rational Test Virtualization Server framework in place. Can we implement this ...
1
vote
0answers
59 views

Deserialize Protocol Buffers using boost::mpl

I create my RPC Protocol with PB like: enum EMessages { E_MSG_METHOD_CONNECT = 0x8001, E_MSG_EVENT_CONNECT = 0xA001, ... } struct MsgHeader { required int32 sessionRef = 1; required ...
1
vote
2answers
103 views

Preserving proto comments when generating C# with protobuf-net

We are using protobuf-net to handle our Protocol Buffer needs in a C# application. Since we share our .proto files with other, non-managed applications, we are generating our code from the .proto ...
2
votes
2answers
208 views

Serializing List<T> using a surrogate with protobuf-net exception

I'm using protobuf-net (version 2.0.0.621) and having a problem serializing List type where T is my own class (it does't matter what it contains) and a surrogate is set for T. The surrogate is set ...
0
votes
0answers
74 views

Protobuf-c RPC_Example

In the RPC Example of protobuf-c at the following link http://code.google.com/p/protobuf-c/wiki/RPC_Example In the .proto file the DirLookup Service contains "ByName" service function service ...
0
votes
0answers
38 views

protobuf-c message pointer

I create a lspmessage.proto file, which is message LSPMessage { required uint32 connid=1; required uint32 seqnum=2; required bytes payload=3; } I compile it successfully. Then I wanna ...

1 2 3 4 5 20