mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
feat: new task pipeline runner
This commit is contained in:
parent
97f44f9f65
commit
ab1b512545
7 changed files with 427 additions and 298 deletions
|
@ -1,24 +1,124 @@
|
|||
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?
|
||||
|
||||
---@class Runner
|
||||
---@field _tasks LazyTask[]
|
||||
---@field _plugins LazyPlugin[]
|
||||
---@field _running boolean
|
||||
---@field _on_done fun()[]
|
||||
---@field _waiting fun()[]
|
||||
---@field _opts RunnerOpts
|
||||
local Runner = {}
|
||||
|
||||
function Runner.new()
|
||||
local self = setmetatable({}, {
|
||||
__index = Runner,
|
||||
})
|
||||
---@param opts RunnerOpts
|
||||
function Runner.new(opts)
|
||||
local self = setmetatable({}, { __index = Runner })
|
||||
self._opts = opts or {}
|
||||
self._tasks = {}
|
||||
|
||||
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 = {}
|
||||
return self
|
||||
end
|
||||
|
||||
---@param task LazyTask
|
||||
function Runner:add(task)
|
||||
table.insert(self._tasks, task)
|
||||
task:start()
|
||||
---@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
|
||||
|
||||
function Runner:is_empty()
|
||||
return #self._tasks == 0
|
||||
---@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
|
||||
end
|
||||
|
||||
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)
|
||||
end
|
||||
|
||||
---@return LazyPlugin[]
|
||||
|
@ -33,33 +133,19 @@ function Runner:tasks()
|
|||
return self._tasks
|
||||
end
|
||||
|
||||
-- Execute the callback async when done.
|
||||
-- When no callback is specified, this will wait sync
|
||||
---@param cb? fun()
|
||||
function Runner:wait(cb)
|
||||
if #self._tasks == 0 then
|
||||
if #self._tasks == 0 or not self._running then
|
||||
return cb and cb()
|
||||
end
|
||||
|
||||
local done = false
|
||||
local check = vim.loop.new_check()
|
||||
|
||||
check:start(function()
|
||||
for _, task in ipairs(self._tasks) do
|
||||
if task.running then
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
check:stop()
|
||||
|
||||
done = true
|
||||
|
||||
if cb then
|
||||
vim.schedule(cb)
|
||||
end
|
||||
end)
|
||||
|
||||
if not cb then
|
||||
while not done do
|
||||
if cb then
|
||||
table.insert(self._on_done, cb)
|
||||
else
|
||||
-- sync wait
|
||||
while self._running do
|
||||
vim.wait(100)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue