I'm trying to hack a client together in C++ using Google's Protocol Buffers and boost::asio.

My problem is that I don't know how I can feed the protobuf message to asio. What I have is this:

// set up *sock - works
PlayerInfo info;
info.set_name(name);
// other stuff

Now I know that the following is wrong, but I'll post it anyways:

size_t request_length = info.ByteSize();
boost::asio::write(*sock, boost::asio::buffer(info, request_length));

I got as far as that I know that I have to pack my message differently into the buffer - but how?

Generally speaking, I'm having a hard time figuring out how boost::asio works. There are some tutorials, but they normally just cover sending standard data formats such as ints, which works out-of-the-box. I figured that my problem is serialization, but on the other hand I learned that protobuf should do this for me... and now I'm confused ;)

Thanks for your help!

--> Daniel Gehriger provided the solution, thanks a lot!

link|improve this question
By accepting an answer you explicitly acknowledge that it provided the solution you were looking for. There's no need for separate acknowledgements – Eli Bendersky Mar 9 '11 at 8:12
feedback

1 Answer

up vote 3 down vote accepted

I don't know much about Google's Protocol buffer, but try the following:

PlayerInfo info;
info.set_name(name);
// ...

boost::asio::streambuf b;
std::ostream os(&b);
info.SerializeToOstream(&os);

boost::asio::write(*sock, b);
link|improve this answer
2  
You will need to add some more information to the stream so that you can reliably read the PlayerInfo object on the other end. Protobuf does not directly embed the object type in the stream. I don't think that it contains the length either, but I would have to check the documentation. BTW, ASIO doesn't know about objects; it only deals with bytes. Keep that in mind when you read the examples and documentation. – Dan Jan 27 '11 at 12:14
Daniel Gehriger: Thanks a lot! That worked! – adi64 Jan 27 '11 at 19:43
Dan: Yup, I figured I have to add the size beforehand so the server is able to read it... Thanks! – adi64 Jan 27 '11 at 19:44
@adi64: great! Maybe you would like to mention that in your question, in case it's useful to someone else. – Daniel Gehriger Jan 27 '11 at 19:54
@adi64 - thanks for the credits! But I wanted to say that you mention that one also has to send the size beforehand. That part of the code could be of interest. – Daniel Gehriger Jan 27 '11 at 20:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.