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
|
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 m = {}
m._start = false
m.cache = {}
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 lines = files.getLines(uri)
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.config.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
relatedInformation[#relatedInformation+1] = {
message = rmessage,
location = define.location(uri, define.range(lines, text, rel.start, rel.finish)),
}
end
end
return {
range = define.range(lines, text, err.start, err.finish),
severity = define.DiagnosticSeverity.Error,
source = lang.script.DIAG_SYNTAX_CHECK,
message = message,
relatedInformation = relatedInformation,
}
end
local function buildDiagnostic(uri, diag)
local lines = files.getLines(uri)
local text = files.getText(uri)
local relatedInformation
if diag.related then
relatedInformation = {}
for _, rel in ipairs(diag.related) do
local rtext = files.getText(rel.uri)
local rlines = files.getLines(rel.uri)
relatedInformation[#relatedInformation+1] = {
message = rel.message or rtext:sub(rel.start, rel.finish),
location = define.location(rel.uri, define.range(rlines, rtext, rel.start, rel.finish))
}
end
end
return {
range = define.range(lines, text, diag.start, diag.finish),
source = lang.script.DIAG_DIAGNOSTICS,
severity = diag.level,
message = diag.message,
code = diag.code,
tags = diag.tags,
relatedInformation = relatedInformation,
}
end
local function merge(a, b)
if not a and not b then
return nil
end
local t = {}
if a then
for i = 1, #a do
t[#t+1] = a[i]
end
end
if b then
for i = 1, #b do
t[#t+1] = b[i]
end
end
return t
end
function m.clear(uri)
if not m.cache[uri] then
return
end
m.cache[uri] = nil
proto.notify('textDocument/publishDiagnostics', {
uri = uri,
diagnostics = {},
})
end
function m.syntaxErrors(uri, ast)
if #ast.errs == 0 then
return nil
end
local results = {}
for _, err in ipairs(ast.errs) do
results[#results+1] = buildSyntaxError(uri, err)
end
return results
end
function m.diagnostics(uri, syntaxOnly)
if syntaxOnly or not m._start then
return m.cache[uri]
end
local diags = core(uri)
if not diags then
return nil
end
local results = {}
for _, diag in ipairs(diags) do
results[#results+1] = buildDiagnostic(uri, diag)
end
return results
end
function m.doDiagnostic(uri, syntaxOnly)
local ast = files.getAst(uri)
if not ast then
m.clear(uri)
return
end
local syntax = m.syntaxErrors(uri, ast)
local diagnostics = m.diagnostics(uri, syntaxOnly)
local full = merge(syntax, diagnostics)
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,
diagnostics = full,
})
end
function m.refresh(uri)
await.create(function ()
await.delay(function ()
return files.globalVersion
end)
if uri then
m.doDiagnostic(uri, true)
end
if not m._start then
return
end
local clock = os.clock()
if uri then
m.doDiagnostic(uri)
end
for destUri in files.eachFile() do
if destUri ~= uri then
m.doDiagnostic(files.getOriginUri(destUri))
await.delay(function ()
return files.globalVersion
end)
end
end
local passed = os.clock() - clock
log.info(('Finish diagnostics, takes [%.3f] sec.'):format(passed))
end)
end
function m.start()
m._start = true
m.refresh()
end
return m
|