summaryrefslogtreecommitdiff
path: root/core/src/xmake/io
diff options
context:
space:
mode:
authorruki <[email protected]>2020-01-31 23:47:32 +0800
committerruki <[email protected]>2020-01-31 16:45:13 +0800
commit01af47d386620ef4f4401505d85a3f36fe8243c6 (patch)
tree18ab8862d9f19d6d85cc7dc8d4635d3b0c45d651 /core/src/xmake/io
parentb1d0a3540bac162914f3fd77d2fc82b344125036 (diff)
add pipe.connect and named pipe tests
Diffstat (limited to 'core/src/xmake/io')
-rw-r--r--core/src/xmake/io/pipe_connect.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/core/src/xmake/io/pipe_connect.c b/core/src/xmake/io/pipe_connect.c
new file mode 100644
index 000000000..3c0fc58b5
--- /dev/null
+++ b/core/src/xmake/io/pipe_connect.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-2020, TBOOX Open Source Group.
+ *
+ * @author ruki
+ * @file pipe_connect.c
+ *
+ */
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * trace
+ */
+#define TB_TRACE_MODULE_NAME "pipe_connect"
+#define TB_TRACE_MODULE_DEBUG (0)
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "prefix.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * interfaces
+ */
+
+// io.pipe_connect(pipefile)
+tb_int_t xm_io_pipe_connect(lua_State* lua)
+{
+ // check
+ tb_assert_and_check_return_val(lua, 0);
+
+ // check pipe
+ if (!lua_isuserdata(lua, 1))
+ {
+ lua_pushnumber(lua, -1);
+ lua_pushliteral(lua, "invalid pipe!");
+ return 2;
+ }
+
+ // get pipe file
+ tb_pipe_file_ref_t pipefile = (tb_pipe_file_ref_t)lua_touserdata(lua, 1);
+ tb_check_return_val(pipefile, 0);
+
+ // connect pipe
+ lua_pushnumber(lua, (tb_int_t)tb_pipe_file_connect(pipefile));
+ return 1;
+}
+