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
|
local await = require 'await'
local proto = require 'proto.proto'
local define = require 'proto.define'
local lang = require 'language'
local files = require 'files'
local config = require 'config'
local core = require 'core.diagnostics'
local util = require 'utility'
local ws = require 'workspace'
local progress = require "progress"
local client = require 'client'
local converter = require 'proto.converter'
---@class diagnosticProvider
local m = {}
m.cache = {}
m.sleepRest = 0.0
m.coroutineUri = setmetatable({}, { __mode = 'k' })
local function concat(t, sep)
if type(t) ~= 'table' then
return t
end
return table.concat(t, sep)
end
local function buildSyntaxError(uri, err)
local text = files.getText(uri)
local message = lang.script('PARSER_'..err.type, err.info)
if err.version then
local version = err.info and err.info.version or config.get(uri, 'Lua.runtime.version')
message = message .. ('(%s)'):format(lang.script('DIAG_NEED_VERSION'
, concat(err.version, '/')
, version
))
end
local related = err.info and err.info.related
local relatedInformation
if related then
relatedInformation = {}
for _, rel in ipairs(related) do
local rmessage
if rel.message then
rmessage = lang.script('PARSER_'..rel.message)
else
rmessage = text:sub(rel.start, rel.finish)
end
local relUri = rel.uri or uri
relatedInformation[#relatedInformation+1] = {
message = rmessage,
location = converter.location(relUri, converter.packRange(relUri, rel.start, rel.finish)),
}
end
end
return {
code = err.type:lower():gsub('_', '-'),
range = converter.packRange(uri, err.start, err.finish),
severity = define.DiagnosticSeverity[err.level],
source = lang.script.DIAG_SYNTAX_CHECK,
message = message,
relatedInformation = relatedInformation,
}
end
local function buildDiagnostic(uri, diag)
if not files.exists(uri) then
return
end
local relatedInformation
if diag.related then
relatedInformation = {}
for _, rel in ipairs(diag.related) do
local rtext = files.getText(rel.uri)
relatedInformation[#relatedInformation+1] = {
message = rel.message or rtext:sub(rel.start, rel.finish),
location = converter.location(rel.uri, converter.packRange(rel.uri, rel.start, rel.finish))
}
end
end
return {
range = converter.packRange(uri, diag.start, diag.finish),
source = lang.script.DIAG_DIAGNOSTICS,
severity = diag.level,
message = diag.message,
code = diag.code,
tags = diag.tags,
data = diag.data,
relatedInformation = relatedInformation,
}
end
local function mergeSyntaxAndDiags(a, b)
if not a and not b then
return nil
end
local count = 0
local t = {}
if a then
for i = 1, #a do
local severity = a[i].severity
if severity == define.DiagnosticSeverity.Hint
or severity == define.DiagnosticSeverity.Information then
t[#t+1] = a[i]
elseif count < 10000 then
count = count + 1
t[#t+1] = a[i]
end
end
end
if b then
for i = 1, #b do
local severity = b[i].severity
if severity == define.DiagnosticSeverity.Hint
or severity == define.DiagnosticSeverity.Information then
t[#t+1] = b[i]
elseif count < 10000 then
count = count + 1
t[#t+1] = b[i]
end
end
end
return t
end
function m.clear(uri)
await.close('diag:' .. uri)
if not m.cache[uri] then
return
end
m.cache[uri] = nil
proto.notify('textDocument/publishDiagnostics', {
uri = uri,
diagnostics = {},
})
log.debug('clearDiagnostics', uri)
end
function m.clearCache(uri)
m.cache[uri] = false
end
function m.clearAll()
for luri in pairs(m.cache) do
m.clear(luri)
end
end
function m.syntaxErrors(uri, ast)
if #ast.errs == 0 then
return nil
end
local results = {}
pcall(function ()
for _, err in ipairs(ast.errs) do
if not config.get(uri, 'Lua.diagnostics.disable')[err.type:lower():gsub('_', '-')] then
results[#results+1] = buildSyntaxError(uri, err)
end
end
end)
return results
end
function m.diagnostics(uri, diags)
if not ws.isReady(uri) then
return
end
xpcall(core, log.error, uri, function (results)
if #results == 0 then
return
end
for i = 1, #results do
diags[#diags+1] = buildDiagnostic(uri, results[i])
end
end)
end
---@async
function m.doDiagnostic(uri)
if not config.get(uri, 'Lua.diagnostics.enable') then
return
end
if files.isLibrary(uri) then
local status = config.get(uri, 'Lua.diagnostics.libraryFiles')
if status == 'Disable' then
return
elseif status == 'Opened' then
if not files.isOpen(uri) then
return
end
end
end
if ws.isIgnored(uri) then
local status = config.get(uri, 'Lua.diagnostics.ignoredFiles')
if status == 'Disable' then
return
elseif status == 'Opened' then
if not files.isOpen(uri) then
return
end
end
end
await.delay()
local state = files.getState(uri)
if not state then
m.clear(uri)
return
end
local version = files.getVersion(uri)
local scp = ws.getScope(uri)
local prog <close> = progress.create(lang.script.WINDOW_DIAGNOSING, 0.5)
prog:setMessage(ws.getRelativePath(uri))
local syntax = m.syntaxErrors(uri, state)
local diags = {}
local function pushResult()
tracy.ZoneBeginN 'mergeSyntaxAndDiags'
local _ <close> = tracy.ZoneEnd
local full = mergeSyntaxAndDiags(syntax, diags)
if not full then
m.clear(uri)
return
end
if util.equal(m.cache[uri], full) then
return
end
m.cache[uri] = full
proto.notify('textDocument/publishDiagnostics', {
uri = uri,
version = version,
diagnostics = full,
})
if #full > 0 then
log.debug('publishDiagnostics', uri, #full)
end
end
if await.hasID('diagnosticsScope:' .. uri) then
scp:set('diagStepPush', nil)
else
local clock = os.clock()
scp:set('diagStepPush', function ()
if os.clock() - clock >= 0.2 then
pushResult()
clock = os.clock()
end
end)
end
m.diagnostics(uri, diags)
pushResult()
scp:set('diagStepPush', nil)
end
function m.refresh(uri)
if not ws.isReady(uri) then
return
end
await.close('diag:' .. uri)
await.call(function () ---@async
if uri then
await.setID('diag:' .. uri)
await.sleep(0.1)
m.clearCache(uri)
xpcall(m.doDiagnostic, log.error, uri)
end
m.diagnosticsScope(uri)
end, 'files.version')
end
---@async
local function askForDisable(uri)
if m.dontAskedForDisable then
return
end
local delay = 30
local delayTitle = lang.script('WINDOW_DELAY_WS_DIAGNOSTIC', delay)
local item = proto.awaitRequest('window/showMessageRequest', {
type = define.MessageType.Info,
message = lang.script.WINDOW_SETTING_WS_DIAGNOSTIC,
actions = {
{
title = lang.script.WINDOW_DONT_SHOW_AGAIN,
},
{
title = delayTitle,
},
{
title = lang.script.WINDOW_DISABLE_DIAGNOSTIC,
},
}
})
if not item then
return
end
if item.title == lang.script.WINDOW_DONT_SHOW_AGAIN then
m.dontAskedForDisable = true
elseif item.title == delayTitle then
client.setConfig {
{
key = 'Lua.diagnostics.workspaceDelay',
action = 'set',
value = delay * 1000,
uri = uri,
}
}
elseif item.title == lang.script.WINDOW_DISABLE_DIAGNOSTIC then
client.setConfig {
{
key = 'Lua.diagnostics.workspaceDelay',
action = 'set',
value = -1,
uri = uri,
}
}
end
end
function m.diagnosticsScope(uri, force)
if not ws.isReady(uri) then
return
end
if not force and not config.get(uri, 'Lua.diagnostics.enable') then
m.clearAll()
return
end
local delay = config.get(uri, 'Lua.diagnostics.workspaceDelay') / 1000
if not force and delay < 0 then
return
end
await.close ('diagnosticsScope:' .. uri)
await.call(function () ---@async
m.coroutineUri[coroutine.running()] = uri
await.sleep(delay)
m.diagnosticsAllClock = os.clock()
local clock = os.clock()
local bar <close> = progress.create(lang.script.WORKSPACE_DIAGNOSTIC, 1)
local cancelled
bar:onCancel(function ()
log.debug('Cancel workspace diagnostics')
cancelled = true
---@async
await.call(function ()
askForDisable(uri)
end)
end)
local uris = files.getAllUris()
for i, uri in ipairs(uris) do
bar:setMessage(('%d/%d'):format(i, #uris))
bar:setPercentage(i / #uris * 100)
xpcall(m.doDiagnostic, log.error, uri)
await.delay()
if cancelled then
log.debug('Break workspace diagnostics')
break
end
end
bar:remove()
log.debug('全文诊断耗时:', os.clock() - clock)
end, 'files.version', ('diagnosticsScope:' .. uri))
end
function m.checkStepResult(uri)
if await.hasID('diagnosticsScope:' .. uri) then
return
end
local scp = ws.getScope(uri)
local stepPush = scp:get 'diagStepPush'
if stepPush then
stepPush()
end
end
---@async
function m.checkWorkspaceDiag(uri)
if not await.hasID('diagnosticsScope:' .. uri) then
return
end
local speedRate = config.get(uri, 'Lua.diagnostics.workspaceRate')
if speedRate <= 0 or speedRate >= 100 then
return
end
local currentClock = os.clock()
local passed = currentClock - m.diagnosticsAllClock
local sleepTime = passed * (100 - speedRate) / speedRate + m.sleepRest
m.sleepRest = 0.0
if sleepTime < 0.001 then
m.sleepRest = m.sleepRest + sleepTime
return
end
if sleepTime > 0.1 then
m.sleepRest = sleepTime - 0.1
sleepTime = 0.1
end
await.sleep(sleepTime)
m.diagnosticsAllClock = os.clock()
return false
end
ws.watch(function (ev, uri)
if ev == 'reload' then
m.diagnosticsScope(uri)
end
end)
files.watch(function (ev, uri) ---@async
if ev == 'remove' then
m.clear(uri)
m.refresh(uri)
elseif ev == 'update' then
if ws.isReady() then
m.refresh(uri)
end
elseif ev == 'open' then
if ws.isReady() then
xpcall(m.doDiagnostic, log.error, uri)
end
elseif ev == 'close' then
if files.isLibrary(uri)
or ws.isIgnored(uri) then
m.clear(uri)
end
end
end)
await.watch(function (ev, co) ---@async
if ev == 'delay' then
local uri = m.coroutineUri[co]
if not uri then
return
end
m.checkStepResult(uri)
return m.checkWorkspaceDiag(uri)
end
end)
config.watch(function (uri, key, value, oldValue)
if key:find 'Lua.diagnostics' then
if value ~= oldValue then
m.diagnosticsScope(uri)
end
end
end)
return m
|