forked from openbullet/OpenBullet2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParallelizer.cs
278 lines (239 loc) · 11.1 KB
/
Parallelizer.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
using RuriLib.Parallelization.Exceptions;
using RuriLib.Parallelization.Models;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
namespace RuriLib.Parallelization
{
/// <summary>
/// Provides a managed way to execute parallelized work.
/// </summary>
/// <typeparam name="TInput">The type of the workload items</typeparam>
/// <typeparam name="TOutput">The type of the results</typeparam>
public abstract class Parallelizer<TInput, TOutput>
{
#region Public Fields
public int MaxDegreeOfParallelism { get; set; } = 200;
public ParallelizerStatus Status
{
get => status;
protected set
{
status = value;
OnStatusChanged(status);
}
}
/// <summary>
/// Retrieves the current progress in the interval [0, 1].
/// The progress is -1 if the manager hasn't been started yet.
/// </summary>
public float Progress => (float)(current + skip) / totalAmount;
/// <summary>
/// Retrieves the completed work per minute.
/// </summary>
public int CPM { get; protected set; } = 0;
/// <summary>
/// Sets a maximum threshold for CPM. 0 to disable.
/// </summary>
public int CPMLimit { get; set; } = 0;
public DateTime StartTime { get; private set; }
public DateTime? EndTime { get; private set; }
public DateTime ETA
{
get
{
var minutes = (totalAmount * (1 - Progress)) / CPM;
return CPM > 0 && minutes < TimeSpan.MaxValue.TotalMinutes
? StartTime + TimeSpan.FromMinutes(minutes)
: DateTime.MaxValue;
}
}
public TimeSpan Elapsed => TimeSpan.FromMilliseconds(stopwatch.ElapsedMilliseconds);
public TimeSpan Remaining => EndTime.HasValue ? TimeSpan.Zero : ETA - DateTime.Now;
#endregion
#region Protected Fields
protected ParallelizerStatus status = ParallelizerStatus.Idle;
protected int degreeOfParallelism;
protected readonly IEnumerable<TInput> workItems;
protected readonly Func<TInput, CancellationToken, Task<TOutput>> workFunction;
protected readonly Func<TInput, Task> taskFunction;
protected readonly long totalAmount;
protected readonly int skip;
protected int current = 0;
protected List<int> checkedTimestamps = new();
protected readonly object cpmLock = new();
protected readonly Stopwatch stopwatch = new();
protected CancellationTokenSource softCTS; // Cancel this for soft AND hard abort
protected CancellationTokenSource hardCTS; // Cancel this for hard abort
#endregion
#region Events
/// <summary>Called when an operation throws an exception.</summary>
public event EventHandler<ErrorDetails<TInput>> TaskError;
protected virtual void OnTaskError(ErrorDetails<TInput> input) => TaskError?.Invoke(this, input);
/// <summary>Called when the <see cref="IParallelizer{TInput, TOutput}"/> itself throws an exception.</summary>
public event EventHandler<Exception> Error;
protected virtual void OnError(Exception ex) => Error?.Invoke(this, ex);
/// <summary>Called when an operation is completed successfully.</summary>
public event EventHandler<ResultDetails<TInput, TOutput>> NewResult;
protected virtual void OnNewResult(ResultDetails<TInput, TOutput> result) => NewResult?.Invoke(this, result);
/// <summary>Called when the progress changes.</summary>
public event EventHandler<float> ProgressChanged;
protected virtual void OnProgressChanged(float progress) => ProgressChanged?.Invoke(this, progress);
/// <summary>Called when all operations were completed successfully.</summary>
public event EventHandler Completed;
protected virtual void OnCompleted() => Completed?.Invoke(this, EventArgs.Empty);
/// <summary>Called when <see cref="Status"/> changes.</summary>
public event EventHandler<ParallelizerStatus> StatusChanged;
protected virtual void OnStatusChanged(ParallelizerStatus newStatus) => StatusChanged?.Invoke(this, newStatus);
#endregion
#region Constructors
/// <summary>
/// Creates a new instance of <see cref="Parallelizer{TInput, TOutput}"/>.
/// </summary>
/// <param name="workItems">The collection of data to process in parallel</param>
/// <param name="workFunction">The work function that must be executed on the data</param>
/// <param name="degreeOfParallelism">The amount of concurrent tasks that can be started</param>
/// <param name="totalAmount">The total amount of data that is expected from <paramref name="workItems"/></param>
/// <param name="skip">The amount of <paramref name="workItems"/> to skip at the beginning</param>
public Parallelizer(IEnumerable<TInput> workItems, Func<TInput, CancellationToken, Task<TOutput>> workFunction,
int degreeOfParallelism, long totalAmount, int skip = 0)
{
if (degreeOfParallelism < 1)
throw new ArgumentException("The degree of parallelism must be greater than 1");
if (skip >= totalAmount)
throw new ArgumentException("The skip must be less than the total amount");
this.workItems = workItems ?? throw new ArgumentNullException(nameof(workItems));
this.workFunction = workFunction ?? throw new ArgumentNullException(nameof(workFunction));
this.totalAmount = totalAmount;
this.degreeOfParallelism = degreeOfParallelism;
this.skip = skip;
MaxDegreeOfParallelism = Math.Max(200, degreeOfParallelism);
// Assign the task function
taskFunction = new Func<TInput, Task>(async item =>
{
if (softCTS.IsCancellationRequested)
return;
// Try to execute the work and report the result
try
{
var workResult = await workFunction.Invoke(item, hardCTS.Token).ConfigureAwait(false);
OnNewResult(new ResultDetails<TInput, TOutput>(item, workResult));
hardCTS.Token.ThrowIfCancellationRequested();
}
// Catch and report any exceptions
catch (Exception ex)
{
OnTaskError(new ErrorDetails<TInput>(item, ex));
}
// Report the progress, update the CPM and release the semaphore slot
finally
{
Interlocked.Increment(ref current);
OnProgressChanged(Progress);
checkedTimestamps.Add(Environment.TickCount);
UpdateCPM();
}
});
}
#endregion
#region Public Methods
/// <summary>
/// Starts the execution (without waiting for completion).
/// </summary>
public virtual Task Start()
{
if (Status != ParallelizerStatus.Idle)
throw new RequiredStatusException(ParallelizerStatus.Idle, Status);
StartTime = DateTime.Now;
EndTime = null;
checkedTimestamps.Clear();
softCTS = new CancellationTokenSource();
hardCTS = new CancellationTokenSource();
return Task.CompletedTask;
}
/// <summary>Pauses the execution (waits until the ongoing operations are completed).</summary>
public virtual Task Pause()
{
if (Status != ParallelizerStatus.Running)
throw new RequiredStatusException(ParallelizerStatus.Running, Status);
return Task.CompletedTask;
}
/// <summary>Resumes a paused execution.</summary>
public virtual Task Resume()
{
if (Status != ParallelizerStatus.Paused)
throw new RequiredStatusException(ParallelizerStatus.Paused, Status);
return Task.CompletedTask;
}
/// <summary>
/// Stops the execution (waits for the current items to finish).
/// </summary>
public virtual Task Stop()
{
if (Status != ParallelizerStatus.Running && Status != ParallelizerStatus.Paused)
throw new RequiredStatusException(new ParallelizerStatus[] { ParallelizerStatus.Running, ParallelizerStatus.Paused }, Status);
EndTime = DateTime.Now;
return Task.CompletedTask;
}
/// <summary>
/// Aborts the execution without waiting for the current work to finish.
/// </summary>
public virtual Task Abort()
{
if (Status != ParallelizerStatus.Running && Status != ParallelizerStatus.Paused && Status != ParallelizerStatus.Stopping
&& Status != ParallelizerStatus.Pausing)
throw new RequiredStatusException(new ParallelizerStatus[]
{ ParallelizerStatus.Running, ParallelizerStatus.Paused, ParallelizerStatus.Stopping, ParallelizerStatus.Pausing},
Status);
EndTime = DateTime.Now;
return Task.CompletedTask;
}
/// <summary>
/// Dynamically changes the degree of parallelism.
/// </summary>
public virtual Task ChangeDegreeOfParallelism(int newValue)
{
// This can be 0 because we can use 0 dop as a pausing system
if (newValue < 0 || newValue > MaxDegreeOfParallelism)
throw new ArgumentException($"Must be within 0 and {MaxDegreeOfParallelism}", nameof(newValue));
return Task.CompletedTask;
}
/// <summary>
/// An awaitable handler that completes when the <see cref="Status"/> is <see cref="ParallelizerStatus.Idle"/>.
/// </summary>
public async Task WaitCompletion(CancellationToken cancellationToken = default)
{
while (Status != ParallelizerStatus.Idle)
{
cancellationToken.ThrowIfCancellationRequested();
await Task.Delay(100, cancellationToken);
}
}
#endregion
#region Protected Methods
protected bool IsCPMLimited() => CPMLimit > 0 && CPM > CPMLimit;
[MethodImpl(MethodImplOptions.AggressiveOptimization)]
protected void UpdateCPM()
{
// Update CPM (only 1 task can enter)
if (Monitor.TryEnter(cpmLock))
{
try
{
var now = DateTime.Now;
checkedTimestamps = checkedTimestamps.Where(t => Environment.TickCount - t < 60000).ToList();
CPM = checkedTimestamps.Count;
}
finally
{
Monitor.Exit(cpmLock);
}
}
}
#endregion
}
}