mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
101 lines
2.9 KiB
PHP
101 lines
2.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use ZM\Logger\ConsoleLogger;
|
|
|
|
define('WORKING_DIR', getcwd());
|
|
define('ROOT_DIR', dirname(__DIR__, 2));
|
|
putenv('WORKING_DIR=' . WORKING_DIR);
|
|
putenv('ROOT_DIR=' . ROOT_DIR);
|
|
|
|
// CLI start time
|
|
define('START_TIME', microtime(true));
|
|
|
|
// for windows, prevent calling Invoke-WebRequest and wsl command
|
|
const SPC_CURL_EXEC = PHP_OS_FAMILY === 'Windows' ? 'curl.exe' : 'curl';
|
|
const SPC_GIT_EXEC = PHP_OS_FAMILY === 'Windows' ? 'git.exe' : 'git';
|
|
|
|
// dangerous command
|
|
const DANGER_CMD = [
|
|
'rm',
|
|
'rmdir',
|
|
];
|
|
|
|
// spc internal extensions
|
|
const SPC_INTERNAL_EXTENSIONS = [
|
|
'core',
|
|
'hash',
|
|
'json',
|
|
'pcre',
|
|
'reflection',
|
|
'spl',
|
|
'standard',
|
|
];
|
|
|
|
// spc extension alias
|
|
const SPC_EXTENSION_ALIAS = [
|
|
'zend opcache' => 'opcache',
|
|
'zend-opcache' => 'opcache',
|
|
'zendopcache' => 'opcache',
|
|
];
|
|
|
|
// spc download lock type
|
|
const SPC_DOWNLOAD_SOURCE = 1; // lock source
|
|
const SPC_DOWNLOAD_PRE_BUILT = 2; // lock pre-built
|
|
const SPC_DOWNLOAD_PACKAGE = 3; // lock as package
|
|
|
|
// file replace strategy
|
|
const REPLACE_FILE_STR = 1;
|
|
const REPLACE_FILE_PREG = 2;
|
|
const REPLACE_FILE_USER = 3;
|
|
|
|
// library build status
|
|
const LIB_STATUS_OK = 0;
|
|
const LIB_STATUS_ALREADY = 1;
|
|
const LIB_STATUS_BUILD_FAILED = 2;
|
|
const LIB_STATUS_INSTALL_FAILED = 3;
|
|
|
|
// build target type
|
|
const BUILD_TARGET_NONE = 0; // no target
|
|
const BUILD_TARGET_CLI = 1; // build cli
|
|
const BUILD_TARGET_MICRO = 2; // build micro
|
|
const BUILD_TARGET_FPM = 4; // build fpm
|
|
const BUILD_TARGET_EMBED = 8; // build embed
|
|
const BUILD_TARGET_FRANKENPHP = 16; // build frankenphp
|
|
const BUILD_TARGET_CGI = 32; // build cgi
|
|
const BUILD_TARGET_ALL = BUILD_TARGET_CLI | BUILD_TARGET_MICRO | BUILD_TARGET_FPM | BUILD_TARGET_EMBED | BUILD_TARGET_FRANKENPHP | BUILD_TARGET_CGI; // build all
|
|
|
|
// doctor error fix policy
|
|
const FIX_POLICY_DIE = 1; // die directly
|
|
const FIX_POLICY_PROMPT = 2; // if it can be fixed, ask fix or not
|
|
const FIX_POLICY_AUTOFIX = 3; // if it can be fixed, just fix automatically
|
|
|
|
// pkgconf patch policy
|
|
const PKGCONF_PATCH_PREFIX = 1;
|
|
const PKGCONF_PATCH_EXEC_PREFIX = 2;
|
|
const PKGCONF_PATCH_LIBDIR = 4;
|
|
const PKGCONF_PATCH_INCLUDEDIR = 8;
|
|
const PKGCONF_PATCH_CUSTOM = 16;
|
|
const PKGCONF_PATCH_ALL = 31;
|
|
|
|
// autoconf flags
|
|
const AUTOCONF_LIBS = 1;
|
|
const AUTOCONF_CFLAGS = 2;
|
|
const AUTOCONF_CPPFLAGS = 4;
|
|
const AUTOCONF_LDFLAGS = 8;
|
|
const AUTOCONF_ALL = 15;
|
|
|
|
// spc download source type
|
|
const SPC_SOURCE_ARCHIVE = 'archive'; // download as archive
|
|
const SPC_SOURCE_GIT = 'git'; // download as git repository
|
|
const SPC_SOURCE_LOCAL = 'local'; // download as local directory
|
|
|
|
// spc logs dir
|
|
const SPC_LOGS_DIR = WORKING_DIR . DIRECTORY_SEPARATOR . 'log';
|
|
const SPC_OUTPUT_LOG = SPC_LOGS_DIR . DIRECTORY_SEPARATOR . 'spc.output.log';
|
|
const SPC_SHELL_LOG = SPC_LOGS_DIR . DIRECTORY_SEPARATOR . 'spc.shell.log';
|
|
|
|
ConsoleLogger::$date_format = 'H:i:s';
|
|
ConsoleLogger::$format = '[%date%] [%level_short%] %body%';
|