RemDebug小巧的Lua远端调试器 告诉你coroutine很强大

RemDebug is a remote debugger for Lua 5.0 and 5.1. It lets you control the execution of another Lua program remotely, setting breakpoints and inspecting the current state of the program. RemDebug can also debug CGILua scripts.

看他的源码只有2个东西:controller.lua 和 remdebug/engine.lua

controller(233行)接受用户输入的指令 把指令传到远程的debugger去 同时显示结果, 它是一个socket server.

engine(283行)是调试器的核心 解释controller的指令 通过sethook来进行调试动作。

一个完整的调试器 500行左右, 其中的engine完美演示了coroutine的强大,佩服。

不过1.0有个小bug,就是使用了getn,setn来进行表格插入 有问题,改成5.1的语法就OK了

你可能感兴趣的:(socket,lua)