Compare commits
No commits in common. "master" and "v1.3.2" have entirely different histories.
|
@ -1,28 +0,0 @@
|
|||
name: Publish PHP Package
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Get tag name
|
||||
run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||
|
||||
- name: zip and send
|
||||
run: |
|
||||
ls -la
|
||||
apt-get update -y
|
||||
apt-get install -y zip
|
||||
cd ../
|
||||
zip -r ${{ gitea.event.repository.name }}.zip ${{ gitea.event.repository.name }} -x '*.git*'
|
||||
curl -v \
|
||||
--user composer-pbl:${{ secrets.COMPOSER_PSWD }} \
|
||||
--upload-file ${{ gitea.event.repository.name }}.zip \
|
||||
https://git.bit5.ru/api/packages/bit/composer?version=${{ env.TAG }}
|
|
@ -1,5 +0,0 @@
|
|||
## v1.8.1
|
||||
- Adding null check in need_to_regen_any(..)
|
||||
|
||||
## v1.7.2
|
||||
- Fixing weird lstat bug on Windows for rrmdir function for large amount of directory items
|
267
helpers.inc.php
267
helpers.inc.php
|
@ -2,43 +2,43 @@
|
|||
namespace taskman;
|
||||
use Exception;
|
||||
|
||||
function is_release() : bool
|
||||
function is_release()
|
||||
{
|
||||
return get("GAME_IS_DEV") == 0;
|
||||
}
|
||||
|
||||
function is_dev() : bool
|
||||
function is_dev()
|
||||
{
|
||||
return !is_release();
|
||||
}
|
||||
|
||||
function is_dev_no_env() : bool
|
||||
function is_dev_no_env()
|
||||
{
|
||||
return is_dev() && !getenv("GAME_ENV");
|
||||
}
|
||||
|
||||
function is_win() : bool
|
||||
function is_win()
|
||||
{
|
||||
return !(DIRECTORY_SEPARATOR == '/');
|
||||
}
|
||||
|
||||
function is_linux() : bool
|
||||
function is_linux()
|
||||
{
|
||||
return PHP_OS == 'Linux';
|
||||
}
|
||||
|
||||
function stderr(string $msg)
|
||||
function stderr($msg)
|
||||
{
|
||||
fwrite(STDERR, $msg);
|
||||
}
|
||||
|
||||
function fatal(string $msg)
|
||||
function fatal($msg)
|
||||
{
|
||||
fwrite(STDERR, $msg);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
function make_tmp_file_name(string $file_name) : string
|
||||
function make_tmp_file_name($file_name)
|
||||
{
|
||||
$meta = stream_get_meta_data(tmpfile());
|
||||
$tmp_dir = dirname($meta['uri']);
|
||||
|
@ -46,7 +46,7 @@ function make_tmp_file_name(string $file_name) : string
|
|||
return $tmp_file;
|
||||
}
|
||||
|
||||
function get_tmp_build_path(string $file) : string
|
||||
function get_tmp_build_path($file)
|
||||
{
|
||||
global $GAME_ROOT;
|
||||
|
||||
|
@ -55,7 +55,7 @@ function get_tmp_build_path(string $file) : string
|
|||
return normalize_path("$GAME_ROOT/build/tmp/$name");
|
||||
}
|
||||
|
||||
function find_recursive(string $dir, string $ext) : array
|
||||
function find_recursive($dir, $ext)
|
||||
{
|
||||
if(is_win())
|
||||
$cmd = "dir /s /b " . normalize_path("$dir/*$ext");
|
||||
|
@ -65,7 +65,7 @@ function find_recursive(string $dir, string $ext) : array
|
|||
return $out;
|
||||
}
|
||||
|
||||
function find_files(string $dir, array $fnmatch_patterns = []) : array
|
||||
function find_files($dir, array $fnmatch_patterns = array())
|
||||
{
|
||||
$results = array();
|
||||
$files = scandir($dir);
|
||||
|
@ -87,7 +87,9 @@ function find_files(string $dir, array $fnmatch_patterns = []) : array
|
|||
return $results;
|
||||
}
|
||||
|
||||
function scan_files_rec(array $dirs, array $only_extensions = [], int $mode = 1) : array
|
||||
|
||||
//obsolete, use find_files instead
|
||||
function scan_files_rec(array $dirs, array $only_extensions = array(), $mode = 1)
|
||||
{
|
||||
$files = array();
|
||||
foreach($dirs as $dir)
|
||||
|
@ -122,7 +124,7 @@ function scan_files_rec(array $dirs, array $only_extensions = [], int $mode = 1)
|
|||
return $files;
|
||||
}
|
||||
|
||||
function normalize_path(string $path, ?bool $unix = null/*null means try to guess*/) : string
|
||||
function normalize_path($path, $unix=null/*null means try to guess*/)
|
||||
{
|
||||
if(is_null($unix))
|
||||
$unix = !is_win();
|
||||
|
@ -145,7 +147,7 @@ function normalize_path(string $path, ?bool $unix = null/*null means try to gues
|
|||
return $res;
|
||||
}
|
||||
|
||||
function normalize_sed_path(string $path) : string
|
||||
function normalize_sed_path($path)
|
||||
{
|
||||
$path = normalize_path($path);
|
||||
if(is_win())
|
||||
|
@ -155,18 +157,18 @@ function normalize_sed_path(string $path) : string
|
|||
|
||||
//NOTE: Escaping multibyte unicode chars as \uXXXX impacts decoding performance drastically
|
||||
//so we unescape them while encoding json
|
||||
function json_encode_unescaped(array $arr) : string
|
||||
function json_encode_unescaped($arr)
|
||||
{
|
||||
array_walk_recursive($arr, function (&$item, $key) { if (is_string($item)) $item = mb_encode_numericentity($item, array (0x80, 0xffff, 0, 0xffff), 'UTF-8'); });
|
||||
return mb_decode_numericentity(json_encode($arr), array (0x80, 0xffff, 0, 0xffff), 'UTF-8');
|
||||
}
|
||||
|
||||
function json_make_pretty(string $json) : string
|
||||
function json_make_pretty($json)
|
||||
{
|
||||
return prettyJSON($json);
|
||||
}
|
||||
|
||||
function need_to_regen(string $file, iterable $deps, bool $debug = false) : bool
|
||||
function need_to_regen($file, array $deps, $debug = false)
|
||||
{
|
||||
if(!is_file($file))
|
||||
{
|
||||
|
@ -176,10 +178,9 @@ function need_to_regen(string $file, iterable $deps, bool $debug = false) : bool
|
|||
}
|
||||
|
||||
$fmtime = filemtime($file);
|
||||
|
||||
foreach($deps as $dep)
|
||||
{
|
||||
if($dep && is_file($dep) && (filemtime($dep) > $fmtime))
|
||||
if(is_file($dep) && (filemtime($dep) > $fmtime))
|
||||
{
|
||||
if($debug)
|
||||
echo "$dep > $file\n";
|
||||
|
@ -190,7 +191,7 @@ function need_to_regen(string $file, iterable $deps, bool $debug = false) : bool
|
|||
return false;
|
||||
}
|
||||
|
||||
function need_to_regen_any(array $files, array $deps, bool $debug = false) : bool
|
||||
function need_to_regen_any(array $files, array $deps, $debug = false)
|
||||
{
|
||||
$earliest_file = null;
|
||||
$earliest_time = 2e32;
|
||||
|
@ -214,13 +215,10 @@ function need_to_regen_any(array $files, array $deps, bool $debug = false) : boo
|
|||
echo "need_to_regen_any, earliest file: $earliest_file ($date)\n";
|
||||
}
|
||||
|
||||
if($earliest_file === null)
|
||||
return true;
|
||||
|
||||
return need_to_regen($earliest_file, $deps, $debug);
|
||||
}
|
||||
|
||||
function fnmatch_patterns(string $file, array $fnmatch_patterns) : bool
|
||||
function fnmatch_patterns($file, array $fnmatch_patterns)
|
||||
{
|
||||
foreach($fnmatch_patterns as $pattern)
|
||||
{
|
||||
|
@ -238,8 +236,10 @@ function fnmatch_patterns(string $file, array $fnmatch_patterns) : bool
|
|||
//1 - force write always,
|
||||
//2 - write only if content differs
|
||||
//3 - write only if content differs, don't even touch if they are same
|
||||
function gen_file(string $tpl_file, string $result_file, $deps = array(), $force = 0, int $perms = 0640)
|
||||
function gen_file($tpl_file, $result_file, $deps = array(), $force = 0, $perms = 0640)
|
||||
{
|
||||
global $GAME_ROOT;
|
||||
|
||||
$deps[] = $tpl_file;
|
||||
if($force > 0 || need_to_regen($result_file, $deps))
|
||||
{
|
||||
|
@ -302,43 +302,33 @@ const COPY_MODE_BUILTIN = 1;
|
|||
const COPY_MODE_SYSTEM = 2;
|
||||
const COPY_MODE_HARDLINK = 3;
|
||||
|
||||
function ensure_copy(string $src, string $dst, int $dir_perms = 0777, array $excludes = array(), array $fnmatches = array())
|
||||
function ensure_copy($src, $dst, $dir_perms = 0777, $excludes = array())
|
||||
{
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_BUILTIN, false, $excludes, $fnmatches);
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_BUILTIN, false, $excludes);
|
||||
}
|
||||
|
||||
function ensure_copy_file_if_differs(string $src_file, string $dst_file, $dir_perms = 0777)
|
||||
function ensure_copy_file_if_differs($src_file, $dst_file, $dir_perms = 0777)
|
||||
{
|
||||
if(!is_file($dst_file) || filesize($src_file) != filesize($dst_file) || crc32_file($src_file) !== crc32_file($dst_file))
|
||||
ensure_copy($src_file, $dst_file, $dir_perms);
|
||||
}
|
||||
|
||||
function ensure_sync(string $src, string $dst, int $dir_perms = 0777, array $excludes = array(), array $fnmatches = array())
|
||||
function ensure_sync($src, $dst, $dir_perms = 0777, $excludes = array())
|
||||
{
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_BUILTIN, true, $excludes, $fnmatches);
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_BUILTIN, true, $excludes);
|
||||
}
|
||||
|
||||
function ensure_hardlink(string $src, string $dst, int $dir_perms = 0777, array $excludes = array(), array $fnmatches = array())
|
||||
function ensure_hardlink($src, $dst, $dir_perms = 0777, $excludes = array())
|
||||
{
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_HARDLINK, true, $excludes, $fnmatches);
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_HARDLINK, true, $excludes);
|
||||
}
|
||||
|
||||
function ensure_duplicate(string $src, string $dst, int $dir_perms = 0777)
|
||||
function ensure_duplicate($src, $dst, $dir_perms = 0777)
|
||||
{
|
||||
recurse_copy($src, $dst, $dir_perms, COPY_MODE_SYSTEM);
|
||||
}
|
||||
|
||||
function recurse_copy(
|
||||
string $src,
|
||||
string $dst,
|
||||
int $dir_perms = 0777,
|
||||
int $copy_mode = COPY_MODE_BUILTIN,
|
||||
bool $mtime_check = false,
|
||||
//regex expressions which check full paths
|
||||
array $excludes = array(),
|
||||
//fnmatch expressions which check file names only
|
||||
array $fnmatches = array()
|
||||
)
|
||||
function recurse_copy($src, $dst, $dir_perms = 0777, $copy_mode = COPY_MODE_BUILTIN, $mtime_check = false, $excludes = array())
|
||||
{
|
||||
msg_dbg("copying $src => $dst ...\n");
|
||||
|
||||
|
@ -364,27 +354,14 @@ function recurse_copy(
|
|||
if(($file != '.' ) && ($file != '..'))
|
||||
{
|
||||
if(is_dir($src . '/' . $file))
|
||||
{
|
||||
recurse_copy(
|
||||
$src . '/' . $file,
|
||||
$dst . '/' . $file,
|
||||
$dir_perms,
|
||||
$copy_mode,
|
||||
$mtime_check,
|
||||
$excludes,
|
||||
$fnmatches
|
||||
);
|
||||
}
|
||||
recurse_copy($src . '/' . $file, $dst . '/' . $file, $dir_perms, $copy_mode, $mtime_check, $excludes);
|
||||
else
|
||||
{
|
||||
$excluded = false;
|
||||
foreach($excludes as $exclude_pattern)
|
||||
$excluded = $excluded || (bool)preg_match("~$exclude_pattern~", $src . '/' . $file);
|
||||
$fnmatched = sizeof($fnmatches) == 0;
|
||||
foreach($fnmatches as $fnmatch)
|
||||
$fnmatched = $fnmatched || fnmatch($fnmatch, $file);
|
||||
|
||||
if($excluded || !$fnmatched)
|
||||
if($excluded)
|
||||
continue;
|
||||
|
||||
_ensure_copy_file($src . '/' . $file, $dst . '/' . $file, $copy_mode, $mtime_check);
|
||||
|
@ -394,14 +371,14 @@ function recurse_copy(
|
|||
closedir($dir);
|
||||
}
|
||||
|
||||
function shell(string $cmd, &$out = null)
|
||||
function shell($cmd, &$out=null)
|
||||
{
|
||||
shell_try($cmd, $ret, $out);
|
||||
if($ret != 0)
|
||||
throw new Exception("Shell execution error(exit code $ret)");
|
||||
}
|
||||
|
||||
function shell_try(string $cmd, &$ret = null, &$out = null)
|
||||
function shell_try($cmd, &$ret=null, &$out=null)
|
||||
{
|
||||
msg(" shell: $cmd\n");
|
||||
msg(" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n");
|
||||
|
@ -412,7 +389,7 @@ function shell_try(string $cmd, &$ret = null, &$out = null)
|
|||
_execute_proc_cmd($cmd, $ret, $out);
|
||||
}
|
||||
|
||||
function shell_get(string $cmd, bool $as_string = true)
|
||||
function shell_get($cmd, $as_string = true)
|
||||
{
|
||||
exec($cmd, $out, $code);
|
||||
if($code !== 0)
|
||||
|
@ -420,7 +397,7 @@ function shell_get(string $cmd, bool $as_string = true)
|
|||
return $as_string ? implode("", $out) : $out;
|
||||
}
|
||||
|
||||
function _execute_proc_cmd(string $cmd, &$ret, &$out)
|
||||
function _execute_proc_cmd($cmd, &$ret, &$out)
|
||||
{
|
||||
//TODO: do we really need to redirect error stream?
|
||||
$proc = popen("$cmd 2>&1", 'r');
|
||||
|
@ -443,7 +420,7 @@ function _execute_proc_cmd(string $cmd, &$ret, &$out)
|
|||
$ret = pclose($proc);
|
||||
}
|
||||
|
||||
function _ensure_copy_file(string $src, string $dst, int $copy_mode = COPY_MODE_BUILTIN, bool $mtime_check = false)
|
||||
function _ensure_copy_file($src, $dst, $copy_mode = COPY_MODE_BUILTIN, $mtime_check = false)
|
||||
{
|
||||
if($mtime_check && file_exists($dst) && filemtime($src) <= filemtime($dst))
|
||||
return;
|
||||
|
@ -468,7 +445,7 @@ function _ensure_copy_file(string $src, string $dst, int $copy_mode = COPY_MODE_
|
|||
throw new Exception("Unrecognized copy mode $copy_mode");
|
||||
}
|
||||
|
||||
function ensure_identical(string $src, string $dst, $excludes = array())
|
||||
function ensure_identical($src, $dst, $excludes = array())
|
||||
{
|
||||
msg_dbg("deleting files missing in $src from $dst ...\n");
|
||||
|
||||
|
@ -510,7 +487,7 @@ function ensure_identical(string $src, string $dst, $excludes = array())
|
|||
closedir($dir);
|
||||
}
|
||||
|
||||
function ensure_symlink(string $src, string $dst, int $dir_perms = 0777)
|
||||
function ensure_symlink($src, $dst, $dir_perms = 0777)
|
||||
{
|
||||
if(!is_file($src) && !is_dir($src))
|
||||
throw new Exception("Bad file or dir '$src'");
|
||||
|
@ -526,7 +503,7 @@ function ensure_symlink(string $src, string $dst, int $dir_perms = 0777)
|
|||
throw new Exception("Could not create symlink");
|
||||
}
|
||||
|
||||
function ensure_rm(string $what)
|
||||
function ensure_rm($what)
|
||||
{
|
||||
if(is_dir($what) && !is_link($what))
|
||||
rrmdir($what);
|
||||
|
@ -534,7 +511,7 @@ function ensure_rm(string $what)
|
|||
unlink($what);
|
||||
}
|
||||
|
||||
function ensure_mkdir(string $dir, int $perms = 0775)
|
||||
function ensure_mkdir($dir, $perms = 0775)
|
||||
{
|
||||
if(is_dir($dir))
|
||||
return;
|
||||
|
@ -548,7 +525,7 @@ function ensure_mkdir(string $dir, int $perms = 0775)
|
|||
throw new Exception("Could not chmod " . decoct($perms) . " dir '$dir'");
|
||||
}
|
||||
|
||||
function ensure_var_dir(string $dir)
|
||||
function ensure_var_dir($dir)
|
||||
{
|
||||
ensure_mkdir($dir, 0777);
|
||||
$items = fmatch("$dir/*");
|
||||
|
@ -562,7 +539,7 @@ function ensure_var_dir(string $dir)
|
|||
}
|
||||
}
|
||||
|
||||
function compare_files_timestamp(string $file_a, string $file_b) : int
|
||||
function compare_files_timestamp($file_a, $file_b)
|
||||
{
|
||||
$file_a_timestamp = file_exists($file_a) ? filemtime($file_a) : 0;
|
||||
$file_b_timestamp = file_exists($file_b) ? filemtime($file_b) : 0;
|
||||
|
@ -572,15 +549,15 @@ function compare_files_timestamp(string $file_a, string $file_b) : int
|
|||
return -1;
|
||||
}
|
||||
|
||||
function fmatch(string $path) : array
|
||||
function fmatch($pat)
|
||||
{
|
||||
$res = glob($path);
|
||||
$res = glob($pat);
|
||||
if(!is_array($res))
|
||||
return array();
|
||||
return $res;
|
||||
}
|
||||
|
||||
function rrmdir(string $dir, bool $remove_top_dir = true)
|
||||
function rrmdir($dir, $remove_top_dir = true)
|
||||
{
|
||||
if(is_dir($dir))
|
||||
{
|
||||
|
@ -589,7 +566,7 @@ function rrmdir(string $dir, bool $remove_top_dir = true)
|
|||
{
|
||||
if($object != "." && $object != "..")
|
||||
{
|
||||
if(is_dir($dir."/".$object))
|
||||
if(filetype($dir."/".$object) == "dir")
|
||||
rrmdir($dir."/".$object);
|
||||
else
|
||||
unlink($dir."/".$object);
|
||||
|
@ -606,74 +583,78 @@ function rrmdir(string $dir, bool $remove_top_dir = true)
|
|||
}
|
||||
}
|
||||
|
||||
define("GIT_INFO_REV_HASH" , 1 << 0);
|
||||
define("GIT_INFO_BRANCH" , 1 << 1);
|
||||
define("GIT_INFO_REV_NUMBER", 1 << 2);
|
||||
define("GIT_INFO_ALL" , ~0);
|
||||
function run_apple_script($script)
|
||||
{
|
||||
$vm = popen("osascript", "w");
|
||||
fwrite($vm, $script);
|
||||
// run script will always exit with status 1
|
||||
pclose($vm);
|
||||
}
|
||||
|
||||
function git_get_info($info = GIT_INFO_ALL) : array
|
||||
function client_xcode_build($scheme, $config = 'Debug', $sdk = 'iphonesimulator4.3')
|
||||
{
|
||||
global $GAME_ROOT;
|
||||
|
||||
$xcode_filter = ". $GAME_ROOT/utils/xcodefilter.sh";
|
||||
|
||||
ensure_mkdir("$GAME_ROOT/build/client");
|
||||
shell(_(
|
||||
"cd $GAME_ROOT/client && " .
|
||||
"$xcode_filter xcodebuild -workspace %XCODE_WKSPACE% -scheme $scheme -configuration $config -sdk $sdk SYMROOT=$GAME_ROOT/build/client"
|
||||
));
|
||||
}
|
||||
|
||||
function git_get_info()
|
||||
{
|
||||
global $GAME_ROOT;
|
||||
$rev_hash = "";
|
||||
$branch = "";
|
||||
$revision_number = 0;
|
||||
|
||||
if(!is_dir("$GAME_ROOT/.git"))
|
||||
throw new Exception("Not a Git repository");
|
||||
|
||||
if($info & GIT_INFO_REV_HASH)
|
||||
{
|
||||
$out = array();
|
||||
exec("git rev-parse HEAD", $out);
|
||||
$rev_hash = trim($out[0]);
|
||||
if(!$rev_hash)
|
||||
throw new Exception("Error getting git revision hash");
|
||||
}
|
||||
|
||||
if($info & GIT_INFO_BRANCH)
|
||||
{
|
||||
$out = array();
|
||||
exec("git rev-parse --abbrev-ref HEAD", $out);
|
||||
$branch = trim($out[0]);
|
||||
if(!$branch)
|
||||
throw new Exception("Error getting git branch");
|
||||
}
|
||||
|
||||
if($info & GIT_INFO_REV_NUMBER)
|
||||
{
|
||||
$out = array();
|
||||
exec("git rev-list HEAD --count", $out);
|
||||
$revision_number = (int)$out[0];
|
||||
if(!$revision_number)
|
||||
throw new Exception("Error getting git revision number");
|
||||
}
|
||||
|
||||
return array($rev_hash, $branch, $revision_number);
|
||||
}
|
||||
|
||||
function git_get_rev_hash() : string
|
||||
function git_get_rev_hash()
|
||||
{
|
||||
list($rev_hash, $_, $__) = git_get_info(GIT_INFO_REV_HASH);
|
||||
list($rev_hash, $_, $__) = git_get_info();
|
||||
return $rev_hash;
|
||||
}
|
||||
|
||||
function git_get_branch() : string
|
||||
function git_get_branch()
|
||||
{
|
||||
list($_, $branch, $__) = git_get_info(GIT_INFO_BRANCH);
|
||||
list($_, $branch, $__) = git_get_info();
|
||||
return $branch;
|
||||
}
|
||||
|
||||
function git_get_rev_number() : string
|
||||
function git_get_rev_number()
|
||||
{
|
||||
list($_, $__, $rev_number) = git_get_info(GIT_INFO_REV_NUMBER);
|
||||
list($_, $__, $rev_number) = git_get_info();
|
||||
return $rev_number;
|
||||
}
|
||||
|
||||
function git_try_commit(string $paths, string $msg)
|
||||
function git_try_commit($files, $msg)
|
||||
{
|
||||
try
|
||||
{
|
||||
exec("git add $paths && git commit -m \"$msg\" && git pull && git push");
|
||||
exec("git add $files && git commit -m \"$msg\" && git pull && git push");
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
|
@ -681,7 +662,7 @@ function git_try_commit(string $paths, string $msg)
|
|||
}
|
||||
}
|
||||
|
||||
function check_and_decode_jzon(string $json) : array
|
||||
function check_and_decode_jzon($json)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
@ -720,7 +701,7 @@ function make_dir_md5($dir, $md5_file)
|
|||
ensure_write($md5_file, $md5);
|
||||
}
|
||||
|
||||
function file_put_contents_atomic(string $filename, string $content, int $mode = 0644)
|
||||
function file_put_contents_atomic($filename, $content, $mode = 0644)
|
||||
{
|
||||
$temp = tempnam(dirname($filename), 'atomic');
|
||||
if(!($f = @fopen($temp, 'wb')))
|
||||
|
@ -737,15 +718,15 @@ function file_put_contents_atomic(string $filename, string $content, int $mode =
|
|||
chmod($filename, $mode);
|
||||
}
|
||||
|
||||
function gmgetdate($ts = null) : array
|
||||
function gmgetdate($ts = null)
|
||||
{
|
||||
$k = array('seconds','minutes','hours','mday',
|
||||
'wday','mon','year','yday','weekday','month',0);
|
||||
return array_combine($k, explode(":",
|
||||
gmdate('s:i:G:j:w:n:Y:z:l:F:U',is_null($ts)?time():$ts)));
|
||||
return(array_combine($k, explode(":",
|
||||
gmdate('s:i:G:j:w:n:Y:z:l:F:U',is_null($ts)?time():$ts))));
|
||||
}
|
||||
|
||||
function prettyJSON(string $json) : string
|
||||
function prettyJSON($json)
|
||||
{
|
||||
$result = '';
|
||||
$level = 0;
|
||||
|
@ -826,12 +807,12 @@ function run_shell_in_project_dir($cmd)
|
|||
return $out[0];
|
||||
}
|
||||
|
||||
function boolstr(bool $b) : string
|
||||
function boolstr($b)
|
||||
{
|
||||
return $b ? 'true' : 'false';
|
||||
}
|
||||
|
||||
function create_js_template_literal(string $str) : string
|
||||
function create_js_template_literal($str)
|
||||
{
|
||||
$result = str_replace('\\', '\\\\', $str); // replace \ -> \\
|
||||
$result = str_replace('`', '\\`', $result); // replace ` -> \`
|
||||
|
@ -839,7 +820,7 @@ function create_js_template_literal(string $str) : string
|
|||
return "`$result`";
|
||||
}
|
||||
|
||||
function create_go_string_literal(string $str) : string
|
||||
function create_go_string_literal($str)
|
||||
{
|
||||
$result = str_replace('\\', '\\\\', $str); // replace \ -> \\
|
||||
$result = str_replace('"', '\\"', $result); // replace " -> \"
|
||||
|
@ -847,7 +828,7 @@ function create_go_string_literal(string $str) : string
|
|||
return '"' . $result . '"';
|
||||
}
|
||||
|
||||
function convertFileFromDos2UnixFormat(string $file)
|
||||
function convertFileFromDos2UnixFormat($file)
|
||||
{
|
||||
$file_tmp = $file.".tmp";
|
||||
|
||||
|
@ -860,7 +841,7 @@ function convertFileFromDos2UnixFormat(string $file)
|
|||
ensure_rm($file_tmp);
|
||||
}
|
||||
|
||||
function removeCarriageReturn(string $file)
|
||||
function removeCarriageReturn($file)
|
||||
{
|
||||
$file_tmp = $file.".tmp";
|
||||
|
||||
|
@ -873,14 +854,14 @@ function removeCarriageReturn(string $file)
|
|||
ensure_rm($file_tmp);
|
||||
}
|
||||
|
||||
function replace_text_in_file(string $search_pattern, string $replace_pattern, string $from_file, string $to_file)
|
||||
function replace_text_in_file($search_pattern, $replace_pattern, $from_file, $to_file)
|
||||
{
|
||||
$file_content = ensure_read($from_file);
|
||||
$res = str_replace($search_pattern, $replace_pattern, $file_content);
|
||||
ensure_write($to_file, $res);
|
||||
}
|
||||
|
||||
function gamectl_get_props_as_php_code() : string
|
||||
function gamectl_get_props_as_php_code()
|
||||
{
|
||||
$props = props();
|
||||
$props_str = "<?php\nnamespace taskman;\n";
|
||||
|
@ -924,7 +905,7 @@ function run_background_proc($bin, array $args = array(), $redirect_out = '', $r
|
|||
}
|
||||
}
|
||||
|
||||
function run_background_gamectl_workers(string $task, array $worker_args) : array
|
||||
function run_background_gamectl_workers($task, array $worker_args)
|
||||
{
|
||||
global $GAME_ROOT;
|
||||
|
||||
|
@ -1005,17 +986,17 @@ function run_background_gamectl_workers(string $task, array $worker_args) : arra
|
|||
return $results;
|
||||
}
|
||||
|
||||
function kb(string $data) : string
|
||||
function kb($str)
|
||||
{
|
||||
return kb_len(strlen($data));
|
||||
return kb_len(strlen($str));
|
||||
}
|
||||
|
||||
function kb_len(int $len) : string
|
||||
function kb_len($len)
|
||||
{
|
||||
return round($len/1024,2) . "kb";
|
||||
}
|
||||
|
||||
function gen_uuid_v4() : string
|
||||
function gen_uuid_v4()
|
||||
{
|
||||
$UUID_LENGTH_BYTES = 16;
|
||||
$data = random_bytes($UUID_LENGTH_BYTES);
|
||||
|
@ -1026,7 +1007,7 @@ function gen_uuid_v4() : string
|
|||
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
|
||||
}
|
||||
|
||||
function watch_running_process($pid, string $log_file, $exit_matches = array(), $error_matches = array(), bool $verbose = true, $break_after_sec = -1, $ignored_errors = array(), $noted_warnings = array())
|
||||
function watch_running_process($pid, $log_file, $exit_matches = array(), $error_matches = array(), $verbose = true, $break_after_sec = -1, $ignored_errors = array(), $noted_warnings = array())
|
||||
{
|
||||
$matches_any_fn = function($buffer, array $matches)
|
||||
{
|
||||
|
@ -1105,7 +1086,7 @@ function watch_running_process($pid, string $log_file, $exit_matches = array(),
|
|||
fclose($h);
|
||||
}
|
||||
|
||||
function check_process($pid) : int
|
||||
function check_process($pid)
|
||||
{
|
||||
if(is_win())
|
||||
{
|
||||
|
@ -1120,12 +1101,12 @@ function check_process($pid) : int
|
|||
return $ret;
|
||||
}
|
||||
|
||||
function which_dir(string $bin) : string
|
||||
function which_dir($bin)
|
||||
{
|
||||
return realpath(dirname(which_path($bin)));
|
||||
}
|
||||
|
||||
function which_path(string $bin) : string
|
||||
function which_path($bin)
|
||||
{
|
||||
if(is_win())
|
||||
{
|
||||
|
@ -1139,7 +1120,7 @@ function which_path(string $bin) : string
|
|||
}
|
||||
}
|
||||
|
||||
function arg_exists(array $args, string $needle) : bool
|
||||
function arg_exists($args, $needle)
|
||||
{
|
||||
$strict = true;
|
||||
return in_array($needle, $args, $strict);
|
||||
|
@ -1179,46 +1160,12 @@ function arg_opt_check_no_trailing(array $args)
|
|||
|
||||
function are_you_sure()
|
||||
{
|
||||
if(!are_you_sure_ask())
|
||||
echo "Are you sure you want to proceed?(type YES): ";
|
||||
$resp = trim(fread(STDIN, 10));
|
||||
//var_dump($resp);
|
||||
if($resp != "YES")
|
||||
{
|
||||
echo "exiting then\n";
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
function are_you_sure_ask() : bool
|
||||
{
|
||||
echo "Are you sure you want to proceed?(type YES): ";
|
||||
$resp = trim(fread(STDIN, 10));
|
||||
return $resp == "YES";
|
||||
}
|
||||
|
||||
function names_hash_changed(string $crc_file, iterable $names) : bool
|
||||
{
|
||||
$ctx = hash_init('crc32');
|
||||
foreach($names as $name)
|
||||
hash_update($ctx, $name);
|
||||
$names_crc = hash_final($ctx, false);
|
||||
$changed = !file_exists($crc_file) || ensure_read($crc_file) != $names_crc;
|
||||
ensure_write($crc_file, $names_crc);
|
||||
return $changed;
|
||||
}
|
||||
|
||||
function is_apple_silicon()
|
||||
{
|
||||
$arch = php_uname('m');
|
||||
|
||||
// Check if the machine type contains 'arm' (ARM architecture)
|
||||
if (strpos($arch, 'arm') !== false) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// If running on x86_64, check for Apple Silicon using sysctl
|
||||
// (because we might get 'x86_64' when running under Rosetta)
|
||||
if ($arch === 'x86_64') {
|
||||
$sysctl = shell_exec('sysctl -n machdep.cpu.brand_string');
|
||||
return strpos($sysctl, 'Apple') !== false;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue