Skip to content

Commit 2d69b22

Browse files
authored
Enable canceling graph node's successors. (sogou#1583)
* Enable canceling graph node's successors. * Update tutorial-11-graph_task.md * Update tutorial-11-graph_task.md
1 parent 195d236 commit 2d69b22

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

docs/en/tutorial-11-graph_task.md

+23
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,29 @@ Also, any of the following codes is legal and equivalent:
8484
}
8585
~~~
8686

87+
# Canceling successors
88+
89+
In graph tasks, we extend SeriesWork's **cancel** operation. When the series of a graph node is canceled, the operation will apply on all it's successive nodes recursively. The **cancel** operation is usually used in a task's callback:
90+
~~~cpp
91+
int main()
92+
{
93+
WFGraphTask *graph = WFTaskFactory::create_graph_task(graph_callback);
94+
WFHttpTask *task = WFTaskFactory::create_http_task(url, 0, 0, [](WFHttpTask *t){
95+
if (t->get_state() != WFT_STATE_SUCCESS)
96+
series_of(t)->cancel();
97+
});
98+
WFGraphNode& a = graph->create_graph_node(task);
99+
WFGraphNode& b = ...;
100+
WFGraphNode& c = ...;
101+
WFGraphNode& d = ...;
102+
a-->b-->c;
103+
b-->d;
104+
graph->start();
105+
...
106+
}
107+
~~~
108+
In this case, when http task failed, nodes b, c, d will all be canceled, because the operation is recursive.
109+
87110
# Data passing
88111

89112
Because the tasks in a graph don't share a same series, there is no general method for passing data between graph nodes.

docs/tutorial-11-graph_task.md

+24
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,30 @@ WFGraphTask的create_graph_node接口,产生一个图节点并返回节点的
8585
接下来直接运行graph,或者把graph放入任务流中就可以运行啦,和一般的任务没有区别。
8686
当然,把一个图任务变成另一个图的节点,也是完全正确的行为。
8787

88+
# 取消后继节点
89+
90+
在图任务里,我们扩展了series的cancel操作,这个操作会取消该节点的所有后继结点。
91+
取消操作一般在节点任务的callback里执行,例如:
92+
~~~cpp
93+
int main()
94+
{
95+
WFGraphTask *graph = WFTaskFactory::create_graph_task(graph_callback);
96+
WFHttpTask *task = WFTaskFactory::create_http_task(url, 0, 0, [](WFHttpTask *t){
97+
if (t->get_state() != WFT_STATE_SUCCESS)
98+
series_of(t)->cancel();
99+
});
100+
WFGraphNode& a = graph->create_graph_node(task);
101+
WFGraphNode& b = ...;
102+
WFGraphNode& c = ...;
103+
WFGraphNode& d = ...;
104+
a-->b-->c;
105+
b-->d;
106+
graph->start();
107+
...
108+
}
109+
~~~
110+
注意取消后继节点的操作是递归的,这个例子里,如果http任务失败,b,c,d三个节点的任务都会被取消。
111+
88112
# 数据传递
89113

90114
图节点之间目前没有统一的数据传递方法,它们并不共享某一个series。因此,节点间数据传递需要用户解决。

src/factory/WFGraphTask.cc

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ WFGraphNode::~WFGraphNode()
3939
{
4040
if (this->user_data)
4141
{
42+
if (series_of(this)->is_canceled())
43+
{
44+
for (WFGraphNode *node : this->successors)
45+
series_of(node)->SeriesWork::cancel();
46+
}
47+
4248
for (WFGraphNode *node : this->successors)
4349
node->WFCounterTask::count();
4450
}

0 commit comments

Comments
 (0)