@@ -2,6 +2,8 @@ local Config = require("lazy.core.config")
2
2
local Util = require (" lazy.util" )
3
3
4
4
local M = {}
5
+ M .VERSION = 7
6
+ M .dirty = false
5
7
6
8
--- @alias LazyPkgSpec LazySpec | fun (): LazySpec
7
9
@@ -10,10 +12,13 @@ local M = {}
10
12
--- @field name string
11
13
--- @field file string
12
14
--- @field spec ? LazySpec
13
- --- @field chunk ? string | fun (): LazySpec
15
+
16
+ --- @class LazyPkgInput : LazyPkg
17
+ --- @field spec ? LazySpec | fun (): LazySpec
18
+ --- @field code ? string
14
19
15
20
--- @class LazyPkgSource
16
- --- @field get fun ( plugin : LazyPlugin ): LazyPkg
21
+ --- @field get fun ( plugin : LazyPlugin ): LazyPkgInput ?
17
22
18
23
--- @type table<string , LazyPkg> ?
19
24
M .cache = nil
@@ -25,93 +30,90 @@ function M.update()
25
30
sources [# sources + 1 ] = require (" lazy.pkg." .. s )
26
31
end
27
32
28
- --- @type table<string , LazyPkg>
29
- local ret = {}
33
+ M .cache = {}
30
34
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
37
46
end
38
- ret [plugin .dir ] = spec
39
- break
40
47
end
41
48
end
42
49
end
43
- local code = " return " .. Util .dump (ret )
50
+ local code = " return " .. Util .dump ({ version = M . VERSION , specs = M . cache } )
44
51
Util .write_file (Config .options .pkg .cache , code )
52
+ M .dirty = false
45
53
M .cache = nil
46
54
end
47
55
48
56
local function _load ()
49
57
Util .track (" pkg" )
50
- M .cache = {}
58
+ M .cache = nil
51
59
if vim .uv .fs_stat (Config .options .pkg .cache ) then
52
60
Util .try (function ()
53
61
local chunk , err = loadfile (Config .options .pkg .cache )
54
62
if not chunk then
55
63
error (err )
56
64
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
58
69
end , " Error loading pkg:" )
59
70
end
71
+ if rawget (M , " cache" ) then
72
+ M .dirty = false
73
+ else
74
+ M .cache = {}
75
+ M .dirty = true
76
+ end
60
77
Util .track ()
61
78
end
62
79
63
- --- @param plugin LazyPlugin
80
+ --- @param dir string
64
81
--- @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 ]
71
84
if not ret then
72
85
return
73
86
end
74
87
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 ()
81
90
end
82
91
83
92
return ret
84
93
end
85
94
86
95
function M .spec ()
87
- if not M .cache then
88
- _load ()
89
- end
90
96
--- @type table<string,LazyPluginSpec>
91
97
local ret = {}
92
98
93
99
for dir in pairs (M .cache ) do
94
- local pkg = M .get ({ dir = dir } )
100
+ local pkg = M .get (dir )
95
101
local spec = pkg and pkg .spec
96
102
if pkg and spec then
97
103
spec = type (spec ) == " table" and vim .deepcopy (spec ) or spec
104
+ --- @cast spec LazySpec
98
105
ret [dir ] = { pkg .name , specs = spec }
99
106
end
100
107
end
101
108
102
109
return ret
103
110
end
104
111
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
+ })
0 commit comments