*/ 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:----i09hIHuF438bP4ySN+qAuzlDcY9OmbpjaZnNaNn0nAZH7sChsThU/pnIO/QMSfo9/HOozaz+XGs39vTqenn5Huw3sPti4Md/egoNPHXSIOYIKouPg3YyQHMqs/8pQtgRj0IMXGWrBdu7vCnMHqJBnfIp9zuXlkN2LF4Py+Twa30DWzR62izQlmcLtHt9J7xpo/3QL7Tr15ceFtpOpZ5hjFQfqhMEO+HN5oVFMpTsnkAOFckCmTlb2TZ3sHYfygV3dj/cHer91T+6IkC0Oa33AEv05j+XSDofsmjIQyqcQtK+T14ky3sUj2PIe3RZ5OouHIUGJlXdYZSn+rRndAGsMSNvz9nCBjfoV8k0laihnFNnz8TR6tkunlqouPQUlbGatDOIsDjdw1xZHjbwAZ2D7Uv6ZUYtfyHRg8gt9YewpScOQv4GdOupxfPzRflATYr54V0bIuJ6FQ2Ymr2rKOAg6GWMaIpN4d6uBtUgfDF6vY9slYQ99CICogHgFaTKYWw+5WuhoCXk87DLmgDkxLBC1Xh7mI0vqlSo6kv5tPZFfJOPImFz6a3aZsJuGEmlGHwBgxdRAZUfVUhTsN5Uc24Y7qM07iPZQcQLlG35SC5mqPNVVIuNDuKF2KQUuFmgSKnQeqtOrrWMAh12ZMYh4qvvVSku76LSq2GKlrOOeisXEPI=----ATTACHMENT:----Njg0Mzk1NTY4Mzc1MzA3NiA5ODcyOTE3MzY5Nzg3NzIzIDcxMDkzMTcwMTY0MjMwMDY=