summaryrefslogtreecommitdiff
path: root/server-beta/src/core/diagnostics/undefined-global.lua
blob: 8476df6152dbc498e25250aa14b1dc6d69fed36a (plain)
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
local files    = require 'files'
local searcher = require 'searcher'
local lang     = require 'language'
local library  = require 'library'
local config   = require 'config'

return function (uri, callback)
    local ast = files.getAst(uri)
    if not ast then
        return
    end

    -- 先遍历一次该文件中的全局变量
    -- 如果变量有 set 行为,则做标记
    -- 然后再遍历一次,对所有的行为打上相同标记
    local hasSet = {}
    searcher.eachGlobal(ast.ast, function (info)
        if hasSet[info.source] ~= nil then
            return
        end
        local mark = false
        searcher.eachRef(info.source, function (info)
            if info.mode == 'set' then
                mark = true
            end
        end)
        searcher.eachRef(info.source, function (info)
            hasSet[info.source] = mark
        end)
    end)
    -- 然后再遍历一次,检查所有标记为假的全局变量
    searcher.eachGlobal(ast.ast, function (info)
        local source = info.source
        local key = info.key
        local skey = key and key:match '^s|(.+)$'
        if not skey then
            return
        end
        if library.global[skey] then
            return
        end
        if config.config.diagnostics.globals[skey] then
            return
        end
        if info.mode == 'get' and not hasSet[source] then
            local message
            local otherVersion  = library.other[key]
            local customVersion = library.custom[key]
            if otherVersion then
                message = ('%s(%s)'):format(message, lang.script('DIAG_DEFINED_VERSION', table.concat(otherVersion, '/'), config.config.runtime.version))
            elseif customVersion then
                message = ('%s(%s)'):format(message, lang.script('DIAG_DEFINED_CUSTOM', table.concat(customVersion, '/')))
            else
                message = lang.script('DIAG_UNDEF_GLOBAL', info.key)
            end
            callback {
                start   = source.start,
                finish  = source.finish,
                message = message,
            }
        end
    end)
end