我正在尝试使用运行ZMQ v 3.2.0的本机C版本的设备来使用使用pub / sub ZMQ套接字使用JeroMQ(纯Java impl)构建的Java应用程序。但是,似乎JeroMQ在消息有效负载与C实现之前使用不同的标志配置。 IIRC,JeroMQ旨在与v 3.2.2兼容,所以我不确定这是否是JeroMQ端口中的错误
我的Java测试代码与psenvpub示例类似: 公共课psenvpub {
public static void main (String[] args) throws Exception {
// Prepare our context and publisher
Context context = ZMQ.context(1);
Socket publisher = context.socket(ZMQ.PUB);
publisher.bind("tcp://*:15052");
byte seq = 1;
while( !Thread.currentThread().isInterrupted() ){
byte[] message = new byte[8];
message[0] = 0;
message[1] = 0;
message[2] = 0;
message[3] = 0;
message[4] = seq++;
message[5] = 0;
message[6] = 0;
message[7] = 0;
publisher.send(message);
try{
Thread.sleep(1000);
}
catch(Exception e ){
break;
}
}
}
}
我正在为Native C端点使用perl脚本:
use strict;
use warnings;
use Vocollect::ZMQ::Context;
use ZMQ::Constants qw(ZMQ_SUB);
my $ctx = Vocollect::ZMQ::Context->new();
my $sock = $ctx->socket(ZMQ_SUB);
$sock->connect('tcp://localhost:15052');
$sock->subscribe('');
while (1) {
my $msg = $sock->recv(10000);
print "Received msg\n" if defined($msg);
}
当订阅者收到第一条消息时,由于libzmq源代码中的断言失败而崩溃:
Assertion failed: options.recv_identity (..\..\..\src\socket_base.cpp:990)
这是:
void zmq::socket_base_t::extract_flags (msg_t *msg_)
{
// Test whether IDENTITY flag is valid for this socket type.
if (unlikely (msg_->flags () & msg_t::identity))
zmq_assert (options.recv_identity);
// Remove MORE flag.
rcvmore = msg_->flags () & msg_t::more ? true : false;
}
发送的数据包的wireshark跟踪显示,JeroMQ pub / sub和本地C pub / sub之间的握手序列以及标志是不同的。使用JeroMQ或本地C libzmq的端点时,我没有看到任何问题。