File "PauseCommand.php"
Full Path: /var/www/drive/laravel/horizon/src/Console/PauseCommand.php
File size: 1.75 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\Console;
use Illuminate\Console\Command;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Laravel\Horizon\Contracts\MasterSupervisorRepository;
use Laravel\Horizon\MasterSupervisor;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'horizon:pause')]
class PauseCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'horizon:pause';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Pause the master supervisor';
/**
* Execute the console command.
*
* @param \Laravel\Horizon\Contracts\MasterSupervisorRepository $masters
* @return void
*/
public function handle(MasterSupervisorRepository $masters)
{
$masters = collect($masters->all())->filter(function ($master) {
return Str::startsWith($master->name, MasterSupervisor::basename());
})->all();
collect(Arr::pluck($masters, 'pid'))
->whenNotEmpty(fn () => $this->components->info('Sending USR2 signal to processes.'))
->whenEmpty(fn () => $this->components->info('No processes to pause.'))
->each(function ($processId) {
$result = true;
$this->components->task("Process: $processId", function () use ($processId, &$result) {
return $result = posix_kill($processId, SIGUSR2);
});
if (! $result) {
$this->components->error("Failed to kill process: {$processId} (".posix_strerror(posix_get_last_error()).')');
}
})->whenNotEmpty(fn () => $this->output->writeln(''));
}
}