summaryrefslogtreecommitdiff
path: root/server/debugger.lua
blob: c14cfaea569445cb7c5b36cd0b5e9b38f86c3272 (plain)
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
local fs = require 'bee.filesystem'
local extensionPath = fs.path(os.getenv 'USERPROFILE') / '.vscode' / 'extensions'
log.debug('Search extensions at:', extensionPath:string())
if not fs.is_directory(extensionPath) then
    log.debug('Extension path is not a directory.')
    return
end

local luaDebugs = {}
for path in extensionPath:list_directory() do
    if fs.is_directory(path) then
        local name = path:filename():string()
        if name:find('actboy168.lua-debug-', 1, true) then
            luaDebugs[#luaDebugs+1] = name
        end
    end
end

if #luaDebugs == 0 then
    log.debug('Cant find "actboy168.lua-debug"')
    return
end

local function getVer(filename)
    local a, b, c = filename:match('(%d+)%.(%d+)%.(%d+)$')
    if not a then
        return 0
    end
    return a * 1000000 + b * 1000 + c
end

table.sort(luaDebugs, function (a, b)
    return getVer(a) > getVer(b)
end)

local debugPath = extensionPath / luaDebugs[1]
local cpath = "runtime/win64/lua54/?.dll"
local path  = "script/?.lua"

package.cpath = package.cpath .. ';' .. (debugPath / cpath):string()

local function tryDebugger()
    local rdebug = require "remotedebug"
    local entry = package.searchpath('start_debug', (debugPath / path):string())
    local dbg = loadfile(entry)(rdebug, debugPath:string() .. '/', path, cpath)
    local port = "11411"
    dbg:start("listen:127.0.0.1:" .. port, true)
    log.debug('Debugger startup, listen port:', port)
end

xpcall(tryDebugger, log.debug)