lazy.nvim/lua/lazy/manage/runner.lua

135 lines
3.1 KiB
Lua
Raw Normal View History

2022-11-28 18:04:32 +08:00
local Task = require("lazy.manage.task")
local Config = require("lazy.core.config")
---@alias LazyPipeline TaskType[]
2022-11-28 18:04:32 +08:00
---@class RunnerOpts
---@field pipeline LazyPipeline
---@field interactive? boolean
---@field plugins? LazyPlugin[]|fun(plugin:LazyPlugin):any?
2022-11-21 06:04:56 +08:00
---@class Runner
---@field _tasks LazyTask[]
2022-11-28 18:04:32 +08:00
---@field _plugins LazyPlugin[]
---@field _running boolean
---@field _on_done fun()[]
---@field _waiting fun()[]
---@field _opts RunnerOpts
2022-11-21 06:04:56 +08:00
local Runner = {}
2022-11-28 18:04:32 +08:00
---@param opts RunnerOpts
function Runner.new(opts)
local self = setmetatable({}, { __index = Runner })
self._opts = opts or {}
2022-11-21 06:04:56 +08:00
self._tasks = {}
2022-11-28 18:04:32 +08:00
local plugins = self._opts.plugins
if type(plugins) == "function" then
self._plugins = vim.tbl_filter(plugins, Config.plugins)
else
self._plugins = plugins or Config.plugins
end
self._running = false
self._on_done = {}
self._waiting = {}
2022-11-21 06:04:56 +08:00
return self
end
2022-11-28 18:04:32 +08:00
---@param plugin LazyPlugin
---@param pipeline LazyPipeline
function Runner:_run(plugin, pipeline)
---@type TaskType
local op = table.remove(pipeline, 1)
if op == "wait" then
2022-11-28 18:04:32 +08:00
return table.insert(self._waiting, function()
self:_run(plugin, pipeline)
end)
end
self:queue(plugin, op, function(task)
if not (task and task.error) and #pipeline > 0 then
self:_run(plugin, pipeline)
2022-11-28 18:04:32 +08:00
end
end)
2022-11-28 18:04:32 +08:00
end
---@param plugin LazyPlugin
---@param task_type TaskType
---@param on_done fun(task?:LazyTask)
2022-11-28 18:04:32 +08:00
---@return LazyTask?
function Runner:queue(plugin, task_type, on_done)
2022-11-28 18:04:32 +08:00
local def = vim.split(task_type, ".", { plain = true })
assert(#def == 2)
---@type LazyTaskDef
local task_def = require("lazy.manage.task." .. def[1])[def[2]]
assert(task_def)
if not (task_def.skip and task_def.skip(plugin, self._opts)) then
local task = Task.new(plugin, def[2], task_def.run, { on_done = on_done })
2022-11-28 18:04:32 +08:00
table.insert(self._tasks, task)
task:start()
else
on_done()
2022-11-28 18:04:32 +08:00
end
2022-11-21 06:04:56 +08:00
end
2022-11-28 18:04:32 +08:00
function Runner:start()
for _, plugin in pairs(self._plugins) do
self:_run(plugin, vim.deepcopy(self._opts.pipeline))
end
self._running = true
local check = vim.loop.new_check()
check:start(function()
for _, task in ipairs(self._tasks) do
if task:is_running() then
return
end
end
if #self._waiting > 0 then
local waiting = self._waiting
self._waiting = {}
for _, cb in ipairs(waiting) do
2022-11-28 18:04:32 +08:00
cb()
end
return
end
check:stop()
self._running = false
for _, cb in ipairs(self._on_done) do
vim.schedule(cb)
end
self._on_done = {}
end)
2022-11-21 06:04:56 +08:00
end
---@return LazyPlugin[]
function Runner:plugins()
---@param task LazyTask
return vim.tbl_map(function(task)
return task.plugin
end, self._tasks)
end
function Runner:tasks()
return self._tasks
end
2022-11-28 18:04:32 +08:00
-- Execute the callback async when done.
-- When no callback is specified, this will wait sync
2022-11-21 06:04:56 +08:00
---@param cb? fun()
function Runner:wait(cb)
2022-11-28 18:04:32 +08:00
if #self._tasks == 0 or not self._running then
2022-11-21 06:04:56 +08:00
return cb and cb()
end
2022-11-28 18:04:32 +08:00
if cb then
table.insert(self._on_done, cb)
else
-- sync wait
while self._running do
2022-11-21 06:04:56 +08:00
vim.wait(100)
end
end
end
return Runner