summaryrefslogtreecommitdiff
path: root/server-beta/src/vm/getLinks.lua
blob: 6875771f9b8e508a35569342ab1ca90cd57e9a7e (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
local guide = require 'parser.guide'
local vm    = require 'vm.vm'

local function getLinks(root)
    local cache = {}
    local ok
    guide.eachSpecialOf(root, 'require', function (source)
        local call = source.parent
        if call.type == 'call' then
            local uris = vm.getLinkUris(call)
            if uris then
                ok = true
                for i = 1, #uris do
                    local uri = uris[i]
                    if not cache[uri] then
                        cache[uri] = {}
                    end
                    cache[uri][#cache[uri]+1] = call
                end
            end
        end
    end)
    if not ok then
        return nil
    end
    return cache
end

function vm.getLinks(source)
    source = guide.getRoot(source)
    local cache = vm.cache.getLinks[source]
    if cache ~= nil then
        return cache
    end
    local unlock = vm.lock('getLinks', source)
    if not unlock then
        return nil
    end
    local clock = os.clock()
    cache = getLinks(source) or false
    local passed = os.clock() - clock
    if passed > 0.1 then
        log.warn(('getLinks takes [%.3f] sec!'):format(passed))
    end
    vm.cache.getLinks[source] = cache
    unlock()
    return cache
end