|
|
local uv = vim.uv |
|
|
|
|
|
local M = {} |
|
|
|
|
|
|
|
|
|
|
|
M.FileChangeType = { |
|
|
Created = 1, |
|
|
Changed = 2, |
|
|
Deleted = 3, |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 {} |
|
|
|
|
|
path = vim.fs.normalize(path) |
|
|
local uvflags = opts and opts.uvflags or {} |
|
|
local handle = assert(uv.new_fs_event()) |
|
|
|
|
|
local _, start_err, start_errname = handle:start(path, uvflags, function(err, filename, events) |
|
|
assert(not err, err) |
|
|
local fullpath = path |
|
|
if filename then |
|
|
fullpath = vim.fs.normalize(vim.fs.joinpath(fullpath, filename)) |
|
|
end |
|
|
|
|
|
if skip(fullpath, opts) then |
|
|
return |
|
|
end |
|
|
|
|
|
|
|
|
local change_type |
|
|
if events.rename then |
|
|
local _, staterr, staterrname = uv.fs_stat(fullpath) |
|
|
if staterrname == 'ENOENT' then |
|
|
change_type = M.FileChangeType.Deleted |
|
|
else |
|
|
assert(not staterr, staterr) |
|
|
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 |
|
|
if start_errname == 'ENOENT' then |
|
|
|
|
|
|
|
|
vim.notify_once(('watch.watch: %s'):format(start_err), vim.log.levels.INFO) |
|
|
end |
|
|
|
|
|
return function() end |
|
|
end |
|
|
|
|
|
return 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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 debounce = opts.debounce or 500 |
|
|
|
|
|
|
|
|
local handles = {} |
|
|
|
|
|
local timer = assert(uv.new_timer()) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local filechanges = {} |
|
|
|
|
|
local process_changes |
|
|
|
|
|
|
|
|
|
|
|
local function create_on_change(filepath) |
|
|
return function(err, filename, events) |
|
|
assert(not err, err) |
|
|
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() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for fullpath, changed in pairs(filechanges) do |
|
|
uv.fs_stat(fullpath, function(_, stat) |
|
|
|
|
|
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 |
|
|
handle:start(fullpath, {}, create_on_change(fullpath)) |
|
|
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, start_errname = root_handle:start(path, {}, create_on_change(path)) |
|
|
|
|
|
if start_err then |
|
|
if start_errname == 'ENOENT' then |
|
|
|
|
|
|
|
|
vim.notify_once(('watch.watchdirs: %s'):format(start_err), vim.log.levels.INFO) |
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
local max_depth = 100 |
|
|
|
|
|
for name, type in vim.fs.dir(path, { depth = max_depth }) 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 |
|
|
handle:start(filepath, {}, create_on_change(filepath)) |
|
|
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 cancel |
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local function on_inotifywait_output(data, opts, callback) |
|
|
local d = vim.split(data, '%s+') |
|
|
|
|
|
|
|
|
local path, event, file = d[1], d[2], d[#d] |
|
|
local fullpath = vim.fs.joinpath(path, file) |
|
|
|
|
|
if skip(fullpath, opts) then |
|
|
return |
|
|
end |
|
|
|
|
|
|
|
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function M.inotify(path, opts, callback) |
|
|
local obj = vim.system({ |
|
|
'inotifywait', |
|
|
'--quiet', |
|
|
'--no-dereference', |
|
|
'--monitor', |
|
|
'--recursive', |
|
|
'--event', |
|
|
'create', |
|
|
'--event', |
|
|
'delete', |
|
|
'--event', |
|
|
'modify', |
|
|
'--event', |
|
|
'move', |
|
|
string.format('@%s/.git', path), |
|
|
path, |
|
|
}, { |
|
|
stderr = function(err, data) |
|
|
if err then |
|
|
error(err) |
|
|
end |
|
|
|
|
|
if data and #vim.trim(data) > 0 then |
|
|
vim.schedule(function() |
|
|
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 |
|
|
|
|
|
vim.notify('inotify: ' .. data, vim.log.levels.ERROR) |
|
|
end) |
|
|
end |
|
|
end, |
|
|
stdout = function(err, data) |
|
|
if err then |
|
|
error(err) |
|
|
end |
|
|
|
|
|
for line in vim.gsplit(data or '', '\n', { plain = true, trimempty = true }) do |
|
|
on_inotifywait_output(line, opts, callback) |
|
|
end |
|
|
end, |
|
|
|
|
|
env = { LC_NUMERIC = 'C' }, |
|
|
}) |
|
|
|
|
|
return function() |
|
|
obj:kill(2) |
|
|
end |
|
|
end |
|
|
|
|
|
return M |
|
|
|