forked from cloudwu/lua-trace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrace.lua
168 lines (150 loc) · 2.96 KB
/
trace.lua
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
local debug = debug
local print = print
local ipairs = ipairs
local pairs = pairs
local string = string
local rawget = rawget
local info = { file = {} }
local trace = {}
local function setname(level)
info.filename = debug.getinfo(level + 1,"S").short_src
if info.file[info.filename] == nil then
info.file[info.filename] = {}
end
info.var = info.file[info.filename]
end
local function make_local(index)
return function()
local name , value = debug.getlocal(4 , index)
return name , "local", value
end
end
local function make_upvalue(func, index)
return function()
local name , value = debug.getupvalue(func, index)
return name , "upvalue", value
end
end
local function make_global(env, name)
return function()
return name , "global" , rawget(env,name)
end
end
local function gen_var(var_name, level)
local i = 1
while true do
local name,v = debug.getlocal(5,i)
if name == var_name then
return make_local(i)
end
if name == nil then
break
end
i=i+1
end
i = 1
local f = debug.getinfo(5, "f").func
while true do
local name = debug.getupvalue(f,i)
if name == var_name then
return make_upvalue(f,i)
end
if name == nil then
break
end
i=i+1
end
local name,env = debug.getupvalue(f,1)
if name == '_ENV' then
return make_global(env, var_name)
end
end
local function dump_local(level)
local i = 1
while true do
local name,v = debug.getlocal(level,i)
if name == nil then
break
end
if name == "(*temporary)" then
print(name,v)
end
i=i+1
end
end
local function gen_vars(var, call)
local ret = {}
for _,k in ipairs(var) do
local f = gen_var(k, call)
if f then
table.insert(ret, f)
end
end
return ret
end
local function hookline(var , call, line)
print(info.filename, ":" , line)
if info.var[line] == nil then
info.var[line] = gen_vars(var, call)
end
for _,v in ipairs(info.var[line]) do
local name , type , value = v()
if info.last[name] ~= value then
print(name , type, value)
info.last[name] = value
end
end
end
local function hook(var , level)
local call = 0
local index = {}
for w in string.gmatch(var, "%w+") do
table.insert(index,w)
end
local function f (mode, line)
if mode == 'return' then
if call <= 0 then
debug.sethook()
trace.on = nil
return
end
setname(3)
call = call - 1
if call == level then
debug.sethook(f,'crl')
end
elseif mode == 'call' then
setname(2)
call = call + 1
if call > level then
debug.sethook(f,'cr')
end
elseif mode == 'line' then
hookline(index , call, line)
end
end
return f
end
local function up(level, f)
local call = 0
return function(mode)
if mode == 'return' then
call = call + 1
if call == level then
setname(3)
debug.sethook(f,'crl')
end
elseif mode == 'call' then
call = call - 1
end
end
end
function trace.trace(var , level)
if trace.on then
return
end
trace.on = true
info.last = {}
debug.sethook(up(2 , hook(var or "" , level or 0)) , 'cr')
end
return trace