基于这种从 Lua C API 获取调试信息的方法,我整理了一个(有点混乱)示例,说明如何将其集成到 SWIG 接口中:
%module test
%{
#undef SWIG_fail_arg
#define SWIG_fail_arg(func_name,argnum,type) \
{lua_Debug ar;\
lua_getstack(L, 1, &ar);\
lua_getinfo(L, "nSl", &ar);\
lua_pushfstring(L,"Error (%s:%d) in %s (arg %d), expected '%s' got '%s'",\
ar.source,ar.currentline,func_name,argnum,type,SWIG_Lua_typename(L,argnum));\
goto fail;}
%}
%include <std_string.i>
%inline %{
void func(const std::string& str) {}
%}
这基本上将默认SWIG_fail_arg
宏替换为修改后的宏,该宏获取并打印一些调试信息。
我用最新的 SWIG 主干对其进行了测试(我认为您可能使用的是旧版本,因为我看到的文本不太匹配),但我能够做到:
Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio
> require('test')
> local n=4
> test.func(n)
Error (=stdin:1) in func (arg 1), expected 'std::string const &' got 'nil'
stack traceback:
[C]: in function 'func'
stdin:1: in main chunk
[C]: ?
不过,我似乎已经有更多的调试信息(即完整的堆栈跟踪)。