@@ -2,6 +2,44 @@ local Config = require("lazy.core.config")
2
2
3
3
local M = {}
4
4
5
+ --- @type table<vim.loop.Process , true>
6
+ M .running = {}
7
+
8
+ M .signals = {
9
+ " HUP" ,
10
+ " INT" ,
11
+ " QUIT" ,
12
+ " ILL" ,
13
+ " TRAP" ,
14
+ " ABRT" ,
15
+ " BUS" ,
16
+ " FPE" ,
17
+ " KILL" ,
18
+ " USR1" ,
19
+ " SEGV" ,
20
+ " USR2" ,
21
+ " PIPE" ,
22
+ " ALRM" ,
23
+ " TERM" ,
24
+ " CHLD" ,
25
+ " CONT" ,
26
+ " STOP" ,
27
+ " TSTP" ,
28
+ " TTIN" ,
29
+ " TTOU" ,
30
+ " URG" ,
31
+ " XCPU" ,
32
+ " XFSZ" ,
33
+ " VTALRM" ,
34
+ " PROF" ,
35
+ " WINCH" ,
36
+ " IO" ,
37
+ " PWR" ,
38
+ " EMT" ,
39
+ " SYS" ,
40
+ " INFO" ,
41
+ }
42
+
5
43
--- @diagnostic disable-next-line : no-unknown
6
44
local uv = vim .loop
7
45
@@ -14,6 +52,7 @@ local uv = vim.loop
14
52
--- @field env ? string[]
15
53
16
54
--- @param opts ? ProcessOpts
55
+ --- @param cmd string
17
56
function M .spawn (cmd , opts )
18
57
opts = opts or {}
19
58
opts .timeout = opts .timeout or (Config .options .git and Config .options .git .timeout * 1000 )
@@ -44,9 +83,8 @@ function M.spawn(cmd, opts)
44
83
if opts .timeout then
45
84
timeout = uv .new_timer ()
46
85
timeout :start (opts .timeout , 0 , function ()
47
- if handle and not handle : is_closing ( ) then
86
+ if M . kill ( handle ) then
48
87
killed = true
49
- uv .process_kill (handle , " sigint" )
50
88
end
51
89
end )
52
90
end
@@ -57,6 +95,7 @@ function M.spawn(cmd, opts)
57
95
cwd = opts .cwd ,
58
96
env = env ,
59
97
}, function (exit_code , signal )
98
+ M .running [handle ] = nil
60
99
if timeout then
61
100
timeout :stop ()
62
101
timeout :close ()
@@ -74,6 +113,8 @@ function M.spawn(cmd, opts)
74
113
output = output :gsub (" [^\r\n ]+\r " , " " )
75
114
if killed then
76
115
output = output .. " \n " .. " Process was killed because it reached the timeout"
116
+ elseif signal ~= 0 then
117
+ output = output .. " \n " .. " Process was killed with SIG" .. M .signals [signal ]
77
118
end
78
119
79
120
vim .schedule (function ()
@@ -89,6 +130,7 @@ function M.spawn(cmd, opts)
89
130
end
90
131
return
91
132
end
133
+ M .running [handle ] = true
92
134
93
135
--- @param data ? string
94
136
local function on_output (err , data )
@@ -112,6 +154,20 @@ function M.spawn(cmd, opts)
112
154
return handle
113
155
end
114
156
157
+ function M .kill (handle )
158
+ if handle and not handle :is_closing () then
159
+ M .running [handle ] = nil
160
+ uv .process_kill (handle , " sigint" )
161
+ return true
162
+ end
163
+ end
164
+
165
+ function M .abort ()
166
+ for handle in pairs (M .running ) do
167
+ M .kill (handle )
168
+ end
169
+ end
170
+
115
171
--- @param cmd string[]
116
172
--- @param opts ? { cwd : string , env : table }
117
173
function M .exec (cmd , opts )
0 commit comments