1 Star 0 Fork 0

zoujun/SunTaskFlow

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Executor.cpp 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
vincent 提交于 2021-08-22 17:48 . init
#include "Executor.h"
#include "Task.h"
#include "ThreadPool.h"
#include <cassert>
namespace Sun {
Executor::Executor() {
pool_ = new ThreadPool(std::thread::hardware_concurrency());
}
Executor::~Executor() {
delete pool_;
}
void Executor::run(Task* taskf) {
if (taskf == nullptr) return;
//递归taskf,计算总task 数
totalUnFinishedTaskNum_ = taskf->getTaskNum();
//totalUnFinishedTaskNum_ -= 1;
spawn(taskf);
while (totalUnFinishedTaskNum_>0) {
queue_.wait();
if (queue_.empty()) {
assert(false);
}
Msg msg = queue_.front();
//在pop,之前,先把msg push到队列,从而保证队列始终非空
if (msg.taskState == TaskState::FINISH) {
totalUnFinishedTaskNum_ -= 1;
if (totalUnFinishedTaskNum_ == 0) {
//queue_.stop_wait();
}
for (Task* task : msg.task->successors_) {
task->unfinished_dependents_num_ -= 1;
if (task->unfinished_dependents_num_ == 0) {
spawn(task);
}
}
if (msg.task->parent) {
msg.task->parent->unfinished_children_num_ -= 1;
if (msg.task->parent->unfinished_children_num_ == 0)
{
Msg msg2;
msg2.task = msg.task;
notify(msg2);
}
}
else{
assert(totalUnFinishedTaskNum_ == 0);
}
}
queue_.pop();
}
}
void Executor::spawn(Task* task) {
//如果有子任务,先spawn子任务
if (!task->children_.empty()) {
std::vector<Task*> srcs;
for (auto& it : task->children_) {
if (it->dependents_.empty()) {
srcs.push_back(it);
}
}
for (auto& it : srcs) {
spawn(it);
}
}
else {
auto ftr = pool_->enqueue([task, this]() {
task->run();
Msg msg;
msg.task = task;
notify(msg);
});
}
}
void Executor::notify(const Msg& msg) {
queue_.push(msg);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/matchman_zj/SunTaskFlow.git
git@gitee.com:matchman_zj/SunTaskFlow.git
matchman_zj
SunTaskFlow
SunTaskFlow
main

搜索帮助