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-11-29 17:56:17 +08:00
|
|
|
---@field plugins? LazyPlugin[]
|
2022-12-06 03:36:49 +08:00
|
|
|
---@field concurrency? number
|
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 {}
|
|
|
|
|
2022-11-29 17:56:17 +08:00
|
|
|
if opts.plugins then
|
|
|
|
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
|
|
|
|
M.clear()
|
|
|
|
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
|
|
|
|
|
|
|
vim.cmd([[do User LazyRender]])
|
|
|
|
|
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()
|
2022-11-28 18:04:32 +08:00
|
|
|
vim.cmd([[do User LazyRender]])
|
2022-12-01 06:06:26 +08:00
|
|
|
Plugin.update_state()
|
2022-12-13 17:07:36 +08:00
|
|
|
require("lazy.manage.checker").fast_check()
|
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",
|
|
|
|
"git.checkout",
|
|
|
|
"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()
|
|
|
|
require("lazy.help").update()
|
|
|
|
end)
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
2022-11-29 07:15:13 +08:00
|
|
|
---@param opts? ManagerOpts|{lockfile?:boolean}
|
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 = {
|
|
|
|
"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 = {
|
|
|
|
"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
|
|
|
|
|
2022-11-23 04:12:50 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
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({
|
2022-11-28 18:04:32 +08:00
|
|
|
pipeline = { "git.log" },
|
|
|
|
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
|
|
|
|
|
2022-12-22 05:27:36 +08:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.sync(opts)
|
|
|
|
opts = M.opts(opts, { mode = "sync" })
|
|
|
|
if opts.clear then
|
|
|
|
M.clear()
|
|
|
|
opts.clear = false
|
|
|
|
end
|
|
|
|
M.clean(opts)
|
|
|
|
M.install(opts)
|
|
|
|
M.update(opts)
|
|
|
|
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,
|
|
|
|
}, opts)
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.clear()
|
2022-12-03 07:12:49 +08:00
|
|
|
Plugin.load()
|
2022-11-21 07:27:28 +08:00
|
|
|
for _, plugin in pairs(Config.plugins) do
|
2022-12-06 03:36:49 +08:00
|
|
|
plugin._.has_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
|
2022-11-23 23:12:43 +08:00
|
|
|
vim.cmd([[do User LazyRender]])
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|