2022-11-23 04:28:08 +08:00
|
|
|
local Config = require("lazy.core.config")
|
2022-11-27 18:02:28 +08:00
|
|
|
local Runner = require("lazy.manage.runner")
|
2022-11-26 05:48:17 +08:00
|
|
|
local Plugin = require("lazy.core.plugin")
|
2022-11-21 05:33:47 +08:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
2022-11-28 18:04:32 +08:00
|
|
|
---@class ManagerOpts
|
|
|
|
---@field wait? boolean
|
|
|
|
---@field clear? boolean
|
2022-12-01 06:07:09 +08:00
|
|
|
---@field show? boolean
|
2022-11-29 17:30:14 +08:00
|
|
|
---@field mode? string
|
2022-12-24 18:15:57 +08:00
|
|
|
---@field plugins? (LazyPlugin|string)[]
|
2022-12-06 03:36:49 +08:00
|
|
|
---@field concurrency? number
|
2022-12-30 16:17:46 +08:00
|
|
|
---@field lockfile? boolean
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-28 18:04:32 +08:00
|
|
|
---@param ropts RunnerOpts
|
2022-11-21 05:33:47 +08:00
|
|
|
---@param opts? ManagerOpts
|
2022-11-28 18:04:32 +08:00
|
|
|
function M.run(ropts, opts)
|
2022-11-21 05:34:55 +08:00
|
|
|
opts = opts or {}
|
|
|
|
|
2023-06-17 14:37:33 +08:00
|
|
|
local mode = opts.mode
|
|
|
|
local event = mode and ("Lazy" .. mode:sub(1, 1):upper() .. mode:sub(2))
|
|
|
|
|
|
|
|
if event then
|
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = event .. "Pre", modeline = false })
|
|
|
|
end
|
|
|
|
|
2022-11-29 17:56:17 +08:00
|
|
|
if opts.plugins then
|
2022-12-24 18:15:57 +08:00
|
|
|
---@param plugin string|LazyPlugin
|
|
|
|
opts.plugins = vim.tbl_map(function(plugin)
|
|
|
|
return type(plugin) == "string" and Config.plugins[plugin] or plugin
|
|
|
|
end, vim.tbl_values(opts.plugins))
|
2022-11-29 17:56:17 +08:00
|
|
|
ropts.plugins = opts.plugins
|
|
|
|
end
|
|
|
|
|
2022-12-06 03:36:49 +08:00
|
|
|
ropts.concurrency = ropts.concurrency or opts.concurrency or Config.options.concurrency
|
2022-12-01 06:14:31 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
if opts.clear then
|
2022-12-24 18:16:24 +08:00
|
|
|
M.clear(opts.plugins)
|
2022-11-21 05:34:55 +08:00
|
|
|
end
|
|
|
|
|
2022-12-01 06:07:09 +08:00
|
|
|
if opts.show ~= false then
|
2022-11-29 14:56:29 +08:00
|
|
|
vim.schedule(function()
|
2022-11-29 17:30:14 +08:00
|
|
|
require("lazy.view").show(opts.mode)
|
2022-11-29 14:56:29 +08:00
|
|
|
end)
|
2022-11-21 05:34:55 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@type Runner
|
2022-11-28 18:04:32 +08:00
|
|
|
local runner = Runner.new(ropts)
|
|
|
|
runner:start()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
2023-01-13 16:00:15 +08:00
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = "LazyRender", modeline = false })
|
2022-11-21 05:34:55 +08:00
|
|
|
|
2022-11-28 18:04:32 +08:00
|
|
|
-- wait for post-install to finish
|
2022-11-21 05:34:55 +08:00
|
|
|
runner:wait(function()
|
2023-01-13 16:00:15 +08:00
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = "LazyRender", modeline = false })
|
2022-12-01 06:06:26 +08:00
|
|
|
Plugin.update_state()
|
2022-12-23 14:43:58 +08:00
|
|
|
require("lazy.manage.checker").fast_check({ report = false })
|
2023-06-17 14:37:33 +08:00
|
|
|
if event then
|
2023-01-13 16:00:15 +08:00
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = event, modeline = false })
|
2022-12-24 18:55:42 +08:00
|
|
|
end
|
2022-11-21 05:34:55 +08:00
|
|
|
end)
|
|
|
|
|
|
|
|
if opts.wait then
|
|
|
|
runner:wait()
|
|
|
|
end
|
2022-11-29 07:15:13 +08:00
|
|
|
return runner
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
2022-12-22 05:27:36 +08:00
|
|
|
---@generic O: ManagerOpts
|
|
|
|
---@param opts? O
|
|
|
|
---@param defaults? ManagerOpts
|
|
|
|
---@return O
|
|
|
|
function M.opts(opts, defaults)
|
|
|
|
return vim.tbl_deep_extend("force", { clear = true }, defaults or {}, opts or {})
|
|
|
|
end
|
|
|
|
|
2022-11-21 05:33:47 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.install(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
opts = M.opts(opts, { mode = "install" })
|
2022-12-06 03:36:49 +08:00
|
|
|
return M.run({
|
2022-11-29 05:03:44 +08:00
|
|
|
pipeline = {
|
|
|
|
"git.clone",
|
2022-12-30 16:17:46 +08:00
|
|
|
{ "git.checkout", lockfile = opts.lockfile },
|
2022-11-29 05:03:44 +08:00
|
|
|
"plugin.docs",
|
|
|
|
"wait",
|
2022-12-01 14:43:28 +08:00
|
|
|
"plugin.build",
|
2022-11-29 05:03:44 +08:00
|
|
|
},
|
2022-11-28 18:04:32 +08:00
|
|
|
plugins = function(plugin)
|
2022-12-06 18:12:54 +08:00
|
|
|
return plugin.url and not plugin._.installed
|
2022-11-28 18:04:32 +08:00
|
|
|
end,
|
2022-12-15 21:07:37 +08:00
|
|
|
}, opts):wait(function()
|
2022-12-22 06:18:35 +08:00
|
|
|
require("lazy.manage.lock").update()
|
2022-12-15 21:07:37 +08:00
|
|
|
require("lazy.help").update()
|
|
|
|
end)
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
2022-12-30 16:17:46 +08:00
|
|
|
---@param opts? ManagerOpts
|
2022-11-21 05:33:47 +08:00
|
|
|
function M.update(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
opts = M.opts(opts, { mode = "update" })
|
2022-12-06 03:36:49 +08:00
|
|
|
return M.run({
|
2022-11-29 05:03:44 +08:00
|
|
|
pipeline = {
|
2023-01-08 15:32:03 +08:00
|
|
|
"git.origin",
|
2022-11-29 05:03:44 +08:00
|
|
|
"git.branch",
|
|
|
|
"git.fetch",
|
2022-11-29 07:15:13 +08:00
|
|
|
{ "git.checkout", lockfile = opts.lockfile },
|
2022-11-29 05:03:44 +08:00
|
|
|
"plugin.docs",
|
|
|
|
"wait",
|
2022-12-01 14:43:28 +08:00
|
|
|
"plugin.build",
|
2022-11-29 05:03:44 +08:00
|
|
|
{ "git.log", updated = true },
|
|
|
|
},
|
2022-11-28 18:04:32 +08:00
|
|
|
plugins = function(plugin)
|
2022-12-06 18:12:54 +08:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-28 18:04:32 +08:00
|
|
|
end,
|
2022-11-29 07:15:13 +08:00
|
|
|
}, opts):wait(function()
|
|
|
|
require("lazy.manage.lock").update()
|
2022-12-15 21:07:37 +08:00
|
|
|
require("lazy.help").update()
|
2022-11-29 07:15:13 +08:00
|
|
|
end)
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
2022-12-22 05:27:36 +08:00
|
|
|
--
|
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.restore(opts)
|
|
|
|
opts = M.opts(opts, { mode = "restore", lockfile = true })
|
|
|
|
return M.update(opts)
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-12-06 03:36:49 +08:00
|
|
|
---@param opts? ManagerOpts
|
2022-11-29 15:23:23 +08:00
|
|
|
function M.check(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
opts = M.opts(opts, { mode = "check" })
|
2022-11-29 15:23:23 +08:00
|
|
|
opts = opts or {}
|
2022-12-06 03:36:49 +08:00
|
|
|
return M.run({
|
2022-11-29 15:23:23 +08:00
|
|
|
pipeline = {
|
2023-01-08 15:32:03 +08:00
|
|
|
{ "git.origin", check = true },
|
2022-11-29 15:23:23 +08:00
|
|
|
"git.fetch",
|
|
|
|
"wait",
|
|
|
|
{ "git.log", check = true },
|
|
|
|
},
|
|
|
|
plugins = function(plugin)
|
2022-12-06 18:12:54 +08:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-29 15:23:23 +08:00
|
|
|
end,
|
|
|
|
}, opts)
|
|
|
|
end
|
|
|
|
|
2023-01-22 21:30:12 +08:00
|
|
|
---@param opts? ManagerOpts | {check?:boolean}
|
2022-11-23 04:12:50 +08:00
|
|
|
function M.log(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
opts = M.opts(opts, { mode = "log" })
|
2022-12-06 03:36:49 +08:00
|
|
|
return M.run({
|
2023-01-08 15:32:03 +08:00
|
|
|
pipeline = {
|
|
|
|
{ "git.origin", check = true },
|
2023-01-22 21:30:12 +08:00
|
|
|
{ "git.log", check = opts.check },
|
2023-01-08 15:32:03 +08:00
|
|
|
},
|
2022-11-28 18:04:32 +08:00
|
|
|
plugins = function(plugin)
|
2022-12-06 18:12:54 +08:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-28 18:04:32 +08:00
|
|
|
end,
|
|
|
|
}, opts)
|
2022-11-23 23:12:43 +08:00
|
|
|
end
|
|
|
|
|
2023-01-01 16:41:43 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.build(opts)
|
|
|
|
opts = M.opts(opts, { mode = "build" })
|
|
|
|
return M.run({
|
|
|
|
pipeline = { { "plugin.build", force = true } },
|
|
|
|
plugins = function()
|
|
|
|
return false
|
|
|
|
end,
|
|
|
|
}, opts)
|
|
|
|
end
|
|
|
|
|
2022-12-22 05:27:36 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.sync(opts)
|
2022-12-24 18:55:42 +08:00
|
|
|
opts = M.opts(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
if opts.clear then
|
|
|
|
M.clear()
|
|
|
|
opts.clear = false
|
|
|
|
end
|
2022-12-24 18:55:42 +08:00
|
|
|
if opts.show ~= false then
|
|
|
|
vim.schedule(function()
|
|
|
|
require("lazy.view").show("sync")
|
|
|
|
end)
|
|
|
|
opts.show = false
|
|
|
|
end
|
2023-02-01 15:06:48 +08:00
|
|
|
|
|
|
|
local clean_opts = vim.deepcopy(opts)
|
|
|
|
clean_opts.plugins = nil
|
|
|
|
local clean = M.clean(clean_opts)
|
2022-12-24 18:55:42 +08:00
|
|
|
local install = M.install(opts)
|
|
|
|
local update = M.update(opts)
|
|
|
|
clean:wait(function()
|
|
|
|
install:wait(function()
|
|
|
|
update:wait(function()
|
2023-01-13 16:00:15 +08:00
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = "LazySync", modeline = false })
|
2022-12-24 18:55:42 +08:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
end)
|
2022-12-22 05:27:36 +08:00
|
|
|
end
|
|
|
|
|
2022-11-21 05:33:47 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.clean(opts)
|
2022-12-22 05:27:36 +08:00
|
|
|
opts = M.opts(opts, { mode = "clean" })
|
2022-12-06 03:36:49 +08:00
|
|
|
return M.run({
|
2022-11-29 05:03:44 +08:00
|
|
|
pipeline = { "fs.clean" },
|
2022-11-28 18:04:32 +08:00
|
|
|
plugins = Config.to_clean,
|
2022-12-22 15:09:28 +08:00
|
|
|
}, opts):wait(function()
|
|
|
|
require("lazy.manage.lock").update()
|
|
|
|
end)
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
2022-12-24 18:16:24 +08:00
|
|
|
---@param plugins? LazyPlugin[]
|
|
|
|
function M.clear(plugins)
|
|
|
|
for _, plugin in pairs(plugins or Config.plugins) do
|
2022-12-31 23:01:59 +08:00
|
|
|
plugin._.updates = nil
|
2022-11-28 18:19:50 +08:00
|
|
|
plugin._.updated = nil
|
2022-11-29 07:15:13 +08:00
|
|
|
plugin._.cloned = nil
|
|
|
|
plugin._.dirty = nil
|
2022-11-21 05:34:55 +08:00
|
|
|
-- clear finished tasks
|
2022-11-28 18:19:50 +08:00
|
|
|
if plugin._.tasks then
|
2022-11-21 06:25:56 +08:00
|
|
|
---@param task LazyTask
|
2022-11-28 18:19:50 +08:00
|
|
|
plugin._.tasks = vim.tbl_filter(function(task)
|
2022-11-28 18:04:32 +08:00
|
|
|
return task:is_running()
|
2022-11-28 18:19:50 +08:00
|
|
|
end, plugin._.tasks)
|
2022-11-21 05:34:55 +08:00
|
|
|
end
|
|
|
|
end
|
2023-01-13 16:00:15 +08:00
|
|
|
vim.api.nvim_exec_autocmds("User", { pattern = "LazyRender", modeline = false })
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|