Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorXiongfei Guo <xfguo@credosemi.com>2014-06-20 14:31:19 +0400
committerJohn Crispin <blogic@openwrt.org>2014-06-24 17:30:30 +0400
commit02ca59334743aff65a24cba16c9343412c2c0550 (patch)
tree3138fdc600b26d68bbc42cc798cdbbfd7cad8128 /lua
parent79b56268b46ea2eaf7f79af7a64c57e2be37636a (diff)
Support delete a fd event.
When you call the fd_add, it will return an object with `delete` method. So you can delete that event if you want. Signed-off-by: Xiongfei(Alex) Guo <xfguo@credosemi.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/uloop.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/lua/uloop.c b/lua/uloop.c
index c71d537..df57b8a 100644
--- a/lua/uloop.c
+++ b/lua/uloop.c
@@ -172,6 +172,24 @@ static int get_sock_fd(lua_State* L, int idx) {
return fd;
}
+static int ul_ufd_delete(lua_State *L)
+{
+ struct lua_uloop_fd *ufd = lua_touserdata(L, 1);
+
+ uloop_fd_delete(&ufd->fd);
+ lua_getglobal(state, "__uloop_cb");
+ luaL_unref(L, -1, ufd->r);
+ lua_getglobal(state, "__uloop_fds");
+ luaL_unref(L, -1, ufd->fd_r);
+
+ return 1;
+}
+
+static const luaL_Reg ufd_m[] = {
+ { "delete", ul_ufd_delete },
+ { NULL, NULL }
+};
+
static int ul_ufd_add(lua_State *L)
{
struct lua_uloop_fd *ufd;
@@ -205,6 +223,18 @@ static int ul_ufd_add(lua_State *L)
lua_pop(L, 1);
ufd = lua_newuserdata(L, sizeof(*ufd));
+
+ lua_createtable(L, 0, 2);
+ lua_pushvalue(L, -1);
+ lua_setfield(L, -2, "__index");
+ lua_pushcfunction(L, ul_ufd_delete);
+ lua_setfield(L, -2, "__gc");
+ lua_pushvalue(L, -1);
+ lua_setmetatable(L, -3);
+ lua_pushvalue(L, -2);
+ luaI_openlib(L, NULL, ufd_m, 1);
+ lua_pushvalue(L, -2);
+
memset(ufd, 0, sizeof(*ufd));
ufd->r = ref;