NcEngine
ExceptionContext.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncengine/type/StableAddress.h"
8
9#include <concepts>
10#include <exception>
11#include <mutex>
12#include <utility>
13
14namespace nc::task
15{
18{
19 public:
21 void StoreException(std::exception_ptr e)
22 {
23 auto lock = std::lock_guard{m_mutex};
24 if(m_exception)
25 {
26 return;
27 }
28
29 m_exception = e;
30 }
31
37 {
38 if(m_exception)
39 {
40 auto e = std::exchange(m_exception, nullptr);
41 std::rethrow_exception(e);
42 }
43 }
44
45 private:
46 std::exception_ptr m_exception;
47 std::mutex m_mutex;
48};
49
62template<std::invocable<> F>
63auto Guard(ExceptionContext& context, F&& func)
64{
65 if constexpr(std::is_nothrow_invocable_v<F>)
66 {
67 return std::forward<F>(func);
68 }
69 else
70 {
71 return [func = std::forward<F>(func), &context]
72 {
73 try
74 {
75 func();
76 }
77 catch(const std::exception&)
78 {
79 context.StoreException(std::current_exception());
80 }
81 };
82 }
83}
84} // namespace nc::task
auto Guard(ExceptionContext &context, F &&func)
Wrap a callable in a try-catch targeting a TaskGraph's ExceptionContext.
Definition: ExceptionContext.h:63
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
void StoreException(std::exception_ptr e)
Store the current exception, if one is not already stored.
Definition: ExceptionContext.h:21
void ThrowIfExceptionStored()
Rethrow an exception caught during task execution, if one was set.
Definition: ExceptionContext.h:36