lua調(diào)用C和C++

朋友寫的例子,先保存這里身隐,回頭也許需要廷区。

cpptest.lua 
local mylib = require "mylib"
print(mylib.add(10))
[root@dev1 lua]# cat mylib.cpp
#include <iostream>

using namespace std;

#ifdef __cplusplus
extern "C"
{
#endif

#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>

int luaopen_mylib(lua_State*);

#ifdef __cplusplus
}
#endif

int add(lua_State *state)
{
    int n = lua_gettop(state);
    int sum = 0;
    for (int i = 0; i < n; ++i)
    {
        sum += lua_tonumber(state, i+1);
    }
    
    if (n != 0)
    {
        lua_pushnumber(state, sum);
        return 1;
    }
    return 0;
}

const luaL_Reg lib[] =
{
    {"add", add},
    {nullptr, nullptr}
};

int luaopen_mylib(lua_State *state)
{
    luaL_register(state, "mylib", lib);
    return 1;
}

[root@dev1 lua]# lua cpptest.lua
10

C++的例子

[root@dev1 test2]# ll
總用量 24
-rw-r--r--. 1 root root 69 10月 19 23:44 cpptest.lua
-rw-r--r--. 1 root root 1685 10月 19 23:42 mylib.cpp
-rwxr-xr-x. 1 root root 14224 10月 19 23:42 TestLua.so

[root@dev1 test2]# cat cpptest.lua
require "TestLua"
c = TestLua()
print("add x + y = " .. c:cadd(4,5))
[root@dev1 test2]# cat mylib.cpp

#include <iostream>
using namespace std;

#ifdef __cplusplus
extern "C"
{
#endif

#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>

int luaopen_TestLua(lua_State*);

#ifdef __cplusplus
}
#endif

int add(lua_State *state)
{
    int n = lua_gettop(state);
    int sum = 0;
    for (int i = 0; i < n; ++i)
    {
        sum += lua_tonumber(state, i+1);
    }
    
    if (n != 0)
    {
        lua_pushnumber(state, sum);
        return 1;
    }
    return 0;
}

class TestLua
{
public:
    TestLua() {}
    virtual ~TestLua() {}
    int cadd(int x, int y)
    {
        cout << "x + y = " << (x+y) << endl;
        return x + y;
    }
};

static int createTestLua(lua_State *state)
{
    *(TestLua**)lua_newuserdata(state, sizeof(TestLua*)) = new TestLua();
    luaL_getmetatable(state, "TestLua");
    lua_setmetatable(state, -2);
    return 1;
}

static int destroyTestLua(lua_State *state)
{
    delete *(TestLua**)lua_topointer(state, 1);
    return 0;
}

static int callAdd(lua_State *state)
{
    TestLua *pT = *(TestLua**)lua_topointer(state, 1);
    lua_pushnumber(state, pT->cadd(lua_tonumber(state, 2), lua_tonumber(state, 3)));
    return 1;
}

int luaopen_TestLua(lua_State *state)
{
    lua_pushcfunction(state, createTestLua);
    lua_setglobal(state, "TestLua");

    luaL_newmetatable(state, "TestLua");
    lua_pushstring(state, "__gc");
    lua_pushcfunction(state, destroyTestLua);
    lua_settable(state, -3);
    lua_pushstring(state, "__index");
    lua_pushvalue(state, -2);
    lua_settable(state, -3);

    lua_pushstring(state, "cadd");
    lua_pushcfunction(state, callAdd);
    lua_settable(state, -3);
    lua_pop(state, 1);
    
    return 1;
}

[root@dev1 test2]# lua cpptest.lua
x + y = 9
add x + y = 9

遇到的錯(cuò)誤

[root@dev1 test2]# gcc -Wall -shared -fPIC -o ]TestLua.so -I/usr/local/openresty/luajit/include/luajit-2.1/ -L/usr/lib64/ -llua-5.1 mylib.cpp

解決辦法

The problem is most likely caused by a missing libstdc++.so.6 on your machine.
Check if you have libstdc++.so.6 on your machine using .
find /usr/ -name libstdc++.so.6
If not, then you should be able to install it using: apt-get install libstdc++6

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市贾铝,隨后出現(xiàn)的幾起案子隙轻,更是在濱河造成了極大的恐慌,老刑警劉巖垢揩,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件玖绿,死亡現(xiàn)場離奇詭異,居然都是意外死亡叁巨,警方通過查閱死者的電腦和手機(jī)斑匪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來锋勺,“玉大人蚀瘸,你說我怎么就攤上這事∈鳎” “怎么了贮勃?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長苏章。 經(jīng)常有香客問我寂嘉,道長,這世上最難降的妖魔是什么枫绅? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任泉孩,我火速辦了婚禮,結(jié)果婚禮上并淋,老公的妹妹穿的比我還像新娘寓搬。我一直安慰自己,他們只是感情好县耽,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布订咸。 她就那樣靜靜地躺著,像睡著了一般酬诀。 火紅的嫁衣襯著肌膚如雪脏嚷。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天瞒御,我揣著相機(jī)與錄音父叙,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛趾唱,可吹牛的內(nèi)容都是我干的涌乳。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼甜癞,長吁一口氣:“原來是場噩夢啊……” “哼夕晓!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起悠咱,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤蒸辆,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后析既,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體躬贡,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年眼坏,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了拂玻。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡宰译,死狀恐怖檐蚜,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情沿侈,我是刑警寧澤闯第,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站肋坚,受9級(jí)特大地震影響乡括,放射性物質(zhì)發(fā)生泄漏肃廓。R本人自食惡果不足惜智厌,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望盲赊。 院中可真熱鬧铣鹏,春花似錦、人聲如沸哀蘑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽绘迁。三九已至合溺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間缀台,已是汗流浹背棠赛。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人睛约。 一個(gè)月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓鼎俘,卻偏偏與公主長得像,于是被迫代替她去往敵國和親辩涝。 傳聞我的和親對象是個(gè)殘疾皇子贸伐,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容