是否可以将QSocketNotifier用于nanomsg套接字,以便在收到任何数据时执行某些操作?我尝试使用此代码,但是运行nanocat --req --connect ipc:///tmp/node0.ipc --data pong --format ascii
时没有任何反应。我什至不知道如何检查问题发生在哪一步,因为没有错误。
Wrapper::Wrapper(QObject *parent) : QObject(parent) {
...
createNode();
int fd;
size_t sz = sizeof(fd);
nn_getsockopt(sock, NN_SOL_SOCKET, NN_RCVFD, &fd, &sz);
QSocketNotifier m_notifier(fd, QSocketNotifier::Read);
QObject::connect(&m_notifier, SIGNAL(activated(int)), this, SLOT(nmsgRecieve()));
m_notifier.setEnabled(true);
...
}
void Wrapper::createNode() {
const char* url = "ipc:///tmp/node0.ipc";
if ((sock = nn_socket(AF_SP, NN_REP)) < 0) {
qDebug() << "nn_socket" << nn_strerror(nn_errno());
exit(1);
}
if ((rv = nn_bind(sock, url)) < 0) {
qDebug() << "nn_bind" << nn_strerror(nn_errno());
exit(1);
}
}
void Wrapper::nmsgRecieve() {
qDebug() << "Some msg";
char *buf = NULL;
int bytes;
if ((bytes = nn_recv(sock, &buf, NN_MSG, 0)) < 0) {
qDebug() << "nn_recv" << nn_strerror(nn_errno());
exit(1);
}
qDebug() << buf;
nn_freemsg(buf);
}
答案 0 :(得分:0)
嗯,这是一个非常愚蠢的问题,与nanomsg或QSocketNotifier无关。我创建了QSocketNotifer,以便在构造函数块结束时将其销毁。