Skip to content

Commit d4b263b

Browse files
authored
Merge pull request #689 from crazywhalecc/fix/extract-source-only
Add extract source only mode for SourceManager
2 parents 6108433 + 4e4eaed commit d4b263b

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

src/SPC/builder/BuilderBase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@ public function proveExts(array $extensions, bool $skip_check_deps = false): voi
174174
{
175175
CustomExt::loadCustomExt();
176176
$this->emitPatchPoint('before-php-extract');
177-
SourceManager::initSource(sources: ['php-src']);
177+
SourceManager::initSource(sources: ['php-src'], source_only: true);
178178
$this->emitPatchPoint('after-php-extract');
179179
if ($this->getPHPVersionID() >= 80000) {
180180
$this->emitPatchPoint('before-micro-extract');
181-
SourceManager::initSource(sources: ['micro']);
181+
SourceManager::initSource(sources: ['micro'], source_only: true);
182182
$this->emitPatchPoint('after-micro-extract');
183183
}
184184
$this->emitPatchPoint('before-exts-extract');

src/SPC/builder/LibraryBase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public function tryBuild(bool $force_build = false): int
222222
// extract first if not exists
223223
if (!is_dir($this->source_dir)) {
224224
$this->getBuilder()->emitPatchPoint('before-library[ ' . static::NAME . ']-extract');
225-
SourceManager::initSource(libs: [static::NAME]);
225+
SourceManager::initSource(libs: [static::NAME], source_only: true);
226226
$this->getBuilder()->emitPatchPoint('after-library[ ' . static::NAME . ']-extract');
227227
}
228228

src/SPC/command/ExtractCommand.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class ExtractCommand extends BaseCommand
2020
public function configure(): void
2121
{
2222
$this->addArgument('sources', InputArgument::REQUIRED, 'The sources will be compiled, comma separated');
23+
$this->addOption('source-only', null, null, 'Only check the source exist, do not check the lib and ext');
2324
}
2425

2526
/**
@@ -34,7 +35,7 @@ public function handle(): int
3435
$this->output->writeln('<error>sources cannot be empty, at least contain one !</error>');
3536
return static::FAILURE;
3637
}
37-
SourceManager::initSource(sources: $sources);
38+
SourceManager::initSource(sources: $sources, source_only: $this->getOption('source-only'));
3839
logger()->info('Extract done !');
3940
return static::SUCCESS;
4041
}

src/SPC/store/SourceManager.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SourceManager
1515
* @throws FileSystemException
1616
* @throws RuntimeException
1717
*/
18-
public static function initSource(?array $sources = null, ?array $libs = null, ?array $exts = null): void
18+
public static function initSource(?array $sources = null, ?array $libs = null, ?array $exts = null, bool $source_only = false): void
1919
{
2020
if (!file_exists(DOWNLOAD_PATH . '/.lock.json')) {
2121
throw new WrongUsageException('Download lock file "downloads/.lock.json" not found, maybe you need to download sources first ?');
@@ -56,7 +56,7 @@ public static function initSource(?array $sources = null, ?array $libs = null, ?
5656
}
5757
// check source downloaded
5858
$pre_built_name = Downloader::getPreBuiltLockName($source);
59-
if (!isset($lock[$pre_built_name])) {
59+
if ($source_only || !isset($lock[$pre_built_name])) {
6060
if (!isset($lock[$source])) {
6161
throw new WrongUsageException("Source [{$source}] not downloaded or not locked, you should download it first !");
6262
}

0 commit comments

Comments
 (0)