Lua学习系列(五)

时间:2022-12-24 07:30:54

calling C functions from Lua 5.2

这篇文章也不错: http://blog.csdn.net/x356982611/article/details/26688287

http://www.troubleshooters.com/codecorn/lua/lua_lua_calls_c.htm

原文:http://lua-users.org/lists/lua-l/2012-04/msg01008.html

I’m in the process of developing an automated test harness for a product we are developing.  The test harness will use a combination of Lua and C.   One of the goals is to “hide” all the details so that when the software developers want to test their code modules, they can write script files which are used as input to the test harness.

I’ve been  having some issues calling C functions from Lua 5.2

Here’s a portion of the C file (and ignore the fact that it is just returning dummy values):

#include <stdio.h>

/* include Lua libraries */

#include "lua.h"

#include "lauxlib.h"

#include "lualib.h"

static int create_message(lua_State *L)

{

int dest;

int payload;

int numops;

int msg_ID;

/* get number of arguments */

numops = lua_gettop(L);

/* get destination ID */

dest = lua_tonumber(L,1);

/* get payload */

payload = lua_tonumber(L,2);

/* call function to generate message ID */

msg_ID = payload * 10;

/* push message ID onto stack */

lua_pushnumber(L,msg_ID);

/* return the number of results */

return 1;

}

/* table of functions accessible from Lua */

static const struct luaL_Reg testHarness [] = {

{"buildMessage", create_message},

{NULL,NULL}

};

int luaopen_testHarness(lua_State *L)

{

luaL_newlib (L, testHarness);   /* register C functions with Lua */

return 1;

}

I compiled the C file and created a Linux dynamic library named “testHarness.so”.  Here’s a simple Lua file (named “lua_test.lua”) that tests the Lua to C interface:

#!/usr/local/bin/lua

-- Test harness script file

require("testHarness") -- link in testHarness C library

-- call C routine

message_ID = buildMessage(10, 20)

print("Returned message_ID = " .. message_ID .. "\n")

When I run run lua_test.lua from the Linux command line, I get an error message that says “attempt to call global ‘buildMessage’ (a nil value)”.

If I rewrite the require statement as:

th = require(“testHarness”)

and change the function call to:

message_ID = th.buildMessage(10,20)

everything then works fine.  No error occurs and the print statement is executed.

Is there something I can do so that I don’t need to have the “th.” In front of the call to the buildMessage function in the C library?  Eventually, I plan to take the function call out of here and pass in an input file name as a command line parameter.  The input file will be the script file written by the software developers and it will simply contain a series of buildMessage() calls and calls to other soon-to-be-developed functions.

For simplicity, I would prefer that the developers not have to put “th.” In front of every function call.  I’ve Googled for answers but haven’t really found any.  One webpage I found had an example that seemed to do what I wanted, but it was written in Lua 5.1 and used some deprecated functions.  Any suggestions to solve this issue would be appreciated.

Thanks,

