luajit笔记---编译成静态库以及FFI绑定宿主程序函数

来源:互联网 发布:酒店网络方案 编辑:程序博客网 时间:2024/05/20 18:45
local ffi = require("ffi")ffi.cdef[[   typedef struct {      uint8_t id;     char * name;    } stuInfo;]]--新建一个结构体local n = 1local stu = ffi.new("stuInfo[?]", n)--新建变长的结构体变量for i=0, n-1 do   stu[i].id = 1;   local name = "zhao";   local ptr=ffi.cast("char *", name);--将lua中字符串转换为c的`char *`   stu[i].name = ptr;endprint(stu[0].id);local myname = ffi.string(stu[0].name);--将c中`char *`类型转换为lua的字符串print(myname);
http://blog.csdn.net/fg5823820/article/details/8888207

本以为可以像lua一样把代码丢进去直接编译就好了,结果发现luajit有一堆汇编代码,不知道怎么处理,后来一搜索才知道luajit本身提高的批处理也可以编译成静态库,就是在后面加个static,郁闷到了。http://blog.csdn.net/whitehack/article/details/6451293

Google来Google,终于看到用FFI绑定宿主程序函数的例子,卧槽,知道真相我的眼泪都流下来!原来FFI本质是绑定导出的符号,所以说只要导出符号就可以用,吐血。

[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. #include <lua.hpp>  
  2.   
  3. #include <cassert>  
  4.   
  5. // Please note that despite the fact that we build this code as a regular  
  6. // executable (exe), we still use __declspec(dllexport) to export  
  7. // symbols. Without doing that FFI wouldn't be able to locate them!  
  8.   
  9. extern "C"   
  10. {  
  11.     __declspec(dllexportvoid __cdecl hello_from_lua(const char *msg)  
  12.     {  
  13.         printf("A message from LUA: %s\n", msg);  
  14.     }  
  15.     __declspec(dllexportint  Add(int a,int b)  
  16.     {  
  17.         return a+b;  
  18.     }  
  19. }  
  20.   
  21. const char *lua_code =  
  22. "local ffi = require('ffi')                   \n"  
  23. "ffi.cdef[[                                   \n"  
  24. "const char * hello_from_lua(const char *);   \n" // matches the C prototype  
  25. "int Add(int,int);"  
  26. "]]                                           \n"  
  27. "ffi.C.hello_from_lua('Hello from LUA!')      \n" // do actual C call  
  28. "sum = ffi.C.Add(10,20)      \n"  
  29. "print('sum:'..sum)      \n"  
  30. ;  
  31.   
  32. int main()  
  33. {  
  34.     lua_State *lua = luaL_newstate();  
  35.     assert(lua);  
  36.     luaL_openlibs(lua);  
  37.   
  38.     const int status = luaL_dostring(lua, lua_code);  
  39.     if(status)  
  40.         printf("Couldn't execute LUA code: %s\n", lua_tostring(lua, -1));  
  41.   
  42.     lua_close(lua);  
  43.     return 0;  
  44. }  

另外发现,就算是导出了符号,FFI也只能对本程序的导出符号进行绑定,比如我在一个DLL里面导出了符号,虽然宿主程序使用了这个DLL,但是依然没法绑定。

后来看了luajit官网,发现lua51.dll里面的函数在FFI是可用的,至于他们怎么做到我就不清楚了,只能说有可能可以做到这一点。这种黑科技果然不是那么热就能掌握的,而且关于luajit,感觉资料实在太少了,说实在其实lua 的资料本身就少了

0 0
原创粉丝点击