lazy.nvim/lua/lazy/manage/checker.lua

94 lines
2.3 KiB
Lua
Raw Normal View History

2022-12-06 03:49:23 +08:00
local Config = require("lazy.core.config")
local Manage = require("lazy.manage")
local Util = require("lazy.util")
local Plugin = require("lazy.core.plugin")
2022-12-06 03:49:23 +08:00
local Git = require("lazy.manage.git")
local State = require("lazy.state")
2022-12-06 03:49:23 +08:00
local M = {}
M.running = false
M.updated = {}
M.reported = {}
2022-12-06 03:49:23 +08:00
function M.start()
M.fast_check()
if M.schedule() > 0 then
Manage.log({
clear = false,
show = false,
check = true,
concurrency = Config.options.checker.concurrency,
})
end
end
function M.schedule()
State.read() -- update state
local next_check = State.checker.last_check + Config.options.checker.frequency - os.time()
next_check = math.max(next_check, 0)
vim.defer_fn(M.check, next_check * 1000)
return next_check
2022-12-06 03:49:23 +08:00
end
---@param opts? {report:boolean} report defaults to true
function M.fast_check(opts)
opts = opts or {}
2022-12-06 03:49:23 +08:00
for _, plugin in pairs(Config.plugins) do
if not plugin.pin and plugin._.installed then
plugin._.updates = nil
local info = Git.info(plugin.dir)
local ok, target = pcall(Git.get_target, plugin)
if ok and info and target and not Git.eq(info, target) then
plugin._.updates = { from = info, to = target }
end
2022-12-06 03:49:23 +08:00
end
end
M.report(opts.report ~= false)
2022-12-06 03:49:23 +08:00
end
function M.check()
State.checker.last_check = os.time()
State.write() -- update state
local errors = false
for _, plugin in pairs(Config.plugins) do
if Plugin.has_errors(plugin) then
errors = true
break
end
end
if errors then
M.schedule()
else
Manage.check({
clear = false,
show = false,
concurrency = Config.options.checker.concurrency,
}):wait(function()
M.report()
M.schedule()
end)
end
2022-12-06 03:49:23 +08:00
end
---@param notify? boolean
function M.report(notify)
2022-12-06 03:49:23 +08:00
local lines = {}
M.updated = {}
2022-12-06 03:49:23 +08:00
for _, plugin in pairs(Config.plugins) do
if plugin._.updates then
2022-12-06 03:49:23 +08:00
table.insert(M.updated, plugin.name)
if not vim.tbl_contains(M.reported, plugin.name) then
table.insert(lines, "- **" .. plugin.name .. "**")
table.insert(M.reported, plugin.name)
end
2022-12-06 03:49:23 +08:00
end
end
if #lines > 0 and notify and Config.options.checker.notify and not Config.headless() then
2022-12-06 03:49:23 +08:00
table.insert(lines, 1, "# Plugin Updates")
Util.info(lines)
end
end
return M