2022-11-22 20:28:08 +00:00
|
|
|
local Config = require("lazy.core.config")
|
2022-11-27 10:02:28 +00:00
|
|
|
local Runner = require("lazy.manage.runner")
|
2022-11-25 21:48:17 +00:00
|
|
|
local Plugin = require("lazy.core.plugin")
|
2022-11-20 21:33:47 +00:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
2022-11-28 10:04:32 +00:00
|
|
|
---@class ManagerOpts
|
|
|
|
---@field wait? boolean
|
|
|
|
---@field clear? boolean
|
2022-11-30 22:07:09 +00:00
|
|
|
---@field show? boolean
|
2022-11-29 09:30:14 +00:00
|
|
|
---@field mode? string
|
2022-11-29 09:56:17 +00:00
|
|
|
---@field plugins? LazyPlugin[]
|
2022-12-05 19:36:49 +00:00
|
|
|
---@field concurrency? number
|
2022-11-20 21:33:47 +00:00
|
|
|
|
2022-11-28 10:04:32 +00:00
|
|
|
---@param ropts RunnerOpts
|
2022-11-20 21:33:47 +00:00
|
|
|
---@param opts? ManagerOpts
|
2022-11-28 10:04:32 +00:00
|
|
|
function M.run(ropts, opts)
|
2022-11-20 21:34:55 +00:00
|
|
|
opts = opts or {}
|
|
|
|
|
2022-11-29 09:56:17 +00:00
|
|
|
if opts.plugins then
|
|
|
|
ropts.plugins = opts.plugins
|
|
|
|
end
|
|
|
|
|
2022-12-05 19:36:49 +00:00
|
|
|
ropts.concurrency = ropts.concurrency or opts.concurrency or Config.options.concurrency
|
2022-11-30 22:14:31 +00:00
|
|
|
|
2022-11-20 21:34:55 +00:00
|
|
|
if opts.clear then
|
|
|
|
M.clear()
|
|
|
|
end
|
|
|
|
|
2022-11-30 22:07:09 +00:00
|
|
|
if opts.show ~= false then
|
2022-11-29 06:56:29 +00:00
|
|
|
vim.schedule(function()
|
2022-11-29 09:30:14 +00:00
|
|
|
require("lazy.view").show(opts.mode)
|
2022-11-29 06:56:29 +00:00
|
|
|
end)
|
2022-11-20 21:34:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
---@type Runner
|
2022-11-28 10:04:32 +00:00
|
|
|
local runner = Runner.new(ropts)
|
|
|
|
runner:start()
|
2022-11-20 21:34:55 +00:00
|
|
|
|
|
|
|
vim.cmd([[do User LazyRender]])
|
|
|
|
|
2022-11-28 10:04:32 +00:00
|
|
|
-- wait for post-install to finish
|
2022-11-20 21:34:55 +00:00
|
|
|
runner:wait(function()
|
2022-11-28 10:04:32 +00:00
|
|
|
vim.cmd([[do User LazyRender]])
|
2022-11-30 22:06:26 +00:00
|
|
|
Plugin.update_state()
|
2022-12-13 09:07:36 +00:00
|
|
|
require("lazy.manage.checker").fast_check()
|
2022-11-20 21:34:55 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
if opts.wait then
|
|
|
|
runner:wait()
|
|
|
|
end
|
2022-11-28 23:15:13 +00:00
|
|
|
return runner
|
2022-11-20 21:33:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.install(opts)
|
2022-12-05 19:36:49 +00:00
|
|
|
return M.run({
|
2022-11-28 21:03:44 +00:00
|
|
|
pipeline = {
|
|
|
|
"git.clone",
|
|
|
|
"git.checkout",
|
|
|
|
"plugin.docs",
|
|
|
|
"wait",
|
2022-12-01 06:43:28 +00:00
|
|
|
"plugin.build",
|
2022-11-28 21:03:44 +00:00
|
|
|
},
|
2022-11-28 10:04:32 +00:00
|
|
|
plugins = function(plugin)
|
2022-12-06 10:12:54 +00:00
|
|
|
return plugin.url and not plugin._.installed
|
2022-11-28 10:04:32 +00:00
|
|
|
end,
|
2022-12-15 13:07:37 +00:00
|
|
|
}, opts):wait(function()
|
|
|
|
require("lazy.help").update()
|
|
|
|
end)
|
2022-11-20 21:33:47 +00:00
|
|
|
end
|
|
|
|
|
2022-11-28 23:15:13 +00:00
|
|
|
---@param opts? ManagerOpts|{lockfile?:boolean}
|
2022-11-20 21:33:47 +00:00
|
|
|
function M.update(opts)
|
2022-11-28 23:15:13 +00:00
|
|
|
opts = opts or {}
|
2022-12-05 19:36:49 +00:00
|
|
|
return M.run({
|
2022-11-28 21:03:44 +00:00
|
|
|
pipeline = {
|
|
|
|
"git.branch",
|
|
|
|
"git.fetch",
|
2022-11-28 23:15:13 +00:00
|
|
|
{ "git.checkout", lockfile = opts.lockfile },
|
2022-11-28 21:03:44 +00:00
|
|
|
"plugin.docs",
|
|
|
|
"wait",
|
2022-12-01 06:43:28 +00:00
|
|
|
"plugin.build",
|
2022-11-28 21:03:44 +00:00
|
|
|
{ "git.log", updated = true },
|
|
|
|
},
|
2022-11-28 10:04:32 +00:00
|
|
|
plugins = function(plugin)
|
2022-12-06 10:12:54 +00:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-28 10:04:32 +00:00
|
|
|
end,
|
2022-11-28 23:15:13 +00:00
|
|
|
}, opts):wait(function()
|
|
|
|
require("lazy.manage.lock").update()
|
2022-12-15 13:07:37 +00:00
|
|
|
require("lazy.help").update()
|
2022-11-28 23:15:13 +00:00
|
|
|
end)
|
2022-11-20 21:33:47 +00:00
|
|
|
end
|
|
|
|
|
2022-12-05 19:36:49 +00:00
|
|
|
---@param opts? ManagerOpts
|
2022-11-29 07:23:23 +00:00
|
|
|
function M.check(opts)
|
|
|
|
opts = opts or {}
|
2022-12-05 19:36:49 +00:00
|
|
|
return M.run({
|
2022-11-29 07:23:23 +00:00
|
|
|
pipeline = {
|
|
|
|
"git.fetch",
|
|
|
|
"wait",
|
|
|
|
{ "git.log", check = true },
|
|
|
|
},
|
|
|
|
plugins = function(plugin)
|
2022-12-06 10:12:54 +00:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-29 07:23:23 +00:00
|
|
|
end,
|
|
|
|
}, opts)
|
|
|
|
end
|
|
|
|
|
2022-11-22 20:12:50 +00:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.log(opts)
|
2022-12-05 19:36:49 +00:00
|
|
|
return M.run({
|
2022-11-28 10:04:32 +00:00
|
|
|
pipeline = { "git.log" },
|
|
|
|
plugins = function(plugin)
|
2022-12-06 10:12:54 +00:00
|
|
|
return plugin.url and plugin._.installed
|
2022-11-28 10:04:32 +00:00
|
|
|
end,
|
|
|
|
}, opts)
|
2022-11-23 15:12:43 +00:00
|
|
|
end
|
|
|
|
|
2022-11-20 21:33:47 +00:00
|
|
|
---@param opts? ManagerOpts
|
|
|
|
function M.clean(opts)
|
2022-12-05 19:36:49 +00:00
|
|
|
return M.run({
|
2022-11-28 21:03:44 +00:00
|
|
|
pipeline = { "fs.clean" },
|
2022-11-28 10:04:32 +00:00
|
|
|
plugins = Config.to_clean,
|
|
|
|
}, opts)
|
2022-11-20 21:33:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.clear()
|
2022-12-02 23:12:49 +00:00
|
|
|
Plugin.load()
|
2022-11-20 23:27:28 +00:00
|
|
|
for _, plugin in pairs(Config.plugins) do
|
2022-12-05 19:36:49 +00:00
|
|
|
plugin._.has_updates = nil
|
2022-11-28 10:19:50 +00:00
|
|
|
plugin._.updated = nil
|
2022-11-28 23:15:13 +00:00
|
|
|
plugin._.cloned = nil
|
|
|
|
plugin._.dirty = nil
|
2022-11-20 21:34:55 +00:00
|
|
|
-- clear finished tasks
|
2022-11-28 10:19:50 +00:00
|
|
|
if plugin._.tasks then
|
2022-11-20 22:25:56 +00:00
|
|
|
---@param task LazyTask
|
2022-11-28 10:19:50 +00:00
|
|
|
plugin._.tasks = vim.tbl_filter(function(task)
|
2022-11-28 10:04:32 +00:00
|
|
|
return task:is_running()
|
2022-11-28 10:19:50 +00:00
|
|
|
end, plugin._.tasks)
|
2022-11-20 21:34:55 +00:00
|
|
|
end
|
|
|
|
end
|
2022-11-23 15:12:43 +00:00
|
|
|
vim.cmd([[do User LazyRender]])
|
2022-11-20 21:33:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|