mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
* Remove E_STRICT * Add lib-base and php as special libs * Remove debug code * Fix phpunit with new config structure * Fix phpunit test and fix license dumper bug for new type of lib * Add missing lib type filter for windows builder
87 lines
3.2 KiB
PHP
87 lines
3.2 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace SPC\command;
|
||
|
||
use SPC\builder\BuilderProvider;
|
||
use SPC\exception\ExceptionHandler;
|
||
use SPC\exception\RuntimeException;
|
||
use SPC\store\Config;
|
||
use SPC\util\DependencyUtil;
|
||
use Symfony\Component\Console\Attribute\AsCommand;
|
||
use Symfony\Component\Console\Input\InputArgument;
|
||
use Symfony\Component\Console\Input\InputInterface;
|
||
use Symfony\Component\Console\Output\OutputInterface;
|
||
|
||
#[AsCommand('build:libs', 'Build dependencies')]
|
||
class BuildLibsCommand extends BuildCommand
|
||
{
|
||
public function configure(): void
|
||
{
|
||
$this->addArgument('libraries', InputArgument::REQUIRED, 'The libraries will be compiled, comma separated');
|
||
$this->addOption('clean', null, null, 'Clean old download cache and source before fetch');
|
||
$this->addOption('all', 'A', null, 'Build all libs that static-php-cli needed');
|
||
}
|
||
|
||
public function initialize(InputInterface $input, OutputInterface $output): void
|
||
{
|
||
// --all 等于 ""
|
||
if ($input->getOption('all')) {
|
||
$input->setArgument('libraries', '');
|
||
}
|
||
parent::initialize($input, $output);
|
||
}
|
||
|
||
/**
|
||
* @throws RuntimeException
|
||
*/
|
||
public function handle(): int
|
||
{
|
||
// 从参数中获取要编译的 libraries,并转换为数组
|
||
$libraries = array_map('trim', array_filter(explode(',', $this->getArgument('libraries'))));
|
||
|
||
// 删除旧资源
|
||
if ($this->getOption('clean')) {
|
||
logger()->warning('You are doing some operations that not recoverable: removing directories below');
|
||
logger()->warning(BUILD_ROOT_PATH);
|
||
logger()->warning('I will remove these dir after you press [Enter] !');
|
||
echo 'Confirm operation? [Yes] ';
|
||
fgets(STDIN);
|
||
if (PHP_OS_FAMILY === 'Windows') {
|
||
f_passthru('rmdir /s /q ' . BUILD_ROOT_PATH);
|
||
} else {
|
||
f_passthru('rm -rf ' . BUILD_ROOT_PATH);
|
||
}
|
||
}
|
||
|
||
try {
|
||
// 构建对象
|
||
$builder = BuilderProvider::makeBuilderByInput($this->input);
|
||
// 只编译 library 的情况下,标记
|
||
$builder->setLibsOnly();
|
||
// 编译和检查库完整
|
||
$libraries = DependencyUtil::getLibs($libraries);
|
||
$display_libs = array_filter($libraries, fn ($lib) => in_array(Config::getLib($lib, 'type', 'lib'), ['lib', 'package']));
|
||
|
||
logger()->info('Building libraries: ' . implode(',', $display_libs));
|
||
sleep(2);
|
||
$builder->proveLibs($libraries);
|
||
$builder->validateLibsAndExts();
|
||
$builder->setupLibs();
|
||
|
||
$time = round(microtime(true) - START_TIME, 3);
|
||
logger()->info('Build libs complete, used ' . $time . ' s !');
|
||
return static::SUCCESS;
|
||
} catch (\Throwable $e) {
|
||
if ($this->getOption('debug')) {
|
||
ExceptionHandler::getInstance()->handle($e);
|
||
} else {
|
||
logger()->critical('Build failed with ' . get_class($e) . ': ' . $e->getMessage());
|
||
logger()->critical('Please check with --debug option to see more details.');
|
||
}
|
||
return static::FAILURE;
|
||
}
|
||
}
|
||
}
|