-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUtilitySignal.pas
2777 lines (2366 loc) · 97.1 KB
/
UtilitySignal.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
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
{===============================================================================
UtilitySignal
Small library designed to ease setup of real-time signal handlers in Linux.
It was designed primarily for use with posix timers (and possibly message
queues), but can be, of course, used for other purposes too.
I have decided to write it for two main reasons - one is to provide some
siplified interface allowing for multiple handlers of single signal, the
second is to limit number of used signals, of which count is very limited
(30 or 31 per process in Linux), by allowing multiple users to use one
signal allocated here.
It was designed to be close in use to UtilityWindow library - so, to use
it, create an instance of TUitilitySignal and assign events or callbacks to
its OnSignal multi-event object. Also, to properly process the incoming
signals (see implementation notes further) and pass them to assigned
events/callbacks, you need to repeatedly call method ProcessSignal or
ProcessSignals. Next, when setting-up the signal-producing system (eg. the
timer), pass the instance as pointer signal value.
Few words on implementation...
At unit initialization, this library selects and allocates one unused
real-time signal and then installs an action routine that receives all
incoming invocations of that signal (more signals can be allocated later
manually by calling function AllocateSignal).
Note that this signal can be different every time the process is run.
It can also differ between processes even if they are started from the
same executable. Which means, among others, that this library cannot be
used for interprocess communication, be aware of that!
If this library is used multiple times within the same process (eg.
when loaded with a dynamic library), this signal will be different for
each instance. Because the number of available signals is limited, you
should refrain from using this unit in a library or make sure one
instance is shared across the entire process (note that current
implementation does share the allocated signals across modules unless
you disable symbol ModuleShared).
Assigned action routine, when called by the system, stores the incoming
signal into a buffer and immediately exits - the signal is not propagated
directly to handlers because that way the async signal safety cannot be
guaranteed (see Linux manual, signal-safety(7)).
Buffer of incoming signals has large but invariant size (it cannot be
enlarged), therefore there might arise situation where it becomes full -
in this case oldest stored signals are dropped to make space for new
ones. If symbol FailOnSignalDrop is defined, then this will later (at
internal signal dispatching) produce an exception, otherwise it is silent.
To pass stored signals from these buffers to desired handlers (events,
callbacks), you need to call routines processing signals (for example
TUitilitySignal.ProcessSignals or function ProcessOrphanSignals).
Make sure you understand how signals work before using this library, so
reading the linux manual (signal(7)) is strongly recommended.
Version 2.2 (2025-03-04)
Last change 2025-03-08
©2024-2025 František Milt
Contacts:
František Milt: [email protected]
Support:
If you find this code useful, please consider supporting its author(s) by
making a small donation using the following link(s):
https://www.paypal.me/FMilt
Changelog:
For detailed changelog and history please refer to this git repository:
github.com/TheLazyTomcat/Lib.UtilitySignal
Dependencies:
AuxClasses - github.com/TheLazyTomcat/Lib.AuxClasses
* AuxExceptions - github.com/TheLazyTomcat/Lib.AuxExceptions
AuxTypes - github.com/TheLazyTomcat/Lib.AuxTypes
InterlockedOps - github.com/TheLazyTomcat/Lib.InterlockedOps
MulticastEvent - github.com/TheLazyTomcat/Lib.MulticastEvent
* ProcessGlobalVars - github.com/TheLazyTomcat/Lib.ProcessGlobalVars
SequentialVectors - github.com/TheLazyTomcat/Lib.SequentialVectors
Library AuxExceptions is required only when rebasing local exception classes
(see symbol UtilitySignal_UseAuxExceptions for details).
Library ProcessGlobalVars is required only when symbol ModuleShared is
defined.
Library AuxExceptions might also be required as an indirect dependency.
Indirect dependencies:
Adler32 - github.com/TheLazyTomcat/Lib.Adler32
AuxMath - github.com/TheLazyTomcat/Lib.AuxMath
BinaryStreamingLite - github.com/TheLazyTomcat/Lib.BinaryStreamingLite
HashBase - github.com/TheLazyTomcat/Lib.HashBase
SimpleCPUID - github.com/TheLazyTomcat/Lib.SimpleCPUID
StaticMemoryStream - github.com/TheLazyTomcat/Lib.StaticMemoryStream
StrRect - github.com/TheLazyTomcat/Lib.StrRect
UInt64Utils - github.com/TheLazyTomcat/Lib.UInt64Utils
WinFileInfo - github.com/TheLazyTomcat/Lib.WinFileInfo
===============================================================================}
unit UtilitySignal;
{
UtilitySignal_UseAuxExceptions
If you want library-specific exceptions to be based on more advanced classes
provided by AuxExceptions library instead of basic Exception class, and don't
want to or cannot change code in this unit, you can define global symbol
UtilitySignal_UseAuxExceptions to achieve this.
}
{$IF Defined(UtilitySignal_UseAuxExceptions)}
{$DEFINE UseAuxExceptions}
{$IFEND}
//------------------------------------------------------------------------------
{$IF Defined(LINUX) and Defined(FPC)}
{$DEFINE Linux}
{$ELSE}
{$MESSAGE FATAL 'Unsupported operating system.'}
{$IFEND}
{$IFDEF FPC}
{$MODE ObjFPC}
{$MODESWITCH DuplicateLocals+}
{$MODESWITCH ClassicProcVars+}
{$DEFINE FPC_DisableWarns}
{$MACRO ON}
{$ENDIF}
{$H+}
//------------------------------------------------------------------------------
{
LargeBuffers
HugeBuffers
MassiveBuffers
These three symbols control size of buffers and queues used internally by
this library. Larger buffers/queues can prevent signal loss/drop, but
they significantly increase memory consumption and may also degrade
performance.
LargeBuffer muptiplies default buffer size / queue length by 16, HugeBuffers
by 128 and MassiveBuffers multiplies buffer sizes by 1024 and sets queues
to unlimited length (technical limits are still in effect of course).
If more than one of these three symbols are defined, then only the "largest"
is observed.
None is defined by default.
To enable/define these symbols in a project without changing this library,
define project-wide symbol UtilitySignal_LargeBuffers_On,
UtilitySignal_HugeBuffers_On or UtilitySignal_MassiveBuffers_On.
}
{$UNDEF LargeBuffers}
{$IFDEF UtilitySignal_LargeBuffers_On}
{$DEFINE LargeBuffers}
{$ENDIF}
{$UNDEF HugeBuffers}
{$IFDEF UtilitySignal_HugeBuffers_On}
{$DEFINE HugeBuffers}
{$ENDIF}
{$UNDEF MassiveBuffers}
{$IFDEF UtilitySignal_MassiveBuffers_On}
{$DEFINE MassiveBuffers}
{$ENDIF}
{
FailOnSignalDrop
When this symbol is defined and signal is dropped/lost due to full buffer or
limited-length queue, an exception of class EUSSignalLost is raised. When not
defined, nothing happens in that situation as signals are dropped silently.
Not defined by default.
To enable/define this symbol in a project without changing this library,
define project-wide symbol UtilitySignal_FailOnSignalDrop_On.
}
{$UNDEF FailOnSignalDrop}
{$IFDEF UtilitySignal_FailOnSignalDrop_On}
{$DEFINE FailOnSignalDrop}
{$ENDIF}
{
ModuleShared
When defined, then this library will share global state with instances of
itself in other modules loaded within current process (note that it will
cooperate only with instances that were also compiled with this symbol).
If used correctly, this can prevent unnecessary allocation of multiple
signals for the same purpose in separate modules.
If not defined, then this library will operate only within a single module
into which it is compiled.
Defined by default.
To disable/undefine this symbol in a project without changing this library,
define project-wide symbol UtilitySignal_ModuleShared_Off.
}
{$DEFINE ModuleShared}
{$IFDEF UtilitySignal_ModuleShared_Off}
{$UNDEF ModuleShared}
{$ENDIF}
interface
uses
SysUtils, BaseUnix, SyncObjs,
SequentialVectors, AuxClasses, MulticastEvent
{$IFDEF UseAuxExceptions}, AuxExceptions{$ENDIF};
{===============================================================================
Library-specific exceptions
===============================================================================}
type
EUSException = class({$IFDEF UseAuxExceptions}EAEGeneralException{$ELSE}Exception{$ENDIF});
EUSSignalSetupError = class(EUSException);
EUSSignalSetError = class(EUSException);
EUSSignalLost = class(EUSException);
EUSInvalidValue = class(EUSException);
EUSGlobalStateOpenError = class(EUSException);
EUSGlobalStateCloseError = class(EUSException);
EUSGlobalStateMutexError = class(EUSException);
EUSGlobalStateModListError = class(EUSException);
EUSGlobalStateCallError = class(EUSException);
{===============================================================================
Common public types
===============================================================================}
type
TUSSignalArray = array of cint;
TUSSignalValue = record
case Integer of
0: (IntValue: Integer);
1: (PtrValue: Pointer);
end;
TUSSignalInfo = record
Signal: Integer;
Code: Integer;
Value: TUSSignalValue;
end;
{===============================================================================
--------------------------------------------------------------------------------
Utility functions
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
Utility functions - declaration
===============================================================================}
{
IsMasterModule
When symbol ModuleShared is defined, then this function indicates whether
module into which it is compiled is a master module - that is, it has signal
action handler installed, is responsible for incoming signals processing and
also for allocation of new signals.
If ModuleShared is not defined, then this function always returns True.
NOTE - slave (non-master) module can become master if current master module
is unloaded and selects this module as new master. Therefore, do not
assume that whatever this function returns is invariant.
}
Function IsMasterModule: Boolean;
{
AllocatedSignals
Returns an array of all signal IDs (numbers) that were allocated for use
by this library.
NOTE - the signals are in the order they were allocated and the returned
array is never empty - it always contains at least one signal that
was automatically allocated at library initialization.
}
Function AllocatedSignals: TUSSignalArray;
{
GetCurrentProcessID
Returns ID of the calling process. This can be used when sending a signal
(see functions SendSignalTo further down).
NOTE - this is sytem ID, not posix threads ID.
}
Function GetCurrentProcessID: pid_t;
//------------------------------------------------------------------------------
{
SendSignalTo
Sends selected signal to a given process with given value.
When the sending succeeds, true is returned and output parameter Error is set
to 0. When it fails, false is returned and Error contains Linux error code
that describes reason of failure.
Note that sending signals is subject to privilege checks, so it might not be
possible, depending on what privileges the sending process have.
The signal will arrive with code set to SI_QUEUE.
WARNING - signals are quite deep subject, so do not use provided functions
without considering what are you about to do. Always read your
operating system's manual.
}
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: TUSSignalValue; out Error: Integer): Boolean; overload;
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Integer; out Error: Integer): Boolean; overload;
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Pointer; out Error: Integer): Boolean; overload;
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: TUSSignalValue): Boolean; overload;
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Integer): Boolean; overload;
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Pointer): Boolean; overload;
{
SendSignalAs
Works the same as SendSignalTo (see there for details), but it is sending
signal back to the calling process (but not necessarily the calling thread!).
}
Function SendSignalAs(Signal: Integer; Value: TUSSignalValue; out Error: Integer): Boolean; overload;
Function SendSignalAs(Signal: Integer; Value: Integer; out Error: Integer): Boolean; overload;
Function SendSignalAs(Signal: Integer; Value: Pointer; out Error: Integer): Boolean; overload;
Function SendSignalAs(Signal: Integer; Value: TUSSignalValue): Boolean; overload;
Function SendSignalAs(Signal: Integer; Value: Integer): Boolean; overload;
Function SendSignalAs(Signal: Integer; Value: Pointer): Boolean; overload;
{
SendSignal
Same as SendSignalAs (see there for details), but the signal is sent using
the first signal number allocated for this library.
}
Function SendSignal(Value: TUSSignalValue; out Error: Integer): Boolean; overload;
Function SendSignal(Value: Integer; out Error: Integer): Boolean; overload;
Function SendSignal(Value: Pointer; out Error: Integer): Boolean; overload;
Function SendSignal(Value: TUSSignalValue): Boolean; overload;
Function SendSignal(Value: Integer): Boolean; overload;
Function SendSignal(Value: Pointer): Boolean; overload;
{===============================================================================
--------------------------------------------------------------------------------
TUSSignalQueue
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TUSSignalQueue - class declaration
===============================================================================}
// only for internal use
type
TUSSignalQueue = class(TSequentialVector)
protected
Function GetItem(Index: Integer): TUSSignalInfo; reintroduce;
procedure SetItem(Index: Integer; NewValue: TUSSignalInfo); reintroduce;
{$IFDEF FailOnSignalDrop}
procedure ItemDrop(Item: Pointer); override;
{$ENDIF}
procedure ItemAssign(SrcItem,DstItem: Pointer); override;
Function ItemCompare(Item1,Item2: Pointer): Integer; override;
Function ItemEquals(Item1,Item2: Pointer): Boolean; override;
public
constructor Create(MaxCount: Integer = -1);
Function IndexOf(Item: TUSSignalInfo): Integer; reintroduce;
Function Find(Item: TUSSignalInfo; out Index: Integer): Boolean; reintroduce;
procedure Push(Item: TUSSignalInfo); reintroduce;
Function Peek: TUSSignalInfo; reintroduce;
Function Pop: TUSSignalInfo; reintroduce;
Function Pick(Index: Integer): TUSSignalInfo; reintroduce;
property Items[Index: Integer]: TUSSignalInfo read GetItem write SetItem;
end;
{===============================================================================
--------------------------------------------------------------------------------
TUSMulticastSignalEvent
--------------------------------------------------------------------------------
===============================================================================}
type
TUSSignalCallback = procedure(Sender: TObject; Data: TUSSignalInfo; var BreakProcessing: Boolean);
TUSSignalEvent = procedure(Sender: TObject; Data: TUSSignalInfo; var BreakProcessing: Boolean) of object;
{===============================================================================
TUSMulticastSignalEvent - class declaration
===============================================================================}
// only for internal use
type
TUSMulticastSignalEvent = class(TMulticastEvent)
public
Function IndexOf(const Handler: TUSSignalCallback): Integer; reintroduce; overload;
Function IndexOf(const Handler: TUSSignalEvent): Integer; reintroduce; overload;
Function Find(const Handler: TUSSignalCallback; out Index: Integer): Boolean; reintroduce; overload;
Function Find(const Handler: TUSSignalEvent; out Index: Integer): Boolean; reintroduce; overload;
Function Add(Handler: TUSSignalCallback): Integer; reintroduce; overload;
Function Add(Handler: TUSSignalEvent): Integer; reintroduce; overload;
Function Remove(const Handler: TUSSignalCallback): Integer; reintroduce; overload;
Function Remove(const Handler: TUSSignalEvent): Integer; reintroduce; overload;
procedure Call(Sender: TObject; const SignalInfo: TUSSignalInfo); reintroduce;
end;
{===============================================================================
--------------------------------------------------------------------------------
TUtilitySignal
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TUtilitySignal - class declaration
===============================================================================}
{
TUtilitySignal
Instances of this class are a primary mean of receiving signals.
WARNING - public interface of this class is not fully thread safe. With
one exception (see property ObserveThread), you should create,
destroy and use its methods and properties only within a single
thread.
Internal queue storing incoming signals before these are passed to assigned
events/callbacks has limited size (unless symbol MassiveBuffers is defined).
This means there is a possibility that some signals may be lost when this
queue becomes full.
This might produce an exception if symbol FailOnSignalDrop is defined, or
it might go completely silent when it is not defined. Anyway, you should be
aware of this limitation.
}
type
TUtilitySignal = class(TCustomObject)
protected
fRegisteredOnIdle: Boolean;
fThreadLock: TCriticalSection;
fReceivedSignals: TUSSignalQueue;
fCreatorThread: pthread_t;
fObserveThread: Boolean;
fCoalesceSignals: Boolean;
fOnSignal: TUSMulticastSignalEvent;
Function GetCoalesceSignals: Boolean; virtual;
procedure SetCoalesceSignals(Value: Boolean); virtual;
procedure Initialize; virtual;
procedure Finalize; virtual;
procedure ThreadLock; virtual;
procedure ThreadUnlock; virtual;
procedure AddSignal(SignalInfo: TUSSignalInfo); virtual;
Function CheckThread: Boolean; virtual;
procedure OnAppIdleHandler(Sender: TObject; var Done: Boolean); virtual;
public
{
Create
When argument CanRegisterForOnIdle is set to true, then method
RegisterForOnIdle is called within the contructor, otherwise it is not
(see the mentioned method for explanation of what it does).
}
constructor Create(CanRegisterForOnIdle: Boolean = True);
destructor Destroy; override;
{
RegisterForOnIdle
When this library is compiled in program with LCL, both constructor and
this method are executed in the context of main thread, then a handler
calling method ProcessSignals is assigned to application's OnIdle event
and this method returns true. Otherwise it returns false and no hadler
is assigned.
When the handler is assigned, you do not need to explicitly call method
ProcessSignal(s) for current object to work properly.
}
Function RegisterForOnIdle: Boolean; virtual;
{
UnregisterFromOnIdle
Tries to unregister handler from application's OnIdle event (only in
programs compiled with LCL).
}
procedure UnregisterFromOnIdle; virtual;
{
ProcessSignal
ProcessSignals
Processes all incoming signals (copies them from pending signals buffer to
their respective instances of TUtilitySignal) and then passes all signals
meant for this instance to events/callbacks assigned to OnSignal.
Signals are processed in the order they have arrived.
ProcessSignal passes only one signal to OnSignal, whereas ProcessSignals
passes all queued signals.
WARNING - the entire class is NOT externally thread safe. Although it is
possible to call ProcessSignal(s) from a different thread than
the one that created the object (when ObserveThread is set to
false), you cannot safely call public methods from multiple
concurrent threads.
NOTE - these two functions can be called from OnSignal handlers, but it
is strongly discouraged.
}
procedure ProcessSignal; virtual;
procedure ProcessSignals; virtual;
{
RegisteredForOnIdle
True when handler calling ProcessSignals is assigned to appplication's
OnIdle event, false otherwise.
See RegisterForOnIdle and UnregisterForOnIdle for more details.
}
property RegisteredForOnIdle: Boolean read fRegisteredOnIdle;
{
CreatorThread
ID of thread that created this instance.
NOTE - this is pthreads ID, not system ID!
}
property CreatorThread: pthread_t read fCreatorThread;
{
ObserveThread
If ObserveThread is True, then thread calling ProcessSignal(s) must
be the same as is indicated by CreatorThread (ie. thread that created
current instance), otherwise these methods fetch new pending messages but
then exit without invoking any event or callback.
When false, any thread can call mentioned methods - though this is not
recommended.
NOTE - default value is True!
}
property ObserveThread: Boolean read fObserveThread write fObserveThread;
{
CoalesceSignals
If this is set to false (default), then each signal is processed separately
(one signal, one call to assigned events/callbacks).
When set to true, then signals with equal code and signal number (value
is ignored because it will always contain reference to the current object)
are combined into a single signal, and then, irrespective of their number,
only one invocation of events is called.
}
property CoalesceSignals: Boolean read GetCoalesceSignals write SetCoalesceSignals;
property OnSignal: TUSMulticastSignalEvent read fOnSignal;
end;
{===============================================================================
--------------------------------------------------------------------------------
Orphan signals
--------------------------------------------------------------------------------
===============================================================================}
{
Orphan signals are those signals that could not be delivered to any
TUtilitySignal instance.
The signals are internally buffered, to pass them to registered events/
callbacks, call ProcessOrphanSignal(s).
This internal buffer has limited size (unless symbol MassiveBuffers is
defined) - if it becomes full, the oldest undelivered signals are dropped
to make room for new ones. Note that dropping of old signal will raise an
exception if symbol FailOnSignalDrop is defined, otherwise it is silent.
NOTE - provided funtions are serialized and can be called from any thread.
}
procedure RegisterForOrphanSignals(Callback: TUSSignalCallback);
procedure RegisterForOrphanSignals(Event: TUSSignalEvent);
procedure UnregisterFromOrphanSignals(Callback: TUSSignalCallback);
procedure UnregisterFromOrphanSignals(Event: TUSSignalEvent);
//------------------------------------------------------------------------------
procedure ProcessOrphanSignal;
procedure ProcessOrphanSignals;
{===============================================================================
--------------------------------------------------------------------------------
New signal allocation
--------------------------------------------------------------------------------
===============================================================================}
{
AllocateSignal
Allocates (reserves) new posix real-time signal for use within this library.
NOTE - one signal is always allocated at the library initialization - use
that signal if possible.
WARNING - number of signals available for allocation is very limited (in
Linux, there is usually about 30 unused signals for each proces,
but this number can be as low as 6 (8 minus two for NTPL)), so
use this function sparingly and only when really necessary.
Please consult Linux manual (signal(7)) for more information about signals.
}
Function AllocateSignal: cint;
implementation
uses
UnixType, Classes, {$IFDEF LCL}Forms,{$ENDIF}
AuxTypes, InterlockedOps{$IFDEF ModuleShared}, ProcessGlobalVars{$ENDIF};
{$LINKLIB C}
{$LINKLIB PTHREAD}
{$IFDEF FPC_DisableWarns}
{$DEFINE FPCDWM}
{$DEFINE W4055:={$WARN 4055 OFF}} // Conversion between ordinals and pointers is not portable
{$DEFINE W5024:={$WARN 5024 OFF}} // Parameter "$1" not used
{$ENDIF}
{===============================================================================
--------------------------------------------------------------------------------
Library internals
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
Library internals - system stuff
===============================================================================}
Function getpid: pid_t; cdecl; external;
Function sched_yield: cint; cdecl; external;
Function errno_ptr: pcint; cdecl; external name '__errno_location';
//==============================================================================
type
sighandlerfce_t = procedure(signo: cint); cdecl;
sigactionfce_t = procedure(signo: cint; siginfo: psiginfo; context: Pointer); cdecl;
sigset_t = array[0..Pred(1024 div (8 * SizeOf(culong)))] of culong; // 1024bits, 128bytes
psigset_t = ^sigset_t;
sigaction_t = record
handler: record
case Integer of
0: (sa_handler: sighandlerfce_t);
1: (sa_sigaction: sigactionfce_t);
end;
sa_mask: sigset_t;
sa_flags: cint;
sa_restorer: Pointer;
end;
psigaction_t = ^sigaction_t;
sigval_t = record
case Integer of
0: (sigval_int: cint); // Integer value
1: (sigval_ptr: Pointer) // Pointer value
end;
//------------------------------------------------------------------------------
Function allocate_rtsig(high: cint): cint; cdecl; external name '__libc_allocate_rtsig';
Function sigemptyset(_set: psigset_t): cint; cdecl; external;
Function sigaddset(_set: psigset_t; signum: cint): cint; cdecl; external;
Function sigdelset(_set: psigset_t; signum: cint): cint; cdecl; external;
Function sigqueue(pid: pid_t; sig: cint; value: sigval_t): cint; cdecl; external;
Function sigaction(signum: cint; act: psigaction_t; oact: psigaction_t): cint; cdecl; external;
Function pthread_sigmask(how: cint; newset,oldset: psigset_t): cint; cdecl; external;
Function pthread_self: pthread_t; cdecl; external;
Function pthread_equal(t1: pthread_t; t2: pthread_t): cint; cdecl; external;
//------------------------------------------------------------------------------
{$IFDEF ModuleShared}
const
PTHREAD_MUTEX_RECURSIVE = 1;
PTHREAD_MUTEX_ROBUST = 1;
type
pthread_mutexattr_p = ^pthread_mutexattr_t;
pthread_mutex_p = ^pthread_mutex_t;
//------------------------------------------------------------------------------
Function pthread_mutexattr_init(attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutexattr_destroy(attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutexattr_settype(attr: pthread_mutexattr_p; _type: cint): cint; cdecl; external;
Function pthread_mutexattr_setrobust(attr: pthread_mutexattr_p; robustness: cint): cint; cdecl; external;
Function pthread_mutex_init(mutex: pthread_mutex_p; attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutex_destroy(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_trylock(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_lock(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_unlock(mutex: pthread_mutex_p): cint; cdecl; external;
//------------------------------------------------------------------------------
{$ENDIF}
threadvar
ThrErrorCode: cInt;
Function PThrResChk(RetVal: cInt): Boolean;
begin
Result := RetVal = 0;
If Result then
ThrErrorCode := 0
else
ThrErrorCode := RetVal;
end;
{===============================================================================
Library internals - implementation constants, types and variables
===============================================================================}
const
{$IF Defined(MassiveBuffers)}
US_SZCOEF_BUFFER = 1024;
US_SZCOEF_QUEUE = -1; // unlimited
{$ELSEIF Defined(HugeBuffers)}
US_SZCOEF_BUFFER = 128;
US_SZCOEF_QUEUE = 128;
{$ELSEIF Defined(LargeBuffers)}
US_SZCOEF_BUFFER = 16;
US_SZCOEF_QUEUE = 16;
{$ELSE}
US_SZCOEF_BUFFER = 1;
US_SZCOEF_QUEUE = 1;
{$IFEND}
//------------------------------------------------------------------------------
type
TUSPendingSignalsBuffer = record
Head: record
Count: Integer;
First: Integer;
DropCount: Integer;
DispCount: Integer; // number of already dispatched items (for better performance)
end;
Signals: array[0..Pred(US_SZCOEF_BUFFER * 1024)] of
record
Signal: cint;
Code: cint;
Value: sigval_t;
Internals: record
Dispatched: Boolean;
// some other fields may be added here later
end;
end;
end;
PUSPendingSignalsBuffer = ^TUSPendingSignalsBuffer;
//------------------------------------------------------------------------------
const
{
Maximum number of signals this implementation can allocate. System/resource
limitations are usually reached before this limit.
If this value is changed in the future, then also change global state
compatibility version (US_GLOBSTATE_VERSION).
}
US_SIGALLOC_MAX = 64;
type
TUSAllocatedSignals = record
Signals: array[0..Pred(US_SIGALLOC_MAX)] of cint;
Count: Integer;
end;
var
// main global variable
GVAR_ModuleState: record
ProcessingLock: TCriticalSection;
AllocatedSignals: TUSAllocatedSignals;
SignalMask: sigset_t; // contains all allocated signals
Dispatcher: TObject; // TUSSignalDispatcher
PendingSignals: record
Lock: Integer;
PrimaryBuffer: PUSPendingSignalsBuffer;
SecondaryBuffer: PUSPendingSignalsBuffer;
end;
{$IFDEF ModuleShared}
GlobalInfo: record
IsMaster: Boolean;
HeadVariable: TPGVVariable;
end;
{$ENDIF}
end;
//------------------------------------------------------------------------------
const
// values for GVAR_ModuleState.PendingSignals.Lock
US_PENDSIGSLOCK_UNLOCKED = 0;
US_PENDSIGSLOCK_LOCKED = 1;
{===============================================================================
--------------------------------------------------------------------------------
Utility functions
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
Utility functions - implementation
===============================================================================}
Function IsMasterModule: Boolean;
begin
{$IFDEF ModuleShared}
GVAR_ModuleState.ProcessingLock.Enter;
try
Result := GVAR_ModuleState.GlobalInfo.IsMaster;
finally
GVAR_ModuleState.ProcessingLock.Leave;
end;
{$ELSE}
Result := True;
{$ENDIF}
end;
//------------------------------------------------------------------------------
Function AllocatedSignals: TUSSignalArray;
var
i: Integer;
begin
GVAR_ModuleState.ProcessingLock.Enter;
try
Result := nil;
SetLength(Result,GVAR_ModuleState.AllocatedSignals.Count);
For i := 0 to Pred(GVAR_ModuleState.AllocatedSignals.Count) do
Result[i] := GVAR_ModuleState.AllocatedSignals.Signals[i];
finally
GVAR_ModuleState.ProcessingLock.Leave;
end;
end;
//------------------------------------------------------------------------------
Function GetCurrentProcessID: pid_t;
begin
Result := getpid;
end;
//==============================================================================
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: TUSSignalValue; out Error: Integer): Boolean;
begin
Result := SendSignalTo(ProcessID,Signal,Value.PtrValue,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Integer; out Error: Integer): Boolean;
var
Temp: TUSSignalValue;
begin
FillChar(Addr(Temp)^,SizeOf(Temp),0);
Temp.IntValue := Value;
Result := SendSignalTo(ProcessID,Signal,Temp.PtrValue,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Pointer; out Error: Integer): Boolean;
var
SigValue: sigval_t;
begin
SigValue.sigval_ptr := Value;
If sigqueue(ProcessID,cint(Signal),SigValue) = 0 then
begin
Error := 0;
Result := True;
end
else
begin
Error := Integer(errno_ptr^);
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: TUSSignalValue): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(ProcessID,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Integer): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(ProcessID,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalTo(ProcessID: pid_t; Signal: Integer; Value: Pointer): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(ProcessID,Signal,Value,Error);
end;
//==============================================================================
Function SendSignalAs(Signal: Integer; Value: TUSSignalValue; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalAs(Signal: Integer; Value: Integer; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalAs(Signal: Integer; Value: Pointer; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
//------------------------------------------------------------------------------
Function SendSignalAs(Signal: Integer; Value: TUSSignalValue): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalAs(Signal: Integer; Value: Integer): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignalAs(Signal: Integer; Value: Pointer): Boolean;
var
Error: Integer;
begin
Result := SendSignalTo(getpid,Signal,Value,Error);
end;
//==============================================================================
Function SendSignal(Value: TUSSignalValue; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Integer(AllocatedSignals[0]),Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignal(Value: Integer; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Integer(AllocatedSignals[0]),Value,Error);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function SendSignal(Value: Pointer; out Error: Integer): Boolean;
begin
Result := SendSignalTo(getpid,Integer(AllocatedSignals[0]),Value,Error);
end;
//------------------------------------------------------------------------------
Function SendSignal(Value: TUSSignalValue): Boolean;
var
Error: Integer;
begin