DSPatch v.10.2.4
Loading...
Searching...
No Matches
AutoTickThread.h
1/******************************************************************************
2DSPatch - The Refreshingly Simple C++ Dataflow Framework
3Copyright (c) 2025, Marcus Tomlinson
4
5BSD 2-Clause License
6
7Redistribution and use in source and binary forms, with or without
8modification, are permitted provided that the following conditions are met:
9
101. Redistributions of source code must retain the above copyright notice, this
11 list of conditions and the following disclaimer.
12
132. Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27******************************************************************************/
28
29#pragma once
30
31#include <dspatch/Circuit.h>
32
33#include <condition_variable>
34#include <thread>
35
36namespace DSPatch
37{
38namespace internal
39{
40
42
49class AutoTickThread final
50{
51public:
52 NONCOPYABLE( AutoTickThread );
53
54 inline AutoTickThread() = default;
55
56 inline ~AutoTickThread()
57 {
58 Stop();
59 }
60
61 inline void Start( DSPatch::Circuit* circuit )
62 {
63 if ( !_stopped )
64 {
65 Resume();
66 return;
67 }
68
69 _circuit = circuit;
70
71 _stop = false;
72 _stopped = false;
73 _pause = false;
74
75 _thread = std::thread( &AutoTickThread::_Run, this );
76 }
77
78 inline void Stop()
79 {
80 _stop = true;
81
82 if ( _thread.joinable() )
83 {
84 _thread.join();
85 }
86 }
87
88 inline void Pause()
89 {
90 if ( !_stopped && ++pauseCount == 1 )
91 {
92 std::unique_lock<std::mutex> lock( _resumeMutex );
93 _pause = true;
94 _pauseCondt.wait( lock ); // wait for pause
95 }
96 }
97
98 inline void Resume()
99 {
100 if ( _pause && --pauseCount == 0 )
101 {
102 _pause = false;
103 _resumeCondt.notify_all();
104 }
105 }
106
107private:
108 inline void _Run()
109 {
110 if ( _circuit )
111 {
112 while ( !_stop )
113 {
114 _circuit->Tick();
115
116 if ( _pause )
117 {
118 std::unique_lock<std::mutex> lock( _resumeMutex );
119
120 _pauseCondt.notify_all();
121 _resumeCondt.wait( lock ); // wait for resume
122 }
123 }
124 }
125
126 _stopped = true;
127 }
128
129 std::thread _thread;
130 DSPatch::Circuit* _circuit = nullptr;
131 int pauseCount = 0;
132 bool _stop = false;
133 bool _pause = false;
134 bool _stopped = true;
135 std::mutex _resumeMutex;
136 std::condition_variable _resumeCondt, _pauseCondt;
137};
138
139} // namespace internal
140} // namespace DSPatch
Workspace for adding and routing components.
Definition Circuit.h:67
Thread class for auto-ticking a circuit.