我正在尝试在 C# 和 C++ 之间进行通信,并取得了不同程度的成功。
我可以使用回复/请求在两者之间发送消息,但我收到的双打不正确。
出于调试目的和理解,我目前正在运行以下命令:
Clrzmq 3.0 rc1、Google ProtocolBuffer 2.5、Protobuf-csharp-port-2.4、ZeroMQ-3.2.3
.proto
package InternalComm;
message Point
{
optional double x = 1;
optional double y = 2;
optional string label = 3;
}
server.cpp(相关部分)
while (true) {
zmq::message_t request;
// Wait for next request from client
socket.recv (&request);
zmq::message_t reply (request.size());
memcpy ((void*)reply.data(), request.data(), request.size());
socket.send(reply);
}
client.cs(相关部分)
public static Point ProtobufPoint(Point point)
{
Point rtn = new Point(0,0);
using (var context = ZmqContext.Create())
{
using (ZmqSocket requester = context.CreateSocket(SocketType.REQ))
{
requester.Connect("tcp://localhost:5555");
var p = InternalComm.Point.CreateBuilder().SetX(point.X).SetY(point.Y).Build().ToByteArray();
requester.Send(p);
string reply = requester.Receive(Encoding.ASCII);
Console.WriteLine("Input: {0}", point);
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(reply);
var message = InternalComm.Point.ParseFrom(bytes);
rtn.X = message.X;
rtn.Y = message.Y;
Console.WriteLine("Output: {0}", rtn);
}
}
return rtn;
}
在 C# 方面,Point 是一个非常简单的结构。只有 x 和 y 属性。
这是运行上述代码后我从单元测试中得到的结果。
输入 (1.31616874365468, 4.55516872325469)
输出 (0.000473917985115791, 4.55516872323627)输入(274.120398471829、274.128936418736)
输出(274.077917334613、274.128936049925)输入 (150.123798461987, 2.345E-12)
输出 (145.976459594794, 1.11014954927532E-13)输入 (150, 0)
输出 (145.96875, 0)
我认为问题在于我的 protobuf 代码不正确(怀疑这是 Skeet 方面的错误)。我也在假设 server.cpp 没有对消息做任何事情而是按原样返回它。
想法?