Skip to content

Commit 1fad617

Browse files
committed
fix(async): make asyncs abortable
1 parent c882227 commit 1fad617

File tree

7 files changed

+29
-8
lines changed

7 files changed

+29
-8
lines changed

lua/lazy/async.lua

+17-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ end
7979
function Async:suspend(yield)
8080
self._suspended = true
8181
if coroutine.running() == self._co and yield ~= false then
82-
coroutine.yield()
82+
M.yield()
8383
end
8484
end
8585

@@ -132,12 +132,25 @@ function Async:step()
132132
return self:running()
133133
end
134134

135+
function M.abort()
136+
for _, async in ipairs(M._active) do
137+
coroutine.resume(async._co, "abort")
138+
end
139+
end
140+
141+
function M.yield()
142+
if coroutine.yield() == "abort" then
143+
error("aborted", 2)
144+
end
145+
end
146+
135147
function M.step()
136148
local start = vim.uv.hrtime()
137149
for _ = 1, #M._active do
138-
if vim.uv.hrtime() - start > M.BUDGET * 1e6 then
150+
if Util.exiting() or vim.uv.hrtime() - start > M.BUDGET * 1e6 then
139151
break
140152
end
153+
141154
local state = table.remove(M._active, 1)
142155
if state:step() then
143156
if state._suspended then
@@ -153,7 +166,7 @@ function M.step()
153166
end
154167

155168
-- M.debug()
156-
if #M._active == 0 then
169+
if #M._active == 0 or Util.exiting() then
157170
return M._executor:stop()
158171
end
159172
end
@@ -183,7 +196,7 @@ function M.add(async)
183196
end
184197

185198
function M._run()
186-
if not M._executor:is_active() then
199+
if not Util.exiting() and not M._executor:is_active() then
187200
M._executor:start(vim.schedule_wrap(M.step))
188201
end
189202
end

lua/lazy/core/util.lua

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ function M.track(data, time)
2929
end
3030
end
3131

32+
function M.exiting()
33+
return vim.v.exiting ~= vim.NIL
34+
end
35+
3236
---@generic T
3337
---@param list T[]
3438
---@param fn fun(v: T):boolean?

lua/lazy/manage/process.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function Process:_run()
9393
end)
9494
self:suspend()
9595
while not (self.handle:is_closing() and stdout:is_closing() and stderr:is_closing()) do
96-
coroutine.yield()
96+
Async.yield()
9797
end
9898
else
9999
self.data = "Failed to spawn process " .. self.cmd .. " " .. vim.inspect(self.opts)

lua/lazy/view/float.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ end
252252
---@param fn fun(self?)
253253
---@param desc? string
254254
---@param mode? string[]
255-
function M:on_key(key, fn, desc,mode)
255+
function M:on_key(key, fn, desc, mode)
256256
vim.keymap.set(mode or "n", key, function()
257257
fn(self)
258258
end, {
@@ -295,6 +295,7 @@ function M:close(opts)
295295
vim.diagnostic.reset(Config.ns, buf)
296296
vim.api.nvim_buf_delete(buf, { force = true })
297297
end
298+
vim.cmd.redraw()
298299
end)
299300
end
300301

lua/lazy/view/init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ function M.create()
8383

8484
vim.keymap.set("n", ViewConfig.keys.abort, function()
8585
require("lazy.manage.process").abort()
86+
require("lazy.async").abort()
8687
return ViewConfig.keys.abort
8788
end, { silent = true, buffer = self.buf, expr = true })
8889

tests/manage/runner_spec.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local Async = require("lazy.async")
12
local Runner = require("lazy.manage.runner")
23

34
describe("runner", function()
@@ -33,7 +34,7 @@ describe("runner", function()
3334
---@async
3435
---@param task LazyTask
3536
run = function(task)
36-
coroutine.yield()
37+
Async.yield()
3738
table.insert(runs, { plugin = task.plugin.name, task = task.name })
3839
end,
3940
}

tests/manage/task_spec.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
--# selene:allow(incorrect_standard_library_use)
2+
local Async = require("lazy.async")
23
local Task = require("lazy.manage.task")
34

45
describe("task", function()
@@ -42,7 +43,7 @@ describe("task", function()
4243
local running = true
4344
---@async
4445
local task = Task.new(plugin, "test", function()
45-
coroutine.yield()
46+
Async.yield()
4647
running = false
4748
end, opts)
4849
assert(task:running())

0 commit comments

Comments
 (0)