blob: ba436f86ab43a4585f31cec2afe6aba49a2e6779 (
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
|
local guide = require 'parser.guide'
local searcher = require 'searcher.searcher'
local function getLinks(root)
local cache = {}
guide.eachSourceType(root, 'call', function (source)
local uris = searcher.getLinkUris(source)
if uris then
for i = 1, #uris do
local uri = uris[i]
if not cache[uri] then
cache[uri] = {}
end
cache[uri][#cache[uri]+1] = source
end
end
end)
return cache
end
function searcher.getLinks(source)
source = guide.getRoot(source)
local cache = searcher.cache.getLinks[source]
if cache ~= nil then
return cache
end
local unlock = searcher.lock('getLinks', source)
if not unlock then
return nil
end
cache = getLinks(source) or false
searcher.cache.getLinks[source] = cache
unlock()
return cache
end
|