Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php
Строк: 121
<?php

namespace IlluminateConsoleScheduling;

use 
IlluminateConsoleApplication;
use 
IlluminateConsoleCommand;
use 
IlluminateSupportCarbon;
use 
IlluminateSupportProcessUtils;
use 
SymfonyComponentConsoleAttributeAsCommand;
use 
SymfonyComponentConsoleOutputOutputInterface;
use 
SymfonyComponentProcessProcess;

#[AsCommand(name: 'schedule:work')]
class ScheduleWorkCommand extends Command
{
    
/**
     * The name and signature of the console command.
     *
     * @var string
     */
    
protected $signature 'schedule:work
        {--run-output-file= : The file to direct <info>schedule:run</info> output to}
        {--whisper : Do not output message indicating that no jobs were ready to run}'
;

    
/**
     * The console command description.
     *
     * @var string
     */
    
protected $description 'Start the schedule worker';

    
/**
     * Execute the console command.
     *
     * @return never
     */
    
public function handle()
    {
        
$this->components->info(
            
'Running scheduled tasks.',
            
$this->getLaravel()->environment('local') ? OutputInterface::VERBOSITY_NORMAL OutputInterface::VERBOSITY_VERBOSE
        
);

        [
$lastExecutionStartedAt$executions] = [Carbon::now()->subMinutes(10), []];

        
$command Application::formatCommandString('schedule:run');

        if (
$this->option('whisper')) {
            
$command .= ' --whisper';
        }

        if (
$this->option('run-output-file')) {
            
$command .= ' >> '.ProcessUtils::escapeArgument($this->option('run-output-file')).' 2>&1';
        }

        while (
true) {
            
usleep(100 1000);

            if (
Carbon::now()->second === &&
                ! 
Carbon::now()->startOfMinute()->equalTo($lastExecutionStartedAt)) {
                
$executions[] = $execution Process::fromShellCommandline($commandbase_path());

                
$execution->start();

                
$lastExecutionStartedAt Carbon::now()->startOfMinute();
            }

            foreach (
$executions as $key => $execution) {
                
$output $execution->getIncrementalOutput().
                    
$execution->getIncrementalErrorOutput();

                
$this->output->write(ltrim($output"n"));

                if (! 
$execution->isRunning()) {
                    unset(
$executions[$key]);
                }
            }
        }
    }
}
Онлайн: 2
Реклама