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

155 lines
3.4 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|TaskType[])[]
---@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)
if #pipeline == 0 then
return
end
local ops = table.remove(pipeline, 1)
if ops == "wait" then
return table.insert(self._waiting, function()
self:_run(plugin, pipeline)
end)
end
ops = type(ops) == "string" and { ops } or ops
---@cast ops TaskType[]
---@type LazyTask[]
local tasks = {}
local function on_done()
for _, task in ipairs(tasks) do
if task.error or not task:is_done() then
return
end
end
self:_run(plugin, pipeline)
end
for _, op in ipairs(ops) do
local task = self:queue(plugin, op, { on_done = on_done })
if task then
table.insert(tasks, task)
end
end
for _, task in ipairs(tasks) do
task:start()
end
end
---@param plugin LazyPlugin
---@param task_type TaskType
---@param opts? TaskOptions
---@return LazyTask?
function Runner:queue(plugin, task_type, opts)
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.needed or task_def.needed(plugin, self._opts) then
local task = Task.new(plugin, def[2], task_def.run, opts)
table.insert(self._tasks, task)
return task
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
for _, cb in ipairs(self._waiting) do
cb()
end
self._waiting = {}
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