Lua学习系列(五)的更多相关文章

  1. scrapy爬虫学习系列五:图片的抓取和下载

    系列文章列表: scrapy爬虫学习系列一:scrapy爬虫环境的准备:      http://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_python_00 ...

  2. Lua学习系列(二)

    资源整理: 风云老师博客: http://blog.codingnow.com/eo/luaoeeeaeau/ 知乎: https://www.zhihu.com/question/20736660 ...

  3. Lua学习系列(一)

    从现在开始,打算学习一门新的脚本语言-lua. 1.什么是lua? a) lua1 • Lua 1.0 was implemented as a library, in less then 6000 ...

  4. Java NIO学习系列五:I&sol;O模型

    前面总结了很多IO.NIO相关的基础知识点,还总结了IO和NIO之间的区别及各自适用场景,本文会从另一个视角来学习一下IO,即IO模型.什么是IO模型?对于不同人.在不同场景下给出的答案是不同的,所以 ...

  5. &lbrack;jQuery学习系列五 &rsqb;5-Jquery学习五-表单验证

    前言最近总是有一个感觉,虽然这些东西都自己学习并一个案例一个案例的去验证过了.但是总觉得不写成博客记录下来这些都不是自己的东西(心理作用,哈哈).所以每当学习或者复习相关的知识我都喜欢记录下来,下面开 ...

  6. MVC3&plus;EF4&period;1学习系列&lpar;五&rpar;----- EF查找导航属性的几种方式

    文章索引和简介 通过上一篇的学习 我们把demo的各种关系终于搭建里起来 以及处理好了如何映射到数据库等问题 但是 只是搭建好了关系 问题还远没有解决 这篇就来写如何查找导航属性 和查找导航属性的几种 ...

  7. STL学习系列五:Queue容器

    Queue简介 queue是队列容器,是一种“先进先出”的容器. queue是简单地装饰deque容器而成为另外的一种容器. #include <queue> 1.queue对象的默认构造 ...

  8. Lua学习系列(四)

    lua 资源:http://www.dcc.ufrj.br/~fabiom/lua/ 第一个Lua程序 http://www.dcc.ufrj.br/~fabiom/lua/ 原文:https://w ...

  9. RabbitMQ入门学习系列&lpar;五&rpar; Exchange的Direct类型

    快速阅读 利用Exchange的Direct类型,实现对队列的过滤,消费者启动以后,输入相应的key值,攻取该key值对应的在队列中的消息 . 从一节知道Exchange有四种类型 Direct,To ...

随机推荐

  1. github入门教程

    1.下载git windows 客户端 https://git-for-windows.github.io/ 2.配置github 安装windows客户端以后,在里面输入如下命令 首先在本地创建ss ...

  2. Android开发各类常见错误解决方案

    本文属于个人平时项目开发过程遇到的一些问题,记录下来并总结解决方案,希望能帮到大家解决问题,有些问题的解决方案是在*上找到的,建议大家遇到问题多去上面找,基本上都能找到解决方案 ...

  3. impdp报错&colon; ORA-39064&colon; 无法写入日志文件 ORA-29285&colon; 文件写入错误

    windows平台下,oracle 11.2.0.1在使用impdp向测试环境导入数据的时候,报出如下错误: 错误原因: 数据泵在写日志文件的时候,使用的是数据库字符集.如果客户端的环境变量NLS_L ...

  4. C语言中最常用的三种输入输出函数scanf&lpar;&rpar;、printf&lpar;&rpar;、getchar&lpar;&rpar;和putchar&lpar;&rpar;

    本文给大家介绍C语言中最常用的三种输入输出函数scanf().printf().getchar()和putchar(). 一.scanf()函数格式化输入函数scanf()的功能是从键盘上输入数据,该 ...

  5. UIView的frame的扩展分类,轻松取出x、y、height、width等值

    一.引言: 在ios开发中,就界面搭建.控件布局时,都会很恶心的通过很长的代码才能取出控件的x.y.height.width等值,大大降低了开发效率.那为了省略这些恶心的步骤,小编在这里给UIView ...

  6. Windows JDK环境变量的配置

    下载JDK:http://www.oracle.com/technetwork/java/javase/downloads/index.html 安装 计算机-->属性-->高级系统设置- ...

  7. CEF3 怎样禁止右键菜单

    CEF3 怎样禁止右键菜单 (2013-07-30 11:56:34)转载▼标签: cef3 右键菜单 分类: CEF3问题描述:CEF3 嵌入成功后,在网页点鼠标右键,出现英文菜单,应该怎样禁止掉呢 ...

  8. 图片上传预览 支持html5的浏览器

    <img src="" width="100px" height="100px"/> <input type=" ...

  9. 2015 Multi-University Training Contest 10

    1001 CRB and Apple 1002 CRB and Candies 1003 CRB and Farm 1004 CRB and Graph 1005 CRB and His Birthd ...

  10. SQL连接操作

    一.Join语法概述 join 用于多表中字段之间的联系,语法如下: ... FROM table1 INNER|LEFT|RIGHT JOIN table2 ON conditiona table1 ...