-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathParallel.cs
More file actions
3125 lines (2899 loc) · 197 KB
/
Copy pathParallel.cs
File metadata and controls
3125 lines (2899 loc) · 197 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
// A helper class that contains parallel versions of various looping constructs. This
// internally uses the task parallel library, but takes care to expose very little
// evidence of this infrastructure being used.
//
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
using System.Collections;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Runtime.ExceptionServices;
using System.Diagnostics;
namespace System.Threading.Tasks
{
/// <summary>
/// Stores options that configure the operation of methods on the
/// <see cref="System.Threading.Tasks.Parallel">Parallel</see> class.
/// </summary>
/// <remarks>
/// By default, methods on the Parallel class attempt to utilize all available processors, are non-cancelable, and target
/// the default TaskScheduler (TaskScheduler.Default). <see cref="ParallelOptions"/> enables
/// overriding these defaults.
/// </remarks>
public class ParallelOptions
{
private TaskScheduler? _scheduler;
private int _maxDegreeOfParallelism;
private CancellationToken _cancellationToken;
/// <summary>
/// Initializes a new instance of the <see cref="ParallelOptions"/> class.
/// </summary>
/// <remarks>
/// This constructor initializes the instance with default values. <see cref="MaxDegreeOfParallelism"/>
/// is initialized to -1, signifying that there is no upper bound set on how much parallelism should
/// be employed. <see cref="CancellationToken"/> is initialized to a non-cancelable token,
/// and <see cref="TaskScheduler"/> is initialized to the default scheduler (TaskScheduler.Default).
/// All of these defaults may be overwritten using the property set accessors on the instance.
/// </remarks>
public ParallelOptions()
{
_scheduler = TaskScheduler.Default;
_maxDegreeOfParallelism = -1;
_cancellationToken = CancellationToken.None;
}
/// <summary>
/// Gets or sets the <see cref="System.Threading.Tasks.TaskScheduler">TaskScheduler</see>
/// associated with this <see cref="ParallelOptions"/> instance. Setting this property to null
/// indicates that the current scheduler should be used.
/// </summary>
public TaskScheduler? TaskScheduler
{
get { return _scheduler; }
set { _scheduler = value; }
}
// Convenience property used by TPL logic
internal TaskScheduler EffectiveTaskScheduler => _scheduler ?? TaskScheduler.Current;
/// <summary>
/// Gets or sets the maximum degree of parallelism enabled by this ParallelOptions instance.
/// </summary>
/// <remarks>
/// The <see cref="MaxDegreeOfParallelism"/> limits the number of concurrent operations run by <see
/// cref="System.Threading.Tasks.Parallel">Parallel</see> method calls that are passed this
/// ParallelOptions instance to the set value, if it is positive. If <see
/// cref="MaxDegreeOfParallelism"/> is -1, then there is no limit placed on the number of concurrently
/// running operations.
/// </remarks>
/// <exception cref="System.ArgumentOutOfRangeException">
/// The exception that is thrown when this <see cref="MaxDegreeOfParallelism"/> is set to 0 or some
/// value less than -1.
/// </exception>
public int MaxDegreeOfParallelism
{
get { return _maxDegreeOfParallelism; }
set
{
if ((value == 0) || (value < -1))
throw new ArgumentOutOfRangeException(nameof(MaxDegreeOfParallelism));
_maxDegreeOfParallelism = value;
}
}
/// <summary>
/// Gets or sets the <see cref="System.Threading.CancellationToken">CancellationToken</see>
/// associated with this <see cref="ParallelOptions"/> instance.
/// </summary>
/// <remarks>
/// Providing a <see cref="System.Threading.CancellationToken">CancellationToken</see>
/// to a <see cref="System.Threading.Tasks.Parallel">Parallel</see> method enables the operation to be
/// exited early. Code external to the operation may cancel the token, and if the operation observes the
/// token being set, it may exit early by throwing an
/// <see cref="System.OperationCanceledException"/>.
/// </remarks>
public CancellationToken CancellationToken
{
get { return _cancellationToken; }
set { _cancellationToken = value; }
}
internal int EffectiveMaxConcurrencyLevel
{
get
{
int rval = MaxDegreeOfParallelism;
int schedulerMax = EffectiveTaskScheduler.MaximumConcurrencyLevel;
if ((schedulerMax > 0) && (schedulerMax != int.MaxValue))
{
rval = (rval == -1) ? schedulerMax : Math.Min(schedulerMax, rval);
}
return rval;
}
}
} // class ParallelOptions
/// <summary>
/// Provides support for parallel loops and regions.
/// </summary>
/// <remarks>
/// The <see cref="System.Threading.Tasks.Parallel"/> class provides library-based data parallel replacements
/// for common operations such as for loops, for each loops, and execution of a set of statements.
/// </remarks>
public static partial class Parallel
{
// static counter for generating unique Fork/Join Context IDs to be used in ETW events
internal static int s_forkJoinContextID;
// We use a stride for loops to amortize the frequency of interlocked operations.
internal const int DEFAULT_LOOP_STRIDE = 16;
// Static variable to hold default parallel options
internal static readonly ParallelOptions s_defaultParallelOptions = new ParallelOptions();
/// <summary>
/// Executes each of the provided actions, possibly in parallel.
/// </summary>
/// <param name="actions">An array of <see cref="System.Action">Actions</see> to execute.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="actions"/> argument is null.</exception>
/// <exception cref="System.ArgumentException">The exception that is thrown when the
/// <paramref name="actions"/> array contains a null element.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown when any
/// action in the <paramref name="actions"/> array throws an exception.</exception>
/// <remarks>
/// This method can be used to execute a set of operations, potentially in parallel.
/// No guarantees are made about the order in which the operations execute or whether
/// they execute in parallel. This method does not return until each of the
/// provided operations has completed, regardless of whether completion
/// occurs due to normal or exceptional termination.
/// </remarks>
public static void Invoke(params Action[] actions)
{
Invoke(s_defaultParallelOptions, actions);
}
/// <summary>
/// Executes each of the provided actions, possibly in parallel.
/// </summary>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="actions">An array of <see cref="System.Action">Actions</see> to execute.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="actions"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.ArgumentException">The exception that is thrown when the
/// <paramref name="actions"/> array contains a null element.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown when any
/// action in the <paramref name="actions"/> array throws an exception.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <remarks>
/// This method can be used to execute a set of operations, potentially in parallel.
/// No guarantees are made about the order in which the operations execute or whether
/// the they execute in parallel. This method does not return until each of the
/// provided operations has completed, regardless of whether completion
/// occurs due to normal or exceptional termination.
/// </remarks>
public static void Invoke(ParallelOptions parallelOptions, params Action[] actions)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(actions);
// On .NET Framework, we throw an ODE if we're passed a disposed CancellationToken.
// Here, CancellationToken.ThrowIfSourceDisposed() is not exposed.
// This is benign, because we'll end up throwing ODE when we register
// with the token later.
// Quit early if we're already canceled -- avoid a bunch of work.
parallelOptions.CancellationToken.ThrowIfCancellationRequested();
// We must validate that the actions array contains no null elements, and also
// make a defensive copy of the actions array.
Action[] actionsCopy = new Action[actions.Length];
for (int i = 0; i < actionsCopy.Length; i++)
{
actionsCopy[i] = actions[i];
if (actionsCopy[i] == null)
{
throw new ArgumentException(SR.Parallel_Invoke_ActionNull);
}
}
// ETW event for Parallel Invoke Begin
int forkJoinContextID = 0;
if (ParallelEtwProvider.Log.IsEnabled())
{
forkJoinContextID = Interlocked.Increment(ref s_forkJoinContextID);
ParallelEtwProvider.Log.ParallelInvokeBegin(TaskScheduler.Current.Id, Task.CurrentId ?? 0,
forkJoinContextID, ParallelEtwProvider.ForkJoinOperationType.ParallelInvoke,
actionsCopy.Length);
}
#if DEBUG
actions = null!; // Ensure we don't accidentally use this below.
#endif
// If we have no work to do, we are done.
if (actionsCopy.Length < 1) return;
// In the algorithm below, if the number of actions is greater than this, we automatically
// use Parallel.For() to handle the actions, rather than the Task-per-Action strategy.
const int SMALL_ACTIONCOUNT_LIMIT = 10;
try
{
// If we've gotten this far, it's time to process the actions.
// Web browsers need special treatment that is implemented in TaskReplicator
if (OperatingSystem.IsBrowser() ||
// This is more efficient for a large number of actions, or for enforcing MaxDegreeOfParallelism:
(actionsCopy.Length > SMALL_ACTIONCOUNT_LIMIT) ||
(parallelOptions.MaxDegreeOfParallelism != -1 && parallelOptions.MaxDegreeOfParallelism < actionsCopy.Length)
)
{
// Used to hold any exceptions encountered during action processing
ConcurrentQueue<Exception>? exceptionQ = null; // will be lazily initialized if necessary
// Launch a task replicator to handle the execution of all actions.
// This allows us to use as many cores as are available, and no more.
// The exception to this rule is that, in the case of a blocked action,
// the ThreadPool may inject extra threads, which means extra tasks can run.
int actionIndex = 0;
try
{
TaskReplicator.Run(
(ref object state, int timeout, out bool replicationDelegateYieldedBeforeCompletion) =>
{
// In this particular case, we do not participate in cooperative multitasking:
replicationDelegateYieldedBeforeCompletion = false;
// Each for-task will pull an action at a time from the list
int myIndex = Interlocked.Increment(ref actionIndex); // = index to use + 1
while (myIndex <= actionsCopy.Length)
{
// Catch and store any exceptions. If we don't catch them, the self-replicating
// task will exit, and that may cause other SR-tasks to exit.
// And (absent cancellation) we want all actions to execute.
try
{
actionsCopy[myIndex - 1]();
}
catch (Exception e)
{
LazyInitializer.EnsureInitialized<ConcurrentQueue<Exception>>(ref exceptionQ, () => { return new ConcurrentQueue<Exception>(); });
exceptionQ.Enqueue(e);
}
// Check for cancellation. If it is encountered, then exit the delegate.
parallelOptions.CancellationToken.ThrowIfCancellationRequested();
// You're still in the game. Grab your next action index.
myIndex = Interlocked.Increment(ref actionIndex);
}
},
parallelOptions,
stopOnFirstFailure: false);
}
catch (Exception e)
{
LazyInitializer.EnsureInitialized<ConcurrentQueue<Exception>>(ref exceptionQ, () => { return new ConcurrentQueue<Exception>(); });
// Since we're consuming all action exceptions, there are very few reasons that
// we would see an exception here. Two that come to mind:
// (1) An OCE thrown by one or more actions (AggregateException thrown)
// (2) An exception thrown from the TaskReplicator constructor
// (regular exception thrown).
// We'll need to cover them both.
if (e is ObjectDisposedException)
throw;
if (e is AggregateException ae)
{
// Strip off outer container of an AggregateException, because downstream
// logic needs OCEs to be at the top level.
foreach (Exception exc in ae.InnerExceptions) exceptionQ.Enqueue(exc);
}
else
{
exceptionQ.Enqueue(e);
}
}
// If we have encountered any exceptions, then throw.
if ((exceptionQ != null) && (!exceptionQ.IsEmpty))
{
ThrowSingleCancellationExceptionOrOtherException(exceptionQ, parallelOptions.CancellationToken,
new AggregateException(exceptionQ));
}
}
else // This is more efficient for a small number of actions and no DOP support:
{
// Initialize our array of tasks, one per action.
Task[] tasks = new Task[actionsCopy.Length];
// One more check before we begin...
parallelOptions.CancellationToken.ThrowIfCancellationRequested();
// Invoke all actions as tasks. Queue N-1 of them, and run 1 synchronously.
for (int i = 1; i < tasks.Length; i++)
{
tasks[i] = Task.Factory.StartNew(actionsCopy[i], parallelOptions.CancellationToken, TaskCreationOptions.None,
parallelOptions.EffectiveTaskScheduler);
}
tasks[0] = new Task(actionsCopy[0], parallelOptions.CancellationToken, TaskCreationOptions.None);
tasks[0].RunSynchronously(parallelOptions.EffectiveTaskScheduler);
// Now wait for the tasks to complete. This will not unblock until all of
// them complete, and it will throw an exception if one or more of them also
// threw an exception. We let such exceptions go completely unhandled.
try
{
#pragma warning disable CA1416 // Validate platform compatibility, issue: https://github.com/dotnet/runtime/issues/44605
Task.WaitAll(tasks);
#pragma warning restore CA1416
}
catch (AggregateException aggExp)
{
// see if we can combine it into a single OCE. If not propagate the original exception
ThrowSingleCancellationExceptionOrOtherException(aggExp.InnerExceptions, parallelOptions.CancellationToken, aggExp);
}
}
}
finally
{
// ETW event for Parallel Invoke End
if (ParallelEtwProvider.Log.IsEnabled())
{
ParallelEtwProvider.Log.ParallelInvokeEnd(TaskScheduler.Current.Id, Task.CurrentId ?? 0, forkJoinContextID);
}
}
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the iteration count (an Int32) as a parameter.
/// </remarks>
public static ParallelLoopResult For(int fromInclusive, int toExclusive, Action<int> body)
{
ArgumentNullException.ThrowIfNull(body);
return ForWorker<object>(
fromInclusive, toExclusive,
s_defaultParallelOptions,
body, null, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the iteration count (an Int64) as a parameter.
/// </remarks>
public static ParallelLoopResult For(long fromInclusive, long toExclusive, Action<long> body)
{
ArgumentNullException.ThrowIfNull(body);
return ForWorker64<object>(
fromInclusive, toExclusive, s_defaultParallelOptions,
body, null, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the iteration count (an Int32) as a parameter.
/// </remarks>
public static ParallelLoopResult For(int fromInclusive, int toExclusive, ParallelOptions parallelOptions, Action<int> body)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(body);
return ForWorker<object>(
fromInclusive, toExclusive, parallelOptions,
body, null, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the iteration count (an Int64) as a parameter.
/// </remarks>
public static ParallelLoopResult For(long fromInclusive, long toExclusive, ParallelOptions parallelOptions, Action<long> body)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(body);
return ForWorker64<object>(
fromInclusive, toExclusive, parallelOptions,
body, null, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// <para>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int32),
/// and a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely.
/// </para>
/// <para>
/// Calling <see cref="System.Threading.Tasks.ParallelLoopState.Break()">ParallelLoopState.Break()</see>
/// informs the For operation that iterations after the current one need not
/// execute. However, all iterations before the current one will still need to be executed if they have not already.
/// Therefore, calling Break is similar to using a break operation within a
/// conventional for loop in a language like C#, but it is not a perfect substitute: for example, there is no guarantee that iterations
/// after the current one will definitely not execute.
/// </para>
/// <para>
/// If executing all iterations before the current one is not necessary,
/// <see cref="System.Threading.Tasks.ParallelLoopState.Stop()">ParallelLoopState.Stop()</see>
/// should be preferred to using Break. Calling Stop informs the For loop that it may abandon all remaining
/// iterations, regardless of whether they're for iterations above or below the current,
/// since all required work has already been completed. As with Break, however, there are no guarantees regarding
/// which other iterations will not execute.
/// </para>
/// <para>
/// When a loop is ended prematurely, the <see cref="ParallelLoopState"/> that's returned will contain
/// relevant information about the loop's completion.
/// </para>
/// </remarks>
public static ParallelLoopResult For(int fromInclusive, int toExclusive, Action<int, ParallelLoopState> body)
{
ArgumentNullException.ThrowIfNull(body);
return ForWorker<object>(
fromInclusive, toExclusive, s_defaultParallelOptions,
null, body, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int64),
/// and a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely.
/// </remarks>
public static ParallelLoopResult For(long fromInclusive, long toExclusive, Action<long, ParallelLoopState> body)
{
ArgumentNullException.ThrowIfNull(body);
return ForWorker64<object>(
fromInclusive, toExclusive, s_defaultParallelOptions,
null, body, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int32),
/// and a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely.
/// </remarks>
public static ParallelLoopResult For(int fromInclusive, int toExclusive, ParallelOptions parallelOptions, Action<int, ParallelLoopState> body)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(body);
return ForWorker<object>(
fromInclusive, toExclusive, parallelOptions,
null, body, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int64),
/// and a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely.
/// </remarks>
public static ParallelLoopResult For(long fromInclusive, long toExclusive, ParallelOptions parallelOptions,
Action<long, ParallelLoopState> body)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(body);
return ForWorker64<object>(
fromInclusive, toExclusive, parallelOptions,
null, body, null, null, null);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <typeparam name="TLocal">The type of the thread-local data.</typeparam>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="localInit">The function delegate that returns the initial state of the local data
/// for each thread.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <param name="localFinally">The delegate that performs a final action on the local state of each
/// thread.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localInit"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localFinally"/> argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// <para>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int32),
/// a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely, and some local state that may be shared amongst iterations
/// that execute on the same thread.
/// </para>
/// <para>
/// The <paramref name="localInit"/> delegate is invoked once for each thread that participates in the loop's
/// execution and returns the initial local state for each of those threads. These initial states are passed to the first
/// <paramref name="body"/> invocations on each thread. Then, every subsequent body invocation returns a possibly
/// modified state value that is passed to the next body invocation. Finally, the last body invocation on each thread returns a state value
/// that is passed to the <paramref name="localFinally"/> delegate. The localFinally delegate is invoked once per thread to perform a final
/// action on each thread's local state.
/// </para>
/// </remarks>
public static ParallelLoopResult For<TLocal>(
int fromInclusive, int toExclusive,
Func<TLocal> localInit,
Func<int, ParallelLoopState, TLocal, TLocal> body,
Action<TLocal> localFinally)
{
ArgumentNullException.ThrowIfNull(localInit);
ArgumentNullException.ThrowIfNull(body);
ArgumentNullException.ThrowIfNull(localFinally);
return ForWorker(
fromInclusive, toExclusive, s_defaultParallelOptions,
null, null, body, localInit, localFinally);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel. Supports 64-bit indices.
/// </summary>
/// <typeparam name="TLocal">The type of the thread-local data.</typeparam>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="localInit">The function delegate that returns the initial state of the local data
/// for each thread.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <param name="localFinally">The delegate that performs a final action on the local state of each
/// thread.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localInit"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localFinally"/> argument is null.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// <para>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int64),
/// a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely, and some local state that may be shared amongst iterations
/// that execute on the same thread.
/// </para>
/// <para>
/// The <paramref name="localInit"/> delegate is invoked once for each thread that participates in the loop's
/// execution and returns the initial local state for each of those threads. These initial states are passed to the first
/// <paramref name="body"/> invocations on each thread. Then, every subsequent body invocation returns a possibly
/// modified state value that is passed to the next body invocation. Finally, the last body invocation on each thread returns a state value
/// that is passed to the <paramref name="localFinally"/> delegate. The localFinally delegate is invoked once per thread to perform a final
/// action on each thread's local state.
/// </para>
/// </remarks>
public static ParallelLoopResult For<TLocal>(
long fromInclusive, long toExclusive,
Func<TLocal> localInit,
Func<long, ParallelLoopState, TLocal, TLocal> body,
Action<TLocal> localFinally)
{
ArgumentNullException.ThrowIfNull(localInit);
ArgumentNullException.ThrowIfNull(body);
ArgumentNullException.ThrowIfNull(localFinally);
return ForWorker64(
fromInclusive, toExclusive, s_defaultParallelOptions,
null, null, body, localInit, localFinally);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <typeparam name="TLocal">The type of the thread-local data.</typeparam>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="localInit">The function delegate that returns the initial state of the local data
/// for each thread.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <param name="localFinally">The delegate that performs a final action on the local state of each
/// thread.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localInit"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localFinally"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// <para>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int32),
/// a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely, and some local state that may be shared amongst iterations
/// that execute on the same thread.
/// </para>
/// <para>
/// The <paramref name="localInit"/> delegate is invoked once for each thread that participates in the loop's
/// execution and returns the initial local state for each of those threads. These initial states are passed to the first
/// <paramref name="body"/> invocations on each thread. Then, every subsequent body invocation returns a possibly
/// modified state value that is passed to the next body invocation. Finally, the last body invocation on each thread returns a state value
/// that is passed to the <paramref name="localFinally"/> delegate. The localFinally delegate is invoked once per thread to perform a final
/// action on each thread's local state.
/// </para>
/// </remarks>
public static ParallelLoopResult For<TLocal>(
int fromInclusive, int toExclusive, ParallelOptions parallelOptions,
Func<TLocal> localInit,
Func<int, ParallelLoopState, TLocal, TLocal> body,
Action<TLocal> localFinally)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(localInit);
ArgumentNullException.ThrowIfNull(body);
ArgumentNullException.ThrowIfNull(localFinally);
return ForWorker(
fromInclusive, toExclusive, parallelOptions,
null, null, body, localInit, localFinally);
}
/// <summary>
/// Executes a for loop in which iterations may run in parallel.
/// </summary>
/// <typeparam name="TLocal">The type of the thread-local data.</typeparam>
/// <param name="fromInclusive">The start index, inclusive.</param>
/// <param name="toExclusive">The end index, exclusive.</param>
/// <param name="parallelOptions">A <see cref="System.Threading.Tasks.ParallelOptions">ParallelOptions</see>
/// instance that configures the behavior of this operation.</param>
/// <param name="localInit">The function delegate that returns the initial state of the local data
/// for each thread.</param>
/// <param name="body">The delegate that is invoked once per iteration.</param>
/// <param name="localFinally">The delegate that performs a final action on the local state of each
/// thread.</param>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the <paramref name="body"/>
/// argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localInit"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="localFinally"/> argument is null.</exception>
/// <exception cref="System.ArgumentNullException">The exception that is thrown when the
/// <paramref name="parallelOptions"/> argument is null.</exception>
/// <exception cref="System.OperationCanceledException">The exception that is thrown when the
/// <see cref="System.Threading.CancellationToken">CancellationToken</see> in the <paramref name="parallelOptions"/>
/// argument is set.</exception>
/// <exception cref="System.AggregateException">The exception that is thrown to contain an exception
/// thrown from one of the specified delegates.</exception>
/// <exception cref="System.ObjectDisposedException">The exception that is thrown when the
/// the <see cref="System.Threading.CancellationTokenSource">CancellationTokenSource</see> associated with the
/// the <see cref="System.Threading.CancellationToken">CancellationToken</see> in the
/// <paramref name="parallelOptions"/> has been disposed.</exception>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult">ParallelLoopResult</see> structure
/// that contains information on what portion of the loop completed.</returns>
/// <remarks>
/// <para>
/// The <paramref name="body"/> delegate is invoked once for each value in the iteration range:
/// [fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (an Int64),
/// a <see cref="System.Threading.Tasks.ParallelLoopState">ParallelLoopState</see> instance that may be
/// used to break out of the loop prematurely, and some local state that may be shared amongst iterations
/// that execute on the same thread.
/// </para>
/// <para>
/// The <paramref name="localInit"/> delegate is invoked once for each thread that participates in the loop's
/// execution and returns the initial local state for each of those threads. These initial states are passed to the first
/// <paramref name="body"/> invocations on each thread. Then, every subsequent body invocation returns a possibly
/// modified state value that is passed to the next body invocation. Finally, the last body invocation on each thread returns a state value
/// that is passed to the <paramref name="localFinally"/> delegate. The localFinally delegate is invoked once per thread to perform a final
/// action on each thread's local state.
/// </para>
/// </remarks>
public static ParallelLoopResult For<TLocal>(
long fromInclusive, long toExclusive, ParallelOptions parallelOptions,
Func<TLocal> localInit,
Func<long, ParallelLoopState, TLocal, TLocal> body,
Action<TLocal> localFinally)
{
ArgumentNullException.ThrowIfNull(parallelOptions);
ArgumentNullException.ThrowIfNull(localInit);
ArgumentNullException.ThrowIfNull(body);
ArgumentNullException.ThrowIfNull(localFinally);
return ForWorker64(
fromInclusive, toExclusive, parallelOptions,
null, null, body, localInit, localFinally);
}
private static bool CheckTimeoutReached(int timeoutOccursAt)
{
// Note that both, Environment.TickCount and timeoutOccursAt are ints and can overflow and become negative.
int currentMillis = Environment.TickCount;
if (currentMillis < timeoutOccursAt)
return false;
if (0 > timeoutOccursAt && 0 < currentMillis)
return false;
return true;
}
private static int ComputeTimeoutPoint(int timeoutLength)
{
// Environment.TickCount is an int that cycles. We intentionally let the point in time at which the
// timeout occurs overflow. It will still stay ahead of Environment.TickCount for the comparisons made
// in CheckTimeoutReached(..):
unchecked
{
return Environment.TickCount + timeoutLength;
}
}
/// <summary>
/// Performs the major work of the parallel for loop. It assumes that argument validation has already
/// been performed by the caller. This function's whole purpose in life is to enable as much reuse of
/// common implementation details for the various For overloads we offer. Without it, we'd end up
/// with lots of duplicate code. It handles: (1) simple for loops, (2) for loops that depend on
/// ParallelState, and (3) for loops with thread local data.
///
/// </summary>
/// <typeparam name="TLocal">The type of the local data.</typeparam>
/// <param name="fromInclusive">The loop's start index, inclusive.</param>
/// <param name="toExclusive">The loop's end index, exclusive.</param>
/// <param name="parallelOptions">A ParallelOptions instance.</param>
/// <param name="body">The simple loop body.</param>
/// <param name="bodyWithState">The loop body for ParallelState overloads.</param>
/// <param name="bodyWithLocal">The loop body for thread local state overloads.</param>
/// <param name="localInit">A selector function that returns new thread local state.</param>
/// <param name="localFinally">A cleanup function to destroy thread local state.</param>
/// <remarks>Only one of the body arguments may be supplied (i.e. they are exclusive).</remarks>
/// <returns>A <see cref="System.Threading.Tasks.ParallelLoopResult"/> structure.</returns>
private static ParallelLoopResult ForWorker<TLocal>(
int fromInclusive, int toExclusive,
ParallelOptions parallelOptions,
Action<int>? body,
Action<int, ParallelLoopState>? bodyWithState,
Func<int, ParallelLoopState, TLocal, TLocal>? bodyWithLocal,
Func<TLocal>? localInit, Action<TLocal>? localFinally)
{
Debug.Assert(((body == null ? 0 : 1) + (bodyWithState == null ? 0 : 1) + (bodyWithLocal == null ? 0 : 1)) == 1,
"expected exactly one body function to be supplied");
Debug.Assert(bodyWithLocal != null || (localInit == null && localFinally == null),
"thread local functions should only be supplied for loops w/ thread local bodies");
// Instantiate our result. Specifics will be filled in later.
ParallelLoopResult result = default;
// We just return immediately if 'to' is smaller (or equal to) 'from'.
if (toExclusive <= fromInclusive)
{
result._completed = true;
return result;
}
// For all loops we need a shared flag even though we don't have a body with state,
// because the shared flag contains the exceptional bool, which triggers other workers
// to exit their loops if one worker catches an exception
ParallelLoopStateFlags32 sharedPStateFlags = new ParallelLoopStateFlags32();
// Before getting started, do a quick peek to see if we have been canceled already
parallelOptions.CancellationToken.ThrowIfCancellationRequested();
// initialize ranges with passed in loop arguments and expected number of workers
int numExpectedWorkers = (parallelOptions.EffectiveMaxConcurrencyLevel == -1) ?
Environment.ProcessorCount :
parallelOptions.EffectiveMaxConcurrencyLevel;
RangeManager rangeManager = new RangeManager(fromInclusive, toExclusive, 1, numExpectedWorkers);
// Keep track of any cancellations
OperationCanceledException? oce = null;
// if cancellation is enabled, we need to register a callback to stop the loop when it gets signaled
CancellationTokenRegistration ctr = (!parallelOptions.CancellationToken.CanBeCanceled)
? default(CancellationTokenRegistration)
: parallelOptions.CancellationToken.UnsafeRegister((o) =>
{
// Record our cancellation before stopping processing
oce = new OperationCanceledException(parallelOptions.CancellationToken);
// Cause processing to stop
sharedPStateFlags.Cancel();
}, state: null);
// ETW event for Parallel For begin
int forkJoinContextID = 0;
if (ParallelEtwProvider.Log.IsEnabled())
{
forkJoinContextID = Interlocked.Increment(ref s_forkJoinContextID);
ParallelEtwProvider.Log.ParallelLoopBegin(TaskScheduler.Current.Id, Task.CurrentId ?? 0,
forkJoinContextID, ParallelEtwProvider.ForkJoinOperationType.ParallelFor,
fromInclusive, toExclusive);
}
try
{
try
{
TaskReplicator.Run(
(ref RangeWorker currentWorker, int timeout, out bool replicationDelegateYieldedBeforeCompletion) =>
{
// First thing we do upon entering the task is to register as a new "RangeWorker" with the
// shared RangeManager instance.
if (!currentWorker.IsInitialized)