forked from openbullet/OpenBullet2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadBasedParallelizer.cs
190 lines (161 loc) · 5.7 KB
/
ThreadBasedParallelizer.cs
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace RuriLib.Parallelization
{
/// <summary>
/// Parallelizer that expoits a custom pool of threads.
/// </summary>
public class ThreadBasedParallelizer<TInput, TOutput> : Parallelizer<TInput, TOutput>
{
#region Private Fields
public List<Thread> threadPool = new();
#endregion
#region Constructors
/// <inheritdoc/>
public ThreadBasedParallelizer(IEnumerable<TInput> workItems, Func<TInput, CancellationToken, Task<TOutput>> workFunction,
int degreeOfParallelism, long totalAmount, int skip = 0) : base(workItems, workFunction, degreeOfParallelism, totalAmount, skip)
{
}
#endregion
#region Public Methods
/// <inheritdoc/>
public async override Task Start()
{
await base.Start();
stopwatch.Restart();
Status = ParallelizerStatus.Running;
_ = Task.Run(() => Run()).ConfigureAwait(false);
}
/// <inheritdoc/>
public async override Task Pause()
{
await base.Pause();
Status = ParallelizerStatus.Pausing;
await WaitCurrentWorkCompletion();
Status = ParallelizerStatus.Paused;
stopwatch.Stop();
}
/// <inheritdoc/>
public async override Task Resume()
{
await base.Resume();
Status = ParallelizerStatus.Running;
stopwatch.Start();
}
/// <inheritdoc/>
public async override Task Stop()
{
await base.Stop();
Status = ParallelizerStatus.Stopping;
softCTS.Cancel();
await WaitCompletion().ConfigureAwait(false);
stopwatch.Stop();
}
/// <inheritdoc/>
public async override Task Abort()
{
await base.Abort();
Status = ParallelizerStatus.Stopping;
hardCTS.Cancel();
softCTS.Cancel();
await WaitCompletion().ConfigureAwait(false);
stopwatch.Stop();
}
/// <inheritdoc/>
public async override Task ChangeDegreeOfParallelism(int newValue)
{
await base.ChangeDegreeOfParallelism(newValue);
degreeOfParallelism = newValue;
}
#endregion
#region Private Methods
// Run is executed in fire and forget mode (not awaited)
private async void Run()
{
// Skip the items
using var items = workItems.Skip(skip).GetEnumerator();
while (items.MoveNext())
{
WAIT:
// If we paused, stay idle
if (Status == ParallelizerStatus.Pausing || Status == ParallelizerStatus.Paused)
{
await Task.Delay(1000);
goto WAIT;
}
// If we canceled the loop
if (softCTS.IsCancellationRequested)
{
break;
}
// If we haven't filled the thread pool yet, start a new thread
// (e.g. if we're at the beginning or the increased the DOP)
if (threadPool.Count < degreeOfParallelism)
{
StartNewThread(items.Current);
}
// Otherwise if we already filled the thread pool
else
{
// If we exceeded the CPM threshold, update CPM and go back to waiting
if (IsCPMLimited())
{
UpdateCPM();
await Task.Delay(100);
goto WAIT;
}
// Search for the first idle thread
var firstFree = threadPool.FirstOrDefault(t => !t.IsAlive);
// If there is none, go back to waiting
if (firstFree == null)
{
await Task.Delay(100);
goto WAIT;
}
// Otherwise remove it
threadPool.Remove(firstFree);
// If there's space for a new thread, start it
if (threadPool.Count < degreeOfParallelism)
{
StartNewThread(items.Current);
}
// Otherwise go back to waiting
else
{
await Task.Delay(100);
goto WAIT;
}
}
}
// Wait until ongoing threads finish
await WaitCurrentWorkCompletion();
OnCompleted();
Status = ParallelizerStatus.Idle;
hardCTS.Dispose();
softCTS.Dispose();
stopwatch.Stop();
}
// Creates and starts a thread, given a work item
private void StartNewThread(TInput item)
{
var thread = new Thread(new ParameterizedThreadStart(ThreadWork));
threadPool.Add(thread);
thread.Start(item);
}
// Sync method to be passed to a thread
private void ThreadWork(object input)
=> taskFunction((TInput)input).Wait();
// Wait until the current round is over (if we didn't cancel, it's the last one)
private async Task WaitCurrentWorkCompletion()
{
while (threadPool.Any(t => t.IsAlive))
{
await Task.Delay(100);
}
}
#endregion
}
}