NcEngine
TaskGraph.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ExceptionContext.h"
8
9#include "taskflow/taskflow.hpp"
10#include "ncutility/NcError.h"
11
12#include <vector>
13
14namespace nc::task
15{
18{
19 tf::Taskflow graph;
20 ExceptionContext exceptionContext;
21 std::vector<std::unique_ptr<tf::Taskflow>> storage;
22};
23
25struct Task
26{
27 tf::Task task;
28 size_t id;
29 std::vector<size_t> predecessors;
30 std::vector<size_t> successors;
31};
32
34template<class Phase>
36{
37 public:
50 template<std::invocable<> F>
51 auto Add(size_t id,
52 std::string_view name,
53 F&& func,
54 std::vector<size_t> predecessors = {},
55 std::vector<size_t> successors = {}) -> tf::Task
56 {
57 return Schedule(id, Emplace(name, std::forward<F>(func)), std::move(predecessors), std::move(successors));
58 }
59
72 auto Add(size_t id,
73 std::string_view name,
74 std::unique_ptr<tf::Taskflow> graph,
75 std::vector<size_t> predecessors = {},
76 std::vector<size_t> successors = {}) -> tf::Task
77 {
78 NC_ASSERT(graph != nullptr, "Task graph should not be null.");
79 return Schedule(id, Emplace(name, std::move(graph)), std::move(predecessors), std::move(successors));
80 }
81
84 void StoreGraph(std::unique_ptr<tf::Taskflow> graph)
85 {
86 m_ctx->storage.push_back(std::move(graph));
87 }
88
91 {
92 return m_ctx->exceptionContext;
93 }
94
95 protected:
96 std::unique_ptr<TaskGraphContext> m_ctx;
97 std::vector<Task> m_tasks;
98
99 TaskGraph()
100 : m_ctx{std::make_unique<TaskGraphContext>()}
101 {
102 }
103
104 ~TaskGraph() noexcept = default;
105
106 auto Schedule(size_t id, tf::Task handle, std::vector<size_t> predecessors, std::vector<size_t> successors) -> tf::Task
107 {
108 return m_tasks.emplace_back(handle, id, std::move(predecessors), std::move(successors)).task;
109 }
110
111 template<std::invocable<> F>
112 auto Emplace(std::string_view name, F&& func) -> tf::Task
113 {
114 return m_ctx->graph.emplace(Guard(m_ctx->exceptionContext, std::forward<F>(func))).name(name.data());
115 }
116
117 auto Emplace(std::string_view name, std::unique_ptr<tf::Taskflow> graph) -> tf::Task
118 {
119 auto handle = m_ctx->graph.composed_of(*graph).name(name.data());
120 m_ctx->storage.emplace_back(std::move(graph));
121 return handle;
122 }
123};
124
126struct UpdatePhase;
127
129struct RenderPhase;
130
132using UpdateTasks = TaskGraph<UpdatePhase>;
133
135using RenderTasks = TaskGraph<RenderPhase>;
136} // namespace nc::task
TaskGraph< RenderPhase > RenderTasks
Alias for the TaskGraph handling render tasks.
Definition: TaskFwd.h:18
TaskGraph< UpdatePhase > UpdateTasks
Alias for the TaskGraph handling update tasks.
Definition: TaskFwd.h:17
Base class for non-copyable non-movable types.
Definition: StableAddress.h:7
State shared between all tasks in a graph for storing an exception.
Definition: ExceptionContext.h:18
Task graph interface for building a TaskGraphContext with Module tasks.
Definition: TaskGraph.h:36
auto GetExceptionContext() noexcept -> ExceptionContext &
Get the TaskGraph's ExceptionContext object.
Definition: TaskGraph.h:90
void StoreGraph(std::unique_ptr< tf::Taskflow > graph)
Take ownership of a tf::Tasflow without scheduling anything. Useful for keeping alive Taskflows that ...
Definition: TaskGraph.h:84
auto Add(size_t id, std::string_view name, F &&func, std::vector< size_t > predecessors={}, std::vector< size_t > successors={}) -> tf::Task
Schedule a single task to run during a phase.
Definition: TaskGraph.h:51
auto Add(size_t id, std::string_view name, std::unique_ptr< tf::Taskflow > graph, std::vector< size_t > predecessors={}, std::vector< size_t > successors={}) -> tf::Task
Schedule a tf::Taskflow to run during a phase.
Definition: TaskGraph.h:72
Context object holding a TaskGraph's state.
Definition: TaskGraph.h:18
Task state for an item scheduled on a TaskGraph.
Definition: TaskGraph.h:26