ngx_lua_module 개발 (2012 - 11 - 16 23: 46)
#include <stdio.h>
#include <lua.h>
#include <lauxlib.h>
#define NGX_LUA_THREAD_N 16
typedef struct {
lua_State *l;
} ngx_lua_t;
typedef struct {
lua_State *l;
int ref;
} ngx_lua_thread_t;
static int ngx_lua_thread_key;
ngx_lua_t *
ngx_lua_create(void)
{
ngx_lua_t *lua;
lua_State *l;
lua = (ngx_lua_t *) malloc(sizeof(ngx_lua_t));
if (lua == NULL) {
return NULL;
}
memset(lua, 0, sizeof(ngx_lua_t));
l = luaL_newstate();
if (l == NULL) {
free(lua);
return NULL;
}
luaL_openlibs(l);
lua_pushlightuserdata(l, &ngx_lua_thread_key);
lua_newtable(l);
lua_rawset(l, LUA_REGISTRYINDEX);
lua->l = l;
return lua;
}
void
ngx_lua_destroy(ngx_lua_t *lua)
{
if (lua->l != NULL) {
lua_close(lua->l);
}
free(lua);
}
ngx_lua_thread_t *
ngx_lua_thread_create(ngx_lua_t *lua)
{
int top, ref;
lua_State *l;
ngx_lua_thread_t *thr;
thr = (ngx_lua_thread_t *) malloc(sizeof(ngx_lua_thread_t));
if (thr == NULL) {
return NULL;
}
memset(thr, 0, sizeof(ngx_lua_thread_t));
top = lua_gettop(lua->l);
lua_pushlightuserdata(lua->l, &ngx_lua_thread_key);
lua_rawget(lua->l, LUA_REGISTRYINDEX);
l = lua_newthread(lua->l);
if (l == NULL) {
lua_settop(lua->l, top);
free(thr);
return NULL;
}
ref = luaL_ref(lua->l, -2);
if (ref == LUA_REFNIL) {
lua_settop(lua->l, top);
free(thr);
return NULL;
}
lua_settop(lua->l, top);
thr->l = l;
thr->ref = ref;
return thr;
}
void
ngx_lua_thread_destroy(ngx_lua_t *lua, ngx_lua_thread_t *thr)
{
int top;
top = lua_gettop(lua->l);
lua_pushlightuserdata(lua->l, &ngx_lua_thread_key);
lua_rawget(lua->l, LUA_REGISTRYINDEX);
luaL_unref(lua->l, -1, thr->ref);
lua_settop(lua->l, top);
free(thr);
}
void
ngx_lua_thread_run(ngx_lua_thread_t *thr)
{
int rc;
lua_getglobal(thr->l, "print");
lua_pushfstring(thr->l, "%p", thr->l);
rc = lua_resume(thr->l, 1);
}
int
main(int argc, char *argv[])
{
int n;
ngx_lua_t *lua;
ngx_lua_thread_t *thrs[NGX_LUA_THREAD_N], *thr;
lua = ngx_lua_create();
if (lua == NULL) {
return 1;
}
printf("lua:%p
", lua->l);
lua_pushstring(lua->l, "test");
for (n = 0; n < NGX_LUA_THREAD_N; n++) {
thr = ngx_lua_thread_create(lua);
if (thr == NULL) {
ngx_lua_destroy(lua);
return 1;
}
printf("lua:%p thr:%p
", lua->l, thr->l);
thrs[n] = thr;
}
printf("%s
", lua_tostring(lua->l, -1));
for (n = 0; n < NGX_LUA_THREAD_N; n++) {
ngx_lua_thread_run(thrs[n]);
}
printf("%s
", lua_tostring(lua->l, -1));
for (n = 0; n < NGX_LUA_THREAD_N; n++) {
ngx_lua_thread_destroy(lua, thrs[n]);
}
printf("%s
", lua_tostring(lua->l, -1));
ngx_lua_destroy(lua);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Docker를 사용한 React 및 .NET Core 6.0 샘플 프로젝트 - 1부이 기사에서는 Entity Framework Core Code First 접근 방식을 사용하는 ASP.NET Core 6.0 WEP API의 CRUD(만들기, 읽기, 업데이트 및 삭제) 작업에 대해 설명합니다. 웹 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.