如何在c ++中使用protobuf over socket发送序列化数据

时间:2012-09-02 20:08:56

标签: c++ protocol-buffers

我正在尝试使用protobuf序列化一些数据并通过套接字(winsock2)发送它。我真的很感激如何做到这一点的简单例子。我已经检查了Google文档,但没有有用的示例或初学者解释。

提前感谢您的帮助!我想做的是:

客户端:


printf("Sporočilo: ");

getline(cin, line);

if(line == "exit") break;

printf("ID odjemalca: ");

cin >> id;

message::Message sporocilo;

sporocilo.set_bodytext(line);

sporocilo.set_uniqueid(id);

//... some usefull code for serializing data and send it over socket

send(sClient, Message, sizeof(Message), 0);

服务器端:


WSARecv(Socket, &(DataBuf), 1, &RecvBytes, &Flags, NULL, NULL);

//... some usefull code for deserializing data and getting out bodytext and uniqueid

cout << sporocilo.bodytext();

cout << sporocilo.uniqueid();

1 个答案:

答案 0 :(得分:3)

最简单的序列化方法是:

string buffer;
sporocilo.AppendToString(&buffer);
send(sock, buffer.c_str(), buffer.size(), 0);

如果没有WSARecv之前和之后没有包含的代码,很难说接收方是否做错了。