|
| 1 | +local Cache = require("lazy.core.cache") |
| 2 | +local Config = require("lazy.core.config") |
| 3 | +local Util = require("lazy.util") |
| 4 | +local Plugin = require("lazy.core.plugin") |
| 5 | + |
| 6 | +local M = {} |
| 7 | + |
| 8 | +---@type table<string, CacheHash> |
| 9 | +M.files = {} |
| 10 | + |
| 11 | +---@type vim.loop.Timer |
| 12 | +M.timer = nil |
| 13 | +M.main = nil |
| 14 | +M.root = nil |
| 15 | + |
| 16 | +function M.enable() |
| 17 | + if M.timer then |
| 18 | + M.timer:stop() |
| 19 | + end |
| 20 | + if type(Config.spec) == "string" then |
| 21 | + M.timer = vim.loop.new_timer() |
| 22 | + M.root = vim.fn.stdpath("config") .. "/lua/" .. Config.spec:gsub("%.", "/") |
| 23 | + M.main = vim.loop.fs_stat(M.root .. ".lua") and (M.root .. ".lua") or (M.root .. "/init.lua") |
| 24 | + M.check(true) |
| 25 | + M.timer:start(2000, 2000, M.check) |
| 26 | + end |
| 27 | +end |
| 28 | + |
| 29 | +function M.disable() |
| 30 | + if M.timer then |
| 31 | + M.timer:stop() |
| 32 | + M.timer = nil |
| 33 | + end |
| 34 | +end |
| 35 | + |
| 36 | +function M.check(start) |
| 37 | + ---@type table<string,true> |
| 38 | + local checked = {} |
| 39 | + ---@type {file:string, what:string}[] |
| 40 | + local changes = {} |
| 41 | + |
| 42 | + -- spec is a module |
| 43 | + local function check(_, modpath) |
| 44 | + checked[modpath] = true |
| 45 | + local hash = Cache.hash(modpath) |
| 46 | + if hash then |
| 47 | + if M.files[modpath] then |
| 48 | + if not Cache.eq(M.files[modpath], hash) then |
| 49 | + M.files[modpath] = hash |
| 50 | + table.insert(changes, { file = modpath, what = "changed" }) |
| 51 | + end |
| 52 | + else |
| 53 | + M.files[modpath] = hash |
| 54 | + table.insert(changes, { file = modpath, what = "added" }) |
| 55 | + end |
| 56 | + end |
| 57 | + end |
| 58 | + |
| 59 | + check(nil, M.main) |
| 60 | + Util.lsmod(M.root, check) |
| 61 | + |
| 62 | + for file in pairs(M.files) do |
| 63 | + if not checked[file] then |
| 64 | + table.insert(changes, { file = file, what = "deleted" }) |
| 65 | + M.files[file] = nil |
| 66 | + end |
| 67 | + end |
| 68 | + |
| 69 | + if not (start or #changes == 0) then |
| 70 | + vim.schedule(function() |
| 71 | + local lines = { "# Config Change Detected. Reloading...", "" } |
| 72 | + for _, change in ipairs(changes) do |
| 73 | + table.insert(lines, "- **" .. change.what .. "**: `" .. vim.fn.fnamemodify(change.file, ":p:~:.") .. "`") |
| 74 | + end |
| 75 | + Util.warn(lines) |
| 76 | + Plugin.load() |
| 77 | + vim.cmd([[do User LazyRender]]) |
| 78 | + end) |
| 79 | + end |
| 80 | +end |
| 81 | + |
| 82 | +return M |
0 commit comments