mirror of
https://github.com/neovim/neovim.git
synced 2026-09-12 09:01:02 +00:00
Problem: Watcher failures are reported inconsistently, and callers cannot detect when a watcher is no longer usable. Solution: Route startup and event failures and unexpected inotifywait exits through an optional on_error callback. Log to nvim-watch.log by default. Ignore disappearing child directories and exits caused by cancellation. Let LSP log failures and notify once per message, using INFO for missing roots and ERROR otherwise, without interrupting registration. AI-assisted
399 lines
11 KiB
Lua
399 lines
11 KiB
Lua
local uv = vim.uv
|
|
local log = vim.log.new({ name = 'nvim-watch' })
|
|
|
|
local M = {}
|
|
|
|
--- @enum vim._watch.FileChangeType
|
|
--- Types of events watchers will emit.
|
|
M.FileChangeType = {
|
|
Created = 1,
|
|
Changed = 2,
|
|
Deleted = 3,
|
|
}
|
|
|
|
--- Count of currently-active watchers. Each "watcher" here is one call to vim._watch.watch(),
|
|
--- vim._watch.watchdirs(), or vim._watch.inotify() that hasn't been cancelled yet.
|
|
M.active = { watch = 0, watchdirs = 0, inotify = 0 }
|
|
|
|
--- Wraps a cancel function so the global counter is decremented exactly once, even if the caller
|
|
--- invokes the cancel function multiple times.
|
|
--- @param backend 'watch'|'watchdirs'|'inotify'
|
|
--- @param cancel fun()
|
|
--- @return fun()
|
|
local function tracked_cancel(backend, cancel)
|
|
M.active[backend] = M.active[backend] + 1
|
|
local done = false
|
|
return function()
|
|
if done then
|
|
return
|
|
end
|
|
done = true
|
|
M.active[backend] = M.active[backend] - 1
|
|
cancel()
|
|
end
|
|
end
|
|
|
|
--- @class vim._watch.Opts
|
|
---
|
|
--- @field debounce? integer ms
|
|
---
|
|
--- Handles watcher failures. Defaults to logging at ERROR in nvim-watch.log.
|
|
--- @field on_error? fun(err: string)
|
|
---
|
|
--- An |lpeg| pattern. Only changes to files whose full paths match the pattern
|
|
--- will be reported. Only matches against non-directoriess, all directories will
|
|
--- be watched for new potentially-matching files. exclude_pattern can be used to
|
|
--- filter out directories. When nil, matches any file name.
|
|
--- @field include_pattern? vim.lpeg.Pattern
|
|
---
|
|
--- An |lpeg| pattern. Only changes to files and directories whose full path does
|
|
--- not match the pattern will be reported. Matches against both files and
|
|
--- directories. With watchdirs(), excluding a subdirectory excludes its entire
|
|
--- subtree. When nil, matches nothing.
|
|
--- @field exclude_pattern? vim.lpeg.Pattern
|
|
|
|
--- @alias vim._watch.Callback fun(path: string, change_type: vim._watch.FileChangeType)
|
|
|
|
--- @class vim._watch.watch.Opts : vim._watch.Opts
|
|
--- @field uvflags? uv.fs_event_start.flags
|
|
|
|
--- Decides if `path` should be skipped.
|
|
---
|
|
--- @param path string
|
|
--- @param opts? vim._watch.Opts
|
|
local function skip(path, opts)
|
|
if not opts then
|
|
return false
|
|
end
|
|
|
|
if opts.include_pattern and opts.include_pattern:match(path) == nil then
|
|
return true
|
|
end
|
|
|
|
if opts.exclude_pattern and opts.exclude_pattern:match(path) ~= nil then
|
|
return true
|
|
end
|
|
|
|
return false
|
|
end
|
|
|
|
--- Initializes and starts a |uv_fs_event_t|
|
|
---
|
|
--- @param path string The path to watch
|
|
--- @param opts vim._watch.watch.Opts? Additional options:
|
|
--- - uvflags (table|nil)
|
|
--- Same flags as accepted by |uv.fs_event_start()|
|
|
--- @param callback vim._watch.Callback Callback for new events
|
|
--- @return fun() cancel Stops the watcher
|
|
function M.watch(path, opts, callback)
|
|
vim.validate('path', path, 'string')
|
|
vim.validate('opts', opts, 'table', true)
|
|
vim.validate('callback', callback, 'function')
|
|
|
|
opts = opts or {}
|
|
local on_error = opts.on_error or log.error
|
|
|
|
path = vim.fs.normalize(path)
|
|
local uvflags = opts and opts.uvflags or {}
|
|
local handle = assert(uv.new_fs_event())
|
|
|
|
local watching_dir = (uv.fs_stat(path) or {}).type == 'directory'
|
|
|
|
local _, start_err = handle:start(path, uvflags, function(err, filename, events)
|
|
if err then
|
|
return on_error(err)
|
|
end
|
|
local fullpath = path
|
|
if filename and watching_dir then
|
|
fullpath = vim.fs.normalize(vim.fs.joinpath(fullpath, filename))
|
|
end
|
|
|
|
if skip(fullpath, opts) then
|
|
return
|
|
end
|
|
|
|
--- @type vim._watch.FileChangeType
|
|
local change_type
|
|
if events.rename then
|
|
local _, staterr, staterrname = uv.fs_stat(fullpath)
|
|
if staterrname == 'ENOENT' then
|
|
change_type = M.FileChangeType.Deleted
|
|
else
|
|
if staterr then
|
|
return on_error(staterr)
|
|
end
|
|
change_type = M.FileChangeType.Created
|
|
end
|
|
elseif events.change then
|
|
change_type = M.FileChangeType.Changed
|
|
end
|
|
callback(fullpath, change_type)
|
|
end)
|
|
|
|
if start_err then
|
|
handle:close()
|
|
on_error(start_err)
|
|
return function() end
|
|
end
|
|
|
|
return tracked_cancel('watch', function()
|
|
local _, stop_err = handle:stop()
|
|
assert(not stop_err, stop_err)
|
|
local is_closing, close_err = handle:is_closing()
|
|
assert(not close_err, close_err)
|
|
if not is_closing then
|
|
handle:close()
|
|
end
|
|
end)
|
|
end
|
|
|
|
--- Initializes and starts a |uv_fs_event_t| recursively watching every directory underneath the
|
|
--- directory at path.
|
|
---
|
|
--- @param path string The path to watch. Must refer to a directory.
|
|
--- @param opts vim._watch.Opts? Additional options
|
|
--- @param callback vim._watch.Callback Callback for new events
|
|
--- @return fun() cancel Stops the watcher
|
|
function M.watchdirs(path, opts, callback)
|
|
vim.validate('path', path, 'string')
|
|
vim.validate('opts', opts, 'table', true)
|
|
vim.validate('callback', callback, 'function')
|
|
|
|
opts = opts or {}
|
|
local on_error = opts.on_error or log.error
|
|
local debounce = opts.debounce or 500
|
|
|
|
---@type table<string, uv.uv_fs_event_t> handle by fullpath
|
|
local handles = {}
|
|
|
|
local timer = assert(uv.new_timer())
|
|
|
|
--- Map of file path to boolean indicating if the file has been changed
|
|
--- at some point within the debounce cycle.
|
|
--- @type table<string, boolean>
|
|
local filechanges = {}
|
|
|
|
local process_changes --- @type fun()
|
|
|
|
--- @param filepath string
|
|
--- @return uv.fs_event_start.callback
|
|
local function create_on_change(filepath)
|
|
return function(err, filename, events)
|
|
if err then
|
|
return on_error(err)
|
|
end
|
|
local fullpath = vim.fs.joinpath(filepath, filename)
|
|
if skip(fullpath, opts) then
|
|
return
|
|
end
|
|
|
|
if not filechanges[fullpath] then
|
|
filechanges[fullpath] = events.change or false
|
|
end
|
|
timer:start(debounce, 0, process_changes)
|
|
end
|
|
end
|
|
|
|
process_changes = function()
|
|
-- Since the callback is debounced it may have also been deleted later on
|
|
-- so we always need to check the existence of the file:
|
|
-- stat succeeds, changed=true -> Changed
|
|
-- stat succeeds, changed=false -> Created
|
|
-- stat fails -> Removed
|
|
for fullpath, changed in pairs(filechanges) do
|
|
uv.fs_stat(fullpath, function(_, stat)
|
|
---@type vim._watch.FileChangeType
|
|
local change_type
|
|
if stat then
|
|
change_type = changed and M.FileChangeType.Changed or M.FileChangeType.Created
|
|
if stat.type == 'directory' then
|
|
local handle = handles[fullpath]
|
|
if not handle then
|
|
handle = assert(uv.new_fs_event())
|
|
handles[fullpath] = handle
|
|
local _, err, errname = handle:start(fullpath, {}, create_on_change(fullpath))
|
|
if err then
|
|
handle:close()
|
|
handles[fullpath] = nil
|
|
-- The directory may have disappeared since fs_stat().
|
|
if errname ~= 'ENOENT' then
|
|
on_error(err)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
else
|
|
change_type = M.FileChangeType.Deleted
|
|
local handle = handles[fullpath]
|
|
if handle then
|
|
if not handle:is_closing() then
|
|
handle:close()
|
|
end
|
|
handles[fullpath] = nil
|
|
end
|
|
end
|
|
callback(fullpath, change_type)
|
|
end)
|
|
end
|
|
filechanges = {}
|
|
end
|
|
|
|
local root_handle = assert(uv.new_fs_event())
|
|
handles[path] = root_handle
|
|
local _, start_err = root_handle:start(path, {}, create_on_change(path))
|
|
|
|
if start_err then
|
|
root_handle:close()
|
|
timer:close()
|
|
on_error(start_err)
|
|
return function() end
|
|
end
|
|
|
|
--- "640K ought to be enough for anyone"
|
|
--- Who has folders this deep?
|
|
local max_depth = 100
|
|
|
|
for name, type in
|
|
vim.fs.dir(path, {
|
|
depth = max_depth,
|
|
skip = function(dir)
|
|
return not opts.exclude_pattern
|
|
or opts.exclude_pattern:match(vim.fs.joinpath(path, dir)) == nil
|
|
end,
|
|
})
|
|
do
|
|
if type == 'directory' then
|
|
local filepath = vim.fs.joinpath(path, name)
|
|
if not skip(filepath, opts) then
|
|
local handle = assert(uv.new_fs_event())
|
|
handles[filepath] = handle
|
|
local _, err, errname = handle:start(filepath, {}, create_on_change(filepath))
|
|
if err then
|
|
handle:close()
|
|
handles[filepath] = nil
|
|
-- The directory may have disappeared since it was listed.
|
|
if errname ~= 'ENOENT' then
|
|
on_error(err)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
local function cancel()
|
|
for fullpath, handle in pairs(handles) do
|
|
if not handle:is_closing() then
|
|
handle:close()
|
|
end
|
|
handles[fullpath] = nil
|
|
end
|
|
timer:stop()
|
|
timer:close()
|
|
end
|
|
|
|
return tracked_cancel('watchdirs', cancel)
|
|
end
|
|
|
|
--- @param data string
|
|
--- @param opts vim._watch.Opts?
|
|
--- @param callback vim._watch.Callback
|
|
local function on_inotifywait_output(data, opts, callback)
|
|
local d = vim.split(data, '%s+')
|
|
|
|
-- only consider the last reported event
|
|
local path, event, file = d[1], d[2], d[#d]
|
|
local fullpath = vim.fs.joinpath(path, file)
|
|
|
|
if skip(fullpath, opts) then
|
|
return
|
|
end
|
|
|
|
--- @type integer
|
|
local change_type
|
|
|
|
if event == 'CREATE' then
|
|
change_type = M.FileChangeType.Created
|
|
elseif event == 'DELETE' then
|
|
change_type = M.FileChangeType.Deleted
|
|
elseif event == 'MODIFY' then
|
|
change_type = M.FileChangeType.Changed
|
|
elseif event == 'MOVED_FROM' then
|
|
change_type = M.FileChangeType.Deleted
|
|
elseif event == 'MOVED_TO' then
|
|
change_type = M.FileChangeType.Created
|
|
end
|
|
|
|
if change_type then
|
|
callback(fullpath, change_type)
|
|
end
|
|
end
|
|
|
|
--- @param path string The path to watch. Must refer to a directory.
|
|
--- @param opts vim._watch.Opts?
|
|
--- @param callback vim._watch.Callback Callback for new events
|
|
--- @return fun() cancel Stops the watcher
|
|
function M.inotify(path, opts, callback)
|
|
opts = opts or {}
|
|
local on_error = opts.on_error or log.error
|
|
local cancelled = false
|
|
local ok, obj = pcall(vim.system, {
|
|
'inotifywait',
|
|
'--quiet', -- suppress startup messages
|
|
'--no-dereference', -- don't follow symlinks
|
|
'--monitor', -- keep listening for events forever
|
|
'--recursive',
|
|
'--event',
|
|
'create',
|
|
'--event',
|
|
'delete',
|
|
'--event',
|
|
'modify',
|
|
'--event',
|
|
'move',
|
|
string.format('@%s/.git', path), -- ignore git directory
|
|
path,
|
|
}, {
|
|
stderr = function(err, data)
|
|
if err then
|
|
on_error(err)
|
|
return
|
|
end
|
|
|
|
if data and #vim.trim(data) > 0 then
|
|
if vim.fn.has('linux') == 1 and vim.startswith(data, 'Failed to watch') then
|
|
data = 'inotify(7) limit reached, see :h inotify-limitations for more info.'
|
|
end
|
|
on_error(data)
|
|
end
|
|
end,
|
|
stdout = function(err, data)
|
|
if err then
|
|
on_error(err)
|
|
return
|
|
end
|
|
|
|
for line in vim.gsplit(data or '', '\n', { plain = true, trimempty = true }) do
|
|
on_inotifywait_output(line, opts, callback)
|
|
end
|
|
end,
|
|
-- --latency is locale dependent but tostring() isn't and will always have '.' as decimal point.
|
|
env = { LC_NUMERIC = 'C' },
|
|
}, function(result)
|
|
if not cancelled then
|
|
on_error(('inotifywait exited with code %d'):format(result.code))
|
|
end
|
|
end)
|
|
|
|
if not ok then
|
|
on_error(obj)
|
|
return function() end
|
|
end
|
|
|
|
return tracked_cancel('inotify', function()
|
|
cancelled = true
|
|
obj:kill(2)
|
|
end)
|
|
end
|
|
|
|
return M
|