mirror of https://github.com/folke/lazy.nvim.git
perf: way better compilation and caching
This commit is contained in:
parent
c749404423
commit
a543134b8c
|
@ -1,87 +1,363 @@
|
||||||
local cache_file = vim.fn.stdpath("cache") .. "/lazy/cache.mpack"
|
|
||||||
vim.fn.mkdir(vim.fn.fnamemodify(cache_file, ":p:h"), "p")
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
---@alias CacheEntry {hash:string, chunk:string, used:boolean}
|
|
||||||
|
|
||||||
---@type table<string, CacheEntry>
|
---@class CacheOptions
|
||||||
M.cache = {}
|
M.options = {
|
||||||
|
module = "config.plugins",
|
||||||
|
cache = vim.fn.stdpath("state") .. "/lazy/plugins.state",
|
||||||
|
trim = false,
|
||||||
|
}
|
||||||
|
|
||||||
M.dirty = false
|
M.dirty = false
|
||||||
M.did_setup = false
|
M.cache_hash = ""
|
||||||
|
|
||||||
|
---@alias ModEntry {file: string, hash?:string, chunk?: string|fun(), used?: boolean}
|
||||||
|
---@type table<string,ModEntry>
|
||||||
|
M.modules = {}
|
||||||
|
|
||||||
|
---@type LazyState?
|
||||||
|
M.state = nil
|
||||||
|
|
||||||
|
---@alias DirEntry {name: string, type: "file"|"directory"|"link"}
|
||||||
|
|
||||||
|
function M.walk(dir, modname, fn)
|
||||||
|
local d = vim.loop.fs_opendir(dir, nil, 100)
|
||||||
|
if d then
|
||||||
|
---@type DirEntry[]
|
||||||
|
local entries = vim.loop.fs_readdir(d)
|
||||||
|
while entries do
|
||||||
|
for _, entry in ipairs(entries) do
|
||||||
|
local path = dir .. "/" .. entry.name
|
||||||
|
if entry.type == "directory" then
|
||||||
|
M.walk(path, modname .. "." .. entry.name, fn)
|
||||||
|
else
|
||||||
|
local child = entry.name == "init.lua" and modname or (modname .. "." .. entry.name:match("^(.*)%.lua$"))
|
||||||
|
if child then
|
||||||
|
fn(child, path)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
entries = vim.loop.fs_readdir(d)
|
||||||
|
end
|
||||||
|
vim.loop.fs_closedir(d)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function M.hash(modpath)
|
function M.hash(modpath)
|
||||||
local stat = vim.loop.fs_stat(modpath)
|
local stat = vim.loop.fs_stat(modpath)
|
||||||
if stat then
|
if stat then
|
||||||
return stat.mtime.sec .. stat.mtime.nsec .. stat.size
|
return stat.mtime.sec .. stat.mtime.nsec .. stat.size
|
||||||
end
|
end
|
||||||
error("Could not hash " .. modpath)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.load_cache()
|
---@param opts? CacheOptions
|
||||||
local f = io.open(cache_file, "rb")
|
function M.boot(opts)
|
||||||
if f then
|
if opts then
|
||||||
M.cache = vim.mpack.decode(f:read("*a")) or {}
|
for k, _ in pairs(M.options) do
|
||||||
f:close()
|
M.options[k] = opts[k] or M.options[k]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
M.load_state()
|
||||||
function M.save_cache()
|
|
||||||
if M.dirty then
|
-- preload core modules
|
||||||
for key, entry in pairs(M.cache) do
|
local root = debug.getinfo(1, "S").source:sub(2)
|
||||||
if not entry.used then
|
root = vim.fn.fnamemodify(root, ":p:h")
|
||||||
M.cache[key] = nil
|
for _, modname in ipairs({ "util", "config", "plugin", "loader" }) do
|
||||||
end
|
local file = root .. "/" .. modname .. ".lua"
|
||||||
entry.used = nil
|
modname = "lazy." .. modname
|
||||||
|
if not M.modules[modname] then
|
||||||
|
M.modules[modname] = { file = file }
|
||||||
|
end
|
||||||
|
package.preload[modname] = function()
|
||||||
|
return M.load(modname)
|
||||||
end
|
end
|
||||||
local f = assert(io.open(cache_file, "wb"))
|
|
||||||
f:write(vim.mpack.encode(M.cache))
|
|
||||||
f:close()
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
M.load_cache()
|
vim.api.nvim_create_autocmd("User", {
|
||||||
vim.api.nvim_create_autocmd("VimLeave", {
|
pattern = "LazyDone",
|
||||||
|
once = true,
|
||||||
callback = function()
|
callback = function()
|
||||||
M.save_cache()
|
vim.api.nvim_create_autocmd("VimLeavePre", {
|
||||||
|
callback = function()
|
||||||
|
if M.dirty then
|
||||||
|
local hash = M.hash(M.options.cache)
|
||||||
|
-- abort when the file was changed in the meantime
|
||||||
|
if M.hash == nil or M.cache_hash == hash then
|
||||||
|
M.compile()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
|
||||||
|
|
||||||
function M.load(modpath, modname)
|
if M.state and M.load_plugins() then
|
||||||
if not M.did_setup then
|
return true
|
||||||
M.setup()
|
else
|
||||||
M.did_setup = true
|
M.dirty = true
|
||||||
end
|
-- FIXME: what if module is a file
|
||||||
if type(package.loaded[modname]) ~= "table" then
|
local root = vim.fn.stdpath("config") .. "/lua/" .. M.options.module:gsub("%.", "/")
|
||||||
---@type fun()?, string?
|
if vim.loop.fs_stat(root .. ".lua") then
|
||||||
local chunk, err
|
if not M.modules[M.options.module] then
|
||||||
local entry = M.cache[modname]
|
M.modules[M.options.module] = { file = root .. ".lua" }
|
||||||
|
|
||||||
if entry and M.hash(modpath) == entry.hash then
|
|
||||||
entry.used = true
|
|
||||||
chunk, err = loadstring(entry.chunk, "@" .. modpath)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- not cached, or failed to load chunk
|
|
||||||
if not chunk then
|
|
||||||
vim.schedule(function()
|
|
||||||
vim.notify("not cached")
|
|
||||||
end)
|
|
||||||
chunk, err = loadfile(modpath)
|
|
||||||
if chunk then
|
|
||||||
M.cache[modname] = { hash = M.hash(modpath), chunk = string.dump(chunk, true), used = true }
|
|
||||||
M.dirty = true
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
M.walk(root, M.options.module, function(modname, modpath)
|
||||||
|
if not M.modules[modname] then
|
||||||
|
M.modules[modname] = { file = modpath }
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
if not chunk then
|
---@param modname string
|
||||||
|
function M.load(modname)
|
||||||
|
local info = M.modules[modname]
|
||||||
|
|
||||||
|
if type(package.loaded[modname]) == "table" then
|
||||||
|
if info then
|
||||||
|
info.used = true
|
||||||
|
end
|
||||||
|
return package.loaded[modname]
|
||||||
|
end
|
||||||
|
|
||||||
|
if info then
|
||||||
|
local hash = M.hash(info.file)
|
||||||
|
if hash ~= info.hash then
|
||||||
|
info.chunk = nil
|
||||||
|
end
|
||||||
|
local err
|
||||||
|
if not info.chunk then
|
||||||
|
vim.schedule(function()
|
||||||
|
vim.notify("loading " .. modname)
|
||||||
|
end)
|
||||||
|
info.chunk, err = loadfile(info.file)
|
||||||
|
info.hash = hash
|
||||||
|
M.dirty = true
|
||||||
|
end
|
||||||
|
if type(info.chunk) == "string" then
|
||||||
|
info.chunk, err = loadstring(info.chunk --[[@as string]], "@" .. info.file)
|
||||||
|
end
|
||||||
|
if not info.chunk then
|
||||||
error(err)
|
error(err)
|
||||||
end
|
end
|
||||||
---@diagnostic disable-next-line: no-unknown
|
info.used = true
|
||||||
package.loaded[modname] = chunk()
|
---@type table
|
||||||
|
local mod = info.chunk()
|
||||||
|
package.loaded[modname] = mod
|
||||||
|
return mod
|
||||||
end
|
end
|
||||||
return package.loaded[modname]
|
end
|
||||||
|
|
||||||
|
---@param state LazyState
|
||||||
|
function M.write(state)
|
||||||
|
local chunks = state.chunks
|
||||||
|
state.chunks = nil
|
||||||
|
|
||||||
|
local header = loadstring("return " .. M.dump(state))
|
||||||
|
assert(header)
|
||||||
|
table.insert(chunks, string.dump(header, true))
|
||||||
|
|
||||||
|
vim.fn.mkdir(vim.fn.fnamemodify(M.options.cache, ":p:h"), "p")
|
||||||
|
local f = assert(io.open(M.options.cache, "wb"))
|
||||||
|
for _, chunk in ipairs(chunks) do
|
||||||
|
f:write(tostring(#chunk), "\0", chunk)
|
||||||
|
end
|
||||||
|
f:close()
|
||||||
|
end
|
||||||
|
|
||||||
|
---@return LazyState?
|
||||||
|
function M.read()
|
||||||
|
M.cache_hash = M.hash(M.options.cache)
|
||||||
|
local f = io.open(M.options.cache, "rb")
|
||||||
|
if f then
|
||||||
|
---@type string
|
||||||
|
local data = f:read("*a")
|
||||||
|
f:close()
|
||||||
|
|
||||||
|
local from = 1
|
||||||
|
local to = data:find("\0", from, true)
|
||||||
|
---@type string[]
|
||||||
|
local chunks = {}
|
||||||
|
while to do
|
||||||
|
local len = tonumber(data:sub(from, to - 1))
|
||||||
|
from = to + 1
|
||||||
|
local chunk = data:sub(from, from + len - 1)
|
||||||
|
table.insert(chunks, chunk)
|
||||||
|
from = from + len
|
||||||
|
to = data:find("\0", from, true)
|
||||||
|
end
|
||||||
|
|
||||||
|
local state = loadstring(table.remove(chunks))
|
||||||
|
assert(state)
|
||||||
|
---@type LazyState
|
||||||
|
local ret = state()
|
||||||
|
ret.chunks = chunks
|
||||||
|
return ret
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.compile()
|
||||||
|
local Config = require("lazy.config")
|
||||||
|
|
||||||
|
---@class LazyState
|
||||||
|
local state = {
|
||||||
|
---@type LazyPlugin[]
|
||||||
|
plugins = {},
|
||||||
|
---@type table<string, {file:string, hash:string, chunk:number}>
|
||||||
|
modules = {},
|
||||||
|
loaders = require("lazy.loader").loaders,
|
||||||
|
-- config = Config.options,
|
||||||
|
---@type string[]
|
||||||
|
chunks = {},
|
||||||
|
}
|
||||||
|
|
||||||
|
local skip = { installed = true, loaded = true }
|
||||||
|
|
||||||
|
-- plugins
|
||||||
|
for _, plugin in pairs(Config.plugins) do
|
||||||
|
-- mark module as used
|
||||||
|
if M.modules[plugin.modname] then
|
||||||
|
---@diagnostic disable-next-line: no-unknown
|
||||||
|
M.modules[plugin.modname].used = true
|
||||||
|
end
|
||||||
|
|
||||||
|
---@type LazyPlugin | {_chunks: string[] | table<string, number>}
|
||||||
|
local save = {}
|
||||||
|
table.insert(state.plugins, save)
|
||||||
|
for k, v in pairs(plugin) do
|
||||||
|
if type(v) == "function" then
|
||||||
|
save._chunks = save._chunks or {}
|
||||||
|
if plugin.modname then
|
||||||
|
table.insert(save._chunks, k)
|
||||||
|
else
|
||||||
|
table.insert(state.chunks, string.dump(v, M.options.trim))
|
||||||
|
save._chunks[k] = #state.chunks
|
||||||
|
end
|
||||||
|
elseif not skip[k] then
|
||||||
|
save[k] = v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- modules
|
||||||
|
for modname, entry in pairs(M.modules) do
|
||||||
|
if entry.used and entry.chunk then
|
||||||
|
table.insert(
|
||||||
|
state.chunks,
|
||||||
|
type(entry.chunk) == "string" and entry.chunk or string.dump(entry.chunk --[[@as fun()]], M.options.trim)
|
||||||
|
)
|
||||||
|
state.modules[modname] = { file = entry.file, hash = entry.hash, chunk = #state.chunks }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
M.write(state)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M._dump(value, result)
|
||||||
|
local t = type(value)
|
||||||
|
if t == "number" or t == "boolean" then
|
||||||
|
table.insert(result, tostring(value))
|
||||||
|
elseif t == "string" then
|
||||||
|
table.insert(result, ("%q"):format(value))
|
||||||
|
elseif t == "table" then
|
||||||
|
table.insert(result, "{")
|
||||||
|
local i = 1
|
||||||
|
---@diagnostic disable-next-line: no-unknown
|
||||||
|
for k, v in pairs(value) do
|
||||||
|
if k == i then
|
||||||
|
elseif type(k) == "string" then
|
||||||
|
table.insert(result, ("[%q]="):format(k))
|
||||||
|
else
|
||||||
|
table.insert(result, k .. "=")
|
||||||
|
end
|
||||||
|
M._dump(v, result)
|
||||||
|
table.insert(result, ",")
|
||||||
|
i = i + 1
|
||||||
|
end
|
||||||
|
table.insert(result, "}")
|
||||||
|
else
|
||||||
|
error("Unsupported type " .. t)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.dump(value)
|
||||||
|
local result = {}
|
||||||
|
M._dump(value, result)
|
||||||
|
return table.concat(result, "")
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.load_state()
|
||||||
|
M.state = M.read()
|
||||||
|
|
||||||
|
if not M.state then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local reload = false
|
||||||
|
for modname, entry in pairs(M.state.modules) do
|
||||||
|
entry.chunk = M.state.chunks[entry.chunk]
|
||||||
|
---@cast entry ModEntry
|
||||||
|
if M.hash(entry.file) ~= entry.hash then
|
||||||
|
-- keep loading modules, but reset state (reload plugins)
|
||||||
|
reload = true
|
||||||
|
end
|
||||||
|
M.modules[modname] = entry
|
||||||
|
end
|
||||||
|
if reload then
|
||||||
|
M.state = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function load_plugin(plugin, fun, ...)
|
||||||
|
local mod = M.load(plugin.modname)
|
||||||
|
for k, v in pairs(mod) do
|
||||||
|
if type(v) == "function" then
|
||||||
|
plugin[k] = v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return mod[fun](...)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.load_plugins()
|
||||||
|
local Config = require("lazy.config")
|
||||||
|
|
||||||
|
if not vim.deepcopy(Config.options, M.state.config) then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
-- plugins
|
||||||
|
for _, plugin in ipairs(M.state.plugins) do
|
||||||
|
plugin.loaded = false
|
||||||
|
plugin.installed = vim.loop.fs_stat(plugin.dir) and true
|
||||||
|
if plugin._chunks then
|
||||||
|
if plugin.modname then
|
||||||
|
for _, fun in ipairs(plugin._chunks) do
|
||||||
|
plugin[fun] = function(...)
|
||||||
|
return load_plugin(plugin, fun, ...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
for fun, value in pairs(plugin._chunks) do
|
||||||
|
plugin[fun] = function(...)
|
||||||
|
plugin[fun] = loadstring(M.state.chunks[value])
|
||||||
|
return plugin[fun](...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
plugin._chunks = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- loaders
|
||||||
|
local Loader = require("lazy.loader")
|
||||||
|
Loader.loaders = M.state.loaders
|
||||||
|
|
||||||
|
-- save plugins
|
||||||
|
Config.plugins = {}
|
||||||
|
for _, plugin in ipairs(M.state.plugins) do
|
||||||
|
Config.plugins[plugin.name] = plugin
|
||||||
|
end
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -5,16 +5,10 @@ local M = {}
|
||||||
---@class LazyConfig
|
---@class LazyConfig
|
||||||
M.defaults = {
|
M.defaults = {
|
||||||
opt = true,
|
opt = true,
|
||||||
plugins = {},
|
plugins = "config.plugins",
|
||||||
plugins_local = {
|
plugins_local = {
|
||||||
path = vim.fn.expand("~/projects"),
|
path = vim.fn.expand("~/projects"),
|
||||||
patterns = {
|
patterns = {},
|
||||||
"folke",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
plugins_config = {
|
|
||||||
module = "plugins",
|
|
||||||
path = vim.fn.stdpath("config") .. "/lua/plugins",
|
|
||||||
},
|
},
|
||||||
package_path = vim.fn.stdpath("data") .. "/site/pack/lazy",
|
package_path = vim.fn.stdpath("data") .. "/site/pack/lazy",
|
||||||
}
|
}
|
||||||
|
@ -27,32 +21,11 @@ M.plugins = {}
|
||||||
---@type LazyConfig
|
---@type LazyConfig
|
||||||
M.options = {}
|
M.options = {}
|
||||||
|
|
||||||
---@type table<string, string>
|
|
||||||
M.has_config = {}
|
|
||||||
|
|
||||||
---@param opts? LazyConfig
|
---@param opts? LazyConfig
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.options = vim.tbl_deep_extend("force", M.defaults, opts or {})
|
M.options = vim.tbl_deep_extend("force", M.defaults, opts or {})
|
||||||
|
|
||||||
vim.fn.mkdir(M.options.package_path, "p")
|
-- vim.fn.mkdir(M.options.package_path, "p")
|
||||||
|
|
||||||
for _, entry in ipairs(Util.scandir(M.options.plugins_config.path)) do
|
|
||||||
local name, modpath
|
|
||||||
|
|
||||||
if entry.type == "file" then
|
|
||||||
modpath = entry.path
|
|
||||||
name = entry.name:match("(.*)%.lua")
|
|
||||||
elseif entry.type == "directory" then
|
|
||||||
modpath = M.options.plugins_config.path .. "/" .. entry.name .. "/init.lua"
|
|
||||||
if vim.loop.fs_stat(modpath) then
|
|
||||||
name = entry.name
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if name then
|
|
||||||
M.has_config[M.options.plugins_config.module .. "." .. name] = modpath
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("User", {
|
vim.api.nvim_create_autocmd("User", {
|
||||||
pattern = "VeryLazy",
|
pattern = "VeryLazy",
|
||||||
|
|
|
@ -4,28 +4,42 @@ local M = {}
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
--FIXME: preload()
|
--FIXME: preload()
|
||||||
|
|
||||||
|
local Cache = require("lazy.cache")
|
||||||
|
|
||||||
|
local start = vim.loop.hrtime()
|
||||||
|
Cache.boot()
|
||||||
|
|
||||||
local Util = require("lazy.util")
|
local Util = require("lazy.util")
|
||||||
local Config = require("lazy.config")
|
local Config = require("lazy.config")
|
||||||
local Plugin = require("lazy.plugin")
|
local Plugin = require("lazy.plugin")
|
||||||
|
|
||||||
|
Util.track("lazy_boot", vim.loop.hrtime() - start)
|
||||||
|
|
||||||
Util.track("lazy_setup")
|
Util.track("lazy_setup")
|
||||||
|
|
||||||
Util.track("lazy_config")
|
Util.track("lazy_config")
|
||||||
Config.setup(opts)
|
Config.setup(opts)
|
||||||
Util.track()
|
Util.track()
|
||||||
|
|
||||||
Util.track("plugin_normalize")
|
Util.track("lazy_plugins")
|
||||||
Plugin.normalize(Config.options.plugins)
|
if not Cache.setup() then
|
||||||
if not Config.plugins.lazy then
|
vim.schedule(function()
|
||||||
Plugin.plugin({
|
vim.notify("Reloading")
|
||||||
"folke/lazy.nvim",
|
end)
|
||||||
opt = false,
|
Util.track("plugin_normalize")
|
||||||
})
|
Plugin.normalize(require(Config.options.plugins))
|
||||||
end
|
if not Config.plugins.lazy then
|
||||||
Util.track()
|
Plugin.plugin({
|
||||||
|
"folke/lazy.nvim",
|
||||||
|
opt = false,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
Util.track()
|
||||||
|
|
||||||
Util.track("plugin_process")
|
Util.track("plugin_process")
|
||||||
Plugin.process()
|
Plugin.process()
|
||||||
|
Util.track()
|
||||||
|
end
|
||||||
Util.track()
|
Util.track()
|
||||||
|
|
||||||
Util.track("lazy_install")
|
Util.track("lazy_install")
|
||||||
|
|
|
@ -3,7 +3,7 @@ local Config = require("lazy.config")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@alias LoaderType "event"|"ft"|"module"|"keys"|"cmd"
|
---@alias LoaderType "event"|"ft"|"module"|"keys"|"cmd"|"init"
|
||||||
---@type LoaderType[]
|
---@type LoaderType[]
|
||||||
M.types = {
|
M.types = {
|
||||||
"event",
|
"event",
|
||||||
|
@ -13,20 +13,17 @@ M.types = {
|
||||||
"cmd",
|
"cmd",
|
||||||
}
|
}
|
||||||
|
|
||||||
---@type table<LoaderType, table<string, string[]>>
|
---@class LazyLoaders: table<LoaderType, table<string, string[]>>|{init: string[]}
|
||||||
M.loaders = {}
|
M.loaders = { init = {} }
|
||||||
|
|
||||||
for _, type in ipairs(M.types) do
|
for _, type in ipairs(M.types) do
|
||||||
M.loaders[type] = {}
|
M.loaders[type] = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
---@type LazyPlugin[]
|
|
||||||
M.need_setup = {}
|
|
||||||
|
|
||||||
---@param plugin LazyPlugin
|
---@param plugin LazyPlugin
|
||||||
function M.add(plugin)
|
function M.add(plugin)
|
||||||
if plugin.init or plugin.opt == false and plugin.config then
|
if plugin.init or plugin.opt == false and plugin.config then
|
||||||
table.insert(M.need_setup, plugin)
|
table.insert(M.loaders.init, plugin.name)
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, loader_type in ipairs(M.types) do
|
for _, loader_type in ipairs(M.types) do
|
||||||
|
@ -130,7 +127,8 @@ end
|
||||||
|
|
||||||
function M.init_plugins()
|
function M.init_plugins()
|
||||||
Util.track("loader_plugin_init")
|
Util.track("loader_plugin_init")
|
||||||
for _, plugin in ipairs(M.need_setup) do
|
for _, name in ipairs(M.loaders.init) do
|
||||||
|
local plugin = Config.plugins[name]
|
||||||
if plugin.init then
|
if plugin.init then
|
||||||
Util.track(plugin.name)
|
Util.track(plugin.name)
|
||||||
plugin.init()
|
plugin.init()
|
||||||
|
@ -152,7 +150,7 @@ function M.module(modname)
|
||||||
local plugins = M.loaders.module[name]
|
local plugins = M.loaders.module[name]
|
||||||
if plugins then
|
if plugins then
|
||||||
M.load(plugins)
|
M.load(plugins)
|
||||||
M.loaders.module[name] = nil
|
-- M.loaders.module[name] = nil
|
||||||
end
|
end
|
||||||
idx = modname:find(".", idx + 1, true)
|
idx = modname:find(".", idx + 1, true)
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,14 +5,15 @@ local Cache = require("lazy.cache")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@class LazyPlugin: {[1]: string}
|
---@class LazyPlugin
|
||||||
|
---@field [1] string
|
||||||
|
---@field name string display name and name used for plugin config files
|
||||||
|
---@field pack string package name
|
||||||
---@field uri string
|
---@field uri string
|
||||||
---@field as? string
|
---@field modname? string
|
||||||
---@field branch? string
|
---@field branch? string
|
||||||
---@field dir string
|
---@field dir string
|
||||||
---@field opt? boolean
|
---@field opt? boolean
|
||||||
---@field name string display name and name used for plugin config files
|
|
||||||
---@field pack string package name
|
|
||||||
---@field init? fun(LazyPlugin) Will always be run
|
---@field init? fun(LazyPlugin) Will always be run
|
||||||
---@field config? fun(LazyPlugin) Will be executed when loading the plugin
|
---@field config? fun(LazyPlugin) Will be executed when loading the plugin
|
||||||
---@field event? string|string[]
|
---@field event? string|string[]
|
||||||
|
@ -74,27 +75,22 @@ end
|
||||||
---@param plugin LazyPlugin
|
---@param plugin LazyPlugin
|
||||||
function M.process_config(plugin)
|
function M.process_config(plugin)
|
||||||
local name = plugin.name
|
local name = plugin.name
|
||||||
local modname = Config.options.plugins_config.module .. "." .. name
|
local modname = Config.options.plugins .. "." .. name
|
||||||
|
|
||||||
local file = Config.has_config[modname]
|
local spec = Cache.load(modname)
|
||||||
if file then
|
if spec then
|
||||||
-- use dofile and then add to modules. Since we know where to look, this is faster
|
-- add to loaded modules
|
||||||
local ok, spec = pcall(Cache.load, file, modname)
|
if spec.requires then
|
||||||
if ok then
|
spec.requires = M.normalize(spec.requires)
|
||||||
-- add to loaded modules
|
|
||||||
if spec.requires then
|
|
||||||
spec.requires = M.normalize(spec.requires)
|
|
||||||
end
|
|
||||||
|
|
||||||
---@diagnostic disable-next-line: no-unknown
|
|
||||||
for k, v in pairs(spec) do
|
|
||||||
---@diagnostic disable-next-line: no-unknown
|
|
||||||
plugin[k] = v
|
|
||||||
end
|
|
||||||
M.plugin(plugin)
|
|
||||||
else
|
|
||||||
Util.error("Failed to load plugin config for " .. name .. "\n" .. spec)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@diagnostic disable-next-line: no-unknown
|
||||||
|
for k, v in pairs(spec) do
|
||||||
|
---@diagnostic disable-next-line: no-unknown
|
||||||
|
plugin[k] = v
|
||||||
|
end
|
||||||
|
plugin.modname = modname
|
||||||
|
M.plugin(plugin)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ function M.track(name, time)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.time()
|
function M.time()
|
||||||
return vim.loop.hrtime() / 1000000
|
return vim.loop.hrtime()
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.file_exists(file)
|
function M.file_exists(file)
|
||||||
|
@ -115,7 +115,7 @@ function M.profile()
|
||||||
|
|
||||||
table.insert(
|
table.insert(
|
||||||
lines,
|
lines,
|
||||||
(" "):rep(depth) .. "- " .. entry.name .. ": **" .. math.floor((entry.time or 0) * 100) / 100 .. "ms**"
|
(" "):rep(depth) .. "- " .. entry.name .. ": **" .. math.floor((entry.time or 0) / 1e6 * 100) / 100 .. "ms**"
|
||||||
)
|
)
|
||||||
|
|
||||||
for _, child in ipairs(entry) do
|
for _, child in ipairs(entry) do
|
||||||
|
|
Loading…
Reference in New Issue