Tagged Questions
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 ...
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 ...
0
votes
1answer
173 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
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
111 views
Protobuf deserialize, missing required fields
I use protobuf-c to serialize the followin message.
message LSPMessage
{
required uint32 connid=1;
required uint32 seqnum=2;
required bytes payload=3;
}
client.c
int length(char* ...
1
vote
3answers
53 views
using gdb debug c
I run this command in my terminal,
gcc -g -I/usr/include -g sample_client.c lsp.o lspmessage.pb-c.o -o sample_client -L/usr/lib -lprotobuf-c
in my file directory, I can see a sample_client file. ...
2
votes
1answer
76 views
fail to read message on the client end using C
I use protocol buffers to make data structure and on the server end I write the following code to send a message using Java while I receive the message on the client end using C.
Java Server:
...
1
vote
1answer
232 views
Uses protobuf-c 0.15 on an embedded ARM system (STM32 F4)
Is it possible to develop a system which uses protobuf-c 0.15 on an embedded ARM system (STM32 F4) and communicates with a java server, which uses protobuf?
protobuf-c 0.15 uses dynamic memory ...
1
vote
1answer
122 views
Conversion between C structs (C++ POD) and google protobufs?
I have code that currently passes around a lot of (sometimes nested) C (or C++ Plain Old Data) structs and arrays.
I would like to convert these to/from google protobufs. I could manually write ...
0
votes
1answer
424 views
Sending structs with ZeroMQ and ProtocolBuffers
I'm writing a program that's supposed to send C structures via ZeroMQ.
Therefore I'm using Google's ProtocolBuffers to serialize the structs.
I do now have the problem that my subscriber side is not ...
2
votes
1answer
226 views
protobuf c string decode
Experts, I need your help in decoding the string value in the protobuf-c message. Say the message
m { optional string id =0 }
the string is stored with a value "test", by using the C api m.id = ...
1
vote
1answer
125 views
Defining a MAC address using protocol buffers
I am trying to define an eight byte MAC address data element using protocol buffers in C. I have tried:
message mac {
required bytes address = 1 [(nanopb).max_size = 8];
}
but this creates a ...
2
votes
2answers
382 views
what is the best way to do bidirectional IPC between a long-running c process and python?
I have an existing C process that can take one text input and produce a single image file.
This C process has a high setup/teardown cost due to it's interface with an external system.
Once the ...
0
votes
1answer
197 views
Usage of strings in protobuf-C
Iam new to use protobuf. Am using protobuf library in Linux-C.
Is there any example for setting optional and required string to my message?
3
votes
0answers
343 views
What's the best RPC implementation that works with Google protobuf? [closed]
I want to use RPC+protobuf in my distributed application(written by C/C++), and I found that there are already some RPC implementations listed in "Third-Party Add-ons for Protocol Buffers", but I ...
0
votes
1answer
307 views
Protobuf-C Compilation Issue
I'm feeling a bit thick, but when I run through even basic examples provided on http://code.google.com/p/protobuf-c/wiki/Examples, I keep getting the following build errors:
/tmp/cc19catp.o: In ...
4
votes
2answers
334 views
Parsing a user defined protocol from C and Python
I need to define a binary protocol and use it from both C and Python written application.
My question is, what is the right tool for the job so I won't need to implement the protocol parsing and ...
4
votes
1answer
508 views
protocol buffers with c & c++ [closed]
Now i have a c/s program with protocol buffers(using c++). I want to rewrite the server with c. But in the .proto file there are many services. The program implements the rpc itself, while protocol ...
0
votes
1answer
249 views
How to serialize/deserialize an enumeration in protobuf-c
I have the following message with an enumeration:
message testmessage {
enum testenum {
alpha = 1;
beta = 2;
}
required unit32 datapoint = 1;
required ...
3
votes
1answer
178 views
Can I use protobufs to in the kernel?
I need to define a communication protocol with a Linux device driver. Protobufs look very nice, and there is an active C port.
Is it possible to use protobufs in a Linux device driver?
Obviously the ...
1
vote
3answers
699 views
Repeated sub-messages in protobuf-c
Can somebody give me an example of packing\unpacking message with repeating sub-message in protobuf-c?
Official documentation in empty on this matter.
2
votes
2answers
230 views
binary-compatibility with C
Does Google protocol buffers are binary-compatibly with C structures?
I mean can I read serialized files from C direct into structs without deserializing?
Or protobuf-c
is the only one solution?
3
votes
2answers
457 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
...
1
vote
3answers
3k views
how to send classes defined in .proto (protocol-buffers) over a socket
I am trying to send a proto over a socket, but i am getting segmentation error. Could someone please help and tell me what is wrong with this example?
file.proto
message data{
required string ...
0
votes
4answers
155 views
Server multi-threading, a must for Protocol ? and more
Suppose a application level protocol is implemented via UDP. Client timeout is required, thus server need to keep state of each client it talks to.
Also suppose select is used.
Is it always the ...
3
votes
5answers
4k views
How to use protocol buffers?
Could someone please help and tell me how to use protocol buffers. Actually I want to exchange data through sockets between a program running on unix and anoother running on windows in order to run ...