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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
|
local findSource = require 'core.find_source'
local getFunctionHover = require 'core.hover.function'
local getFunctionHoverAsLib = require 'core.hover.lib_function'
local CompletionItemKind = {
Text = 1,
Method = 2,
Function = 3,
Constructor = 4,
Field = 5,
Variable = 6,
Class = 7,
Interface = 8,
Module = 9,
Property = 10,
Unit = 11,
Value = 12,
Enum = 13,
Keyword = 14,
Snippet = 15,
Color = 16,
File = 17,
Reference = 18,
Folder = 19,
EnumMember = 20,
Constant = 21,
Struct = 22,
Event = 23,
Operator = 24,
TypeParameter = 25,
}
local function matchKey(me, other)
if me == other then
return true
end
if me == '' then
return true
end
if #me > #other then
return false
end
local lMe = me:lower()
local lOther = other:lower()
if lMe:sub(1, 1) ~= lOther:sub(1, 1) then
return false
end
if lMe == lOther:sub(1, #lMe) then
return true
end
local used = {}
local cur = 1
local lookup
local researched
for i = 1, #lMe do
local c = lMe:sub(i, i)
-- 1. 看当前字符是否匹配
if c == lOther:sub(cur, cur) then
used[cur] = true
goto NEXT
end
-- 2. 看前一个字符是否匹配
if not used[cur-1] then
if c == lOther:sub(cur-1, cur-1) then
used[cur-1] = true
goto NEXT
end
end
-- 3. 向后找这个字
lookup = lOther:find(c, cur+1, true)
if lookup then
cur = lookup
used[cur] = true
goto NEXT
end
-- 4. 重新搜索整个字符串,但是只允许1次,否则失败.如果找不到也失败
if researched then
return false
else
researched = true
for j = 1, cur - 2 do
if c == lOther:sub(j, j) then
used[j] = true
goto NEXT
end
end
return false
end
-- 5. 找到下一个可用的字,如果超出长度且把自己所有字都用尽就算成功
::NEXT::
repeat
cur = cur + 1
until not used[cur]
if cur > #lOther then
return i == #lMe
end
end
return true
end
local function getDucumentation(name, value)
if value:getType() == 'function' then
local lib = value:getLib()
local hover
if lib then
hover = getFunctionHoverAsLib(name, lib)
else
hover = getFunctionHover(name, value:getFunction())
end
if not hover then
return nil
end
local text = ([[
```lua
%s
```
%s
```lua
%s
```
]]):format(hover.label or '', hover.description or '', hover.enum or '')
return {
kind = 'markdown',
value = text,
}
end
return nil
end
local function getDetail(value)
local literal = value:getLiteral()
local tp = type(literal)
if tp == 'boolean' then
return ('= %q'):format(literal)
elseif tp == 'string' then
return ('= %q'):format(literal)
elseif tp == 'number' then
if math.type(literal) == 'integer' then
return ('= %q'):format(literal)
else
local str = ('= %.16f'):format(literal)
local dot = str:find('.', 1, true)
local suffix = str:find('[0]+$', dot + 2)
if suffix then
return str:sub(1, suffix - 1)
else
return str
end
end
end
return nil
end
local function getKind(cata, value)
if value:getType() == 'function' then
local func = value:getFunction()
if func and func:getObject() then
return CompletionItemKind.Method
else
return CompletionItemKind.Function
end
end
if cata == 'field' then
local literal = value:getLiteral()
local tp = type(literal)
if tp == 'number' or tp == 'integer' or tp == 'string' then
return CompletionItemKind.Enum
end
end
return nil
end
local function getValueData(cata, name, value)
return {
documentation = getDucumentation(name, value),
detail = getDetail(value),
kind = getKind(cata, value),
}
end
local function searchLocals(vm, source, word, callback)
for _, src in ipairs(vm.sources) do
local loc = src:bindLocal()
if not loc then
goto CONTINUE
end
if src.start <= source.start
and loc:close() >= source.finish
and matchKey(word, loc:getName())
then
callback(loc:getName(), src, CompletionItemKind.Variable, getValueData('local', loc:getName(), loc:getValue()))
end
:: CONTINUE ::
end
end
local function sortPairs(t)
local keys = {}
for k in pairs(t) do
keys[#keys+1] = k
end
table.sort(keys)
local i = 0
return function ()
i = i + 1
local k = keys[i]
return k, t[k]
end
end
local function searchFields(vm, source, word, callback)
local parent = source:get 'parent'
if not parent then
return
end
local map = {}
parent:eachChild(function (k, v)
if type(k) ~= 'string' then
goto CONTINUE
end
if source:get 'object' and v:getType() ~= 'function' then
goto CONTINUE
end
if matchKey(word, k) then
map[k] = v
end
:: CONTINUE ::
end)
for k, v in sortPairs(map) do
callback(k, nil, CompletionItemKind.Field, getValueData('field', k, v))
end
end
local function searchIndex(vm, source, word, callback)
for _, src in ipairs(vm.sources) do
if src:get 'table index' then
if matchKey(word, src[1]) then
callback(src[1], src, CompletionItemKind.Property)
end
end
end
end
local function searchCloseGlobal(vm, source, word, callback)
local loc = source:bindLocal()
local close = loc:close()
-- 因为闭包的关系落在局部变量finish到close范围内的全局变量一定能访问到该局部变量
for _, src in ipairs(vm.sources) do
if src:get 'global'
and src.start >= source.finish
and src.finish <= close
then
if matchKey(word, src[1]) then
callback(src[1], src, CompletionItemKind.Variable)
end
end
end
end
local KEYS = {'and', 'break', 'do', 'else', 'elseif', 'end', 'false', 'for', 'function', 'goto', 'if', 'in', 'local', 'nil', 'not', 'or', 'repeat', 'return', 'then', 'true', 'until', 'while', 'toclose'}
local function searchKeyWords(vm, source, word, callback)
for _, key in ipairs(KEYS) do
if matchKey(word, key) then
callback(key, nil, CompletionItemKind.Keyword)
end
end
end
local function searchAsGlobal(vm, source, word, callback)
if word == '' then
return
end
searchLocals(vm, source, word, callback)
searchFields(vm, source, word, callback)
searchKeyWords(vm, source, word, callback)
end
local function searchAsSuffix(vm, source, word, callback)
searchFields(vm, source, word, callback)
end
local function searchAsIndex(vm, source, word, callback)
searchLocals(vm, source, word, callback)
searchIndex(vm, source, word, callback)
searchFields(vm, source, word, callback)
end
local function searchAsLocal(vm, source, word, callback)
searchCloseGlobal(vm, source, word, callback)
-- 特殊支持 local function
if matchKey(word, 'function') then
callback('function', nil, CompletionItemKind.Keyword)
end
end
local function searchAsArg(vm, source, word, callback)
searchCloseGlobal(vm, source, word, callback)
end
local function searchSource(vm, source, word, callback)
if source:get 'table index' then
searchAsIndex(vm, source, word, callback)
return
end
if source:get 'arg' then
searchAsArg(vm, source, word, callback)
return
end
if source:get 'global' then
searchAsGlobal(vm, source, word, callback)
return
end
if source:action() == 'local' then
searchAsLocal(vm, source, word, callback)
return
end
if source:bindLocal() then
searchAsGlobal(vm, source, word, callback)
return
end
if source:get 'simple' then
searchAsSuffix(vm, source, word, callback)
return
end
end
local function searchInRequire(vm, select, source, callback)
if select ~= 1 then
return
end
if not vm.lsp or not vm.lsp.workspace then
return
end
if source.type ~= 'string' then
return
end
local list = vm.lsp.workspace:matchPath(vm.uri, source[1])
if not list then
return
end
for _, str in ipairs(list) do
callback(str, nil, CompletionItemKind.File, {
textEdit = {
-- TODO 坑爹自动完成的字符串里面不能包含符号
-- 这里长字符串会出问题,不过暂时先这样吧
start = source.start + 1,
finish = source.finish - 1,
newText = str,
}
})
end
end
local function searchCallArg(vm, source, word, callback, pos)
local results = {}
for _, src in ipairs(vm.sources) do
if src.type == 'call'
and src.start <= pos
and src.finish >= pos
then
results[#results+1] = src
end
end
if #results == 0 then
return nil
end
-- 可能处于 'func1(func2(' 的嵌套中,将最近的call放到最前面
table.sort(results, function (a, b)
return a.start > b.start
end)
local call = results[1]
local func, args = call:bindCall()
if not func then
return
end
local lib = func:getLib()
if not lib then
return
end
local select = #args + 1
for i, arg in ipairs(args) do
if arg.start <= pos and arg.finish >= pos - 1 then
select = i
break
end
end
-- 根据参数位置找枚举值
if lib.args and lib.enums then
local arg = lib.args[select]
local name = arg and arg.name
for _, enum in ipairs(lib.enums) do
if enum.name == name and enum.enum then
if matchKey(word, enum.enum) then
local label, textEdit
if source.type ~= arg.type then
label = ('%q'):format(enum.enum)
end
if source.type ~= 'call' then
textEdit = {
start = source.start,
finish = source.finish,
newText = ('%q'):format(enum.enum),
}
end
callback(enum.enum, nil, CompletionItemKind.EnumMember, {
label = label,
documentation = enum.description,
textEdit = textEdit,
})
end
end
end
end
-- 搜索特殊函数
if lib.special == 'require' then
searchInRequire(vm, select, source, callback)
end
end
local function searchAllWords(vm, source, word, callback)
if word == '' then
return
end
if source.type == 'string' then
return
end
for _, src in ipairs(vm.sources) do
if src.type == 'name'
and matchKey(word, src[1])
then
callback(src[1], src, CompletionItemKind.Text)
end
end
end
local function searchSpecial(vm, source, word, callback, pos)
-- 尝试 XXX[#XXX+1]
-- 1. 搜索 []
local index
for _, src in ipairs(vm.sources) do
if src.type == 'index'
and src.start <= pos
and src.finish >= pos
then
index = src
break
end
end
if not index then
return nil
end
-- 2. [] 内部只能有一个 #
local inside = index[1]
if not inside then
return nil
end
if inside.op ~= '#' then
return nil
end
-- 3. [] 左侧必须是纯 name 构成的 simple ,且index 是 simple 的最后一项
local simple = index:get 'simple'
if not simple then
return nil
end
if simple[#simple] ~= index then
return nil
end
local chars = {}
for i = 1, #simple - 1 do
local src = simple[i]
if src.type == 'name' then
chars[#chars+1] = src[1]
elseif src.type == '.' then
chars[#chars+1] = '.'
else
return nil
end
end
-- 4. 创建代码片段
local label = table.concat(chars) .. '+1'
callback(label, nil, CompletionItemKind.Snippet, {
textEdit = {
start = inside.start + 1,
finish = index.finish,
newText = ('%s] = '):format(label),
},
})
end
local function makeList(source, word)
local list = {}
local mark = {}
return function (name, src, kind, data)
if src == source then
return
end
if word == name then
return
end
if mark[name] then
return
end
mark[name] = true
if not data then
data = {}
end
if not data.label then
data.label = name
end
if not data.kind then
data.kind = kind
end
list[#list+1] = data
end, list
end
return function (vm, pos, word)
local source = findSource(vm, pos)
if not source then
return nil
end
local callback, list = makeList(source, word)
searchSpecial(vm, source, word, callback, pos)
searchCallArg(vm, source, word, callback, pos)
searchSource(vm, source, word, callback)
searchAllWords(vm, source, word, callback)
if #list == 0 then
return nil
end
return list
end
|