mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fix(vim.system): make timeout work properly
Mimic the behaviour of timeout(1) from coreutils.
This commit is contained in:
parent
a44521f46e
commit
6d5f12efd2
@ -1777,7 +1777,9 @@ vim.system({cmd}, {opts}, {on_exit}) *vim.system()*
|
|||||||
`fun(err: string, data: string)`. Defaults to `true`.
|
`fun(err: string, data: string)`. Defaults to `true`.
|
||||||
• text: (boolean) Handle stdout and stderr as text.
|
• text: (boolean) Handle stdout and stderr as text.
|
||||||
Replaces `\r\n` with `\n`.
|
Replaces `\r\n` with `\n`.
|
||||||
• timeout: (integer)
|
• timeout: (integer) Run the command with a time limit.
|
||||||
|
Upon timeout the process is sent the TERM signal (15) and
|
||||||
|
the exit code is set to 124.
|
||||||
• detach: (boolean) If true, spawn the child process in a
|
• detach: (boolean) If true, spawn the child process in a
|
||||||
detached state - this will make it a process group
|
detached state - this will make it a process group
|
||||||
leader, and will effectively enable the child to keep
|
leader, and will effectively enable the child to keep
|
||||||
@ -1792,14 +1794,16 @@ vim.system({cmd}, {opts}, {on_exit}) *vim.system()*
|
|||||||
Return: ~
|
Return: ~
|
||||||
SystemObj Object with the fields:
|
SystemObj Object with the fields:
|
||||||
• pid (integer) Process ID
|
• pid (integer) Process ID
|
||||||
• wait (fun(timeout: integer|nil): SystemCompleted)
|
• wait (fun(timeout: integer|nil): SystemCompleted) Wait for the
|
||||||
|
process to complete. Upon timeout the process is sent the KILL
|
||||||
|
signal (9) and the exit code is set to 124.
|
||||||
• SystemCompleted is an object with the fields:
|
• SystemCompleted is an object with the fields:
|
||||||
• code: (integer)
|
• code: (integer)
|
||||||
• signal: (integer)
|
• signal: (integer)
|
||||||
• stdout: (string), nil if stdout argument is passed
|
• stdout: (string), nil if stdout argument is passed
|
||||||
• stderr: (string), nil if stderr argument is passed
|
• stderr: (string), nil if stderr argument is passed
|
||||||
|
|
||||||
• kill (fun(signal: integer))
|
• kill (fun(signal: integer|string))
|
||||||
• write (fun(data: string|nil)) Requires `stdin=true`. Pass `nil` to
|
• write (fun(data: string|nil)) Requires `stdin=true`. Pass `nil` to
|
||||||
close the stream.
|
close the stream.
|
||||||
• is_closing (fun(): boolean)
|
• is_closing (fun(): boolean)
|
||||||
|
@ -107,7 +107,8 @@ vim.log = {
|
|||||||
--- Handle output from stdout. When passed as a function must have the signature `fun(err: string, data: string)`.
|
--- Handle output from stdout. When passed as a function must have the signature `fun(err: string, data: string)`.
|
||||||
--- Defaults to `true`.
|
--- Defaults to `true`.
|
||||||
--- - text: (boolean) Handle stdout and stderr as text. Replaces `\r\n` with `\n`.
|
--- - text: (boolean) Handle stdout and stderr as text. Replaces `\r\n` with `\n`.
|
||||||
--- - timeout: (integer)
|
--- - timeout: (integer) Run the command with a time limit. Upon timeout the process is sent the
|
||||||
|
--- TERM signal (15) and the exit code is set to 124.
|
||||||
--- - detach: (boolean) If true, spawn the child process in a detached state - this will make it
|
--- - detach: (boolean) If true, spawn the child process in a detached state - this will make it
|
||||||
--- a process group leader, and will effectively enable the child to keep running after the
|
--- a process group leader, and will effectively enable the child to keep running after the
|
||||||
--- parent exits. Note that the child process will still keep the parent's event loop alive
|
--- parent exits. Note that the child process will still keep the parent's event loop alive
|
||||||
@ -118,13 +119,14 @@ vim.log = {
|
|||||||
---
|
---
|
||||||
--- @return SystemObj Object with the fields:
|
--- @return SystemObj Object with the fields:
|
||||||
--- - pid (integer) Process ID
|
--- - pid (integer) Process ID
|
||||||
--- - wait (fun(timeout: integer|nil): SystemCompleted)
|
--- - wait (fun(timeout: integer|nil): SystemCompleted) Wait for the process to complete. Upon
|
||||||
|
--- timeout the process is sent the KILL signal (9) and the exit code is set to 124.
|
||||||
--- - SystemCompleted is an object with the fields:
|
--- - SystemCompleted is an object with the fields:
|
||||||
--- - code: (integer)
|
--- - code: (integer)
|
||||||
--- - signal: (integer)
|
--- - signal: (integer)
|
||||||
--- - stdout: (string), nil if stdout argument is passed
|
--- - stdout: (string), nil if stdout argument is passed
|
||||||
--- - stderr: (string), nil if stderr argument is passed
|
--- - stderr: (string), nil if stderr argument is passed
|
||||||
--- - kill (fun(signal: integer))
|
--- - kill (fun(signal: integer|string))
|
||||||
--- - write (fun(data: string|nil)) Requires `stdin=true`. Pass `nil` to close the stream.
|
--- - write (fun(data: string|nil)) Requires `stdin=true`. Pass `nil` to close the stream.
|
||||||
--- - is_closing (fun(): boolean)
|
--- - is_closing (fun(): boolean)
|
||||||
function vim.system(cmd, opts, on_exit)
|
function vim.system(cmd, opts, on_exit)
|
||||||
|
@ -2,8 +2,8 @@ local uv = vim.uv
|
|||||||
|
|
||||||
--- @class SystemOpts
|
--- @class SystemOpts
|
||||||
--- @field stdin? string|string[]|true
|
--- @field stdin? string|string[]|true
|
||||||
--- @field stdout? fun(err:string, data: string)|false
|
--- @field stdout? fun(err:string?, data: string?)|false
|
||||||
--- @field stderr? fun(err:string, data: string)|false
|
--- @field stderr? fun(err:string?, data: string?)|false
|
||||||
--- @field cwd? string
|
--- @field cwd? string
|
||||||
--- @field env? table<string,string|number>
|
--- @field env? table<string,string|number>
|
||||||
--- @field clear_env? boolean
|
--- @field clear_env? boolean
|
||||||
@ -18,39 +18,46 @@ local uv = vim.uv
|
|||||||
--- @field stderr? string
|
--- @field stderr? string
|
||||||
|
|
||||||
--- @class SystemState
|
--- @class SystemState
|
||||||
--- @field cmd string[]
|
|
||||||
--- @field handle? uv.uv_process_t
|
--- @field handle? uv.uv_process_t
|
||||||
--- @field timer? uv.uv_timer_t
|
--- @field timer? uv.uv_timer_t
|
||||||
--- @field pid? integer
|
--- @field pid? integer
|
||||||
--- @field timeout? integer
|
--- @field timeout? integer
|
||||||
--- @field done? boolean
|
--- @field done? boolean|'timeout'
|
||||||
--- @field stdin? uv.uv_stream_t
|
--- @field stdin? uv.uv_stream_t
|
||||||
--- @field stdout? uv.uv_stream_t
|
--- @field stdout? uv.uv_stream_t
|
||||||
--- @field stderr? uv.uv_stream_t
|
--- @field stderr? uv.uv_stream_t
|
||||||
--- @field result? SystemCompleted
|
--- @field result? SystemCompleted
|
||||||
|
|
||||||
---@param state SystemState
|
--- @enum vim.SystemSig
|
||||||
local function close_handles(state)
|
local SIG = {
|
||||||
for _, handle in pairs({ state.handle, state.stdin, state.stdout, state.stderr }) do
|
HUP = 1, -- Hangup
|
||||||
if not handle:is_closing() then
|
INT = 2, -- Interrupt from keyboard
|
||||||
|
KILL = 9, -- Kill signal
|
||||||
|
TERM = 15, -- Termination signal
|
||||||
|
-- STOP = 17,19,23 -- Stop the process
|
||||||
|
}
|
||||||
|
|
||||||
|
---@param handle uv.uv_handle_t?
|
||||||
|
local function close_handle(handle)
|
||||||
|
if handle and not handle:is_closing() then
|
||||||
handle:close()
|
handle:close()
|
||||||
end
|
end
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
--- @param cmd string[]
|
---@param state SystemState
|
||||||
--- @return SystemCompleted
|
local function close_handles(state)
|
||||||
local function timeout_result(cmd)
|
close_handle(state.handle)
|
||||||
local cmd_str = table.concat(cmd, ' ')
|
close_handle(state.stdin)
|
||||||
local err = string.format("Command timed out: '%s'", cmd_str)
|
close_handle(state.stdout)
|
||||||
return { code = 0, signal = 2, stdout = '', stderr = err }
|
close_handle(state.stderr)
|
||||||
|
close_handle(state.timer)
|
||||||
end
|
end
|
||||||
|
|
||||||
--- @class SystemObj
|
--- @class SystemObj
|
||||||
--- @field pid integer
|
--- @field pid integer
|
||||||
--- @field private _state SystemState
|
--- @field private _state SystemState
|
||||||
--- @field wait fun(self: SystemObj, timeout?: integer): SystemCompleted
|
--- @field wait fun(self: SystemObj, timeout?: integer): SystemCompleted
|
||||||
--- @field kill fun(self: SystemObj, signal: integer)
|
--- @field kill fun(self: SystemObj, signal: integer|string)
|
||||||
--- @field write fun(self: SystemObj, data?: string|string[])
|
--- @field write fun(self: SystemObj, data?: string|string[])
|
||||||
--- @field is_closing fun(self: SystemObj): boolean?
|
--- @field is_closing fun(self: SystemObj): boolean?
|
||||||
local SystemObj = {}
|
local SystemObj = {}
|
||||||
@ -69,6 +76,13 @@ function SystemObj:kill(signal)
|
|||||||
self._state.handle:kill(signal)
|
self._state.handle:kill(signal)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- @package
|
||||||
|
--- @param signal? vim.SystemSig
|
||||||
|
function SystemObj:_timeout(signal)
|
||||||
|
self._state.done = 'timeout'
|
||||||
|
self:kill(signal or SIG.TERM)
|
||||||
|
end
|
||||||
|
|
||||||
local MAX_TIMEOUT = 2 ^ 31
|
local MAX_TIMEOUT = 2 ^ 31
|
||||||
|
|
||||||
--- @param timeout? integer
|
--- @param timeout? integer
|
||||||
@ -76,13 +90,16 @@ local MAX_TIMEOUT = 2 ^ 31
|
|||||||
function SystemObj:wait(timeout)
|
function SystemObj:wait(timeout)
|
||||||
local state = self._state
|
local state = self._state
|
||||||
|
|
||||||
vim.wait(timeout or state.timeout or MAX_TIMEOUT, function()
|
local done = vim.wait(timeout or state.timeout or MAX_TIMEOUT, function()
|
||||||
return state.done
|
return state.result ~= nil
|
||||||
end)
|
end)
|
||||||
|
|
||||||
if not state.done then
|
if not done then
|
||||||
self:kill(6) -- 'sigint'
|
-- Send sigkill since this cannot be caught
|
||||||
state.result = timeout_result(state.cmd)
|
self:_timeout(SIG.KILL)
|
||||||
|
vim.wait(timeout or state.timeout or MAX_TIMEOUT, function()
|
||||||
|
return state.result ~= nil
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
return state.result
|
return state.result
|
||||||
@ -124,9 +141,9 @@ function SystemObj:is_closing()
|
|||||||
return handle == nil or handle:is_closing()
|
return handle == nil or handle:is_closing()
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param output function|'false'
|
---@param output fun(err:string?, data: string?)|false
|
||||||
---@return uv.uv_stream_t?
|
---@return uv.uv_stream_t?
|
||||||
---@return function? Handler
|
---@return fun(err:string?, data: string?)? Handler
|
||||||
local function setup_output(output)
|
local function setup_output(output)
|
||||||
if output == nil then
|
if output == nil then
|
||||||
return assert(uv.new_pipe(false)), nil
|
return assert(uv.new_pipe(false)), nil
|
||||||
@ -224,6 +241,19 @@ local function spawn(cmd, opts, on_exit, on_error)
|
|||||||
return handle, pid_or_err --[[@as integer]]
|
return handle, pid_or_err --[[@as integer]]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param timeout integer
|
||||||
|
---@param cb fun()
|
||||||
|
---@return uv.uv_timer_t
|
||||||
|
local function timer_oneshot(timeout, cb)
|
||||||
|
local timer = assert(uv.new_timer())
|
||||||
|
timer:start(timeout, 0, function()
|
||||||
|
timer:stop()
|
||||||
|
timer:close()
|
||||||
|
cb()
|
||||||
|
end)
|
||||||
|
return timer
|
||||||
|
end
|
||||||
|
|
||||||
--- Run a system command
|
--- Run a system command
|
||||||
---
|
---
|
||||||
--- @param cmd string[]
|
--- @param cmd string[]
|
||||||
@ -267,10 +297,6 @@ function M.run(cmd, opts, on_exit)
|
|||||||
hide = true,
|
hide = true,
|
||||||
}, function(code, signal)
|
}, function(code, signal)
|
||||||
close_handles(state)
|
close_handles(state)
|
||||||
if state.timer then
|
|
||||||
state.timer:stop()
|
|
||||||
state.timer:close()
|
|
||||||
end
|
|
||||||
|
|
||||||
local check = assert(uv.new_check())
|
local check = assert(uv.new_check())
|
||||||
|
|
||||||
@ -283,7 +309,14 @@ function M.run(cmd, opts, on_exit)
|
|||||||
check:stop()
|
check:stop()
|
||||||
check:close()
|
check:close()
|
||||||
|
|
||||||
|
if state.done == nil then
|
||||||
state.done = true
|
state.done = true
|
||||||
|
end
|
||||||
|
|
||||||
|
if code == 0 and state.done == 'timeout' then
|
||||||
|
code = 124
|
||||||
|
end
|
||||||
|
|
||||||
state.result = {
|
state.result = {
|
||||||
code = code,
|
code = code,
|
||||||
signal = signal,
|
signal = signal,
|
||||||
@ -317,16 +350,9 @@ function M.run(cmd, opts, on_exit)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if opts.timeout then
|
if opts.timeout then
|
||||||
state.timer = assert(uv.new_timer())
|
state.timer = timer_oneshot(opts.timeout, function()
|
||||||
state.timer:start(opts.timeout, 0, function()
|
|
||||||
state.timer:stop()
|
|
||||||
state.timer:close()
|
|
||||||
if state.handle and state.handle:is_active() then
|
if state.handle and state.handle:is_active() then
|
||||||
obj:kill(6) --- 'sigint'
|
obj:_timeout()
|
||||||
state.result = timeout_result(state.cmd)
|
|
||||||
if on_exit then
|
|
||||||
on_exit(state.result)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
@ -5,27 +5,39 @@ local eq = helpers.eq
|
|||||||
|
|
||||||
local function system_sync(cmd, opts)
|
local function system_sync(cmd, opts)
|
||||||
return exec_lua([[
|
return exec_lua([[
|
||||||
return vim.system(...):wait()
|
local obj = vim.system(...)
|
||||||
|
local pid = obj.pid
|
||||||
|
local res = obj:wait()
|
||||||
|
|
||||||
|
-- Check the process is no longer running
|
||||||
|
vim.fn.systemlist({'ps', 'p', tostring(pid)})
|
||||||
|
assert(vim.v.shell_error == 1, 'process still exists')
|
||||||
|
|
||||||
|
return res
|
||||||
]], cmd, opts)
|
]], cmd, opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function system_async(cmd, opts)
|
local function system_async(cmd, opts)
|
||||||
exec_lua([[
|
return exec_lua([[
|
||||||
local cmd, opts = ...
|
local cmd, opts = ...
|
||||||
_G.done = false
|
_G.done = false
|
||||||
vim.system(cmd, opts, function(obj)
|
local obj = vim.system(cmd, opts, function(obj)
|
||||||
_G.done = true
|
_G.done = true
|
||||||
_G.ret = obj
|
_G.ret = obj
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
local done = vim.wait(10000, function()
|
||||||
|
return _G.done
|
||||||
|
end)
|
||||||
|
|
||||||
|
assert(done, 'process did not exit')
|
||||||
|
|
||||||
|
-- Check the process is no longer running
|
||||||
|
vim.fn.systemlist({'ps', 'p', tostring(obj.pid)})
|
||||||
|
assert(vim.v.shell_error == 1, 'process still exists')
|
||||||
|
|
||||||
|
return _G.ret
|
||||||
]], cmd, opts)
|
]], cmd, opts)
|
||||||
|
|
||||||
while true do
|
|
||||||
if exec_lua[[return _G.done]] then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return exec_lua[[return _G.ret]]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe('vim.system', function()
|
describe('vim.system', function()
|
||||||
@ -43,12 +55,12 @@ describe('vim.system', function()
|
|||||||
eq('hellocat', system({ 'cat' }, { stdin = 'hellocat', text = true }).stdout)
|
eq('hellocat', system({ 'cat' }, { stdin = 'hellocat', text = true }).stdout)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
it ('supports timeout', function()
|
it('supports timeout', function()
|
||||||
eq({
|
eq({
|
||||||
code = 0,
|
code = 124,
|
||||||
signal = 2,
|
signal = 15,
|
||||||
stdout = '',
|
stdout = '',
|
||||||
stderr = "Command timed out: 'sleep 10'"
|
stderr = ''
|
||||||
}, system({ 'sleep', '10' }, { timeout = 1 }))
|
}, system({ 'sleep', '10' }, { timeout = 1 }))
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user