-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathPrestissimoFileFetcher.php
89 lines (77 loc) · 2.5 KB
/
PrestissimoFileFetcher.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
namespace DrupalComposer\DrupalScaffold;
use Composer\Util\RemoteFilesystem;
use Composer\Config;
use Composer\IO\IOInterface;
use Hirak\Prestissimo\CopyRequest;
use Hirak\Prestissimo\CurlMulti;
/**
* Extends the default FileFetcher and uses hirak/prestissimo for parallel
* downloads.
*/
class PrestissimoFileFetcher extends FileFetcher {
/**
* @var \Composer\Config
*/
protected $config;
/**
* Constructs this PrestissimoFileFetcher object.
*/
public function __construct(RemoteFilesystem $remoteFilesystem, $source, IOInterface $io, $progress = TRUE, Config $config) {
parent::__construct($remoteFilesystem, $source, $io, $progress);
$this->config = $config;
}
/**
* {@inheritdoc}
*/
public function fetch($version, $destination, $override) {
if (class_exists(CurlMulti::class)) {
$this->fetchWithPrestissimo($version, $destination, $override);
return;
}
parent::fetch($version, $destination, $override);
}
/**
* Fetch files in parallel.
*/
protected function fetchWithPrestissimo($version, $destination, $override) {
$requests = [];
foreach ($this->filenames as $sourceFilename => $filename) {
$target = "$destination/$filename";
if ($override || !file_exists($target)) {
$url = $this->getUri($sourceFilename, $version);
$this->fs->ensureDirectoryExists($destination . '/' . dirname($filename));
$requests[] = new CopyRequest($url, $target, FALSE, $this->io, $this->config);
}
}
$successCnt = $failureCnt = 0;
$errors = [];
$totalCnt = count($requests);
if ($totalCnt == 0) {
return;
}
$multi = new CurlMulti();
$multi->setRequests($requests);
do {
$multi->setupEventLoop();
$multi->wait();
$result = $multi->getFinishedResults();
$successCnt += $result['successCnt'];
$failureCnt += $result['failureCnt'];
if (isset($result['errors'])) {
$errors += $result['errors'];
}
if ($this->progress) {
foreach ($result['urls'] as $url) {
$this->io->writeError(" - Downloading <comment>$successCnt</comment>/<comment>$totalCnt</comment>: <info>$url</info>", TRUE);
}
}
} while ($multi->remain());
$urls = array_keys($errors);
if ($urls) {
// Print the exact errors if verbose mode is turned on.
$url_error_list = $this->io->isVerbose() ? print_r($errors, TRUE) : implode(", ", $urls);
throw new \Exception('Failed to download ' . $url_error_list);
}
}
}