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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
local util = require 'utility'
local guide = require 'parser.guide'
---@class vm
local vm = require 'vm.vm'
---@class vm.variable
---@field sets parser.object[]
---@field gets parser.object[]
---@field node? vm.node
---@class parser.object
---@field package _variableID string|false
---@field package _variableIDs table<string, vm.variable>
local compileVariableID, getVariable
local compileSwitch = util.switch()
: case 'local'
: case 'self'
: call(function (source)
source._variableID = ('l|%d'):format(source.start)
if not source.ref then
return
end
for _, ref in ipairs(source.ref) do
compileVariableID(ref)
end
end)
: case 'setlocal'
: case 'getlocal'
: call(function (source)
source._variableID = ('l|%d'):format(source.node.start)
compileVariableID(source.next)
end)
: case 'getfield'
: case 'setfield'
: call(function (source)
local parentID = source.node._variableID
if not parentID then
return
end
local key = guide.getKeyName(source)
if type(key) ~= 'string' then
return
end
source._variableID = parentID .. vm.ID_SPLITE .. key
source.field._variableID = source._variableID
if source.type == 'getfield' then
compileVariableID(source.next)
end
end)
: case 'getmethod'
: case 'setmethod'
: call(function (source)
local parentID = source.node._variableID
if not parentID then
return
end
local key = guide.getKeyName(source)
if type(key) ~= 'string' then
return
end
source._variableID = parentID .. vm.ID_SPLITE .. key
source.method._variableID = source._variableID
if source.type == 'getmethod' then
compileVariableID(source.next)
end
end)
: case 'getindex'
: case 'setindex'
: call(function (source)
local parentID = source.node._variableID
if not parentID then
return
end
local key = guide.getKeyName(source)
if type(key) ~= 'string' then
return
end
source._variableID = parentID .. vm.ID_SPLITE .. key
source.index._variableID = source._variableID
if source.type == 'setindex' then
compileVariableID(source.next)
end
end)
local leftSwitch = util.switch()
: case 'field'
: case 'method'
: call(function (source)
return getVariable(source.parent)
end)
: case 'getfield'
: case 'setfield'
: case 'getmethod'
: case 'setmethod'
: case 'getindex'
: case 'setindex'
: call(function (source)
return getVariable(source.node)
end)
: case 'getlocal'
: call(function (source)
return source.node
end)
: case 'local'
: case 'self'
: call(function (source)
return source
end)
---@param source parser.object
---@return parser.object?
function getVariable(source)
return leftSwitch(source.type, source)
end
---@param id string
---@param source parser.object
function vm.insertVariableID(id, source)
local root = guide.getRoot(source)
if not root._variableIDs then
root._variableIDs = util.multiTable(2, function ()
return {
sets = {},
gets = {},
}
end)
end
local sources = root._variableIDs[id]
if guide.isSet(source) then
sources.sets[#sources.sets+1] = source
else
sources.gets[#sources.gets+1] = source
end
end
function compileVariableID(source)
if not source then
return
end
source._variableID = false
if not compileSwitch:has(source.type) then
return
end
compileSwitch(source.type, source)
local id = source._variableID
if not id then
return
end
vm.insertVariableID(id, source)
end
---@param source parser.object
---@return string|false
function vm.getVariableID(source)
if source._variableID ~= nil then
return source._variableID
end
source._variableID = false
local loc = getVariable(source)
if not loc then
return source._variableID
end
compileVariableID(loc)
return source._variableID
end
---@param source parser.object
---@param key? string
---@return vm.variable?
function vm.getVariableInfo(source, key)
local id = vm.getVariableID(source)
if not id then
return nil
end
local root = guide.getRoot(source)
if not root._variableIDs then
return nil
end
if key then
if type(key) ~= 'string' then
return nil
end
id = id .. vm.ID_SPLITE .. key
end
return root._variableIDs[id]
end
---@param source parser.object
---@param key? string
---@return parser.object[]?
function vm.getVariableSets(source, key)
local localInfo = vm.getVariableInfo(source, key)
if not localInfo then
return nil
end
return localInfo.sets
end
---@param source parser.object
---@param key? string
---@return parser.object[]?
function vm.getVariableGets(source, key)
local localInfo = vm.getVariableInfo(source, key)
if not localInfo then
return nil
end
return localInfo.gets
end
---@param source parser.object
---@param includeGets boolean
---@return parser.object[]?
function vm.getVariableFields(source, includeGets)
local id = vm.getVariableID(source)
if not id then
return nil
end
local root = guide.getRoot(source)
if not root._variableIDs then
return nil
end
-- TODO:optimize
local clock = os.clock()
local fields = {}
for lid, sources in pairs(root._variableIDs) do
if lid ~= id
and util.stringStartWith(lid, id)
and lid:sub(#id + 1, #id + 1) == vm.ID_SPLITE
-- only one field
and not lid:find(vm.ID_SPLITE, #id + 2) then
for _, src in ipairs(sources.sets) do
fields[#fields+1] = src
end
if includeGets then
for _, src in ipairs(sources.gets) do
fields[#fields+1] = src
end
end
end
end
local cost = os.clock() - clock
if cost > 1.0 then
log.warn('variable-id getFields takes %.3f seconds', cost)
end
return fields
end
|