First, we define the C++ struct in the header file, example.hpp:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Point | |
{ | |
int x; | |
int y; | |
void greet(); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "example.hpp" | |
#include <cstdio> | |
void Point::greet() | |
{ | |
printf("x=%d, y=%d\n", x, y); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%module example | |
%{ | |
/* Includes the header in the wrapper code */ | |
#include "example.hpp" | |
%} | |
/* Parse the header file to generate wrappers */ | |
%include "example.hpp" |
% swig -lua -c++ example.i
We then compile the C++ source files and create the shared object to be used by our Lua script:
% g++ -fPIC -I/usr/include/lua5.2 -c example_wrap.cxx -o example_wrap.o
% g++ -fPIC -c example.cpp -o example.o
% g++ -shared -I/usr/include/lua5.2 example.o example_wrap.o -o example.so
We then write a Lua script, test.lua, for testing:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/lua | |
package.loadlib('./example.so', 'luaopen_example')() | |
A = example.Point() | |
A.x = 101 | |
A.y = 202 | |
print(A.x) | |
print(A.y) | |
A:greet() | |
print(swig_type(A.x)) | |
print(swig_type(A.y)) | |
print(swig_type(A.greet)) | |
m = getmetatable(A) | |
print('/***** struct metatable *****/') | |
for k, v in pairs(m) do | |
print(k, v) | |
end | |
g = m['.get'] | |
print('/***** struct fields *****/') | |
for k, v in pairs(g) do | |
print(k, v) | |
end | |
fn = m['.fn'] | |
print('/***** struct methods *****/') | |
for k, v in pairs(fn) do | |
print(k, v) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% ./test.lua | |
101 | |
202 | |
x=101, y=202 | |
number | |
number | |
function | |
/***** struct metatable *****/ | |
.type Point | |
__gc function: 0x7fced2eaf0a1 | |
.get table: 0xf14c60 | |
__tostring function: 0x7fced2eaf140 | |
__newindex function: 0x7fced2eaef9f | |
.static table: 0xf15010 | |
__eq function: 0x7fced2eaf29b | |
__index function: 0x7fced2eaeb93 | |
.set table: 0xf15060 | |
.fn table: 0xf150a0 | |
.bases table: 0xf14c20 | |
/***** struct fields *****/ | |
y function: 0x7fced2eb1f9b | |
x function: 0x7fced2eb1b2f | |
/***** struct methods *****/ | |
__disown function: 0x7fced2eaf234 | |
greet function: 0x7fced2eb219a |
Lines 26-30 print the names of the methods of the struct.
Hope this helps the world.