mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
Reformat existing gdscript code
This commit is contained in:
parent
ae707a6667
commit
deb68e323c
9 changed files with 269 additions and 108 deletions
|
@ -34,6 +34,7 @@ var threadpool = _ThreadPool.new(logger)
|
|||
func _init():
|
||||
threadpool.connect("all_thread_finished", self, "request_quit")
|
||||
|
||||
|
||||
func _initialize():
|
||||
var args = OS.get_cmdline_args()
|
||||
# Trim unwanted args passed to godot executable
|
||||
|
@ -88,19 +89,24 @@ func _initialize():
|
|||
# NOTE: Do no put anything after this line except request_quit(), as _plug_*() may call request_quit()
|
||||
request_quit()
|
||||
|
||||
|
||||
func _idle(delta):
|
||||
threadpool.process(delta)
|
||||
|
||||
|
||||
func _finalize():
|
||||
_plug_end()
|
||||
logger.info("Finished, elapsed %.3fs" % ((OS.get_system_time_msecs() - _start_time) / 1000.0))
|
||||
|
||||
|
||||
func _on_updated(plugin):
|
||||
pass
|
||||
|
||||
|
||||
func _plugging():
|
||||
pass
|
||||
|
||||
|
||||
func request_quit(exit_code = -1):
|
||||
if threadpool.is_all_thread_finished() and threadpool.is_all_task_finished():
|
||||
quit(exit_code)
|
||||
|
@ -108,6 +114,7 @@ func request_quit(exit_code=-1):
|
|||
logger.debug("Request quit declined, threadpool is still running")
|
||||
return false
|
||||
|
||||
|
||||
# Index installed plugins, or create directory "plugged" if not exists
|
||||
func _plug_start():
|
||||
logger.debug("Plug start")
|
||||
|
@ -120,6 +127,7 @@ func _plug_start():
|
|||
logger.debug("Installation config not found")
|
||||
_installed_plugins = installation_config.get_value("plugin", "installed", {})
|
||||
|
||||
|
||||
# Install plugin or uninstall plugin if unlisted
|
||||
func _plug_end():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
|
@ -134,6 +142,7 @@ func _plug_end():
|
|||
logger.warn("Skipped saving of plugged config in test mode")
|
||||
_installed_plugins = null
|
||||
|
||||
|
||||
func _plug_init():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Init gd-plug...")
|
||||
|
@ -146,6 +155,7 @@ func _plug_init():
|
|||
file.close()
|
||||
logger.info("Created %s" % DEFAULT_USER_PLUG_SCRIPT_PATH)
|
||||
|
||||
|
||||
func _plug_install():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Installing...")
|
||||
|
@ -175,6 +185,7 @@ func _plug_install():
|
|||
for plugin in removed_plugins:
|
||||
threadpool.enqueue_task(self, "uninstall_plugin", plugin, Thread.PRIORITY_LOW)
|
||||
|
||||
|
||||
func _plug_uninstall():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Uninstalling...")
|
||||
|
@ -182,6 +193,7 @@ func _plug_uninstall():
|
|||
var installed_plugin = get_installed_plugin(plugin.name)
|
||||
threadpool.enqueue_task(self, "uninstall_plugin", installed_plugin, Thread.PRIORITY_LOW)
|
||||
|
||||
|
||||
func _plug_clean():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Cleaning...")
|
||||
|
@ -193,10 +205,13 @@ func _plug_clean():
|
|||
if plugged_dir.current_is_dir():
|
||||
if not (file in _installed_plugins):
|
||||
logger.info("Remove %s" % file)
|
||||
threadpool.enqueue_task(self, "directory_delete_recursively", plugged_dir.get_current_dir() + "/" + file)
|
||||
threadpool.enqueue_task(
|
||||
self, "directory_delete_recursively", plugged_dir.get_current_dir() + "/" + file
|
||||
)
|
||||
file = plugged_dir.get_next()
|
||||
plugged_dir.list_dir_end()
|
||||
|
||||
|
||||
func _plug_upgrade():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Upgrading gd-plug...")
|
||||
|
@ -211,9 +226,15 @@ func _plug_upgrade():
|
|||
threadpool.connect("all_thread_finished", self, "request_quit")
|
||||
threadpool.enqueue_task(self, "directory_delete_recursively", gd_plug.plug_dir)
|
||||
|
||||
|
||||
func _plug_status():
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
logger.info("Installed %d plugin%s" % [_installed_plugins.size(), "s" if _installed_plugins.size() > 1 else ""])
|
||||
logger.info(
|
||||
(
|
||||
"Installed %d plugin%s"
|
||||
% [_installed_plugins.size(), "s" if _installed_plugins.size() > 1 else ""]
|
||||
)
|
||||
)
|
||||
var new_plugins = _plugged_plugins.duplicate()
|
||||
var has_checking_plugin = false
|
||||
var removed_plugins = []
|
||||
|
@ -233,13 +254,20 @@ func _plug_status():
|
|||
threadpool.connect("all_thread_finished", self, "request_quit")
|
||||
logger.debug("Finished checking plugins, ready to proceed")
|
||||
if new_plugins:
|
||||
logger.info("\nPlugged %d plugin%s" % [new_plugins.size(), "s" if new_plugins.size() > 1 else ""])
|
||||
logger.info(
|
||||
"\nPlugged %d plugin%s" % [new_plugins.size(), "s" if new_plugins.size() > 1 else ""]
|
||||
)
|
||||
for plugin in new_plugins.values():
|
||||
var is_new = not (plugin.name in _installed_plugins)
|
||||
if is_new:
|
||||
logger.info("- {name} - {url}".format(plugin))
|
||||
if removed_plugins:
|
||||
logger.info("\nUnplugged %d plugin%s" % [removed_plugins.size(), "s" if removed_plugins.size() > 1 else ""])
|
||||
logger.info(
|
||||
(
|
||||
"\nUnplugged %d plugin%s"
|
||||
% [removed_plugins.size(), "s" if removed_plugins.size() > 1 else ""]
|
||||
)
|
||||
)
|
||||
for plugin in removed_plugins:
|
||||
logger.info("- %s removed" % plugin.name)
|
||||
var plug_directory = Directory.new()
|
||||
|
@ -254,13 +282,19 @@ func _plug_status():
|
|||
file = plug_directory.get_next()
|
||||
plug_directory.list_dir_end()
|
||||
if orphan_dirs:
|
||||
logger.info("\nOrphan directory, %d found in %s, execute \"clean\" command to remove" % [orphan_dirs.size(), DEFAULT_PLUG_DIR])
|
||||
logger.info(
|
||||
(
|
||||
'\nOrphan directory, %d found in %s, execute "clean" command to remove'
|
||||
% [orphan_dirs.size(), DEFAULT_PLUG_DIR]
|
||||
)
|
||||
)
|
||||
for dir in orphan_dirs:
|
||||
logger.info("- %s" % dir)
|
||||
|
||||
if has_checking_plugin:
|
||||
request_quit()
|
||||
|
||||
|
||||
# Index & validate plugin
|
||||
func plug(repo, args = {}):
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
|
@ -294,7 +328,9 @@ func plug(repo, args={}):
|
|||
if not plugin.commit.empty():
|
||||
var is_valid_commit = plugin.commit.length() == 40
|
||||
if not is_valid_commit:
|
||||
logger.error("Expected full length 40 digits commit-hash string, given %s" % plugin.commit)
|
||||
logger.error(
|
||||
"Expected full length 40 digits commit-hash string, given %s" % plugin.commit
|
||||
)
|
||||
is_valid = is_valid and is_valid_commit
|
||||
plugin.dev = args.get("dev", false)
|
||||
is_valid = is_valid and validate_var_type(plugin, "dev", TYPE_BOOL, "Boolean")
|
||||
|
@ -309,6 +345,7 @@ func plug(repo, args={}):
|
|||
else:
|
||||
logger.error("Failed to plug %s, validation error" % plugin.name)
|
||||
|
||||
|
||||
func install_plugin(plugin):
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
var can_install = not OS.get_environment(ENV_PRODUCTION) if plugin.dev else true
|
||||
|
@ -325,12 +362,14 @@ func install_plugin(plugin):
|
|||
else:
|
||||
logger.error("Failed to install plugin %s with error code %d" % [plugin.name, result])
|
||||
|
||||
|
||||
func uninstall_plugin(plugin):
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
logger.info("Uninstalling plugin %s..." % plugin.name)
|
||||
uninstall(plugin)
|
||||
directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test})
|
||||
|
||||
|
||||
func update_plugin(plugin, checking = false):
|
||||
if not (plugin.name in _installed_plugins):
|
||||
logger.info("%s new plugin" % plugin.name)
|
||||
|
@ -347,12 +386,14 @@ func update_plugin(plugin, checking=false):
|
|||
for rev in ["tag", "commit"]:
|
||||
var freeze_at = plugin[rev]
|
||||
if freeze_at:
|
||||
logger.info("%s frozen at %s \"%s\"" % [plugin.name, rev, freeze_at])
|
||||
logger.info('%s frozen at %s "%s"' % [plugin.name, rev, freeze_at])
|
||||
break
|
||||
else:
|
||||
var ahead_behind = []
|
||||
if git.fetch("origin " + plugin.branch if plugin.branch else "origin").exit == OK:
|
||||
ahead_behind = git.get_commit_comparison("HEAD", "origin/" + plugin.branch if plugin.branch else "origin")
|
||||
ahead_behind = git.get_commit_comparison(
|
||||
"HEAD", "origin/" + plugin.branch if plugin.branch else "origin"
|
||||
)
|
||||
var is_commit_behind = !!ahead_behind[1] if ahead_behind.size() == 2 else false
|
||||
if is_commit_behind:
|
||||
logger.info("%s %d commits behind, update required" % [plugin.name, ahead_behind[1]])
|
||||
|
@ -372,7 +413,9 @@ func update_plugin(plugin, checking=false):
|
|||
logger.info("%s cloning from %s..." % [plugin.name, plugin.url])
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
uninstall(get_installed_plugin(plugin.name))
|
||||
directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test})
|
||||
directory_delete_recursively(
|
||||
plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}
|
||||
)
|
||||
if downlaod(plugin) == OK:
|
||||
install(plugin)
|
||||
elif should_pull:
|
||||
|
@ -385,9 +428,11 @@ func update_plugin(plugin, checking=false):
|
|||
uninstall(get_installed_plugin(plugin.name))
|
||||
install(plugin)
|
||||
|
||||
|
||||
func check_plugin(plugin):
|
||||
update_plugin(plugin, true)
|
||||
|
||||
|
||||
func downlaod(plugin):
|
||||
logger.info("Downloading %s from %s..." % [plugin.name, plugin.url])
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
|
@ -395,36 +440,61 @@ func downlaod(plugin):
|
|||
if project_dir.dir_exists(plugin.plug_dir):
|
||||
directory_delete_recursively(plugin.plug_dir)
|
||||
project_dir.make_dir(plugin.plug_dir)
|
||||
var result = _GitExecutable.new(global_dest_dir, logger).clone(plugin.url, global_dest_dir, {"branch": plugin.branch, "tag": plugin.tag, "commit": plugin.commit})
|
||||
var result = _GitExecutable.new(global_dest_dir, logger).clone(
|
||||
plugin.url,
|
||||
global_dest_dir,
|
||||
{"branch": plugin.branch, "tag": plugin.tag, "commit": plugin.commit}
|
||||
)
|
||||
if result.exit == OK:
|
||||
logger.info("Successfully download %s" % [plugin.name])
|
||||
else:
|
||||
logger.info("Failed to download %s" % plugin.name)
|
||||
# Make sure plug_dir is clean when failed
|
||||
directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test})
|
||||
directory_delete_recursively(
|
||||
plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}
|
||||
)
|
||||
project_dir.remove(plugin.plug_dir) # Remove empty directory
|
||||
return result.exit
|
||||
|
||||
|
||||
func install(plugin):
|
||||
var include = plugin.get("include", [])
|
||||
if include.empty(): # Auto include "addons/" folder if not explicitly specified
|
||||
include = ["addons/"]
|
||||
if not OS.get_environment(ENV_FORCE) and not OS.get_environment(ENV_TEST):
|
||||
var is_exists = false
|
||||
var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": true, "silent_test": true})
|
||||
var dest_files = directory_copy_recursively(
|
||||
plugin.plug_dir,
|
||||
"res://" + plugin.install_root,
|
||||
{"include": include, "exclude": plugin.exclude, "test": true, "silent_test": true}
|
||||
)
|
||||
for dest_file in dest_files:
|
||||
if project_dir.file_exists(dest_file):
|
||||
logger.warn("%s attempting to overwrite file %s" % [plugin.name, dest_file])
|
||||
is_exists = true
|
||||
if is_exists:
|
||||
logger.warn("Installation of %s terminated to avoid overwriting user files, you may disable safe mode with command \"force\"" % plugin.name)
|
||||
logger.warn(
|
||||
(
|
||||
'Installation of %s terminated to avoid overwriting user files, you may disable safe mode with command "force"'
|
||||
% plugin.name
|
||||
)
|
||||
)
|
||||
return ERR_ALREADY_EXISTS
|
||||
|
||||
logger.info("Installing files for %s..." % plugin.name)
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": test})
|
||||
var dest_files = directory_copy_recursively(
|
||||
plugin.plug_dir,
|
||||
"res://" + plugin.install_root,
|
||||
{"include": include, "exclude": plugin.exclude, "test": test}
|
||||
)
|
||||
plugin.dest_files = dest_files
|
||||
logger.info("Installed %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name])
|
||||
logger.info(
|
||||
(
|
||||
"Installed %d file%s for %s"
|
||||
% [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name]
|
||||
)
|
||||
)
|
||||
if plugin.name != "gd-plug":
|
||||
set_installed_plugin(plugin)
|
||||
if plugin.on_updated:
|
||||
|
@ -435,16 +505,35 @@ func install(plugin):
|
|||
emit_signal("updated", plugin)
|
||||
return OK
|
||||
|
||||
|
||||
func uninstall(plugin):
|
||||
var test = !!OS.get_environment(ENV_TEST)
|
||||
var keep_import_file = !!OS.get_environment(ENV_KEEP_IMPORT_FILE)
|
||||
var keep_import_resource_file = !!OS.get_environment(ENV_KEEP_IMPORT_RESOURCE_FILE)
|
||||
var dest_files = plugin.get("dest_files", [])
|
||||
logger.info("Uninstalling %d file%s for %s..." % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name])
|
||||
directory_remove_batch(dest_files, {"test": test, "keep_import_file": keep_import_file, "keep_import_resource_file": keep_import_resource_file})
|
||||
logger.info("Uninstalled %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name])
|
||||
logger.info(
|
||||
(
|
||||
"Uninstalling %d file%s for %s..."
|
||||
% [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name]
|
||||
)
|
||||
)
|
||||
directory_remove_batch(
|
||||
dest_files,
|
||||
{
|
||||
"test": test,
|
||||
"keep_import_file": keep_import_file,
|
||||
"keep_import_resource_file": keep_import_resource_file
|
||||
}
|
||||
)
|
||||
logger.info(
|
||||
(
|
||||
"Uninstalled %d file%s for %s"
|
||||
% [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name]
|
||||
)
|
||||
)
|
||||
remove_installed_plugin(plugin.name)
|
||||
|
||||
|
||||
func is_plugin_downloaded(plugin):
|
||||
if not project_dir.dir_exists(plugin.plug_dir + "/.git"):
|
||||
return
|
||||
|
@ -452,6 +541,7 @@ func is_plugin_downloaded(plugin):
|
|||
var git = _GitExecutable.new(ProjectSettings.globalize_path(plugin.plug_dir), logger)
|
||||
return git.is_up_to_date(plugin)
|
||||
|
||||
|
||||
# Get installed plugin, thread safe
|
||||
func get_installed_plugin(plugin_name):
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
|
@ -460,6 +550,7 @@ func get_installed_plugin(plugin_name):
|
|||
_mutex.unlock()
|
||||
return installed_plugin
|
||||
|
||||
|
||||
# Set installed plugin, thread safe
|
||||
func set_installed_plugin(plugin):
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
|
@ -467,6 +558,7 @@ func set_installed_plugin(plugin):
|
|||
_installed_plugins[plugin.name] = plugin
|
||||
_mutex.unlock()
|
||||
|
||||
|
||||
# Remove installed plugin, thread safe
|
||||
func remove_installed_plugin(plugin_name):
|
||||
assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION)
|
||||
|
@ -475,6 +567,7 @@ func remove_installed_plugin(plugin_name):
|
|||
_mutex.unlock()
|
||||
return result
|
||||
|
||||
|
||||
func directory_copy_recursively(from, to, args = {}):
|
||||
var include = args.get("include", [])
|
||||
var exclude = args.get("exclude", [])
|
||||
|
@ -486,7 +579,11 @@ func directory_copy_recursively(from, to, args={}):
|
|||
dir.list_dir_begin(true, true)
|
||||
var file_name = dir.get_next()
|
||||
while not file_name.empty():
|
||||
var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name
|
||||
var source = (
|
||||
dir.get_current_dir()
|
||||
+ ("/" if dir.get_current_dir() != "res://" else "")
|
||||
+ file_name
|
||||
)
|
||||
var dest = to + ("/" if to != "res://" else "") + file_name
|
||||
|
||||
if dir.current_is_dir():
|
||||
|
@ -501,7 +598,8 @@ func directory_copy_recursively(from, to, args={}):
|
|||
break
|
||||
if not is_excluded:
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Writing to %s" % dest)
|
||||
if not silent_test:
|
||||
logger.warn("[TEST] Writing to %s" % dest)
|
||||
else:
|
||||
dir.make_dir_recursive(to)
|
||||
if dir.copy(source, dest) == OK:
|
||||
|
@ -515,6 +613,7 @@ func directory_copy_recursively(from, to, args={}):
|
|||
|
||||
return dest_files
|
||||
|
||||
|
||||
func directory_delete_recursively(dir_path, args = {}):
|
||||
var remove_empty_directory = args.get("remove_empty_directory", true)
|
||||
var exclude = args.get("exclude", [])
|
||||
|
@ -525,22 +624,36 @@ func directory_delete_recursively(dir_path, args={}):
|
|||
dir.list_dir_begin(true, false)
|
||||
var file_name = dir.get_next()
|
||||
while not file_name.empty():
|
||||
var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name
|
||||
var source = (
|
||||
dir.get_current_dir()
|
||||
+ ("/" if dir.get_current_dir() != "res://" else "")
|
||||
+ file_name
|
||||
)
|
||||
|
||||
if dir.current_is_dir():
|
||||
var sub_dir = directory_delete_recursively(source, args)
|
||||
if remove_empty_directory:
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % sub_dir.get_current_dir())
|
||||
if not silent_test:
|
||||
logger.warn(
|
||||
"[TEST] Remove empty directory: %s" % sub_dir.get_current_dir()
|
||||
)
|
||||
else:
|
||||
if source.get_file() == ".git":
|
||||
# Hacks to remove .git, as git pack files stop it from being removed
|
||||
# See https://stackoverflow.com/questions/1213430/how-to-fully-delete-a-git-repository-created-with-init
|
||||
if OS.execute("rm", ["-rf", ProjectSettings.globalize_path(source)]) == OK:
|
||||
logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir())
|
||||
if (
|
||||
OS.execute("rm", ["-rf", ProjectSettings.globalize_path(source)])
|
||||
== OK
|
||||
):
|
||||
logger.debug(
|
||||
"Remove empty directory: %s" % sub_dir.get_current_dir()
|
||||
)
|
||||
else:
|
||||
if dir.remove(sub_dir.get_current_dir()) == OK:
|
||||
logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir())
|
||||
logger.debug(
|
||||
"Remove empty directory: %s" % sub_dir.get_current_dir()
|
||||
)
|
||||
else:
|
||||
var excluded = false
|
||||
for exclude_key in exclude:
|
||||
|
@ -549,7 +662,8 @@ func directory_delete_recursively(dir_path, args={}):
|
|||
break
|
||||
if not excluded:
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove file: %s" % source)
|
||||
if not silent_test:
|
||||
logger.warn("[TEST] Remove file: %s" % source)
|
||||
else:
|
||||
if dir.remove(file_name) == OK:
|
||||
logger.debug("Remove file: %s" % source)
|
||||
|
@ -563,6 +677,7 @@ func directory_delete_recursively(dir_path, args={}):
|
|||
|
||||
return dir
|
||||
|
||||
|
||||
func directory_remove_batch(files, args = {}):
|
||||
var remove_empty_directory = args.get("remove_empty_directory", true)
|
||||
var keep_import_file = args.get("keep_import_file", false)
|
||||
|
@ -585,17 +700,21 @@ func directory_remove_batch(files, args={}):
|
|||
_remove_import_file(dir, file, keep_import_resource_file, test, silent_test)
|
||||
else:
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove file: " + file)
|
||||
if not silent_test:
|
||||
logger.warn("[TEST] Remove file: " + file)
|
||||
else:
|
||||
if dir.remove(file_name) == OK:
|
||||
logger.debug("Remove file: " + file)
|
||||
if not keep_import_file:
|
||||
_remove_import_file(dir, file + ".import", keep_import_resource_file, test, silent_test)
|
||||
_remove_import_file(
|
||||
dir, file + ".import", keep_import_resource_file, test, silent_test
|
||||
)
|
||||
|
||||
for dir in dirs.values():
|
||||
var slash_count = dir.get_current_dir().count("/") - 2 # Deduct 2 slash from "res://"
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % dir.get_current_dir())
|
||||
if not silent_test:
|
||||
logger.warn("[TEST] Remove empty directory: %s" % dir.get_current_dir())
|
||||
else:
|
||||
if dir.remove(dir.get_current_dir()) == OK:
|
||||
logger.debug("Remove empty directory: %s" % dir.get_current_dir())
|
||||
|
@ -607,12 +726,18 @@ func directory_remove_batch(files, args={}):
|
|||
var d = Directory.new()
|
||||
if d.open(current_dir) == OK:
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove empty ancestor directory: %s" % d.get_current_dir())
|
||||
if not silent_test:
|
||||
logger.warn(
|
||||
"[TEST] Remove empty ancestor directory: %s" % d.get_current_dir()
|
||||
)
|
||||
else:
|
||||
if d.remove(d.get_current_dir()) == OK:
|
||||
logger.debug("Remove empty ancestor directory: %s" % d.get_current_dir())
|
||||
|
||||
func _remove_import_file(dir, file, keep_import_resource_file=false, test=false, silent_test=false):
|
||||
|
||||
func _remove_import_file(
|
||||
dir, file, keep_import_resource_file = false, test = false, silent_test = false
|
||||
):
|
||||
if not dir.file_exists(file):
|
||||
return
|
||||
|
||||
|
@ -627,7 +752,8 @@ func _remove_import_file(dir, file, keep_import_resource_file=false, test=false,
|
|||
else:
|
||||
_remove_import_resource_file(dir, import_config, "", test)
|
||||
if test:
|
||||
if not silent_test: logger.warn("[TEST] Remove import file: " + file)
|
||||
if not silent_test:
|
||||
logger.warn("[TEST] Remove import file: " + file)
|
||||
else:
|
||||
if dir.remove(file) == OK:
|
||||
logger.debug("Remove import file: " + file)
|
||||
|
@ -636,9 +762,14 @@ func _remove_import_file(dir, file, keep_import_resource_file=false, test=false,
|
|||
# Maybe enforce the removal from shell?
|
||||
logger.warn("Failed to remove import file: " + file)
|
||||
|
||||
|
||||
func _remove_import_resource_file(dir, import_config, import_format = "", test = false):
|
||||
var import_resource_file = import_config.get_value("remap", "path" + import_format, "")
|
||||
var checksum_file = import_resource_file.trim_suffix("." + import_resource_file.get_extension()) + ".md5" if import_resource_file else ""
|
||||
var checksum_file = (
|
||||
import_resource_file.trim_suffix("." + import_resource_file.get_extension()) + ".md5"
|
||||
if import_resource_file
|
||||
else ""
|
||||
)
|
||||
if import_resource_file:
|
||||
if dir.file_exists(import_resource_file):
|
||||
if test:
|
||||
|
@ -655,6 +786,7 @@ func _remove_import_resource_file(dir, import_config, import_format="", test=fal
|
|||
if dir.remove(checksum_file) == OK:
|
||||
logger.debug("Remove import checksum file: " + checksum_file)
|
||||
|
||||
|
||||
func compare_plugins(p1, p2):
|
||||
var changed_keys = []
|
||||
for key in p1.keys():
|
||||
|
@ -664,19 +796,21 @@ func compare_plugins(p1, p2):
|
|||
changed_keys.append(key)
|
||||
return changed_keys
|
||||
|
||||
|
||||
func get_plugin_name_from_repo(repo):
|
||||
repo = repo.replace(".git", "").trim_suffix("/")
|
||||
return repo.get_file()
|
||||
|
||||
|
||||
func validate_var_type(obj, var_name, type, type_string):
|
||||
var value = obj.get(var_name)
|
||||
var is_valid = typeof(value) == type
|
||||
if not is_valid:
|
||||
logger.error("Expected variable \"%s\" to be %s, given %s" % [var_name, type_string, value])
|
||||
logger.error('Expected variable "%s" to be %s, given %s' % [var_name, type_string, value])
|
||||
return is_valid
|
||||
|
||||
const INIT_PLUG_SCRIPT = \
|
||||
"""extends "res://addons/gd-plug/plug.gd"
|
||||
|
||||
const INIT_PLUG_SCRIPT = """extends "res://addons/gd-plug/plug.gd"
|
||||
|
||||
func _plugging():
|
||||
# Declare plugins with plug(repo, args)
|
||||
|
@ -687,7 +821,9 @@ func _plugging():
|
|||
pass
|
||||
"""
|
||||
|
||||
class _GitExecutable extends Reference:
|
||||
|
||||
class _GitExecutable:
|
||||
extends Reference
|
||||
var cwd = ""
|
||||
var logger
|
||||
|
||||
|
@ -702,11 +838,11 @@ class _GitExecutable extends Reference:
|
|||
match OS.get_name():
|
||||
"Windows":
|
||||
cmd = cmd if read_stderr else "%s 2> nul" % cmd
|
||||
logger.debug("Execute \"%s\"" % cmd)
|
||||
logger.debug('Execute "%s"' % cmd)
|
||||
exit = OS.execute("cmd", ["/C", cmd], blocking, output, read_stderr)
|
||||
"X11", "OSX", "Server":
|
||||
cmd if read_stderr else "%s 2>/dev/null" % cmd
|
||||
logger.debug("Execute \"%s\"" % cmd)
|
||||
logger.debug('Execute "%s"' % cmd)
|
||||
exit = OS.execute("bash", ["-c", cmd], blocking, output, read_stderr)
|
||||
var unhandled_os:
|
||||
logger.error("Unexpected OS: %s" % unhandled_os)
|
||||
|
@ -728,17 +864,27 @@ class _GitExecutable extends Reference:
|
|||
var commit = args.get("commit", "")
|
||||
var command = "git clone --depth=1 --progress %s %s" % [src, dest]
|
||||
if branch or tag:
|
||||
command = "git clone --depth=1 --single-branch --branch %s %s %s" % [branch if branch else tag, src, dest]
|
||||
command = (
|
||||
"git clone --depth=1 --single-branch --branch %s %s %s"
|
||||
% [branch if branch else tag, src, dest]
|
||||
)
|
||||
elif commit:
|
||||
return clone_commit(src, dest, commit)
|
||||
var exit = _execute(command, true, output)
|
||||
logger.debug("Successfully cloned from %s" % src if exit == OK else "Failed to clone from %s" % src)
|
||||
logger.debug(
|
||||
"Successfully cloned from %s" % src if exit == OK else "Failed to clone from %s" % src
|
||||
)
|
||||
return {"exit": exit, "output": output}
|
||||
|
||||
func clone_commit(src, dest, commit):
|
||||
var output = []
|
||||
if commit.length() < 40:
|
||||
logger.error("Expected full length 40 digits commit-hash to clone specific commit, given {%s}" % commit)
|
||||
logger.error(
|
||||
(
|
||||
"Expected full length 40 digits commit-hash to clone specific commit, given {%s}"
|
||||
% commit
|
||||
)
|
||||
)
|
||||
return {"exit": FAILED, "output": output}
|
||||
|
||||
logger.debug("Cloning from %s to %s @ %s..." % [src, dest, commit])
|
||||
|
@ -781,7 +927,9 @@ class _GitExecutable extends Reference:
|
|||
|
||||
func get_commit_comparison(branch_a, branch_b):
|
||||
var output = []
|
||||
var exit = _execute("git rev-list --count --left-right %s...%s" % [branch_a, branch_b], true, output)
|
||||
var exit = _execute(
|
||||
"git rev-list --count --left-right %s...%s" % [branch_a, branch_b], true, output
|
||||
)
|
||||
var raw_ahead_behind = output[0].split("\t")
|
||||
var ahead_behind = []
|
||||
for msg in raw_ahead_behind:
|
||||
|
@ -829,8 +977,10 @@ class _GitExecutable extends Reference:
|
|||
return FAILED if is_commit_behind else OK
|
||||
return FAILED
|
||||
|
||||
class _ThreadPool extends Reference:
|
||||
signal all_thread_finished()
|
||||
|
||||
class _ThreadPool:
|
||||
extends Reference
|
||||
signal all_thread_finished
|
||||
|
||||
var _threads = []
|
||||
var _finished_threads = []
|
||||
|
@ -885,7 +1035,9 @@ class _ThreadPool extends Reference:
|
|||
thread.wait_to_finish()
|
||||
|
||||
func enqueue_task(instance, method, userdata = null, priority = 1):
|
||||
enqueue({"instance": instance, "method": method, "userdata": userdata, "priority": priority})
|
||||
enqueue(
|
||||
{"instance": instance, "method": method, "userdata": userdata, "priority": priority}
|
||||
)
|
||||
|
||||
func enqueue(task):
|
||||
var can_execute = _execute_task(task)
|
||||
|
@ -922,10 +1074,10 @@ class _ThreadPool extends Reference:
|
|||
return false
|
||||
return true
|
||||
|
||||
class _Logger extends Reference:
|
||||
enum LogLevel {
|
||||
ALL, DEBUG, INFO, WARN, ERROR, NONE
|
||||
}
|
||||
|
||||
class _Logger:
|
||||
extends Reference
|
||||
enum LogLevel { ALL, DEBUG, INFO, WARN, ERROR, NONE }
|
||||
const DEFAULT_LOG_FORMAT_DETAIL = "[{time}] [{level}] {msg}"
|
||||
const DEFAULT_LOG_FORMAT_NORMAL = "{msg}"
|
||||
|
||||
|
@ -953,11 +1105,13 @@ class _Logger extends Reference:
|
|||
print(format_log(level, msg))
|
||||
|
||||
func format_log(level, msg):
|
||||
return log_format.format({
|
||||
return log_format.format(
|
||||
{
|
||||
"time": log_time_format.format(get_formatted_datatime()),
|
||||
"level": LogLevel.keys()[level],
|
||||
"msg": msg
|
||||
})
|
||||
}
|
||||
)
|
||||
|
||||
func get_formatted_datatime():
|
||||
var datetime = OS.get_datetime()
|
||||
|
|
|
@ -8,26 +8,31 @@ extends Object
|
|||
|
||||
const LibuvUtils := preload("./libuv_utils.gdns")
|
||||
|
||||
|
||||
static func get_os_environ() -> Dictionary:
|
||||
# While Godot has OS.get_environment(), I could see a way to get all environent
|
||||
# variables, other than by OS.execute() which would require to much platform
|
||||
# specific code. Easier to use libuv's utility function.
|
||||
return LibuvUtils.new().get_os_environ()
|
||||
|
||||
|
||||
static func get_cwd() -> String:
|
||||
# Use uv_cwd() rather than Directory.get_current_dir() because the latter
|
||||
# defaults to res:// even if starting godot from a different directory.
|
||||
return LibuvUtils.new().get_cwd()
|
||||
|
||||
|
||||
static func get_windows_build_number() -> int:
|
||||
assert(OS.get_name() == "Windows", "This function is only supported on Windows.")
|
||||
var release: String = LibuvUtils.new().get_os_release()
|
||||
assert(false, "Not implemented.")
|
||||
return 0
|
||||
|
||||
|
||||
static func kill(pid: int, signum: int):
|
||||
if pid > 1:
|
||||
return LibuvUtils.new().kill(pid, signum)
|
||||
|
||||
|
||||
static func new():
|
||||
assert(false, "Abstract sealed (i.e. static) class should not be instantiated.")
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 45eaa2daf1e3d2571a9f31a3421911262ec82f51
|
||||
Subproject commit 419e713a29f20bd3351a54d1e6c4c5af7ef4b253
|
|
@ -98,6 +98,7 @@ class Helper:
|
|||
|
||||
class LinuxHelper:
|
||||
extends Helper
|
||||
|
||||
static func _get_pts() -> Array:
|
||||
var dir := Directory.new()
|
||||
|
||||
|
@ -117,6 +118,7 @@ class LinuxHelper:
|
|||
|
||||
class MacOSHelper:
|
||||
extends Helper
|
||||
|
||||
static func _get_pts() -> Array:
|
||||
# TODO: Implement for macOS.
|
||||
# On macOS there is no /dev/pts directory, rather new ptys are created
|
||||
|
|
Loading…
Reference in a new issue