summaryrefslogtreecommitdiff
path: root/core/src/xmake/io/poller_modify.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/xmake/io/poller_modify.c')
-rw-r--r--core/src/xmake/io/poller_modify.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/core/src/xmake/io/poller_modify.c b/core/src/xmake/io/poller_modify.c
new file mode 100644
index 000000000..24a27e241
--- /dev/null
+++ b/core/src/xmake/io/poller_modify.c
@@ -0,0 +1,59 @@
+/*!A cross-platform build utility based on Lua
+ *
+ * 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.
+ *
+ * Copyright (C) 2015 - 2019, TBOOX Open Source Group.
+ *
+ * @author ruki
+ * @file poller_modify.c
+ *
+ */
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * trace
+ */
+#define TB_TRACE_MODULE_NAME "poller_modify"
+#define TB_TRACE_MODULE_DEBUG (0)
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "prefix.h"
+#include "poller.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * interfaces
+ */
+
+// io.poller_modify(sock, events)
+tb_int_t xm_io_poller_modify(lua_State* lua)
+{
+ // check
+ tb_assert_and_check_return_val(lua, 0);
+
+ // is user data?
+ if (!lua_isuserdata(lua, 1))
+ return 0;
+
+ // get socket
+ tb_socket_ref_t sock = (tb_socket_ref_t)lua_touserdata(lua, 1);
+ tb_check_return_val(sock, 0);
+
+ // get events
+ tb_size_t events = (tb_size_t)luaL_checknumber(lua, 2);
+
+ // modify events in poller
+ lua_pushboolean(lua, tb_poller_modify(xm_io_poller(), sock, events, tb_null));
+ return 1;
+}
+