开源一个lua的调试器

本文介绍了一款基于lua debug库开发的轻量级调试器,该调试器简单易用,只需引入ldb.lua文件即可进行调试,无需修改lua源代码或引入C模块。调试器提供类似gdb的功能,包括设置断点、查看变量、单步执行等。目前该调试器在github上开源,作者号召社区一起完善,尤其是增加frame和step up功能。
摘要由CSDN通过智能技术生成

       lua是一个小巧高效的脚本语言,但是一直都没有一个好用的调试器,很多项目团队还是用最简单的加print打印调试信息办法做调试。

       最近研究了一下lua的debug库,发现完全可以基于debug库开发一个类似gdb的调试工具,于是花几天时间实现了一个初步可用的版本。

      闲话少说,先上代码

--[[*****************************************************************************
**** Author		: tanjie(tanjiesymbol@gmail.com)
**** Date		: 2013-07-01
**** Desc		: this is a gdb-like debug tools for lua
**** Usage  : 1.require("ldb")
              2.ldb.ldb_open()  --you will pause here for setting breakpoints
              3.ldb.ldb()				--set breakpoint anywhere you want to pause
              4.b/bd/be/bl      --add/disable/enable/list  the breakpoints
              5.p/print         --print local or global variables
              6.s/step					--step into a function
              7.n/next					--step over a function
              8.l/list					--list ten lines around the current line
              9.f/file					--print the current file and line number
              10.bt							--print traceback
              11.c/cont					--continue
*****************************************************************************]]
module("ldb",package.seeall)
dbcmd = {
	next=false,
	trace=false,
	last_cmd="",
	bps={},
	max=0,
	status="",
	stack_depth = 0;
	script_name = "ldb.lua"
}

function Split(str, delim, maxNb)
    if string.find(str, delim) == nil then
        return { str }
    end
    if maxNb == nil or maxNb < 1 then
        maxNb = 0    -- No limit
    end
    local result = {}
    local pat = "(.-)" .. delim .. "()"
    local nb = 0
    local lastPos
    for part, pos in string.gfind(str, pat) do
        nb = nb + 1
        result[nb] = part
        lastPos = pos
        if nb == maxNb then break end
    end
    -- Handle the last field
    if nb ~= maxNb then
        result[nb + 1] = string.sub(str, lastPos)
    end
    return result
end

function get_stack_depth()
	local stack_lines = Split(debug.traceback(),"\n")
	local depth = 0
	for i=1,#stack_lines do
        if string.find(stack_lines[i],dbcmd.script_name) == nil then
			depth = depth + 1
		end
	end
	return depth
end
fun
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值