源代码可以通过git clonehttps://git.oschina.net/cxwshawn/ornet.git 获取;
1、golang对c提供的接口在sandBox.go中:
funcGetURIPath(ptrunsafe.Pointer)*C.charfuncReadBodyData(ptrunsafe.Pointer)(body*C.char,nint)funcWriteData(ptrunsafe.Pointer,data*C.char,nC.int)C.int
2、c对lua提供的接口在sandBox.h中:
intget_uri_path(lua_State*L);intread_body_data(lua_State*L);intwrite_data(lua_State*L);
3、c对golang提供的接口在sandBox.h中:
voID*init_lua();intload_lua_file(voID*p_luaCtx,constchar*p_pszfilename);intprocess_request(voID*p_luaCtx,voID*p_reqCtx);voIDuninit(voID*p_luaCtx);
4、lua实现http业务示例:
functionprocess_request(reqCtx)localuri_path=go.get_uri_path(reqCtx)print(uri_path)localcount=go.write(reqCtx,uri_path)ifcount~=string.len(uri_path)thenprint("writecountis",count,"lengthofuri_pathis",string.len(uri_path))endend
在lua中可以通过go包访问c接口,通过get_uri_path获取uri path,通过uri path区分业务类型,通过go.read_body_data获取请求的包体,通过go.write返回客户端数据;
5、配置文件示例:
[ngxfmd]
error_log = true
access_log=true
fastcgi_Listen_addr = ":11000"
http_Listen_addr = ":11001"
[sandBox]
lua_filename = "/root/myopensrc/ornet/anyd/src/service/sandBox/examples/test.lua"
通过以上方式就可以在test.lua文件中实现http业务;
6、请求示例:
curl -v http://localhost:11001/sandBox/test
后续会继续更新该开源项目,以更方便的使用lua扩展业务;
总结以上是内存溢出为你收集整理的golang结合lua进行http业务扩展全部内容,希望文章能够帮你解决golang结合lua进行http业务扩展所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)