gpt4 book ai didi

c++ - Cap'n Proto 和 promise 流水线

转载 作者:行者123 更新时间:2023-11-30 03:34:51 29 4
gpt4 key购买 nike

我想尝试使用 Cap'n Proto C++ RPC 进行 promise 流水线操作,但我不知道该怎么做。

这是我的模式:

interface Test {
getInt @0 () -> (intResult :Int32);
increment @1 (intParam :Int32) -> (intResult :Int32);
}

这是我想做的(伪代码):

increment(getInt());

我试着做这样的事情:

auto request1 = test.getIntRequest();
auto promise = request1.send();

auto request2 = test.incrementRequest();
request2.setIntParam(promise.getIntResult()) // HERE IS THE PROBLEM
auto promise2 = request2.send();

但这不是使用 promise 的好方法。我希望你明白我想做什么。

谢谢。

编辑:另一个问题:如何在服务器上实现这些方法?

我写了这段代码:

#include <kj/debug.h>
#include <capnp/ez-rpc.h>
#include <capnp/message.h>
#include <iostream>
#include "test.capnp.h"

using namespace std;


class TestI : virtual public Test::Server
{
public:
TestI() {}
::kj::Promise<void> getInt(GetIntContext context)
{
// ????
}
::kj::Promise<void> increment(IncrementContext context)
{
// ????
}
};

class Int32BoxI : virtual public Int32Box::Server
{
private:
int val = 12;
public:
Int32BoxI(int value): val(value) {}
::kj::Promise<void> get(GetContext context)
{
context.getResults().setValue(this->val);
return kj::READY_NOW;
}
}

但我不知道如何实现 getInt() 和 increment()。

最佳答案

这里的问题是您正尝试对 int 进行流水线处理,但流水线处理仅适用于对象引用。您可以通过将 int 包装在一个对象中来解决这个问题,如下所示:

interface Int32Box {
get @0 () -> (value :Int32);
}

interface Test {
getInt @0 () -> (intResult :Int32Box);
increment @1 (intParam :Int32Box) -> (intResult :Int32Box);
}

现在您的代码将按编写的方式运行。

当然,现在你必须另外调用.get()关于决赛 Int32Box为了读取值。不过幸运的是,您可以通过管道传输此调用,这样它就不需要任何额外的网络往返。

auto request1 = test.getIntRequest();
auto promise = request1.send();

auto request2 = test.incrementRequest();
request2.setIntParam(promise.getIntResult());
auto promise2 = request2.send();

auto request3 = promise2.getIntResult().getRequest();
auto promise3 = request3.send();

// This is the only wait!
int finalResult = promise3.wait().getValue();

以上序列只执行一次网络往返。

关于c++ - Cap'n Proto 和 promise 流水线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41722021/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com