1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
local files = require 'files'
local guide = require 'parser.guide'
local skind = require 'define.SymbolKind'
local lname = require 'core.hover.name'
local util = require 'utility'
local await = require 'await'
local function buildFunctionParams(func)
if not func.args then
return ''
end
local params = {}
for i, arg in ipairs(func.args) do
if arg.type == '...' then
params[i] = '...'
else
params[i] = arg[1] or ''
end
end
return table.concat(params, ', ')
end
local function buildFunction(source, symbols)
local name = lname(source)
local func = source.value
local range, kind
if func.start > source.finish then
-- a = function()
range = { source.start, func.finish }
else
-- function f()
range = { func.start, func.finish }
end
if source.type == 'setmethod' then
kind = skind.Field
else
kind = skind.Function
end
symbols[#symbols+1] = {
name = name,
detail = ('function %s(%s)'):format(name or '', buildFunctionParams(func)),
kind = kind,
range = range,
selectionRange = { source.start, source.finish },
valueRange = { func.start, func.finish },
}
end
local function buildTable(tbl)
local buf = {}
for i = 1, 3 do
local field = tbl[i]
if not field then
break
end
if field.type == 'tablefield' then
buf[i] = ('%s'):format(field.field[1])
end
end
return table.concat(buf, ', ')
end
local function buildValue(source, symbols)
local name = lname(source)
local range, sRange, valueRange, kind
local details = {}
if source.type == 'local' then
if source.parent.type == 'funcargs' then
details[1] = 'param '
range = { source.start, source.finish }
sRange = { source.start, source.finish }
kind = skind.Constant
else
details[1] = 'local '
range = { source.start, source.finish }
sRange = { source.start, source.finish }
kind = skind.Variable
end
elseif source.type == 'setlocal' then
details[1] = 'setlocal '
range = { source.start, source.finish }
sRange = { source.start, source.finish }
kind = skind.Variable
elseif source.type == 'setglobal' then
details[1] = 'global '
range = { source.start, source.finish }
sRange = { source.start, source.finish }
kind = skind.Constant
elseif source.type == 'tablefield' then
details[1] = 'field '
range = { source.field.start, source.field.finish }
sRange = { source.field.start, source.field.finish }
kind = skind.Property
else
details[1] = 'field '
range = { source.field.start, source.field.finish }
sRange = { source.field.start, source.field.finish }
kind = skind.Field
end
details[2] = name
if source.value then
local literal = source.value[1]
if source.value.type == 'boolean' then
details[3] = ': boolean'
if literal ~= nil then
details[4] = ' = '
details[5] = util.viewLiteral(source.value[1])
end
elseif source.value.type == 'string' then
details[3] = ': string'
if literal ~= nil then
details[4] = ' = '
details[5] = util.viewLiteral(source.value[1])
end
elseif source.value.type == 'number' then
details[3] = ': number'
if literal ~= nil then
details[4] = ' = '
details[5] = util.viewLiteral(source.value[1])
end
elseif source.value.type == 'table' then
details[3] = ': {'
details[4] = buildTable(source.value)
details[5] = '}'
valueRange = { source.value.start, source.value.finish }
elseif source.value.type == 'select' then
if source.value.vararg and source.value.vararg.type == 'call' then
valueRange = { source.value.start, source.value.finish }
end
end
range = { range[1], source.value.finish }
end
symbols[#symbols+1] = {
name = name,
detail = table.concat(details),
kind = kind,
range = range,
selectionRange = sRange,
valueRange = valueRange,
}
end
local function buildSet(source, used, symbols)
local value = source.value
if value and value.type == 'function' then
used[value] = true
buildFunction(source, symbols)
else
buildValue(source, symbols)
end
end
local function buildAnonymousFunction(source, used, symbols)
if used[source] then
return
end
used[source] = true
symbols[#symbols+1] = {
name = '',
detail = 'function ()',
kind = skind.Function,
range = { source.start, source.finish },
selectionRange = { source.start, source.start },
valueRange = { source.start, source.finish },
}
end
local function buildSource(source, used, symbols)
if source.type == 'local'
or source.type == 'setlocal'
or source.type == 'setglobal'
or source.type == 'setfield'
or source.type == 'setmethod'
or source.type == 'tablefield' then
await.delay()
buildSet(source, used, symbols)
elseif source.type == 'function' then
await.delay()
buildAnonymousFunction(source, used, symbols)
end
end
local function packChild(ranges, symbols)
await.delay()
table.sort(symbols, function (a, b)
return a.selectionRange[1] < b.selectionRange[1]
end)
await.delay()
local root = {
valueRange = { 0, math.maxinteger },
children = {},
}
local stacks = { root }
for _, symbol in ipairs(symbols) do
local parent = stacks[#stacks]
-- 移除已经超出生效范围的区间
while symbol.selectionRange[1] > parent.valueRange[2] do
stacks[#stacks] = nil
parent = stacks[#stacks]
end
-- 向后看,找出当前可能生效的区间
local nextRange
while #ranges > 0
and symbol.selectionRange[1] >= ranges[#ranges].valueRange[1] do
if symbol.selectionRange[1] <= ranges[#ranges].valueRange[2] then
nextRange = ranges[#ranges]
end
ranges[#ranges] = nil
end
if nextRange then
stacks[#stacks+1] = nextRange
parent = nextRange
end
if parent == symbol then
-- function f() end 的情况,selectionRange 在 valueRange 内部,
-- 当前区间置为上一层
parent = stacks[#stacks-1]
end
-- 把自己放到当前区间中
if not parent.children then
parent.children = {}
end
parent.children[#parent.children+1] = symbol
end
return root.children
end
local function packSymbols(symbols)
local ranges = {}
for _, symbol in ipairs(symbols) do
if symbol.valueRange then
ranges[#ranges+1] = symbol
end
end
await.delay()
table.sort(ranges, function (a, b)
return a.valueRange[1] > b.valueRange[1]
end)
-- 处理嵌套
return packChild(ranges, symbols)
end
return function (uri)
local ast = files.getAst(uri)
if not ast then
return nil
end
local symbols = {}
local used = {}
guide.eachSource(ast.ast, function (source)
buildSource(source, used, symbols)
end)
local packedSymbols = packSymbols(symbols)
return packedSymbols
end
|