VMF package manager overhaul (#36)

This commit is contained in:
Azumgi 2019-01-14 13:25:46 +03:00 committed by GitHub
commit adab780a53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,81 @@
local vmf = get_mod("VMF") local vmf = get_mod("VMF")
local NOOP = function() end local _packages = {}
local _queued_packages = {} local _queued_packages = {}
local _loading_package = nil
local _loaded_packages = {} local PUBLIC_STATUSES = {
queued = "loading", -- Package is in the loading queue waiting to be loaded.
loading = "loading", -- Package is loading.
loaded = "loaded", -- Package is loaded
loading_cancelled = nil -- Package is loading, but will be unloaded once done loading.
}
local ERRORS = {
REGULAR = {
-- check_vt1:
cant_use_vmf_package_manager_in_vt1 = "[VMF Package Manager] (%s): you can't use VMF package manager in VT1 " ..
"because VT1 mods don't support more than 1 resource package.",
-- VMFMod:load_package:
package_already_loaded = "[VMF Package Manager] (load_package): package '%s' has already been loaded.",
package_not_found = "[VMF Package Manager] (load_package): could not find package '%s'.",
package_already_queued = "[VMF Package Manager] (load_package): package '%s' is already queued for loading.",
-- VMFMod:unload_package:
package_not_loaded = "[VMF Package Manager] (unload_package): package '%s' has not been loaded.",
cant_unload_loading_package = "[VMF Package Manager] (unload_package): package '%s' can't be unloaded because " ..
"it's currently loading."
},
PREFIX = {
package_loaded_callback = "[VMF Package Manager] '%s' package loaded callback execution"
}
}
local WARNINGS = {
force_unloading_package = "[VMF Package Manager] Force-unloading package '%s'. Please make sure to properly " ..
"release packages when the mod is unloaded",
still_loading_package = "[VMF Package Manager] Still loading package '%s'. Memory leaks may occur when unloading " ..
"while a package is loading."
}
-- #####################################################################################################################
-- ##### Local functions ###############################################################################################
-- #####################################################################################################################
local function check_vt1(mod, function_name)
if VT1 then
mod:error(ERRORS.REGULAR.cant_use_vmf_package_manager_in_vt1, function_name)
return true
end
end
-- Brings resources of the loaded package in game and executes callback. Or unloads package's resources, if loading was
-- cancelled.
local function flush_package(package_name)
local package_data = _packages[package_name]
if package_data.status == "loading_cancelled" then
Mod.release_resource_package(package_data.resource_package)
_packages[package_name] = nil
else
package_data.resource_package:flush()
package_data.status = "loaded"
local callback = package_data.callback
if callback then
vmf.safe_call_nr(package_data.mod, {ERRORS.PREFIX.package_loaded_callback, package_name}, callback, package_name)
end
end
end
local function remove_package_from_queue(package_name)
for i, queued_package_name in ipairs(_queued_packages) do
if package_name == queued_package_name then
table.remove(_queued_packages, i)
return
end
end
end
-- ##################################################################################################################### -- #####################################################################################################################
-- ##### VMFMod ######################################################################################################## -- ##### VMFMod ########################################################################################################
@ -13,166 +84,149 @@ local _loaded_packages = {}
--[[ --[[
Loads a mod package. Loads a mod package.
* package_name [string] : package name. needs to be the full path to the `.package` file without the extension * package_name [string] : package name. needs to be the full path to the `.package` file without the extension
* callback [function]: (optional) callback for asynchronous loading * callback [function]: (optional) callback for when loading is done
* sync [boolean] : (optional) load the packages synchronously, freezing the game until it is loaded * sync [boolean] : (optional) load the packages synchronously, freezing the game until it is loaded
--]] --]]
function VMFMod:load_package(package_name, callback, sync) function VMFMod:load_package(package_name, callback, sync)
if vmf.check_wrong_argument_type(self, "load_package", "package_name", package_name, "string") or if check_vt1(self, "load_package") or
vmf.check_wrong_argument_type(self, "load_package", "package_name", package_name, "string") or
vmf.check_wrong_argument_type(self, "load_package", "callback", callback, "function", "nil") or vmf.check_wrong_argument_type(self, "load_package", "callback", callback, "function", "nil") or
vmf.check_wrong_argument_type(self, "load_package", "sync", sync, "boolean", "nil") vmf.check_wrong_argument_type(self, "load_package", "sync", sync, "boolean", "nil")
then then
return return
end end
if self:has_package_loaded(package_name) then if _packages[package_name] and _packages[package_name].status == "loaded" then
self:error("Package '%s' has already been loaded", package_name) self:error(ERRORS.REGULAR.package_already_loaded, package_name)
return return
end end
if not _loaded_packages[self] then
_loaded_packages[self] = {}
end
local resource_package = Mod.resource_package(self:get_internal_data("mod_handle"), package_name) local resource_package = Mod.resource_package(self:get_internal_data("mod_handle"), package_name)
if not resource_package then if not resource_package then
self:error("Could not find package '%s'.", package_name) self:error(ERRORS.REGULAR.package_not_found, package_name)
return return
end end
local is_loading = self:is_package_loading(package_name) -- (is_package_already_queued == true) => Package was already loaded asynchronously before, but not fully loaded yet.
-- (is_package_loading_cancelled == true) => Package is in the process of loading, but once it's loaded it's going
-- to be unloaded.
-- If package is not already queued create new entry for it. If it's already queued, but has "loading_cancelled"
-- status, update its callback.
local is_package_already_queued = (_packages[package_name] ~= nil)
local is_package_loading_cancelled = _packages[package_name] and _packages[package_name].status == "loading_cancelled"
if not is_package_already_queued or is_package_loading_cancelled then
_packages[package_name] = {
status = is_package_loading_cancelled and "loading" or "queued",
resource_package = is_package_loading_cancelled and _packages[package_name].resource_package or resource_package,
callback = callback,
mod = self
}
end
if sync then if sync then
if not is_loading then -- Load resource package if it's not already loading.
if _packages[package_name].status == "queued" then
resource_package:load() resource_package:load()
end end
if is_package_already_queued then
resource_package:flush() remove_package_from_queue(package_name)
end
_loaded_packages[self][package_name] = resource_package flush_package(package_name)
else else
if is_loading then -- If package loading was cancelled before, don't add it to loading queue, because it's still in loading queue.
self:error("Package '%s' is currently loading", package_name) if not is_package_loading_cancelled then
return if is_package_already_queued then
self:error(ERRORS.REGULAR.package_already_queued, package_name)
else
table.insert(_queued_packages, package_name)
end
end end
table.insert(_queued_packages, {
mod = self,
package_name = package_name,
resource_package = resource_package,
callback = callback or NOOP,
})
end end
end end
--[[ --[[
Unlaods a loaded mod package. Unloads a loaded mod package.
* package_name [string]: package name. needs to be the full path to the `.package` file without the extension * package_name [string]: package name. needs to be the full path to the `.package` file without the extension
--]] --]]
function VMFMod:unload_package(package_name) function VMFMod:unload_package(package_name)
if vmf.check_wrong_argument_type(self, "unload_package", "package_name", package_name, "string") then if check_vt1(self, "unload_package") or
vmf.check_wrong_argument_type(self, "unload_package", "package_name", package_name, "string")
then
return return
end end
if not self:has_package_loaded(package_name) then local package_status = _packages[package_name] and _packages[package_name].status
self:error("Package '%s' has not been loaded", package_name) if not package_status then
self:error(ERRORS.REGULAR.package_not_loaded, package_name)
return return
end end
local resource_package = _loaded_packages[self][package_name] if package_status == "queued" then
remove_package_from_queue(package_name)
Mod.release_resource_package(resource_package) _packages[package_name] = nil
_loaded_packages[self][package_name] = nil elseif package_status == "loading" then
_packages[package_name].status = "loading_cancelled"
elseif package_status == "loaded" then
Mod.release_resource_package(_packages[package_name].resource_package)
_packages[package_name] = nil
end
end end
--[[ --[[
Returns whether the mod package is currently being loaded. Returns package status string.
* package_name [string]: package name. needs to be the full path to the `.package` file without the extension * package_name [string]: package name. needs to be the full path to the `.package` file without the extension
--]] --]]
function VMFMod:is_package_loading(package_name) function VMFMod:package_status(package_name)
if vmf.check_wrong_argument_type(self, "is_package_loading", "package_name", package_name, "string") then if check_vt1(self, "package_status") or
vmf.check_wrong_argument_type(self, "package_status", "package_name", package_name, "string")
then
return return
end end
if _loading_package and _loading_package.mod == self and _loading_package.package_name == package_name then local package_data = _packages[package_name]
return true if package_data then
return PUBLIC_STATUSES[package_data.status]
end end
for _, queued_package in ipairs(_queued_packages) do
if queued_package.mod == self and queued_package.package_name == package_name then
return true
end
end
return false
end
--[[
Returns whether the mod package has been fully loaded.
* package_name [string]: package name. needs to be the full path to the `.package` file without the extension
--]]
function VMFMod:has_package_loaded(package_name)
if vmf.check_wrong_argument_type(self, "has_package_loaded", "package_name", package_name, "string") then
return
end
local loaded_packages = _loaded_packages[self]
return loaded_packages and loaded_packages[package_name] ~= nil
end end
-- ##################################################################################################################### -- #####################################################################################################################
-- ##### VMF internal functions and variables ########################################################################## -- ##### VMF internal functions and variables ##########################################################################
-- ##################################################################################################################### -- #####################################################################################################################
-- Loads queued packages one at a time -- Loads queued packages one at a time.
function vmf.update_package_manager() function vmf.update_package_manager()
local loading_package = _loading_package local queued_package_name = _queued_packages[1]
if loading_package and loading_package.resource_package:has_loaded() then if queued_package_name then
loading_package.resource_package:flush() local package_data = _packages[queued_package_name]
if (package_data.status == "loading" or package_data.status == "loading_cancelled") and
package_data.resource_package:has_loaded()
then
flush_package(queued_package_name)
table.remove(_queued_packages, 1)
end
_loaded_packages[loading_package.mod][loading_package.package_name] = loading_package.resource_package if package_data.status == "queued" then
_loading_package = nil package_data.resource_package:load()
package_data.status = "loading"
-- The callback has to be called last, so that any calls to `has_package_loaded` or `is_package_loading` end
-- return the correct value
vmf.safe_call_nr(loading_package.mod, {"'%s' package loaded callback", loading_package.package_name},
loading_package.callback, loading_package.package_name)
end
local queued_package = _queued_packages[1]
if queued_package and not _loading_package then
_loading_package = queued_package
table.remove(_queued_packages, 1)
_loading_package.resource_package:load()
end end
end end
-- Forcefully unloads all mods and cleans the queue. -- Forcefully unloads all not unloaded packages.
function vmf.unload_all_resource_packages() function vmf.unload_all_resource_packages()
for mod, packages in pairs(_loaded_packages) do for package_name, package_data in pairs(_packages) do
for package_name in pairs(packages) do local package_status = package_data.status
mod:warning(
"Force-unloading package '%s'. Please make sure to properly release packages when the mod is unloaded", if package_status == "loaded" then
package_name package_data.mod:warning(WARNINGS.force_unloading_package, package_name)
) package_data.mod:unload_package(package_name)
mod:unload_package(package_name)
end end
end
_queued_packages = {} if package_status == "loading" or package_status == "loading_cancelled" then
package_data.mod:warning(WARNINGS.still_loading_package, package_name)
if _loading_package then
_loading_package.mod:warning(
"Still loading package '%s'. Memory leaks may occur when unloading while a package is loading.",
_loading_package.package_name
)
_loading_package.callback = function(package_name)
_loading_package.mod:unload_package(package_name)
end end
end end
end end