File tree 2 files changed +15
-11
lines changed
2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -59,21 +59,22 @@ public function __construct(int $timeout)
59
59
*/
60
60
public function timeBoxed (callable $ code )
61
61
{
62
- $ existingHandler = pcntl_signal_get_handler (\SIGALRM );
62
+ if (pcntl_alarm ($ this ->timeout ) !== 0 ) {
63
+ throw new LockAcquireException ('Existing process alarm is not supported ' );
64
+ }
65
+
66
+ $ origSignalHandler = pcntl_signal_get_handler (\SIGALRM );
63
67
64
- $ signal = pcntl_signal (\SIGALRM , function (): void {
68
+ $ timeout = $ this ->timeout ;
69
+ $ signalHandlerFx = static function () use ($ timeout ): void {
65
70
throw new DeadlineException (sprintf (
66
71
'Timebox hit deadline of %d seconds ' ,
67
- $ this -> timeout
72
+ $ timeout
68
73
));
69
- });
70
- if (!$ signal ) {
71
- throw new LockAcquireException ('Could not install signal handler ' );
72
- }
74
+ };
73
75
74
- $ oldAlarm = pcntl_alarm ($ this ->timeout );
75
- if ($ oldAlarm !== 0 ) {
76
- throw new LockAcquireException ('Existing alarm was not expected ' );
76
+ if (!pcntl_signal (\SIGALRM , $ signalHandlerFx )) {
77
+ throw new LockAcquireException ('Failed to install signal handler ' );
77
78
}
78
79
79
80
try {
@@ -83,7 +84,7 @@ public function timeBoxed(callable $code)
83
84
try {
84
85
pcntl_signal_dispatch ();
85
86
} finally {
86
- pcntl_signal (\SIGALRM , $ existingHandler );
87
+ pcntl_signal (\SIGALRM , $ origSignalHandler );
87
88
}
88
89
}
89
90
}
Original file line number Diff line number Diff line change @@ -48,16 +48,19 @@ public function testShouldNotTimeout(): void
48
48
*/
49
49
public function testShouldFailOnExistingAlarm (): void
50
50
{
51
+ $ origSignalHandler = pcntl_signal_get_handler (\SIGALRM );
51
52
try {
52
53
pcntl_alarm (1 );
53
54
$ timeout = new PcntlTimeout (1 );
54
55
55
56
$ this ->expectException (LockAcquireException::class);
57
+ $ this ->expectExceptionMessage ('Existing process alarm is not supported ' );
56
58
$ timeout ->timeBoxed (static function () {
57
59
sleep (1 );
58
60
});
59
61
} finally {
60
62
pcntl_alarm (0 );
63
+ self ::assertSame ($ origSignalHandler , pcntl_signal_get_handler (\SIGALRM ));
61
64
}
62
65
}
63
66
You can’t perform that action at this time.
0 commit comments