*/ class Loop { /** @var HttpDownloader */ private $httpDownloader; /** @var ProcessExecutor|null */ private $processExecutor; /** @var PromiseInterface[][] */ private $currentPromises = []; /** @var int */ private $waitIndex = 0; public function __construct(HttpDownloader $httpDownloader, ?ProcessExecutor $processExecutor = null) { $this->httpDownloader = $httpDownloader; $this->httpDownloader->enableAsync(); $this->processExecutor = $processExecutor; if ($this->processExecutor) { $this->processExecutor->enableAsync(); } } public function getHttpDownloader(): HttpDownloader { return $this->httpDownloader; } public function getProcessExecutor(): ?ProcessExecutor { return $this->processExecutor; } /** * @param PromiseInterface[] $promises * @param ?ProgressBar $progress */ public function wait(array $promises, ?ProgressBar $progress = null): void { /** @var \Exception|null */ $uncaught = null; \React\Promise\all($promises)->then( static function (): void { }, static function ($e) use (&$uncaught): void { $uncaught = $e; } ); // keep track of every group of promises that is waited on, so abortJobs can // cancel them all, even if wait() was called within a wait() $waitIndex = $this->waitIndex++; $this->currentPromises[$waitIndex] = $promises; if ($progress) { $totalJobs = 0; $totalJobs += $this->httpDownloader->countActiveJobs(); if ($this->processExecutor) { $totalJobs += $this->processExecutor->countActiveJobs(); } $progress->start($totalJobs); } $lastUpdate = 0; while (true) { $activeJobs = 0; $activeJobs += $this->httpDownloader->countActiveJobs(); if ($this->processExecutor) { $activeJobs += $this->processExecutor->countActiveJobs(); } if ($progress && microtime(true) - $lastUpdate > 0.1) { $lastUpdate = microtime(true); $progress->setProgress($progress->getMaxSteps() - $activeJobs); } if (!$activeJobs) { break; } } // as we skip progress updates if they are too quick, make sure we do one last one here at 100% if ($progress) { $progress->finish(); } unset($this->currentPromises[$waitIndex]); if ($uncaught) { throw $uncaught; } } public function abortJobs(): void { foreach ($this->currentPromises as $promiseGroup) { foreach ($promiseGroup as $promise) { if ($promise instanceof CancellablePromiseInterface) { $promise->cancel(); } } } } } __halt_compiler();----SIGNATURE:----NVgg8dqnOfgChJkdY2aQPa1tcggLKcsDeW+VcBL68COwU5a4Zn1Hzry+uu8Zx4W9irRAUdwYLYi+5oRA9OQuo+p3WP0x1XOnrSOCQJbSCOy5t0hGwuk2IZ6NjAqe1oIql5UkDa6k9D5ETWsPR+9ZgkUWKpm5Hugrfi2s52VnTog9tivqqewvaiY6rVXdTLFAJZQhXt/hK5f/VqoYC1ZxGTHLcCEZKkirI5yaszcCYIYYfWat/ZoR6VYaufefkuZkMK7w9tlLC1835OzGeKogirMO1h/Ay69r9aXzSkUNK+InFQSpAs5qJn4jGbSNIEs5fN3XcrWCQ/fS9EeHvLALekj9Fv0ufN0d726V95j3y32UkeTTpYXzrijF2MTt1x4b+F3rXDAwbK19nHMjFGVLQlqBF/2yMwh5prjiqT/hpPpd8YHIdLMGvHh4TvMOcauQkqS8Ja34ptd9ZsNyfIJ1qI1bHcc92lsuEYmTlZavRhCNIX5URKZ+GBaYp8kyyqZJC8U2dJRme2TNVKiLp21zGY/TpXbUDHWkUuTcikvN40iMIK9Rv8Lt+lpX3CdGhBOUnzOqBsqTGeMtwtN3TrGDXkHMr3hiPEfMYAkhycEe+5riYdvfNjXKGOV12Jb67WPALX9Se8ybKWsrYDFsrJmAcdgYtA53Txw4vHsNnCAKUBc=----ATTACHMENT:----OTMzNjQzODQ0MDk2MDUyOSA1NTc5NzA3OTI4NjQ2MzU5IDg4OTE5NzY0NjI0NTYwNDE=