1

我目前的任务是基于 Qt 库创建带有 Thrift IPC 接口的简单服务器。我已经下载了 thrift、编译、创建了 interface.thrift 文件并生成了存根( --gen cpp )。此外,我已经成功编译了简单的示例,但所有这些东西都没有 Qt。现在,我需要将 thrift 与 Qt 集成,但 TQTcpServer 需要 Async 处理器!在存根中我没有找到任何异步处理器(只有 TDispatchProcessor)。

如何将处理器传递给 TQTcpServer ?小例子将是最好的。

TQTcpServer(boost::shared_ptr<QTcpServer> server,
          boost::shared_ptr<TAsyncProcessor> processor,
          boost::shared_ptr<apache::thrift::protocol::TProtocolFactory> protocolFactory,
          QT_PREPEND_NAMESPACE(QObject)* parent = NULL);
4

2 回答 2

1

我找到了解决方案,可能对其他有用

要在 Qt 中使用 Thrift,您需要创建具有异步支持的 STUB

thrift --gen cpp:cob_style ./your_name.thrift

将类 your_nameAsyncHandler、your_nameHandler 从生成的 STAB 复制到您的项目

boost::shared_ptr<QTcpServer> tcp_server_( new QTcpServer() )
if( !tcp_server_->isListening() && !tcp_server_->listen(QHostAddress::Any, 9090) )
{
    // throw exception
    return;
}

shared_ptr<your_nameAsyncHandler> handler(new your_nameAsyncHandler());
shared_ptr<TAsyncProcessor> processor(new your_nameAsyncProcessor(handler));
shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());

boost::shared_ptr<apache::thrift::async::TQTcpServer> thrift_server_( new apache::thrift::async::TQTcpServer( tcp_server_, processor, protocolFactory) );
于 2013-04-15T07:36:58.027 回答
0

这是我的主要外观,它非常简单,这一切都在本地主机上运行。

 int main(int argc, char *argv[]) {
    QCoreApplication a(argc, argv);

    boost::shared_ptr<QTcpServer> tcp_server_( new QTcpServer() );
    boost::shared_ptr<UserStorageAsyncHandler> handler(new UserStorageAsyncHandler());
    boost::shared_ptr<TAsyncProcessor> processor(new UserStorageAsyncProcessor(handler));
    boost::shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());

    boost::shared_ptr<apache::thrift::async::TQTcpServer> thrift_server_(
                new apache::thrift::async::TQTcpServer( tcp_server_, processor, protocolFactory) );

    if (!tcp_server_->listen(QHostAddress::Any, 27015)) {
        std::cout << "TCP Server not listening" << std::endl;
        return 1;
    }
    return a.exec();
}
于 2013-08-02T08:41:38.230 回答