9#include "taskflow/taskflow.hpp"
21 std::vector<std::unique_ptr<tf::Taskflow>> storage;
29 std::vector<size_t> predecessors;
30 std::vector<size_t> successors;
50 template<std::invocable<> F>
52 std::string_view name,
54 std::vector<size_t> predecessors = {},
55 std::vector<size_t> successors = {}) -> tf::Task
57 return Schedule(
id, Emplace(name, std::forward<F>(func)), std::move(predecessors), std::move(successors));
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
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));
86 m_ctx->storage.push_back(std::move(graph));
92 return m_ctx->exceptionContext;
96 std::unique_ptr<TaskGraphContext> m_ctx;
97 std::vector<Task> m_tasks;
104 ~TaskGraph() noexcept = default;
106 auto Schedule(
size_t id, tf::Task handle, std::vector<
size_t> predecessors, std::vector<
size_t> successors) -> tf::Task
108 return m_tasks.emplace_back(handle,
id, std::move(predecessors), std::move(successors)).task;
111 template<std::invocable<> F>
112 auto Emplace(std::string_view name, F&& func) -> tf::Task
114 return m_ctx->graph.emplace(Guard(m_ctx->exceptionContext, std::forward<F>(func))).name(name.data());
117 auto Emplace(std::string_view name, std::unique_ptr<tf::Taskflow> graph) -> tf::Task
119 auto handle = m_ctx->graph.composed_of(*graph).name(name.data());
120 m_ctx->storage.emplace_back(std::move(graph));
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