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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
---@class vm
local vm = require 'vm.vm'
local util = require 'utility'
local guide = require 'parser.guide'
local localID = require 'vm.local-id'
local files = require 'files'
local await = require 'await'
local progress = require 'progress'
local lang = require 'language'
local simpleSwitch
local function searchGetLocal(source, node, pushResult)
local key = guide.getKeyName(source)
for _, ref in ipairs(node.node.ref) do
if ref.type == 'getlocal'
and ref.next
and guide.getKeyName(ref.next) == key then
pushResult(ref.next)
end
end
end
simpleSwitch = util.switch()
: case 'local'
: call(function (source, pushResult)
if source.ref then
for _, ref in ipairs(source.ref) do
if ref.type == 'setlocal'
or ref.type == 'getlocal' then
pushResult(ref)
end
end
end
end)
: case 'getlocal'
: case 'setlocal'
: call(function (source, pushResult)
simpleSwitch('local', source.node, pushResult)
end)
: case 'field'
: call(function (source, pushResult)
local parent = source.parent
if parent.type ~= 'tablefield' then
simpleSwitch(parent.type, parent, pushResult)
end
end)
: case 'setfield'
: case 'getfield'
: call(function (source, pushResult)
local node = source.node
if node.type == 'getlocal' then
searchGetLocal(source, node, pushResult)
return
end
end)
: case 'getindex'
: case 'setindex'
: call(function (source, pushResult)
local node = source.node
if node.type == 'getlocal' then
searchGetLocal(source, node, pushResult)
end
end)
: case 'goto'
: call(function (source, pushResult)
if source.node then
simpleSwitch('label', source.node, pushResult)
pushResult(source.node)
end
end)
: case 'label'
: call(function (source, pushResult)
pushResult(source)
if source.ref then
for _, ref in ipairs(source.ref) do
pushResult(ref)
end
end
end)
---@async
local function searchInAllFiles(suri, searcher, notify)
searcher(suri)
local uris = {}
for uri in files.eachFile(suri) do
if not vm.isMetaFile(uri)
and suri ~= uri then
uris[#uris+1] = uri
end
end
local loading <close> = progress.create(suri, lang.script.WINDOW_SEARCHING_IN_FILES, 1)
local cancelled
loading:onCancel(function ()
cancelled = true
end)
for i, uri in ipairs(uris) do
if notify then
local continue = notify(uri)
if continue == false then
break
end
end
loading:setMessage(('%03d/%03d'):format(i, #uris))
loading:setPercentage(i / #uris * 100)
await.delay()
if cancelled then
break
end
searcher(uri)
end
end
---@async
local function searchField(source, pushResult, defMap, fileNotify)
local key = guide.getKeyName(source)
---@param src parser.object
local function checkDef(src)
for _, def in ipairs(vm.getDefs(src)) do
if defMap[def] then
pushResult(src)
return
end
end
end
local pat = '[:.]%s*' .. key
---@async
local function findWord(uri)
local text = files.getText(uri)
if not text then
return
end
if not text:match(pat) then
return
end
local state = files.getState(uri)
if not state then
return
end
---@async
guide.eachSourceType(state.ast, 'getfield', function (src)
if src.field and src.field[1] == key then
checkDef(src)
await.delay()
end
end)
---@async
guide.eachSourceType(state.ast, 'getmethod', function (src)
if src.method and src.method[1] == key then
checkDef(src)
await.delay()
end
end)
---@async
guide.eachSourceType(state.ast, 'getindex', function (src)
if src.index and src.index.type == 'string' and src.index[1] == key then
checkDef(src)
await.delay()
end
end)
end
searchInAllFiles(guide.getUri(source), findWord, fileNotify)
end
---@async
local function searchFunction(source, pushResult, defMap, fileNotify)
---@param src parser.object
local function checkDef(src)
for _, def in ipairs(vm.getDefs(src)) do
if defMap[def] then
pushResult(src)
return
end
end
end
---@async
local function findCall(uri)
local state = files.getState(uri)
if not state then
return
end
---@async
guide.eachSourceType(state.ast, 'call', function (src)
checkDef(src.node)
await.delay()
end)
end
searchInAllFiles(guide.getUri(source), findCall, fileNotify)
end
local searchByParentNode
local nodeSwitch = util.switch()
: case 'field'
: case 'method'
---@async
: call(function (source, pushResult, defMap, fileNotify)
searchByParentNode(source.parent, pushResult, defMap, fileNotify)
end)
: case 'getfield'
: case 'setfield'
: case 'getmethod'
: case 'setmethod'
: case 'getindex'
: case 'setindex'
---@async
: call(function (source, pushResult, defMap, fileNotify)
local key = guide.getKeyName(source)
if type(key) ~= 'string' then
return
end
searchField(source, pushResult, defMap, fileNotify)
end)
: case 'tablefield'
: case 'tableindex'
---@async
: call(function (source, pushResult, defMap, fileNotify)
searchField(source, pushResult, defMap, fileNotify)
end)
: case 'function'
: case 'doc.type.function'
---@async
: call(function (source, pushResult, defMap, fileNotify)
searchFunction(source, pushResult, defMap, fileNotify)
end)
---@param source parser.object
---@param pushResult fun(src: parser.object)
local function searchBySimple(source, pushResult)
simpleSwitch(source.type, source, pushResult)
end
---@param source parser.object
---@param pushResult fun(src: parser.object)
local function searchByLocalID(source, pushResult)
local idSources = localID.getSources(source)
if not idSources then
return
end
for _, src in ipairs(idSources) do
pushResult(src)
end
end
---@async
---@param source parser.object
---@param pushResult fun(src: parser.object)
---@param fileNotify fun(uri: uri): boolean
function searchByParentNode(source, pushResult, defMap, fileNotify)
nodeSwitch(source.type, source, pushResult, defMap, fileNotify)
end
local function searchByNode(source, pushResult)
local node = vm.compileNode(source)
if not node then
return
end
local uri = guide.getUri(source)
for n in node:eachObject() do
if n.type == 'global' then
for _, get in ipairs(n:getGets(uri)) do
pushResult(get)
end
end
end
end
local function searchByDef(source, pushResult)
local defMap = {}
if source.type == 'function'
or source.type == 'doc.type.function' then
defMap[source] = true
return defMap
end
local defs = vm.getDefs(source)
for _, def in ipairs(defs) do
pushResult(def)
defMap[def] = true
end
return defMap
end
---@async
---@param source parser.object
---@param fileNotify? fun(uri: uri): boolean
function vm.getRefs(source, fileNotify)
local results = {}
local mark = {}
local hasLocal
local function pushResult(src)
if src.type == 'local' then
if hasLocal then
return
end
hasLocal = true
end
if not mark[src] then
mark[src] = true
results[#results+1] = src
end
end
searchBySimple(source, pushResult)
searchByLocalID(source, pushResult)
searchByNode(source, pushResult)
local defMap = searchByDef(source, pushResult)
searchByParentNode(source, pushResult, defMap, fileNotify)
return results
end
|