-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJobSystem.h
91 lines (73 loc) · 1.79 KB
/
JobSystem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#pragma once
#include <atomic>
#include <memory>
#include <functional>
#pragma warning( disable : 4530)
/*************************/
// TODO :
// - Use fibers
// - Add different priority queues
/*************************/
namespace Job
{
class CounterInstance;
class Counter;
void Initialize();
void Shutdown();
void Wait();
void WaitForCounter(const Counter& counter);
class SpinLock
{
public:
void lock();
void unlock();
private:
std::atomic<bool> m_lock{ false };
};
class Counter
{
public:
Counter();
Counter& operator++();
Counter& operator++(int);
Counter& operator--();
Counter& operator--(int);
Counter& operator+=(const Counter& other);
uint64_t GetValue() const;
private:
CounterInstance* GetPtrValue() const;
private:
friend void WaitForCounter_Fiber(const Counter&);
friend CounterInstance;
std::shared_ptr<CounterInstance> m_pCounterInstance;
};
enum class Fence
{
None,
With
};
class JobBuilder
{
public:
JobBuilder();
template<Fence fenceType = Fence::With>
void DispatchJob(const std::function<void()>& job);
void DispatchExplicitFence();
void DispatchWait(const Counter& counter);
const Counter& ExtractWaitCounter();
private:
void DispatchJobInternal(const std::function<void()>& job);
private:
Counter m_counter;
Counter m_fence;
};
template<Fence fenceType>
void JobBuilder::DispatchJob(const std::function<void()>& job)
{
DispatchJobInternal(job);
if constexpr (fenceType == Fence::With)
{
DispatchExplicitFence();
}
}
}