-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathlhandle.c
121 lines (106 loc) · 3.29 KB
/
lhandle.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
* Copyright 2014 The Luvit Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "lhandle.h"
static luv_handle_t* luv_setup_handle(lua_State* L, luv_ctx_t* ctx) {
luv_handle_t* data;
const uv_handle_t* handle;
void *udata;
if (!(udata = lua_touserdata(L, -1))) {
luaL_error(L, "NULL userdata");
return NULL;
}
handle = *(uv_handle_t**)udata;
luaL_checktype(L, -1, LUA_TUSERDATA);
data = (luv_handle_t*)malloc(sizeof(*data));
if (!data) luaL_error(L, "Can't allocate luv handle");
#define XX(uc, lc) case UV_##uc: \
luaL_getmetatable(L, "uv_"#lc); \
break;
switch (handle->type) {
UV_HANDLE_TYPE_MAP(XX)
default:
free(data);
luaL_error(L, "Unknown handle type");
return NULL;
}
#undef XX
lua_setmetatable(L, -2);
lua_pushvalue(L, -1);
data->ref = luaL_ref(L, LUA_REGISTRYINDEX);
data->callbacks[0] = LUA_NOREF;
data->callbacks[1] = LUA_NOREF;
data->ctx = ctx;
data->extra = NULL;
data->extra_gc = NULL;
// record data in ht_ref
lua_rawgeti(L, LUA_REGISTRYINDEX, ctx->ht_ref);
lua_pushboolean(L, 1);
lua_rawsetp(L, -2, data);
lua_pop(L, 1);
return data;
}
static void luv_check_callback(lua_State* L, luv_handle_t* data, luv_callback_id id, int index) {
luv_check_callable(L, index);
luaL_unref(L, LUA_REGISTRYINDEX, data->callbacks[id]);
lua_pushvalue(L, index);
data->callbacks[id] = luaL_ref(L, LUA_REGISTRYINDEX);
}
static int luv_traceback (lua_State *L) {
if (!lua_isstring(L, 1)) /* 'message' not a string? */
return 1; /* keep it intact */
lua_pushglobaltable(L);
lua_getfield(L, -1, "debug");
lua_remove(L, -2);
if (!lua_istable(L, -1)) {
lua_pop(L, 1);
return 1;
}
lua_getfield(L, -1, "traceback");
if (!lua_isfunction(L, -1)) {
lua_pop(L, 2);
return 1;
}
lua_pushvalue(L, 1); /* pass error message */
lua_pushinteger(L, 2); /* skip this function and traceback */
lua_call(L, 2, 1); /* call debug.traceback */
return 1;
}
static void luv_call_callback(lua_State* L, luv_handle_t* data, luv_callback_id id, int nargs) {
luv_ctx_t* ctx = data->ctx;
int ref = data->callbacks[id];
if (ref == LUA_NOREF) {
lua_pop(L, nargs);
}
else {
// Get the callback
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
// And insert it before the args if there are any.
if (nargs) {
lua_insert(L, -1 - nargs);
}
ctx->cb_pcall(L, nargs, 0, 0);
}
}
static void luv_unref_handle(lua_State* L, luv_handle_t* data) {
luaL_unref(L, LUA_REGISTRYINDEX, data->ref);
data->ref = LUA_NOREF;
luaL_unref(L, LUA_REGISTRYINDEX, data->callbacks[0]);
luaL_unref(L, LUA_REGISTRYINDEX, data->callbacks[1]);
}
static void luv_find_handle(lua_State* L, luv_handle_t* data) {
lua_rawgeti(L, LUA_REGISTRYINDEX, data->ref);
}