2022-11-26 05:48:17 +08:00
|
|
|
local Config = require("lazy.core.config")
|
|
|
|
local Util = require("lazy.core.util")
|
|
|
|
local Module = require("lazy.core.module")
|
|
|
|
local Cache = require("lazy.core.cache")
|
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
---@alias CachedPlugin LazyPlugin | {_funs: string[]}
|
2022-11-28 18:19:50 +08:00
|
|
|
local skip = { _ = true, dir = true }
|
2022-11-26 05:48:17 +08:00
|
|
|
local funs = { config = true, init = true, run = true }
|
|
|
|
|
2022-11-27 02:33:38 +08:00
|
|
|
M.dirty = false
|
|
|
|
|
2022-11-28 14:36:32 +08:00
|
|
|
---@class LazyPluginHooks
|
2022-11-26 05:48:17 +08:00
|
|
|
---@field init? fun(LazyPlugin) Will always be run
|
|
|
|
---@field config? fun(LazyPlugin) Will be executed when loading the plugin
|
2022-11-28 14:36:32 +08:00
|
|
|
---@field run? string|fun()
|
|
|
|
|
|
|
|
---@class LazyPluginState
|
2022-11-26 05:48:17 +08:00
|
|
|
---@field loaded? {[string]:string, time:number}
|
|
|
|
---@field installed? boolean
|
|
|
|
---@field tasks? LazyTask[]
|
|
|
|
---@field dirty? boolean
|
|
|
|
---@field updated? {from:string, to:string}
|
|
|
|
|
2022-11-28 14:36:32 +08:00
|
|
|
---@class LazyPluginRef
|
|
|
|
---@field branch? string
|
|
|
|
---@field tag? string
|
|
|
|
---@field commit? string
|
|
|
|
---@field version? string
|
|
|
|
|
2022-11-28 18:19:50 +08:00
|
|
|
---@class LazyPlugin: LazyPluginHandlers,LazyPluginHooks,LazyPluginRef
|
2022-11-28 14:36:32 +08:00
|
|
|
---@field [1] string
|
|
|
|
---@field name string display name and name used for plugin config files
|
|
|
|
---@field uri string
|
|
|
|
---@field dir string
|
|
|
|
---@field enabled? boolean|(fun():boolean)
|
|
|
|
---@field opt? boolean
|
|
|
|
---@field requires? string[]
|
2022-11-28 18:19:50 +08:00
|
|
|
---@field _ LazyPluginState
|
2022-11-28 14:36:32 +08:00
|
|
|
|
|
|
|
---@alias LazySpec string|LazyPlugin|LazySpec[]|{requires:LazySpec}
|
|
|
|
|
|
|
|
---@class LazySpecLoader
|
2022-11-26 05:48:17 +08:00
|
|
|
---@field modname string
|
|
|
|
---@field modpath string
|
|
|
|
---@field plugins table<string, LazyPlugin>
|
2022-11-26 20:58:01 +08:00
|
|
|
---@field funs? table<string, string[]>
|
2022-11-26 05:48:17 +08:00
|
|
|
local Spec = {}
|
|
|
|
|
|
|
|
---@param modname string
|
|
|
|
---@param modpath string
|
|
|
|
function Spec.load(modname, modpath)
|
|
|
|
local self = setmetatable({}, { __index = Spec })
|
|
|
|
self.plugins = {}
|
|
|
|
self.modname = modname
|
|
|
|
self.modpath = modpath
|
2022-11-27 02:33:38 +08:00
|
|
|
local mod, cached = Module.load(modname, modpath)
|
|
|
|
M.dirty = M.dirty or not cached
|
|
|
|
self:normalize(assert(mod))
|
2022-11-26 05:48:17 +08:00
|
|
|
if modname == Config.options.plugins and not self.plugins["lazy.nvim"] then
|
|
|
|
self:add({ "folke/lazy.nvim", opt = false })
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function Spec:add(plugin)
|
|
|
|
if type(plugin[1]) ~= "string" then
|
|
|
|
Util.error("Invalid plugin spec " .. vim.inspect(plugin))
|
|
|
|
end
|
|
|
|
plugin.uri = plugin.uri or ("https://github.com/" .. plugin[1] .. ".git")
|
2022-11-28 18:19:50 +08:00
|
|
|
plugin._ = {}
|
2022-11-26 20:58:01 +08:00
|
|
|
|
|
|
|
-- PERF: optimized code to get package name without using lua patterns
|
2022-11-26 05:48:17 +08:00
|
|
|
if not plugin.name then
|
|
|
|
local name = plugin[1]:sub(-4) == ".git" and plugin[1]:sub(1, -5) or plugin[1]
|
|
|
|
local slash = name:reverse():find("/", 1, true) --[[@as number?]]
|
|
|
|
plugin.name = slash and name:sub(#name - slash + 2) or plugin[1]:gsub("%W+", "_")
|
|
|
|
end
|
|
|
|
|
|
|
|
M.process_local(plugin)
|
|
|
|
local other = self.plugins[plugin.name]
|
|
|
|
self.plugins[plugin.name] = other and vim.tbl_extend("force", self.plugins[plugin.name], plugin) or plugin
|
|
|
|
return self.plugins[plugin.name]
|
|
|
|
end
|
|
|
|
|
2022-11-28 14:36:32 +08:00
|
|
|
---@param spec LazySpec
|
2022-11-26 05:48:17 +08:00
|
|
|
---@param results? string[]
|
|
|
|
function Spec:normalize(spec, results)
|
|
|
|
results = results or {}
|
|
|
|
if type(spec) == "string" then
|
|
|
|
table.insert(results, self:add({ spec }).name)
|
|
|
|
elseif #spec > 1 or Util.is_list(spec) then
|
2022-11-28 14:36:32 +08:00
|
|
|
---@cast spec LazySpec[]
|
2022-11-26 05:48:17 +08:00
|
|
|
for _, s in ipairs(spec) do
|
|
|
|
self:normalize(s, results)
|
|
|
|
end
|
2022-11-26 20:58:01 +08:00
|
|
|
elseif spec.enabled == nil or spec.enabled == true or (type(spec.enabled) == "function" and spec.enabled()) then
|
2022-11-28 14:36:32 +08:00
|
|
|
---@cast spec LazyPlugin
|
2022-11-26 05:48:17 +08:00
|
|
|
local plugin = self:add(spec)
|
|
|
|
plugin.requires = plugin.requires and self:normalize(plugin.requires, {}) or nil
|
|
|
|
table.insert(results, plugin.name)
|
|
|
|
end
|
|
|
|
return results
|
|
|
|
end
|
|
|
|
|
2022-11-28 14:36:32 +08:00
|
|
|
---@param spec LazySpecLoader
|
2022-11-26 05:48:17 +08:00
|
|
|
function Spec.revive(spec)
|
|
|
|
if spec.funs then
|
2022-11-28 14:36:32 +08:00
|
|
|
---@type LazySpecLoader
|
2022-11-26 05:48:17 +08:00
|
|
|
local loaded = nil
|
|
|
|
for fun, plugins in pairs(spec.funs) do
|
|
|
|
for _, name in pairs(plugins) do
|
2022-11-26 20:58:01 +08:00
|
|
|
---@diagnostic disable-next-line: no-unknown
|
2022-11-26 05:48:17 +08:00
|
|
|
spec.plugins[name][fun] = function(...)
|
|
|
|
loaded = loaded or Spec.load(spec.modname, spec.modpath)
|
|
|
|
return loaded.plugins[name][fun](...)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return spec
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.update_state(check_clean)
|
|
|
|
---@type table<"opt"|"start", table<string,boolean>>
|
|
|
|
local installed = { opt = {}, start = {} }
|
|
|
|
for opt, packs in pairs(installed) do
|
2022-11-26 20:58:01 +08:00
|
|
|
Util.ls(Config.options.package_path .. "/" .. opt, function(_, name, type)
|
2022-11-26 05:48:17 +08:00
|
|
|
if type == "directory" or type == "link" then
|
|
|
|
packs[name] = true
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
for _, plugin in pairs(Config.plugins) do
|
2022-11-28 18:19:50 +08:00
|
|
|
plugin._ = plugin._ or {}
|
2022-11-26 05:48:17 +08:00
|
|
|
plugin[1] = plugin["1"] or plugin[1]
|
|
|
|
plugin.opt = plugin.opt == nil and Config.options.opt or plugin.opt
|
|
|
|
local opt = plugin.opt and "opt" or "start"
|
|
|
|
plugin.dir = Config.options.package_path .. "/" .. opt .. "/" .. plugin.name
|
2022-11-28 18:19:50 +08:00
|
|
|
plugin._.installed = installed[opt][plugin.name] == true
|
2022-11-26 05:48:17 +08:00
|
|
|
installed[opt][plugin.name] = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
if check_clean then
|
|
|
|
Config.to_clean = {}
|
|
|
|
for opt, packs in pairs(installed) do
|
|
|
|
for pack in pairs(packs) do
|
|
|
|
table.insert(Config.to_clean, {
|
|
|
|
name = pack,
|
|
|
|
pack = pack,
|
|
|
|
dir = Config.options.package_path .. "/" .. opt .. "/" .. pack,
|
|
|
|
opt = opt == "opt",
|
|
|
|
installed = true,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.process_local(plugin)
|
|
|
|
for _, pattern in ipairs(Config.options.plugins_local.patterns) do
|
|
|
|
if plugin[1]:find(pattern, 1, true) then
|
|
|
|
plugin.uri = Config.options.plugins_local.path .. "/" .. plugin.name
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-11-28 14:36:32 +08:00
|
|
|
---@param cache? table<string,LazySpecLoader>
|
2022-11-26 20:58:01 +08:00
|
|
|
function M.specs(cache)
|
2022-11-28 14:36:32 +08:00
|
|
|
---@type LazySpecLoader[]
|
2022-11-26 05:48:17 +08:00
|
|
|
local specs = {}
|
|
|
|
|
2022-11-26 20:58:01 +08:00
|
|
|
local function _load(name, modpath)
|
|
|
|
local modname = Config.options.plugins .. (name and ("." .. name) or "")
|
|
|
|
Util.try(function()
|
|
|
|
local spec = cache and cache[modname]
|
|
|
|
spec = spec and not Module.is_dirty(modname, modpath) and Spec.revive(spec) or Spec.load(modname, modpath)
|
2022-11-26 05:48:17 +08:00
|
|
|
table.insert(specs, spec)
|
2022-11-26 20:58:01 +08:00
|
|
|
end, "Failed to load **" .. modname .. "**")
|
2022-11-26 05:48:17 +08:00
|
|
|
end
|
|
|
|
|
2022-11-26 20:58:01 +08:00
|
|
|
_load(nil, Config.paths.main)
|
|
|
|
Util.lsmod(Config.paths.plugins, _load)
|
2022-11-26 05:48:17 +08:00
|
|
|
return specs
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.load()
|
|
|
|
---@type boolean, LazyState?
|
|
|
|
local ok, state = pcall(vim.json.decode, Cache.get("cache.state"))
|
|
|
|
if not (ok and state and vim.deep_equal(Config.options, state.config)) then
|
2022-11-27 02:33:38 +08:00
|
|
|
M.dirty = true
|
2022-11-26 05:48:17 +08:00
|
|
|
state = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
-- load specs
|
|
|
|
Util.track("specs")
|
2022-11-26 20:58:01 +08:00
|
|
|
local specs = M.specs(state and state.specs)
|
2022-11-26 05:48:17 +08:00
|
|
|
Util.track()
|
|
|
|
|
|
|
|
-- merge
|
|
|
|
Config.plugins = {}
|
|
|
|
for _, spec in ipairs(specs) do
|
|
|
|
for _, plugin in pairs(spec.plugins) do
|
|
|
|
local other = Config.plugins[plugin.name]
|
|
|
|
Config.plugins[plugin.name] = other and vim.tbl_extend("force", other, plugin) or plugin
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Util.track("state")
|
|
|
|
M.update_state()
|
|
|
|
Util.track()
|
|
|
|
|
2022-11-27 02:33:38 +08:00
|
|
|
if M.dirty then
|
2022-11-26 05:48:17 +08:00
|
|
|
Cache.dirty = true
|
2022-11-27 05:04:32 +08:00
|
|
|
elseif state then
|
|
|
|
require("lazy.core.handler")._groups = state.handlers
|
2022-11-26 05:48:17 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.save()
|
|
|
|
---@class LazyState
|
|
|
|
local state = {
|
2022-11-28 14:36:32 +08:00
|
|
|
---@type table<string, LazySpecLoader>
|
2022-11-26 05:48:17 +08:00
|
|
|
specs = {},
|
2022-11-27 05:04:32 +08:00
|
|
|
handlers = require("lazy.core.handler").group(Config.plugins, true),
|
2022-11-26 05:48:17 +08:00
|
|
|
config = Config.options,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, spec in ipairs(M.specs()) do
|
|
|
|
spec.funs = {}
|
|
|
|
state.specs[spec.modname] = spec
|
|
|
|
for _, plugin in pairs(spec.plugins) do
|
2022-11-26 20:58:01 +08:00
|
|
|
if plugin.init or (plugin.opt == false and plugin.config) then
|
|
|
|
-- no use in caching specs that need init,
|
|
|
|
-- or specs that are in start and have a config,
|
|
|
|
-- since we'll load the real spec during startup anyway
|
|
|
|
state.specs[spec.modname] = nil
|
|
|
|
break
|
|
|
|
end
|
2022-11-26 05:48:17 +08:00
|
|
|
---@cast plugin CachedPlugin
|
|
|
|
for k, v in pairs(plugin) do
|
|
|
|
if type(v) == "function" then
|
|
|
|
if funs[k] then
|
|
|
|
spec.funs[k] = spec.funs[k] or {}
|
|
|
|
table.insert(spec.funs[k], plugin.name)
|
|
|
|
end
|
|
|
|
plugin[k] = nil
|
|
|
|
elseif skip[k] then
|
|
|
|
plugin[k] = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Cache.set("cache.state", vim.json.encode(state))
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|