forked from gabr42/OmniThreadLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOtl.Parallel.SynchroPrimitives.BasicLevel.pas
1107 lines (927 loc) · 26.2 KB
/
Otl.Parallel.SynchroPrimitives.BasicLevel.pas
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
unit Otl.Parallel.SynchroPrimitives.BasicLevel;
// IMPORTANT!
// READ THE COMMENTS IN UNIT Otl.Parallel.SynchroPrimitives .
{$I OtlOptions.inc}
interface
uses System.SyncObjs, System.Classes, System.SysUtils, Otl.Parallel.Atomic;
type
/// <remarks>Base class for low-level synchronisation primitives
// at the basic level.</remarks>
TOtlSynchro = class abstract
{$IFDEF MSWINDOWS}
protected
function GetHandle: THandle; virtual;
{$ENDIF}
public
procedure Signal; virtual;
function isSignalled: boolean; virtual; abstract;
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; virtual; abstract;
function AsMWObject: TObject; virtual; abstract;
{$IFDEF MSWINDOWS}
property Handle: THandle read GetHandle;
{$ENDIF}
end;
TOtlEvent = class abstract( TOtlSynchro)
public
procedure SetEvent; virtual; abstract;
procedure ResetEvent; virtual; abstract;
end;
TKernelEvent = class( TOtlEvent)
public
procedure SetEvent; override;
procedure ResetEvent; override;
procedure Signal; override;
/// <remarks>TOtlEvent.isSignalled() is not supported .</remarks>
function isSignalled: boolean; override;
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
public
/// <remarks> DO NOT USE. This constructor is for internal use only.
/// Use instead either TSBDParallel.CreateKernelEventObj. </remarks>
constructor Create( AManual, AInitialState: boolean);
destructor Destroy; override;
function AsMWObject: TObject; override;
{$IFDEF MSWINDOWS}
protected
function GetHandle: THandle; override;
{$ENDIF}
private
FEvent: System.SyncObjs.TEvent;
end;
TLightEvent = class( TOtlEvent)
public
procedure SetEvent; override;
procedure ResetEvent; override;
procedure Signal; override;
function isSignalled: boolean; override;
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
public
class constructor Create;
/// <remarks> DO NOT USE. This constructor is for internal use only.
/// Use instead either TSBDParallel.CreateLightEventObj. </remarks>
constructor Create( AManual, AInitialState: boolean; ASpinMax: cardinal = 100);
destructor Destroy; override;
function AsMWObject: TObject; override;
private
[Volatile] FLock: TSBDSpinLock;
FPulsar: System.SyncObjs.TEvent; // Auto-reset
FKernelUsers: cardinal;
FIsSignalled: boolean;
FManual: boolean;
FSpinMax: cardinal;
public
/// <remarks>Although syntactically "public", semantically this is "private"
/// and for internal use only. Please do not use. </remarks>
procedure Reconfigure( Manual: boolean; Value: cardinal); virtual;
end;
TOtlSemaphore = class( TOtlSynchro)
public
procedure Signal; override;
/// <remarks>TOtlSemaphore.isSignalled() is not supported .</remarks>
function isSignalled: boolean; override;
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
public
/// <remarks> DO NOT USE. This constructor is for internal use only.
/// Use instead either TSBDParallel.CreateSemaphoreObj. </remarks>
constructor Create( AInitialCount: cardinal);
destructor Destroy; override;
function AsMWObject: TObject; override;
{$IFDEF MSWINDOWS}
protected
function GetHandle: THandle; override;
{$ENDIF}
private
FSem: System.SyncObjs.TSemaphore;
end;
/// <remarks>
/// The TFixedCriticalSection declaration was copied from the OmniThread Library.
/// The concept originates from Eric Grange.
/// Possible url for the original idea is http://delphitools.info/2011/11/30/fixing-tcriticalsection/
/// however at the time of writing of this remark, this url appears broken.
/// For an explanation of the fix, see http://grandruru.blogspot.com.au/2012/04/fixing-tcriticalsection.html
/// </remarks>
TFixedCriticalSection = class( TCriticalSection)
strict protected
FDummy: array [0..95] of byte;
end;
// Spin Lock
// ====================
// Please find TSBDSpinLock in unit SBD.Parallel.Atomic
TEventFunction = reference to procedure( doAcquire: boolean; var wasSuccessfullyAcquired: boolean; var isInSignalledState: boolean);
TFunctionalEvent = class( TOtlSynchro)
public
procedure Signal; override;
function isSignalled: boolean; override;
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
procedure Pulse;
public
class constructor Create;
constructor Create( ASignalTest: TEventFunction; APLock: PSBDSpinLock);
destructor Destroy; override;
function AsMWObject: TObject; override;
protected
FSignalTest: TEventFunction;
FPulsar: TEvent; // Manual reset.
FPulsarIsSignalled: boolean;
[Volatile] FLock: TSBDSpinLock;
FPLock: PSBDSpinLock;
procedure SignalTest( doAcquire: boolean; var wasSuccessfullyAcquired: boolean; var isInSignalledState: boolean); virtual;
public
/// <remarks>Although syntactically "public", semantically this is "private"
/// and for internal use only. Please do not use. </remarks>
procedure Reconfigure( ASignalTest: TEventFunction; APLock: PSBDSpinLock); virtual;
end;
TCountDown = class( TOtlSynchro)
public
/// <remarks>Signal() decrements the count. Raises exception if was zero.</remarks>
procedure Signal; override;
/// <remarks>CounterSignal() increments the count. Raises exception if was MaxCardinal. Does not effect FullCount.</remarks>
procedure CounterSignal;
/// <remarks>Like Signal(), but if this call was responsible for the count going to zero, then return True.</remarks>
function SignalHit: boolean;
/// <remarks>Like Signal(), but returns the value.</remarks>
function Allocate: cardinal;
/// <remarks>True iff the count is zero.</remarks>
function isSignalled: boolean; override;
function Value: cardinal;
/// <remarks>Blocks until count is zero.</remarks>
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
/// <remarks>Resets the count to the initial value.</remarks>
procedure Reset;
/// <remarks>Returns the initial value.</remarks>
function FullCount: cardinal;
public
/// <remarks> DO NOT USE. This constructor is for internal use only.
/// Use instead either TSBDParallel..CreateCountDownObj. </remarks>
constructor Create( AInitial: cardinal);
destructor Destroy; override;
function AsMWObject: TObject; override;
private
FInitialValue: cardinal;
[Volatile] FValue: TVolatileUInt32;
private type
TCountDownFunction = class( TFunctionalEvent)
protected
procedure SignalTest( doAcquire: boolean; var wasSuccessfullyAcquired: boolean; var isInSignalledState: boolean); override;
private
FOwner: TCountDown;
constructor Create( AOwner: TCountDown);
end;
private
FLock: TSBDSpinLock;
FCountDownFunc: TCountDownFunction;
public
/// <remarks>Although syntactically "public", semantically this is "private"
/// and for internal use only. Please do not use. </remarks>
procedure Reconfigure( AInitial: cardinal);
end;
TCountUp = class( TOtlSynchro)
public
/// <remarks>Signal() increments the count. Raises exception if the max was breached.</remarks>
procedure Signal; override;
/// <remarks>Like Signal(), but if this call was responsible for the count going hitting the max, then return True.</remarks>
function SignalHit: boolean;
/// <remarks>True iff the count is at the max.</remarks>
function isSignalled: boolean; override;
function Value: cardinal;
/// <remarks>Blocks until count is zero.</remarks>
function WaitFor( Timeout: cardinal = INFINITE): TWaitResult; override;
/// <remarks>Resets the count to the initial value.</remarks>
procedure Reset;
/// <remarks>Returns the initial value.</remarks>
function InitialValue: cardinal;
/// <remarks>Returns the max value.</remarks>
function MaxValue: cardinal;
public
constructor Create( AInitial, AMaxValue: cardinal);
destructor Destroy; override;
function AsMWObject: TObject; override;
private
FInitialValue: cardinal;
FMaxValue: cardinal;
FCountDown: TCountDown;
public
/// <remarks>Although syntactically "public", semantically this is "private"
/// and for internal use only. Please do not use. </remarks>
procedure Reconfigure( AInitial, AMaxValue: cardinal);
end;
TOtlMREW = class // Multi-read, exclusive write
public
function EnterRead( Timeout: cardinal = INFINITE): TWaitResult;
procedure ExitRead;
function EnterWrite( Timeout: cardinal = INFINITE): TWaitResult;
procedure ExitWrite;
function ReaderCount: integer; // if +ve, this is the number of entered readers,
// if -ve, there is an entered writer.
private
[Volatile] FReaders: TVolatileInt32;
FZeroOrAbove: System.SyncObjs.TEvent;
FZero : System.SyncObjs.TEvent;
FWriterThread: TThreadId;
FGate: TCriticalSection;
public
constructor Create;
destructor Destroy; override;
end;
implementation
uses Otl.Parallel.Errors, System.Diagnostics;
{$IFDEF MSWINDOWS}
function TOtlSynchro.GetHandle: THandle;
begin
result := 0
end;
{$ENDIF}
procedure TOtlSynchro.Signal;
begin
end;
function TKernelEvent.AsMWObject: TObject;
begin
result := FEvent
end;
constructor TKernelEvent.Create( AManual, AInitialState: boolean);
begin
FEvent := System.SyncObjs.TEvent.Create( nil, AManual, AInitialState, '', False)
end;
destructor TKernelEvent.Destroy;
begin
FreeAndNil( FEvent);
inherited
end;
{$IFDEF MSWINDOWS}
function TKernelEvent.GetHandle: THandle;
begin
result := FEvent.Handle
end;
{$ENDIF}
function TKernelEvent.isSignalled: boolean;
begin
raise TParallelException.Create( EIsSignalledNotSupported);
end;
procedure TKernelEvent.ResetEvent;
begin
FEvent.ResetEvent
end;
procedure TKernelEvent.SetEvent;
begin
FEvent.SetEvent
end;
procedure TKernelEvent.Signal;
begin
FEvent.SetEvent
end;
function TKernelEvent.WaitFor( Timeout: cardinal): TWaitResult;
begin
result := FEvent.WaitFor( Timeout)
end;
class constructor TLightEvent.Create;
begin
TStopwatch.Create
end;
function TLightEvent.AsMWObject: TObject;
begin
result := nil
end;
constructor TLightEvent.Create(
AManual, AInitialState: boolean; ASpinMax: cardinal);
begin
FLock.Initialize;
FIsSignalled := AInitialState;
FPulsar := System.SyncObjs.TEvent.Create( nil, False, FIsSignalled, '', False);
FKernelUsers := 0;
FManual := AManual;
FSpinMax := ASpinMax
end;
procedure TLightEvent.Reconfigure( Manual: boolean; Value: cardinal);
begin
FSpinMax := Value;
FManual := Manual
end;
destructor TLightEvent.Destroy;
begin
FLock.Finalize;
FPulsar.Free;
inherited
end;
function TLightEvent.isSignalled: boolean;
begin
FLock.Enter;
result := FIsSignalled;
FLock.Leave
end;
procedure TLightEvent.ResetEvent;
begin
FLock.Enter;
FisSignalled := False;
FLock.Leave
end;
procedure TLightEvent.SetEvent;
begin
FLock.Enter;
FisSignalled := True;
if FKernelUsers > 0 then
FPulsar.SetEvent;
FLock.Leave
end;
procedure TLightEvent.Signal;
begin
SetEvent
end;
const
MaxCardinal : cardinal = Cardinal( $FFFFFFFF);
MaxFiniteCardinal: cardinal = Cardinal( $FFFFFFFE);
function TLightEvent.WaitFor( Timeout: cardinal): TWaitResult;
var
Timer: TStopWatch;
TimeOutRemaining: cardinal;
Elapsed: int64;
SpinCount: integer;
hasBumpedEntryCount: boolean;
doPulse: boolean;
begin
if (TimeOut <> INFINITE) and (TimeOut <> 0) then
begin
Timer.Reset;
Timer.Start
end;
TimeOutRemaining := TimeOut;
SpinCount := 0;
hasBumpedEntryCount := False;
result := wrIOCompletion;
doPulse := False;
repeat
if (TimeOutRemaining <> INFINITE) and (TimeOutRemaining <> 0) then
begin
Elapsed := Timer.ElapsedMilliseconds;
if Elapsed > MaxCardinal then
Elapsed := MaxCardinal;
if TimeOut > Elapsed then
TimeOutRemaining := TimeOut - cardinal( Elapsed)
else
TimeOutRemaining := 0
end;
FLock.Enter;
if (TimeOutRemaining = 0) or FisSignalled then
begin
if FisSignalled then
begin
result := wrSignaled;
if not FManual then
FisSignalled := False
end
else
result := wrTimeOut;
if hasBumpedEntryCount then
Dec( FKernelUsers);
if FisSignalled and (FKernelUsers > 0) then
doPulse := True;
FLock.Leave
end
else if (FKernelUsers > 0) or (cardinal( SpinCount) >= FSpinMax) then // Warning, XE7: widen
begin
if not hasBumpedEntryCount then
begin
hasBumpedEntryCount := True;
Inc( FKernelUsers)
end;
FLock.Leave;
FPulsar.WaitFor( TimeOutRemaining)
end
else
begin
FLock.Leave;
Inc( SpinCount);
TThread.Yield;
end
until result <> wrIOCompletion;
if doPulse then
FPulsar.SetEvent
end;
function TOtlSemaphore.AsMWObject: TObject;
begin
result := FSem
end;
constructor TOtlSemaphore.Create( AInitialCount: cardinal);
begin
FSem := System.SyncObjs.TSemaphore.Create( nil, AInitialCount, MaxInt, '', False)
end;
destructor TOtlSemaphore.Destroy;
begin
FSem.Free;
inherited
end;
{$IFDEF MSWINDOWS}
function TOtlSemaphore.GetHandle: THandle;
begin
result := FSem.Handle
end;
{$ENDIF}
function TOtlSemaphore.isSignalled: boolean;
begin
raise TParallelException.Create( EIsSignalledNotSupported);
end;
procedure TOtlSemaphore.Signal;
begin
FSem.Release
end;
function TOtlSemaphore.WaitFor( Timeout: cardinal): TWaitResult;
begin
result := FSem.WaitFor( Timeout)
end;
function TFunctionalEvent.AsMWObject: TObject;
begin
result := nil
end;
constructor TFunctionalEvent.Create( ASignalTest: TEventFunction; APLock: PSBDSpinLock);
begin
if assigned( APLock) then
FPLock := APLock
else
begin
FLock.Initialize;
FPLock := @FLock
end;
FSignalTest := ASignalTest;
FPulsarIsSignalled := True;
FPulsar := TEvent.Create( nil, True, FPulsarIsSignalled, '', False)
end;
class constructor TFunctionalEvent.Create;
begin
TStopwatch.Create
end;
destructor TFunctionalEvent.Destroy;
begin
if FPLock = @FLock then
FLock.Finalize;
FPulsar.Free;
inherited
end;
procedure TFunctionalEvent.Reconfigure(
ASignalTest: TEventFunction; APLock: PSBDSpinLock);
begin
if not assigned( ASignalTest) then
begin
// Deconfigure in preparation for return to the object pool
if FPLock = @FLock then
FLock.Finalize;
FPLock := nil
end
else
begin
// Refurbishing for re-use.
if assigned( APLock) then
FPLock := APLock
else
begin
FLock.Initialize;
FPLock := @FLock
end
end;
FSignalTest := ASignalTest
end;
function TFunctionalEvent.isSignalled: boolean;
var
LocalIsSig: boolean;
begin
FPLock^.WithinLock( procedure
var
Dummy: boolean;
begin
SignalTest( False, Dummy, LocalIsSig)
end);
result := LocalIsSig
end;
procedure TFunctionalEvent.Signal;
begin
Pulse
end;
procedure TFunctionalEvent.SignalTest( doAcquire: boolean; var wasSuccessfullyAcquired: boolean; var isInSignalledState: boolean);
begin
FSignalTest( doAcquire, wasSuccessfullyAcquired, isInSignalledState)
end;
procedure TFunctionalEvent.Pulse;
begin
FPLock^.WithinLock( procedure
begin
if not FPulsarIsSignalled then
begin
FPulsarIsSignalled := True;
FPulsar.SetEvent
end
end)
end;
function TFunctionalEvent.WaitFor( Timeout: cardinal): TWaitResult;
var
Timer: TStopWatch;
TimeOutRemaining: cardinal;
Elapsed: int64;
Clipped: boolean;
Acquired: boolean;
begin
if (TimeOut <> INFINITE) and (TimeOut <> 0) then
begin
Timer.Reset;
Timer.Start
end;
TimeOutRemaining := TimeOut;
repeat
Clipped := False;
if (TimeOutRemaining <> INFINITE) and (TimeOutRemaining <> 0) then
begin
Elapsed := Timer.ElapsedMilliseconds;
if Elapsed > MaxCardinal then
begin
Elapsed := MaxCardinal;
Clipped := True
end;
if TimeOut > Elapsed then
TimeOutRemaining := TimeOut - cardinal( Elapsed)
else
TimeOutRemaining := 0
end;
if TimeOutRemaining = 0 then
result := wrSignaled
else
result := FPulsar.WaitFor( TimeOutRemaining);
if (result = wrTimeOut) and Clipped then
result := wrIOCompletion;
if result = wrSignaled then
begin
Acquired := False;
FPLock^.WithinLock( procedure
var
NewValue: boolean;
begin
SignalTest( True, Acquired, NewValue);
if NewValue <> FPulsarIsSignalled then
begin
FPulsarIsSignalled := NewValue;
if FPulsarIsSignalled then
FPulsar.SetEvent
else
FPulsar.ResetEvent
end
end);
if Acquired then
result := wrSignaled
else if TimeOutRemaining = 0 then
result := wrTimeOut
else
result := wrIOCompletion
end
until result <> wrIOCompletion
end;
constructor TCountDown.Create( AInitial: cardinal);
begin
FLock.Initialize;
FInitialValue := AInitial;
FValue.Initialize( FInitialValue);
FCountDownFunc := TCountDownFunction.Create( self);
if FInitialValue = 0 then
FCountDownFunc.Pulse
end;
destructor TCountDown.Destroy;
begin
FCountDownFunc.Free;
FValue.Finalize;
inherited
end;
function TCountDown.FullCount: cardinal;
begin
result := FInitialValue
end;
function TCountDown.isSignalled: boolean;
begin
result := FValue.Read = 0
end;
procedure TCountDown.Reconfigure( AInitial: cardinal);
begin
FInitialValue := AInitial;
FValue.Write( FInitialValue);
if FInitialValue = 0 then
FCountDownFunc.Pulse
end;
procedure TCountDown.Reset;
begin
FLock.WithinLock( procedure
begin
FValue.Write( FInitialValue)
end);
FCountDownFunc.Pulse
end;
procedure TCountDown.Signal;
begin
Allocate
end;
function TCountDown.Allocate: cardinal;
var
Bonkers: boolean;
begin
FLock.Enter;
Bonkers := FValue.Read = 0;
if not Bonkers then
result := FValue.Decrement
else
result := 0;
FLock.Leave;
if Bonkers then
raise TParallelException.Create( ESignalCountUpDownRange)
else
FCountDownFunc.Pulse
end;
function TCountDown.SignalHit: boolean;
begin
result := Allocate = 0
end;
function TCountDown.AsMWObject: TObject;
begin
result := nil
end;
procedure TCountDown.CounterSignal;
var
Bonkers: boolean;
Val: cardinal;
begin
FLock.Enter;
Val := FValue.Read;
Bonkers := Val = MaxCardinal;
if not Bonkers then
Val := FValue.Increment;
FLock.Leave;
if Bonkers then
raise TParallelException.Create( ESignalCountUpDownRange)
else if Val = 1 then
FCountDownFunc.Pulse
end;
function TCountDown.Value: cardinal;
begin
result := FValue.Read
end;
function TCountDown.WaitFor( Timeout: cardinal): TWaitResult;
begin
result := FCountDownFunc.WaitFor( Timeout)
end;
constructor TCountDown.TCountDownFunction.Create( AOwner: TCountDown);
begin
FOwner := AOwner;
inherited Create( nil, @FOwner.FLock)
end;
procedure TCountDown.TCountDownFunction.SignalTest(
doAcquire: boolean; var wasSuccessfullyAcquired, isInSignalledState: boolean);
begin
isInSignalledState := FOwner.FValue.Read = 0;
wasSuccessfullyAcquired := doAcquire and isInSignalledState
end;
function TCountUp.AsMWObject: TObject;
begin
result := nil
end;
constructor TCountUp.Create( AInitial, AMaxValue: cardinal);
begin
FInitialValue := AInitial;
FMaxValue := AMaxValue;
if FMaxValue > FInitialValue then
FCountDown := TCountDown.Create( FMaxValue - FInitialValue)
else
begin
FCountDown := nil;
raise TParallelException.Create( ESignalCountUpDownRange)
end
end;
destructor TCountUp.Destroy;
begin
FCountDown.Free;
inherited
end;
function TCountUp.InitialValue: cardinal;
begin
result := FInitialValue
end;
function TCountUp.isSignalled: boolean;
begin
result := FCountDown.isSignalled
end;
function TCountUp.MaxValue: cardinal;
begin
result := FMaxValue
end;
procedure TCountUp.Reconfigure( AInitial, AMaxValue: cardinal);
begin
FInitialValue := AInitial;
FMaxValue := AMaxValue;
Reset
end;
procedure TCountUp.Reset;
begin
FCountDown.Reset
end;
procedure TCountUp.Signal;
begin
FCountDown.Signal
end;
function TCountUp.SignalHit: boolean;
begin
result := FCountDown.SignalHit
end;
function TCountUp.Value: cardinal;
begin
result := FMaxValue - FCountDown.Value
end;
function TCountUp.WaitFor( Timeout: cardinal): TWaitResult;
begin
result := FCountDown.WaitFor( Timeout)
end;
procedure InitUnit_BasicLevel;
begin
TStopWatch.Create
end;
procedure DoneUnit_BasicLevel;
begin
end;
constructor TOtlMREW.Create;
begin
FReaders.Initialize( 0);
FZeroOrAbove := System.SyncObjs.TEvent.Create( nil, False, False, '');
FZero := System.SyncObjs.TEvent.Create( nil, False, False, '');
FWriterThread := 0;
// This is an auto-reset event.
FGate := TFixedCriticalSection.Create
end;
destructor TOtlMREW.Destroy;
begin
FReaders.Finalize;
FZeroOrAbove.Free;
FZero.Free;
FGate.Free;
inherited
end;
function TOtlMREW.EnterRead( Timeout: cardinal): TWaitResult;
var
Watch: TStopWatch;
Elapsed: int64;
TimeoutRemaining: cardinal;
Readers: integer;
isStable: boolean;
begin
Readers := FReaders.Read;
if (Readers >= 0) and
(FReaders.CompareAndExchange( Readers, Readers + 1)) then
result := wrSignaled
// It is possible that FZero will now be in a false positive state.
// If this is the case, it will be corrected on the next EnterWrite()
else
result := wrIOCompletion;
if result <> wrIOCompletion then exit;
TimeoutRemaining := Timeout;
if (TimeOutRemaining <> INFINITE) and (TimeOutRemaining <> 0) then
begin
Watch.Reset;
Watch.Start
end;
repeat
if (TimeOutRemaining <> INFINITE) and (TimeOutRemaining <> 0) then
begin
Elapsed := Watch.ElapsedMilliseconds;
if Elapsed > MaxCardinal then
Elapsed := MaxCardinal;
if TimeOut > Elapsed then
TimeOutRemaining := TimeOut - cardinal( Elapsed)
else
TimeOutRemaining := 0
end;
if (TimeOutRemaining > 0) and (FReaders.Read < 0) then
FZeroOrAbove.WaitFor( TimeOutRemaining);
FGate.Enter;
isStable := False;
repeat
Readers := FReaders.Read;
if Readers >= 0 then
begin
if FReaders.CompareAndExchange( Readers, Readers + 1) then
begin
isStable := True;
Inc( Readers)
end
end
else
isStable := True
until isStable;
if Readers >= 1 then
begin
result := wrSignaled;
FZeroOrAbove.SetEvent
end
else if Readers < 0 then
FZeroOrAbove.ResetEvent;
FGate.Leave;
if (result = wrIOCompletion) and (TimeOutRemaining = 0) then
result := wrTimeout
until result <> wrIOCompletion
end;
procedure TOtlMREW.ExitRead;
var
Readers: integer;
begin
Readers := FReaders.Decrement;
if Readers >= 0 then
FZeroOrAbove.SetEvent;
if Readers = 0 then