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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
local ac = ac
local type = type
local next = next
local ipairs = ipairs
local rawget = rawget
local pcall = pcall
local collectgarbage = collectgarbage
local getregistry = debug.getregistry
local getmetatable = debug.getmetatable
local getupvalue = debug.getupvalue
local getuservalue = debug.getuservalue
local getlocal = debug.getlocal
local getinfo = debug.getinfo
local maxinterger = math.maxinteger
local mathType = math.type
local tableConcat = table.concat
local _G = _G
local registry = getregistry()
_ENV = nil
local m = {}
--- 内存快照
---@return table
function m.snapshot()
local mark = {}
local find
local function getTostring(obj)
local mt = getmetatable(obj)
if not mt then
return nil
end
local toString = rawget(mt, '__tostring')
if not toString then
return nil
end
local suc, str = pcall(toString, obj)
if not suc then
return nil
end
if type(str) ~= 'string' then
return nil
end
return str
end
local function formatName(obj)
local tp = type(obj)
if tp == 'nil' then
return 'nil:nil'
elseif tp == 'boolean' then
if obj == true then
return 'boolean:true'
else
return 'boolean:false'
end
elseif tp == 'number' then
if mathType(obj) == 'integer' then
return ('number:%d'):format(obj)
else
-- 如果浮点数可以完全表示为整数,那么就转换为整数
local str = ('%.10f'):format(obj):gsub('%.?[0]+$', '')
if str:find('.', 1, true) then
-- 如果浮点数不能表示为整数,那么再加上它的精确表示法
str = ('%s(%q)'):format(str, obj)
end
return 'number:' .. str
end
elseif tp == 'string' then
local str = ('%q'):format(obj)
if #str > 100 then
local new = ('%s...(len=%d)'):format(str:sub(1, 100), #str)
if #new < #str then
str = new
end
end
return 'string:' .. str
elseif tp == 'function' then
local info = getinfo(obj, 'S')
if info.what == 'c' then
return ('function:%p(C)'):format(obj)
elseif info.what == 'main' then
return ('function:%p(main)'):format(obj)
else
return ('function:%p(%s:%d-%d)'):format(obj, info.source, info.linedefined, info.lastlinedefined)
end
elseif tp == 'table' then
local id = getTostring(obj)
if not id then
if obj == _G then
id = '_G'
elseif obj == registry then
id = 'registry'
end
end
if id then
return ('table:%p(%s)'):format(obj, id)
else
return ('table:%p'):format(obj)
end
elseif tp == 'userdata' then
local id = getTostring(obj)
if id then
return ('userdata:%p(%s)'):format(obj, id)
else
return ('userdata:%p'):format(obj)
end
else
return ('%s:%p'):format(tp, obj)
end
end
local function findTable(t, result)
result = result or {}
local mt = getmetatable(t)
local wk, wv
if mt then
local mode = rawget(mt, '__mode')
if type(mode) == 'string' then
if mode:find('k', 1, true) then
wk = true
end
if mode:find('v', 1, true) then
wv = true
end
end
end
for k, v in next, t do
if not wk then
local keyInfo = find(k)
if keyInfo then
result[#result+1] = {
type = 'key',
name = formatName(k),
info = keyInfo,
}
end
end
if not wv then
local valueInfo = find(v)
if valueInfo then
result[#result+1] = {
type = 'field',
name = formatName(k) .. '|' .. formatName(v),
info = valueInfo,
}
end
end
end
local MTInfo = find(getmetatable(t))
if MTInfo then
result[#result+1] = {
type = 'metatable',
name = '',
info = MTInfo,
}
end
if #result == 0 then
return nil
end
return result
end
local function findFunction(f, result, trd, stack)
result = result or {}
for i = 1, maxinterger do
local n, v = getupvalue(f, i)
if not n then
break
end
local valueInfo = find(v)
if valueInfo then
result[#result+1] = {
type = 'upvalue',
name = n,
info = valueInfo,
}
end
end
if trd then
for i = 1, maxinterger do
local n, l = getlocal(trd, stack, i)
if not n then
break
end
local valueInfo = find(l)
if valueInfo then
result[#result+1] = {
type = 'local',
name = n,
info = valueInfo,
}
end
end
end
if #result == 0 then
return nil
end
return result
end
local function findUserData(u, result)
result = result or {}
for i = 1, maxinterger do
local v, b = getuservalue(u, i)
if not b then
break
end
local valueInfo = find(v)
if valueInfo then
result[#result+1] = {
type = 'uservalue',
name = formatName(i),
info = valueInfo,
}
end
end
local MTInfo = find(getmetatable(u))
if MTInfo then
result[#result+1] = {
type = 'metatable',
name = '',
info = MTInfo,
}
end
if #result == 0 then
return nil
end
return result
end
local function findThread(trd, result)
-- 不查找主线程,主线程一定是临时的(视为弱引用)
if trd == registry[1] then
return nil
end
result = result or {}
for i = 1, maxinterger do
local info = getinfo(trd, i, 'Sf')
if not info then
break
end
local funcInfo = find(info.func, trd, i)
if funcInfo then
result[#result+1] = {
type = 'stack',
name = i .. '@' .. formatName(info.func),
info = funcInfo,
}
end
end
if #result == 0 then
return nil
end
return result
end
function find(obj, trd, stack)
if mark[obj] then
return mark[obj]
end
local tp = type(obj)
if tp == 'table' then
mark[obj] = {}
mark[obj] = findTable(obj, mark[obj])
elseif tp == 'function' then
mark[obj] = {}
mark[obj] = findFunction(obj, mark[obj], trd, stack)
elseif tp == 'userdata' then
mark[obj] = {}
mark[obj] = findUserData(obj, mark[obj])
elseif tp == 'thread' then
mark[obj] = {}
mark[obj] = findThread(obj, mark[obj])
else
return nil
end
if mark[obj] then
mark[obj].object = obj
end
return mark[obj]
end
return {
name = formatName(registry),
type = 'root',
info = find(registry),
}
end
--- 寻找对象的引用
---@return string
function m.catch(...)
local targets = {}
for _, target in ipairs {...} do
targets[target] = true
end
local report = m.snapshot()
local path = {}
local result = {}
local mark = {}
local function push()
result[#result+1] = tableConcat(path, ' => ')
end
local function search(t)
path[#path+1] = ('(%s)%s'):format(t.type, t.name)
local addTarget
if targets[t.info.object] then
targets[t.info.object] = nil
addTarget = t.info.object
push(t)
end
if not mark[t.info] then
mark[t.info] = true
for _, obj in ipairs(t.info) do
search(obj)
end
end
path[#path] = nil
if addTarget then
targets[addTarget] = true
end
end
search(report)
return result
end
return m
|