Skip to content

Commit fd8229d

Browse files
committed
fix(pkg): versioning and reload specs when pkg-cache is dirty
1 parent 183f59e commit fd8229d

File tree

5 files changed

+59
-48
lines changed

5 files changed

+59
-48
lines changed

lua/lazy/core/plugin.lua

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
local Config = require("lazy.core.config")
22
local Meta = require("lazy.core.meta")
3+
local Pkg = require("lazy.pkg")
34
local Util = require("lazy.core.util")
45

56
---@class LazyCorePlugin
@@ -332,6 +333,12 @@ function M.load()
332333
Util.track("state")
333334
M.update_state()
334335
Util.track()
336+
337+
if Config.options.pkg.enabled and Pkg.dirty then
338+
Pkg.update()
339+
return M.load()
340+
end
341+
335342
M.loading = false
336343
vim.api.nvim_exec_autocmds("User", { pattern = "LazyPlugins", modeline = false })
337344
end

lua/lazy/pkg/init.lua

+47-45
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ local Config = require("lazy.core.config")
22
local Util = require("lazy.util")
33

44
local M = {}
5+
M.VERSION = 7
6+
M.dirty = false
57

68
---@alias LazyPkgSpec LazySpec | fun():LazySpec
79

@@ -10,10 +12,13 @@ local M = {}
1012
---@field name string
1113
---@field file string
1214
---@field spec? LazySpec
13-
---@field chunk? string|fun():LazySpec
15+
16+
---@class LazyPkgInput: LazyPkg
17+
---@field spec? LazySpec|fun():LazySpec
18+
---@field code? string
1419

1520
---@class LazyPkgSource
16-
---@field get fun(plugin:LazyPlugin):LazyPkg
21+
---@field get fun(plugin:LazyPlugin):LazyPkgInput?
1722

1823
---@type table<string, LazyPkg>?
1924
M.cache = nil
@@ -25,93 +30,90 @@ function M.update()
2530
sources[#sources + 1] = require("lazy.pkg." .. s)
2631
end
2732

28-
---@type table<string, LazyPkg>
29-
local ret = {}
33+
M.cache = {}
3034
for _, plugin in pairs(Config.plugins) do
31-
for _, source in ipairs(sources) do
32-
local spec = source.get(plugin)
33-
if spec then
34-
spec.name = plugin.name
35-
if type(spec.chunk) == "function" then
36-
spec.chunk = string.dump(spec.chunk)
35+
if plugin._.installed then
36+
for _, source in ipairs(sources) do
37+
local spec = source.get(plugin)
38+
if spec then
39+
spec.name = plugin.name
40+
if type(spec.code) == "string" then
41+
spec.spec = { _raw = spec.code }
42+
spec.code = nil
43+
end
44+
M.cache[plugin.dir] = spec
45+
break
3746
end
38-
ret[plugin.dir] = spec
39-
break
4047
end
4148
end
4249
end
43-
local code = "return " .. Util.dump(ret)
50+
local code = "return " .. Util.dump({ version = M.VERSION, specs = M.cache })
4451
Util.write_file(Config.options.pkg.cache, code)
52+
M.dirty = false
4553
M.cache = nil
4654
end
4755

4856
local function _load()
4957
Util.track("pkg")
50-
M.cache = {}
58+
M.cache = nil
5159
if vim.uv.fs_stat(Config.options.pkg.cache) then
5260
Util.try(function()
5361
local chunk, err = loadfile(Config.options.pkg.cache)
5462
if not chunk then
5563
error(err)
5664
end
57-
M.cache = chunk()
65+
local ret = chunk()
66+
if ret and ret.version == M.VERSION then
67+
M.cache = ret.specs
68+
end
5869
end, "Error loading pkg:")
5970
end
71+
if rawget(M, "cache") then
72+
M.dirty = false
73+
else
74+
M.cache = {}
75+
M.dirty = true
76+
end
6077
Util.track()
6178
end
6279

63-
---@param plugin LazyPlugin
80+
---@param dir string
6481
---@return LazyPkg?
65-
function M.get(plugin)
66-
if not M.cache then
67-
_load()
68-
end
69-
70-
local ret = M.cache[plugin.dir]
82+
function M.get(dir)
83+
local ret = M.cache[dir]
7184
if not ret then
7285
return
7386
end
7487

75-
if ret.chunk and not ret.spec then
76-
if type(ret.chunk) == "string" then
77-
ret.chunk = load(ret.chunk, "@" .. plugin.dir)
78-
end
79-
ret.spec = ret.chunk()
80-
ret.chunk = nil
88+
if type(ret.spec) == "function" then
89+
ret.spec = ret.spec()
8190
end
8291

8392
return ret
8493
end
8594

8695
function M.spec()
87-
if not M.cache then
88-
_load()
89-
end
9096
---@type table<string,LazyPluginSpec>
9197
local ret = {}
9298

9399
for dir in pairs(M.cache) do
94-
local pkg = M.get({ dir = dir })
100+
local pkg = M.get(dir)
95101
local spec = pkg and pkg.spec
96102
if pkg and spec then
97103
spec = type(spec) == "table" and vim.deepcopy(spec) or spec
104+
---@cast spec LazySpec
98105
ret[dir] = { pkg.name, specs = spec }
99106
end
100107
end
101108

102109
return ret
103110
end
104111

105-
---@param plugin LazyPlugin
106-
---@return LazySpec?
107-
function M.get_spec(plugin)
108-
local pkg = M.get(plugin)
109-
local spec = pkg and pkg.spec
110-
if not spec then
111-
return
112-
end
113-
spec = type(spec) == "table" and vim.deepcopy(spec) or spec
114-
return { plugin.name, specs = spec }
115-
end
116-
117-
return M
112+
return setmetatable(M, {
113+
__index = function(_, key)
114+
if key == "cache" then
115+
_load()
116+
return M.cache
117+
end
118+
end,
119+
})

lua/lazy/pkg/lazy.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ function M.get(plugin)
1616
end, "`" .. M.lazy_file .. "` for **" .. plugin.name .. "** has errors:")
1717
if not chunk then
1818
Util.error("Invalid `" .. M.lazy_file .. "` for **" .. plugin.name .. "**")
19+
return
1920
end
2021
return {
2122
source = "lazy",
2223
file = M.lazy_file,
23-
chunk = chunk,
24+
code = "function()\n" .. Util.read_file(file) .. "\nend",
2425
}
2526
end
2627
end

lua/lazy/pkg/rockspec.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function M.get(plugin)
4646
return #rocks > 0
4747
and {
4848
source = "rockspec",
49-
file = rockspec_file,
49+
file = vim.fn.fnamemodify(rockspec_file, ":t"),
5050
spec = {
5151
plugin.name,
5252
rocks = rocks,

lua/lazy/view/commands.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ M.commands = {
3434
health = function()
3535
vim.cmd.checkhealth("lazy")
3636
end,
37+
---@param opts ManagerOpts
3738
pkg = function(opts)
3839
local Pkg = require("lazy.pkg")
3940
Pkg.update()
@@ -44,7 +45,7 @@ M.commands = {
4445
},
4546
})
4647
for _, plugin in pairs(opts and opts.plugins or {}) do
47-
local spec = Pkg.get(plugin)
48+
local spec = Pkg.get(plugin.dir)
4849
Util.info(vim.inspect(spec), { lang = "lua", title = plugin.name })
4950
end
5051
end,

0 commit comments

Comments
 (0)