1
1
local Cache = require (" lazy.core.cache" )
2
2
local Module = require (" lazy.core.module" )
3
+ local Config = require (" lazy.core.config" )
3
4
4
5
local M = {}
5
6
6
7
M .dirty = true
7
8
9
+ --- @alias CachedPlugin LazyPlugin | { _funs : string[] }
10
+ local skip = { installed = true , loaded = true , tasks = true , dirty = true , dir = true }
11
+ local funs = { config = true , init = true , run = true }
12
+
8
13
function M .update_state (check_clean )
9
14
local Util = require (" lazy.core.util" )
10
- local Config = require ( " lazy.core.config " )
15
+
11
16
--- @type table< " opt" | " start" , table<string,boolean>>
12
17
local installed = { opt = {}, start = {} }
13
18
for opt , packs in pairs (installed ) do
@@ -19,9 +24,11 @@ function M.update_state(check_clean)
19
24
end
20
25
21
26
for _ , plugin in pairs (Config .plugins ) do
27
+ plugin .opt = plugin .opt == nil and Config .options .opt or plugin .opt
22
28
local opt = plugin .opt and " opt" or " start"
23
- plugin .installed = installed [opt ][plugin .pack ] == true
24
- installed [opt ][plugin .pack ] = nil
29
+ plugin .dir = Config .options .package_path .. " /" .. opt .. " /" .. plugin .name
30
+ plugin .installed = installed [opt ][plugin .name ] == true
31
+ installed [opt ][plugin .name ] = nil
25
32
end
26
33
27
34
if check_clean then
@@ -44,101 +51,81 @@ function M.save()
44
51
if not M .dirty then
45
52
return
46
53
end
47
- local Config = require (" lazy.core.config " )
54
+ local Plugin = require (" lazy.plugin " )
48
55
49
56
--- @class LazyState
50
57
local state = {
51
- --- @type CachedPlugin[]
52
- plugins = {},
58
+ --- @type table<string , LazySpec>
59
+ specs = {},
53
60
loaders = require (" lazy.core.loader" ).loaders ,
54
61
config = Config .options ,
55
62
}
56
63
57
- --- @alias CachedPlugin LazyPlugin | { _funcs : table<string , number | boolean> }
58
- local skip = { installed = true , loaded = true , tasks = true , dirty = true , dir = true }
59
- local funcount = 0
60
-
61
- for _ , plugin in pairs (Config .plugins ) do
62
- --- @type CachedPlugin
63
- local save = {}
64
- table.insert (state .plugins , save )
65
- --- @diagnostic disable-next-line : no-unknown
66
- for k , v in pairs (plugin ) do
67
- if type (v ) == " function" then
68
- save ._funcs = save ._funcs or {}
69
- if plugin .modname then
70
- save ._funcs [k ] = true
71
- else
72
- funcount = funcount + 1
73
- Cache .set (" cache.state.fun." .. funcount , string.dump (v ))
74
- save ._funcs [k ] = funcount
64
+ for _ , spec in ipairs (Plugin .specs ()) do
65
+ state .specs [spec .modname ] = spec
66
+ for _ , plugin in pairs (spec .plugins ) do
67
+ --- @cast plugin CachedPlugin
68
+ for k , v in pairs (plugin ) do
69
+ if type (v ) == " function" then
70
+ if funs [k ] then
71
+ plugin ._funs = plugin ._funs or {}
72
+ table.insert (plugin ._funs , k )
73
+ end
74
+ plugin [k ] = nil
75
+ elseif skip [k ] then
76
+ plugin [k ] = nil
75
77
end
76
- elseif not skip [k ] then
77
- save [k ] = v
78
78
end
79
79
end
80
80
end
81
81
Cache .set (" cache.state" , vim .json .encode (state ))
82
82
end
83
83
84
84
function M .load ()
85
- --- @type boolean , LazyState
86
- local ok , state = pcall (vim .json .decode , Cache .get (" cache.state" ))
87
- if not ok then
88
- Cache .dirty ()
89
- return false
90
- end
85
+ local Plugin = require (" lazy.plugin" )
86
+ local dirty = false
91
87
92
- local Config = require ( " lazy.core.config " )
93
-
94
- if not vim .deep_equal (Config .options , state .config ) then
95
- Cache . dirty ()
96
- return false
88
+ --- @type boolean , LazyState ?
89
+ local ok , state = pcall ( vim . json . decode , Cache . get ( " cache.state " ))
90
+ if not ( ok and state and vim .deep_equal (Config .options , state .config ) ) then
91
+ dirty = true
92
+ state = nil
97
93
end
98
94
99
- if Module .is_dirty (Config .options .plugins , Config .paths .main ) then
100
- return false
101
- end
95
+ local function _loader (modname , modpath )
96
+ local spec = state and state .specs [modname ]
97
+ if (not spec ) or Module .is_dirty (modname , modpath ) then
98
+ dirty = true
99
+ vim .schedule (function ()
100
+ vim .notify (" Reloading " .. modname )
101
+ end )
102
+ return Plugin .Spec .load (modname , modpath )
103
+ end
104
+ --- @type LazySpec
105
+ local loaded = nil
102
106
103
- -- plugins
104
- for _ , plugin in ipairs (state .plugins ) do
105
- Config .plugins [plugin .name ] = plugin
106
- plugin .loaded = nil
107
- plugin .dir = Config .options .package_path .. " /" .. (plugin .opt and " opt" or " start" ) .. " /" .. plugin .pack
108
- if plugin .modname then
109
- if Module .is_dirty (plugin .modname , plugin .modpath ) then
110
- return false
111
- end
112
- for fun in pairs (plugin ._funcs or {}) do
113
- --- @diagnostic disable-next-line : assign-type-mismatch
114
- plugin [fun ] = function (...)
115
- local mod = Module .load (plugin .modname , plugin .modpath )
116
- for k in pairs (plugin ._funcs ) do
117
- plugin [k ] = mod [k ]
118
- end
119
- return plugin [fun ](... )
120
- end
121
- end
122
- elseif plugin ._funcs then
123
- for fun , id in pairs (plugin ._funcs ) do
124
- local chunk = assert (Cache .get (" cache.state.fun." .. id ))
125
- --- @diagnostic disable-next-line : assign-type-mismatch
107
+ for name , plugin in pairs (spec .plugins ) do
108
+ --- @cast plugin CachedPlugin
109
+ for _ , fun in ipairs (plugin ._funs or {}) do
126
110
plugin [fun ] = function (...)
127
- --- @diagnostic disable-next-line : assign-type-mismatch
128
- plugin [fun ] = loadstring (chunk )
129
- return plugin [fun ](... )
111
+ loaded = loaded or Plugin .Spec .load (spec .modname , spec .modpath )
112
+ return loaded .plugins [name ][fun ](... )
130
113
end
131
114
end
132
115
end
116
+ return spec
133
117
end
134
- M .update_state ()
135
118
136
- -- loaders
137
- require (" lazy.core.loader" ).loaders = state .loaders
119
+ Plugin .load (_loader )
138
120
139
- M .dirty = false
121
+ if state and not dirty then
122
+ require (" lazy.core.loader" ).loaders = state .loaders
123
+ else
124
+ Cache .dirty ()
125
+ end
140
126
141
- return true
127
+ M .dirty = dirty
128
+ return not dirty
142
129
end
143
130
144
131
return M
0 commit comments