@@ -49,7 +49,7 @@ public static function fork(callable $onStart = null, callable $onError = null,
49
49
'startTime ' => \time (),
50
50
];
51
51
} elseif ($ pid === 0 ) { // at child
52
- $ pid = \getmypid ();
52
+ $ pid = self :: getPid ();
53
53
54
54
if ($ onStart ) {
55
55
$ onStart ($ pid , $ id );
@@ -419,7 +419,7 @@ public static function dispatchSignal(): bool
419
419
return false ;
420
420
}
421
421
422
- // receive and dispatch sig
422
+ // receive and dispatch signal
423
423
return \pcntl_signal_dispatch ();
424
424
}
425
425
@@ -434,6 +434,19 @@ public static function getSignalHandler(int $signal)
434
434
return \pcntl_signal_get_handler ($ signal );
435
435
}
436
436
437
+ /**
438
+ * Enable/disable asynchronous signal handling or return the old setting
439
+ * @param bool|null $on
440
+ * - bool Enable or disable.
441
+ * - null Return old setting.
442
+ * @return bool
443
+ * @since 7.1
444
+ */
445
+ public static function asyncSignal (bool $ on = null ): bool
446
+ {
447
+ return \pcntl_async_signals ($ on );
448
+ }
449
+
437
450
/**************************************************************************************
438
451
* some help method
439
452
*************************************************************************************/
@@ -445,29 +458,29 @@ public static function getSignalHandler(int $signal)
445
458
public static function getPid (): int
446
459
{
447
460
if (\function_exists ('posix_getpid ' )) {
448
- return posix_getpid ();
461
+ return \ posix_getpid ();
449
462
}
450
463
451
- return \getmypid ();// or use posix_getpid()
464
+ return \getmypid ();
452
465
}
453
466
454
467
/**
455
- * get Pid from File
468
+ * get PID by pid File
456
469
* @param string $file
457
470
* @param bool $checkLive
458
471
* @return int
459
472
*/
460
- public static function getPidByFile (string $ file , $ checkLive = false ): int
473
+ public static function getPidByFile (string $ file , bool $ checkLive = false ): int
461
474
{
462
- if ($ file && file_exists ($ file )) {
463
- $ pid = (int )file_get_contents ($ file );
475
+ if ($ file && \ file_exists ($ file )) {
476
+ $ pid = (int )\ file_get_contents ($ file );
464
477
465
478
// check live
466
479
if ($ checkLive && self ::isRunning ($ pid )) {
467
480
return $ pid ;
468
481
}
469
482
470
- unlink ($ file );
483
+ \ unlink ($ file );
471
484
}
472
485
473
486
return 0 ;
@@ -553,7 +566,7 @@ public static function setTitle(string $title): bool
553
566
return \cli_set_process_title ($ title );
554
567
}
555
568
556
- return true ;
569
+ return false ;
557
570
}
558
571
559
572
/**
@@ -564,7 +577,7 @@ public static function setTitle(string $title): bool
564
577
*/
565
578
public static function changeScriptOwner (string $ user , string $ group = '' )
566
579
{
567
- $ uInfo = posix_getpwnam ($ user );
580
+ $ uInfo = \ posix_getpwnam ($ user );
568
581
569
582
if (!$ uInfo || !isset ($ uInfo ['uid ' ])) {
570
583
throw new \RuntimeException ("User ( {$ user }) not found. " );
@@ -589,13 +602,13 @@ public static function changeScriptOwner(string $user, string $group = '')
589
602
590
603
\posix_setgid ($ gid );
591
604
592
- if (posix_geteuid () !== $ gid ) {
605
+ if (\ posix_geteuid () !== $ gid ) {
593
606
throw new \RuntimeException ("Unable to change group to {$ user } (UID: {$ gid }). " , -300 );
594
607
}
595
608
596
609
\posix_setuid ($ uid );
597
610
598
- if (posix_geteuid () !== $ uid ) {
611
+ if (\ posix_geteuid () !== $ uid ) {
599
612
throw new \RuntimeException ("Unable to change user to {$ user } (UID: {$ uid }). " , -300 );
600
613
}
601
614
}
0 commit comments