0

我正在寻找 .NET TPL 数据流库的 C++ 模拟。

在 TPL 数据流中,您可以指定并行度和块的容量选项。如果块的输入队列的大小达到其容量,则暂停相应块的生产者的执行:

var buffer = new BufferBlock<int>(new DataflowBlockOptions() { BoundedCapacity = 10 });

var producer = new Task(() => { 
    for (int i = 0; i < 1000; i++) {
        buffer.Post(i);
    }
});

var fstAction = new TransformBlock<int, int>(async (i) => {
    return i*i;
}, MaxDegreeOfParallelism = 4, BoundedCapacity = 10);

var sndAction = new ActionBlock<int>(async (i) => {
    Thread.Sleep(5000);
    Console.WriteLine(i);
}, MaxDegreeOfParallelism = 4, BoundedCapacity = 10);

buffer.LinkTo(fstAction, new DataflowLinkOptions() { PropagateCompletion = true });
fstAction.LinkTo(sndAction, new DataflowLinkOptions() { PropagateCompletion = true });

sndAction.Completition.Wait();

我需要 C++ 中的类似功能。TBB 似乎是一个不错的选择,但我找不到如何在function_node/上指定容量buffer_node。这是一个例子:

std::size_t exportConcurrency = 16;
std::size_t uploadConcurrency = 16;

flow::graph graph;

std::size_t count = 1000;
std::size_t idx = 0;

flow::source_node<std::vector<std::string>> producerNode(graph, [&count, &idx](auto& out) {
    out = { "0"s };
    return ++idx != count;
});

flow::function_node<std::vector<std::string>, std::string> exportNode(graph, exportConcurrency, [](auto& ids) {
    return "0"s;
});

flow::function_node<std::string, std::string> uploadNode(graph, uploadConcurrency, [](auto& chunk) {
    std::this_thread::sleep_for(5s);
    return "0"s;
});

flow::make_edge(producerNode, exportNode);
flow::make_edge(exportNode, uploadNode);

graph.wait_for_all();
4

1 回答 1

0

可以在官方文档中找到,推荐三种限制资源消耗的方法,其中一种是使用limiter_node

限制资源消耗的一种方法是使用 alimiter_node来限制可以流过图表中给定点的消息数量。

这不是您想要的确切内容,但仍应进行调查。我还能够找到并发队列类部分,这些部分可以通过方法与有限容量一起使用set_capacity。也许你可以这样管理它。希望这可以帮助。

于 2017-07-30T01:56:21.910 回答