Merge remote-tracking branch 'naderman/curl-download-performance-select-not-sleep'

main
Jordi Boggiano 4 years ago
commit 7ea17d7db9
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -336,13 +336,9 @@ class HttpDownloader
*/
public function wait($index = null)
{
while (true) {
if (!$this->countActiveJobs($index)) {
return;
}
usleep(1000);
}
do {
$jobCount = $this->countActiveJobs($index);
} while ($jobCount);
}
/**

@ -85,6 +85,7 @@ class Loop
$progress->start($totalJobs);
}
$lastUpdate = 0;
while (true) {
$activeJobs = 0;
@ -95,15 +96,19 @@ class Loop
$activeJobs += $this->processExecutor->countActiveJobs();
}
if ($progress) {
if ($progress && microtime(true) - $lastUpdate > 0.1) {
$lastUpdate = microtime(true);
$progress->setProgress($progress->getMaxSteps() - $activeJobs);
}
if (!$activeJobs) {
break;
}
}
usleep(5000);
// as we skip progress updates if they are too quick, make sure we do one last one here at 100%
if ($progress) {
$progress->setProgress($progress->getMaxSteps());
}
unset($this->currentPromises[$waitIndex]);

Loading…
Cancel
Save