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
|
local vm = require 'vm.vm'
local guide = require 'parser.guide'
local util = require 'utility'
local await = require 'await'
local function getRefs(source, deep)
local results = {}
local lock = vm.lock('eachRef', source)
if not lock then
return results
end
await.delay()
local clock = os.clock()
local myResults, count = guide.requestReference(source, vm.interface, deep)
if DEVELOP and os.clock() - clock > 0.1 then
log.warn('requestReference', count, os.clock() - clock, guide.getUri(source), util.dump(source, { deep = 1 }))
end
vm.mergeResults(results, myResults)
lock()
return results
end
function vm.getRefs(source, deep)
if ALL_DEEP then
deep = 'deep'
end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('eachRefOfGlobal')[name]
or vm.getCache('eachRef')[source]
or getRefs(source, 'deep')
vm.getCache('eachRefOfGlobal')[name] = cache
vm.getCache('eachRef')[source] = cache
return cache
else
local cache = vm.getCache('eachRef')[source]
or getRefs(source, deep)
if deep then
vm.getCache('eachRef')[source] = cache
end
return cache
end
end
function vm.eachRef(source, callback)
local results = vm.getRefs(source)
for i = 1, #results do
callback(results[i])
end
end
|