list - Apache 节俭 : Returning a list/container

标签 list thrift

我制作了一个像这样的简单的节俭文件:

thrifttest.thrift

namespace cpp thrifttest
namespace d thrifttest
namespace java thrifttest
namespace php thrifttest
namespace perl thrifttest

service Test {

    list<i64> ping();

}

并在 shell 中运行“thrift --gen cpp thrifttest.thrift”

但是,当我查看 gen-cpp/Test_server.sculpture.cpp 时,它使 i64 列表成为参数,而不是返回类型:

Test_server.骨骼.cpp(摘录)

void ping(std::vector<int64_t> & _return) {
    // Your implementation goes here
    printf("ping\n");
}

在我的 server.cpp 程序中,在我创建一个返回“std::vector &”的函数 ping() 后,编译器提示

error: cannot allocate an object of abstract type ‘TestHandler’ server.cpp:30:7: note: because the following virtual functions are pure within ‘TestHandler’:

这是server.cpp的完整代码 服务器.cpp

#include <thrift/concurrency/ThreadManager.h>
#include <thrift/concurrency/PosixThreadFactory.h>
#include <thrift/protocol/TBinaryProtocol.h>
#include <thrift/server/TSimpleServer.h>
#include <thrift/server/TThreadPoolServer.h>
#include <thrift/server/TThreadedServer.h>
#include <thrift/transport/TServerSocket.h>
#include <thrift/transport/TTransportUtils.h>

#include <iostream>
#include <stdexcept>
#include <sstream>

#include "gen-cpp/Test.h"

using namespace std;
using namespace apache::thrift;
using namespace apache::thrift::protocol;
using namespace apache::thrift::transport;
using namespace apache::thrift::server;

using boost::shared_ptr;

using namespace thrifttest;

using namespace boost;

unsigned long giant[100];

class TestHandler : virtual public TestIf {
 public:
  TestHandler() {
      for (int i = 0; i < 100; i++) {
          giant[i] = -1;
      }
  }


  std::vector<int64_t> & ping() {
        return (std::vector<int64_t> &)giant;
    }

  void ping(std::vector<int64_t> & bla) {}
};

int main(int argc, char **argv) {

  shared_ptr<TestHandler> handler(new TestHandler());
  shared_ptr<TProcessor> processor(new TestProcessor(handler));
  shared_ptr<TServerTransport> serverTransport(new TServerSocket(port));
  shared_ptr<TTransportFactory> transportFactory(new TBufferedTransportFactory());
  shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());

  TSimpleServer server(processor,
                       serverTransport,
                       transportFactory,
                       protocolFactory);

  printf("Starting the server...\n");
  server.serve();
  printf("done.\n");
  return 0;
}

最佳答案

我偶然发现一篇文章( StackOverflow: Handling Apache Thrift List Map Return Types in C )讨论了这个确切的问题(尽管答案对我来说不起作用)。事实证明,thrift 使用引用传递语法,尽管 "Thrift uses a pass by value model" - Gupta 。这是一个例子:

.thrift 文件

service Test {

    list<string> ping();
}

服务器端

void ping(std::vector<string> & _return) {
    _return.push_back("hello");    //initialize the vector _return with values "hello","world"
    _return.push_back("world");
}

客户端

std::vector<string> result;     //create vector "result" for storing the values
client.ping(result);
printf("%s %s!\n", result[0].c_str(), result[1].c_str());   //c_str() turns the vector string into a C-style string

客户端输出(启动服务器后)

hello world!

感谢 Thrift 缺少文档,我玩得很开心! #4小时谷歌搜索&哭泣

关于list - Apache 节俭 : Returning a list/container,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17561416/

相关文章:

java - 用于公开大文件的 Spark Thrift 服务器?

apache-spark - Power BI 和 Spark-ODBC : ERROR [HY000] [Microsoft][ThriftExtension] (4)

java - 如果没有更改 thrift 文件,如何防止 java 代码的日期重新生成?

list - Prolog - 列表包含 2x 元素 X

list - 试图了解如何不向列表中添加元素

python - 在 python 中使用逆向字典简化代码

python - 将 Thrift 客户端连接到同一主机上不同 docker 容器中的 Thrift 服务器

c++ - thrift 中的大量同时连接

python - 如果切片复制引用为什么会出现这种行为?

c# - 如何从字符串数组列表中获取特定值