-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathdebugger.lua
More file actions
282 lines (251 loc) · 7.17 KB
/
debugger.lua
File metadata and controls
282 lines (251 loc) · 7.17 KB
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
local root = ...
if debug.getregistry()["lua-debug"] then
local dbg = debug.getregistry()["lua-debug"]
local empty = { root = dbg.root }
function empty:init()
return self
end
function empty:start()
return self
end
function empty:attach()
return self
end
function empty:event(what, ...)
if what == "setThreadName" then
dbg:event(what, ...)
end
return self
end
function empty:set_wait()
return self
end
function empty:setup_patch()
return self
end
return empty
end
local function detectLuaDebugPath(cfg)
local PLATFORM
local function isWindows()
return package.config:sub(1, 1) == "\\"
end
do
local function shell(command)
--NOTICE: io.popen可能会多线程不安全
local f = assert(io.popen(command, 'r'))
local r = f:read '*l'
f:close()
return r:lower()
end
local function detect_windows()
if os.getenv "PROCESSOR_ARCHITECTURE" == "AMD64" then
PLATFORM = "win32-x64"
else
PLATFORM = "win32-ia32"
end
end
local function detect_linux()
local machine = shell "uname -m"
if machine == "x86_64" or machine == "amd64" then
PLATFORM = "linux-x64"
elseif machine == "aarch64" then
PLATFORM = "linux-arm64"
else
error "unknown ARCH"
end
end
local function detect_android()
PLATFORM = "linux-arm64"
end
local function detect_macos()
if shell "uname -m" == "arm64" then
PLATFORM = "darwin-arm64"
else
PLATFORM = "darwin-x64"
end
end
local function detect_bsd()
local machine = shell "uname -m"
if machine == "x86_64" or machine == "amd64" then
PLATFORM = "bsd-x64"
else
error "unknown ARCH"
end
end
if isWindows() then
detect_windows()
else
local name = shell 'uname -s'
if name == "linux" then
if shell 'uname -o' == 'android' then
detect_android()
else
detect_linux()
end
elseif name == "darwin" then
detect_macos()
elseif name == "netbsd" or name == "freebsd" then
detect_bsd()
else
error "unknown OS"
end
end
end
local function get_luadebug_dir()
local version = cfg.version
if not version then
if tostring(assert):match('builtin') ~= nil then
version = "luajit"
jit.off()
else
local version_t = {
["Lua 5.4"] = "lua54",
["Lua 5.3"] = "lua53",
["Lua 5.2"] = "lua52",
["Lua 5.1"] = "lua51",
}
version = version_t[_VERSION]
end
end
local t = {
latest = "lua-latest",
lua54 = "lua54",
lua53 = "lua53",
lua52 = "lua52",
lua51 = "lua51",
luajit = "luajit",
}
if not t[version] then
error(tostring(version).." is not supported.")
end
return t[version]
end
local rt = "/runtime/"..PLATFORM.."/"..get_luadebug_dir()
local ext = isWindows() and "dll" or "so"
return root..rt..'/luadebug.'..ext
end
local function initDebugger(dbg, cfg)
if type(cfg) == "string" then
cfg = { address = cfg }
end
local luadebug = os.getenv "LUA_DEBUG_CORE"
local updateenv = false
if not luadebug then
luadebug = detectLuaDebugPath(cfg)
updateenv = true
end
local isWindows = package.config:sub(1, 1) == "\\"
if isWindows then
assert(package.loadlib(luadebug, 'init'))(cfg.luaapi)
end
---@type LuaDebug
dbg.rdebug = assert(package.loadlib(luadebug, 'luaopen_luadebug'))()
if not os.getenv "LUA_DEBUG_PATH" then
dbg.rdebug.setenv("LUA_DEBUG_PATH", root)
end
if updateenv then
dbg.rdebug.setenv("LUA_DEBUG_CORE", luadebug)
end
local function utf8(s)
if cfg.ansi and isWindows then
return dbg.rdebug.a2u(s)
end
return s
end
dbg.root = utf8(root)
dbg.address = cfg.address and utf8(cfg.address) or nil
end
local dbg = {}
function dbg:start(cfg)
initDebugger(self, cfg)
local bootstrap_lua = ([[
package.path = %q
require "bee.thread".bootstrap_lua = debug.getinfo(1, "S").source
]]):format(
self.root..'/script/?.lua'
)
self.rdebug.start(("assert(load(%q))(...)"):format(bootstrap_lua)..([[
local logpath = %q
local log = require 'common.log'
log.file = logpath..'/worker.log'
require 'backend.master' .init(logpath, %q)
require 'backend.worker'
]]):format(
self.root
, ("%q, %s"):format(dbg.address, cfg.client == true and "true" or "false")
))
return self
end
function dbg:attach(cfg)
initDebugger(self, cfg)
local bootstrap_lua = ([[
package.path = %q
require "bee.thread".bootstrap_lua = debug.getinfo(1, "S").source
]]):format(
self.root..'/script/?.lua'
)
self.rdebug.start(("assert(load(%q))(...)"):format(bootstrap_lua)..([[
if require 'backend.master' .has() then
local logpath = %q
local log = require 'common.log'
log.file = logpath..'/worker.log'
require 'backend.worker'
end
]]):format(
self.root
))
return self
end
function dbg:event(...)
self.rdebug.event(...)
return self
end
function dbg:set_wait(name, f)
_G[name] = function (...)
_G[name] = nil
f(...)
self:event 'wait'
end
return self
end
function dbg:setup_patch()
local rawxpcall = xpcall
function pcall(f, ...)
return rawxpcall(f,
function (msg)
self:event("exception", msg)
return msg
end,
...)
end
function xpcall(f, msgh, ...)
return rawxpcall(f,
function (msg)
self:event("exception", msg)
return msgh and msgh(msg) or msg
end
, ...)
end
local rawcoroutineresume = coroutine.resume
local rawcoroutinewrap = coroutine.wrap
local function coreturn(co, ...)
self:event("thread", co, 1)
return ...
end
function coroutine.resume(co, ...)
self:event("thread", co, 0)
return coreturn(co, rawcoroutineresume(co, ...))
end
function coroutine.wrap(f)
local wf = rawcoroutinewrap(f)
local _, co = debug.getupvalue(wf, 1)
return function (...)
self:event("thread", co, 0)
return coreturn(co, wf(...))
end
end
return self
end
debug.getregistry()["lua-debug"] = dbg
return dbg