1
1
local Config = require (" lazy.core.config" )
2
-
3
- local M = {}
4
-
5
- M ._fid = 0
6
-
7
- local function next_id ()
8
- M ._fid = M ._fid + 1
9
- return M ._fid
10
- end
2
+ local Util = require (" lazy.core.util" )
11
3
12
4
--- This class is used to manage the fragments of a plugin spec.
13
5
--- It keeps track of the fragments and their relations to other fragments.
17
9
--- @field frag_stack number[]
18
10
--- @field dep_stack number[]
19
11
--- @field dirty table<number , boolean>
12
+ --- @field plugins table<LazyPlugin , number>
20
13
--- @field spec LazySpecLoader
21
- local F = {}
14
+ local M = {}
15
+
16
+ M ._fid = 0
17
+
18
+ local function next_id ()
19
+ M ._fid = M ._fid + 1
20
+ return M ._fid
21
+ end
22
22
23
23
--- @param spec LazySpecLoader
24
24
--- @return LazyFragments
25
25
function M .new (spec )
26
- local self = setmetatable ({}, { __index = F })
26
+ local self = setmetatable ({}, { __index = M })
27
27
self .fragments = {}
28
28
self .frag_stack = {}
29
29
self .dep_stack = {}
30
30
self .spec = spec
31
31
self .dirty = {}
32
+ self .plugins = {}
32
33
return self
33
34
end
34
35
35
36
--- @param id number
36
- function F :get (id )
37
+ function M :get (id )
37
38
return self .fragments [id ]
38
39
end
39
40
40
41
--- Remove a fragment and all its children.
41
42
--- This will also remove the fragment from its parent's children list.
42
43
--- @param id number
43
- function F :del (id )
44
+ function M :del (id )
44
45
-- del fragment
45
46
local fragment = self .fragments [id ]
46
47
if not fragment then
@@ -55,13 +56,13 @@ function F:del(id)
55
56
local parent = self .fragments [pid ]
56
57
if parent .frags then
57
58
--- @param fid number
58
- parent .frags = vim . tbl_filter (function (fid )
59
+ parent .frags = Util . filter (function (fid )
59
60
return fid ~= id
60
61
end , parent .frags )
61
62
end
62
63
if parent .deps then
63
64
--- @param fid number
64
- parent .deps = vim . tbl_filter (function (fid )
65
+ parent .deps = Util . filter (function (fid )
65
66
return fid ~= id
66
67
end , parent .deps )
67
68
end
81
82
--- Add a fragment to the fragments list.
82
83
--- This also resolves its name, url, dir, dependencies and child specs.
83
84
--- @param plugin LazyPluginSpec
84
- function F :add (plugin )
85
+ function M :add (plugin )
86
+ if self .plugins [plugin ] then
87
+ return self .fragments [self .plugins [plugin ]]
88
+ end
89
+
85
90
local id = next_id ()
91
+ setmetatable (plugin , nil )
92
+
93
+ self .plugins [plugin ] = id
86
94
87
95
local pid = self .frag_stack [# self .frag_stack ]
88
96
0 commit comments