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

174 lines
4.2 KiB
Lua
Raw Normal View History

local Async = require("lazy.async")
2022-11-28 18:04:32 +08:00
local Config = require("lazy.core.config")
2023-10-09 17:25:42 +08:00
local Task = require("lazy.manage.task")
2022-11-28 18:04:32 +08:00
---@class RunnerOpts
---@field pipeline (string|{[1]:string, [string]:any})[]
2022-11-28 18:04:32 +08:00
---@field plugins? LazyPlugin[]|fun(plugin:LazyPlugin):any?
---@field concurrency? number
2022-11-28 18:04:32 +08:00
---@class RunnerTask
---@field task? LazyTask
---@field step number
---@alias PipelineStep {task:string, opts?:TaskOptions }
2022-11-21 06:04:56 +08:00
---@class Runner
2024-06-25 01:55:09 +08:00
---@field _plugins table<string,LazyPlugin>
---@field _pipeline PipelineStep[]
2022-11-28 18:04:32 +08:00
---@field _on_done fun()[]
---@field _opts RunnerOpts
---@field _running? Async
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
2022-11-28 18:04:32 +08:00
local plugins = self._opts.plugins
2024-06-25 01:55:09 +08:00
---@type LazyPlugin[]
local pp = {}
if type(plugins) == "function" then
pp = vim.tbl_filter(plugins, Config.plugins)
else
pp = plugins or Config.plugins
end
self._plugins = {}
for _, plugin in ipairs(pp) do
self._plugins[plugin.name] = plugin
end
2022-11-28 18:04:32 +08:00
self._on_done = {}
---@param step string|(TaskOptions|{[1]:string})
self._pipeline = vim.tbl_map(function(step)
return type(step) == "string" and { task = step } or { task = step[1], opts = step }
end, self._opts.pipeline)
2022-11-21 06:04:56 +08:00
return self
end
2024-06-25 01:55:09 +08:00
function Runner:plugin(name)
return Config.plugins[name] or self._plugins[name]
end
function Runner:start()
---@async
self._running = Async.run(function()
self:_start()
end, {
on_done = function()
for _, cb in ipairs(self._on_done) do
cb()
end
end,
})
2022-11-21 06:04:56 +08:00
end
---@async
function Runner:_start()
2024-06-25 01:55:09 +08:00
---@type string[]
local names = vim.tbl_keys(self._plugins)
table.sort(names)
2022-11-21 06:04:56 +08:00
---@type table<string,RunnerTask>
local state = {}
local active = 1
local waiting = 0
---@type number?
local wait_step = nil
---@param resume? boolean
local function continue(resume)
active = #names
waiting = 0
wait_step = nil
for _, name in ipairs(names) do
state[name] = state[name] or { step = 0 }
local s = state[name]
local running = s.task and s.task:is_running()
local step = self._pipeline[s.step]
if step and step.task == "wait" and not resume then
waiting = waiting + 1
active = active - 1
wait_step = s.step
elseif not running then
local plugin = self:plugin(name)
2024-06-27 00:31:31 +08:00
if s.task and s.task:has_errors() then
active = active - 1
elseif s.step == #self._pipeline then
s.task = nil
active = active - 1
plugin._.working = false
elseif s.step < #self._pipeline then
s.step = s.step + 1
step = self._pipeline[s.step]
if step.task == "wait" then
plugin._.working = false
else
s.task = self:queue(plugin, step)
plugin._.working = not not s.task
end
end
end
end
end
while active > 0 do
continue()
if active == 0 and waiting > 0 then
local sync = self._pipeline[wait_step]
if sync and sync.opts and type(sync.opts.sync) == "function" then
sync.opts.sync(self)
end
continue(true)
end
coroutine.yield()
end
2022-11-21 06:04:56 +08:00
end
---@param plugin LazyPlugin
---@param step PipelineStep
---@return LazyTask?
function Runner:queue(plugin, step)
assert(self._running and self._running:running(), "Runner is not running")
local def = vim.split(step.task, ".", { plain = true })
---@type LazyTaskDef
local task_def = require("lazy.manage.task." .. def[1])[def[2]]
assert(task_def, "Task not found: " .. step.task)
local opts = step.opts or {}
2022-11-29 17:29:37 +08:00
if not (task_def.skip and task_def.skip(plugin, opts)) then
return Task.new(plugin, def[2], task_def.run, opts)
end
2022-11-21 06:04:56 +08:00
end
function Runner:is_running()
return self._running and self._running:running()
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)
if not self:is_running() then
if cb then
cb()
end
return self
2022-11-21 06:04:56 +08:00
end
2022-11-28 18:04:32 +08:00
if cb then
table.insert(self._on_done, cb)
else
-- sync wait
while self:is_running() do
vim.wait(10)
2022-11-21 06:04:56 +08:00
end
end
return self
2022-11-21 06:04:56 +08:00
end
return Runner