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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
|
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'
local loading = require 'workspace.loading'
local scope = require 'workspace.scope'
local time = require 'bee.time'
local ltable = require 'linked-table'
local furi = require 'file-uri'
local json = require 'json'
local fw = require 'filewatch'
---@class diagnosticProvider
local m = {}
m.cache = {}
m.sleepRest = 0.0
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)
if not text then
return
end
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,
data = 'syntax',
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)
if not rtext then
goto CONTINUE
end
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))
}
::CONTINUE::
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 mergeDiags(a, b, c)
if not a and not b and not c then
return nil
end
local t = {}
local function merge(diags)
if not diags then
return
end
for i = 1, #diags do
local diag = diags[i]
local severity = diag.severity
if severity == define.DiagnosticSeverity.Hint
or severity == define.DiagnosticSeverity.Information then
if #t > 10000 then
goto CONTINUE
end
end
t[#t+1] = diag
::CONTINUE::
end
end
merge(a)
merge(b)
merge(c)
if #t == 0 then
return nil
end
return t
end
-- enable `push`, disable `clear`
function m.clear(uri, force)
await.close('diag:' .. uri)
if m.cache[uri] == nil and not force then
return
end
m.cache[uri] = nil
proto.notify('textDocument/publishDiagnostics', {
uri = uri,
diagnostics = {},
})
log.info('clearDiagnostics', uri)
end
function m.clearCacheExcept(uris)
local excepts = {}
for _, uri in ipairs(uris) do
excepts[uri] = true
end
for uri in pairs(m.cache) do
if not excepts[uri] then
m.cache[uri] = false
end
end
end
function m.clearAll(force)
if force then
for luri in files.eachFile() do
m.clear(luri, force)
end
else
for luri in pairs(m.cache) do
m.clear(luri)
end
end
end
function m.syntaxErrors(uri, ast)
if #ast.errs == 0 then
return nil
end
local results = {}
pcall(function ()
local disables = util.arrayToHash(config.get(uri, 'Lua.diagnostics.disable'))
for _, err in ipairs(ast.errs) do
if not disables[err.type:lower():gsub('_', '-')] then
results[#results+1] = buildSyntaxError(uri, err)
end
end
end)
return results
end
local function copyDiagsWithoutSyntax(diags)
if not diags then
return nil
end
local copyed = {}
for _, diag in ipairs(diags) do
if diag.data ~= 'syntax' then
copyed[#copyed+1] = diag
end
end
return copyed
end
---@async
---@param uri uri
---@return boolean
local function isValid(uri)
if not config.get(uri, 'Lua.diagnostics.enable') then
return false
end
if files.isLibrary(uri, true) then
local status = config.get(uri, 'Lua.diagnostics.libraryFiles')
if status == 'Disable' then
return false
elseif status == 'Opened' then
if not files.isOpen(uri) then
return false
end
end
end
if ws.isIgnored(uri) then
local status = config.get(uri, 'Lua.diagnostics.ignoredFiles')
if status == 'Disable' then
return false
elseif status == 'Opened' then
if not files.isOpen(uri) then
return false
end
end
end
local scheme = furi.split(uri)
local disableScheme = config.get(uri, 'Lua.diagnostics.disableScheme')
if util.arrayHas(disableScheme, scheme) then
return false
end
return true
end
---@async
function m.doDiagnostic(uri, isScopeDiag)
if not isValid(uri) then
return
end
await.delay()
local state = files.getState(uri)
if not state then
m.clear(uri)
return
end
local version = files.getVersion(uri)
local prog <close> = progress.create(uri, lang.script.WINDOW_DIAGNOSING, 0.5)
prog:setMessage(ws.getRelativePath(uri))
--log.debug('Diagnostic file:', uri)
local syntax = m.syntaxErrors(uri, state)
local diags = {}
local lastDiag = copyDiagsWithoutSyntax(m.cache[uri])
local function pushResult()
tracy.ZoneBeginN 'mergeSyntaxAndDiags'
local _ <close> = tracy.ZoneEnd
local full = mergeDiags(syntax, lastDiag, diags)
--log.debug(('Pushed [%d] results'):format(full and #full or 0))
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,
})
log.debug('publishDiagnostics', uri, #full)
end
pushResult()
local lastPushClock = time.time()
---@async
xpcall(core, log.error, uri, isScopeDiag, function (result)
diags[#diags+1] = buildDiagnostic(uri, result)
if not isScopeDiag and time.time() - lastPushClock >= 1000 then
lastPushClock = time.time()
pushResult()
end
end, function (checkedName)
if not lastDiag then
return
end
for i, diag in ipairs(lastDiag) do
if diag.code == checkedName then
lastDiag[i] = lastDiag[#lastDiag]
lastDiag[#lastDiag] = nil
end
end
end)
lastDiag = nil
pushResult()
end
---@param uri uri
function m.resendDiagnostic(uri)
local full = m.cache[uri]
if not full then
return
end
local version = files.getVersion(uri)
proto.notify('textDocument/publishDiagnostics', {
uri = uri,
version = version,
diagnostics = full,
})
log.debug('publishDiagnostics', uri, #full)
end
---@async
---@return table|nil result
---@return boolean? unchanged
function m.pullDiagnostic(uri, isScopeDiag)
if not isValid(uri) then
return nil, util.equal(m.cache[uri], nil)
end
await.delay()
local state = files.getState(uri)
if not state then
return nil, util.equal(m.cache[uri], nil)
end
local prog <close> = progress.create(uri, lang.script.WINDOW_DIAGNOSING, 0.5)
prog:setMessage(ws.getRelativePath(uri))
local syntax = m.syntaxErrors(uri, state)
local diags = {}
xpcall(core, log.error, uri, isScopeDiag, function (result)
diags[#diags+1] = buildDiagnostic(uri, result)
end)
local full = mergeDiags(syntax, diags)
if util.equal(m.cache[uri], full) then
return full, true
end
m.cache[uri] = full
return full
end
---@param uri uri
function m.refresh(uri)
if not ws.isReady(uri) then
return
end
await.close('diag:' .. uri)
---@async
await.call(function ()
await.setID('diag:' .. uri)
await.sleep(0.1)
xpcall(m.doDiagnostic, log.error, uri)
end)
local scp = scope.getScope(uri)
local scopeID = 'diagnosticsScope:' .. scp:getName()
await.close(scopeID)
---@async
await.call(function ()
local delay = config.get(uri, 'Lua.diagnostics.workspaceDelay') / 1000
if delay < 0 then
return
end
await.sleep(math.max(delay, 0.2))
m.diagnosticsScope(uri)
end)
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
---@async
function m.awaitDiagnosticsScope(suri, callback)
local scp = scope.getScope(suri)
while loading.count() > 0 do
await.sleep(1.0)
end
local clock = os.clock()
local bar <close> = progress.create(suri, lang.script.WORKSPACE_DIAGNOSTIC, 1)
local cancelled
bar:onCancel(function ()
log.info('Cancel workspace diagnostics')
cancelled = true
---@async
await.call(function ()
askForDisable(suri)
end)
end)
local uris = files.getAllUris(suri)
local sortedUris = ltable()
for _, uri in ipairs(uris) do
if files.isOpen(uri) then
sortedUris:pushHead(uri)
else
sortedUris:pushTail(uri)
end
end
log.info(('Diagnostics scope [%s], files count:[%d]'):format(scp:getName(), #uris))
local i = 0
for uri in sortedUris:pairs() do
while loading.count() > 0 do
await.sleep(1.0)
end
i = i + 1
bar:setMessage(('%d/%d'):format(i, #uris))
bar:setPercentage(i / #uris * 100)
callback(uri)
await.delay()
if cancelled then
log.info('Break workspace diagnostics')
break
end
end
bar:remove()
log.info(('Diagnostics scope [%s] finished, takes [%.3f] sec.'):format(scp:getName(), os.clock() - clock))
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 scp = scope.getScope(uri)
local id = 'diagnosticsScope:' .. scp:getName()
await.close(id)
await.call(function () ---@async
m.awaitDiagnosticsScope(uri, function (fileUri)
xpcall(m.doDiagnostic, log.error, fileUri, true)
end)
end, id)
end
---@async
function m.pullDiagnosticScope(callback)
local processing = 0
for _, scp in ipairs(scope.folders) do
if ws.isReady(scp.uri)
and config.get(scp.uri, 'Lua.diagnostics.enable') then
local id = 'diagnosticsScope:' .. scp:getName()
await.close(id)
await.call(function () ---@async
processing = processing + 1
local _ <close> = util.defer(function ()
processing = processing - 1
end)
local delay = config.get(scp.uri, 'Lua.diagnostics.workspaceDelay') / 1000
if delay < 0 then
return
end
print(delay)
await.sleep(math.max(delay, 0.2))
print('start')
m.awaitDiagnosticsScope(scp.uri, function (fileUri)
local suc, result, unchanged = xpcall(m.pullDiagnostic, log.error, fileUri, true)
if suc then
callback {
uri = fileUri,
result = result,
unchanged = unchanged,
version = files.getVersion(fileUri),
}
end
end)
end, id)
end
end
-- sleep for ever
while true do
await.sleep(1.0)
end
end
function m.refreshClient()
log.debug('Refresh client diagnostics')
proto.request('workspace/diagnostic/refresh', json.null)
end
ws.watch(function (ev, uri)
if ev == 'reload' then
m.diagnosticsScope(uri)
m.refreshClient()
end
end)
files.watch(function (ev, uri) ---@async
if ev == 'remove' then
m.clear(uri)
m.refresh(uri)
elseif ev == 'update' then
m.refresh(uri)
elseif ev == 'open' then
if ws.isReady(uri) then
m.resendDiagnostic(uri)
xpcall(m.doDiagnostic, log.error, uri)
end
elseif ev == 'close' then
if files.isLibrary(uri, true)
or ws.isIgnored(uri) then
m.clear(uri)
end
end
end)
config.watch(function (uri, key, value, oldValue)
if util.stringStartWith(key, 'Lua.diagnostics')
or util.stringStartWith(key, 'Lua.spell') then
if value ~= oldValue then
m.diagnosticsScope(uri)
m.refreshClient()
end
end
end)
fw.event(function (ev, path)
if util.stringEndWith(path, '.editorconfig') then
for _, scp in ipairs(ws.folders) do
m.diagnosticsScope(scp.uri)
m.refreshClient()
end
end
end)
return m
|