nixio next
[project/luci.git] / libs / nixio / src / splice.c
1 /*
2  * nixio - Linux I/O library for lua
3  *
4  *   Copyright (C) 2009 Steven Barth <steven@midlink.org>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include "nixio.h"
22 #include <fcntl.h>
23
24 /* guess what sucks... */
25 #ifdef __UCLIBC__
26 #include <unistd.h>
27 #include <sys/syscall.h>
28 ssize_t splice(int __fdin, __off64_t *__offin, int __fdout,
29         __off64_t *__offout, size_t __len, unsigned int __flags) {
30         return syscall(__NR_splice, __fdin, __offin, __fdout, __offout, __len, __flags);
31 }
32 #endif
33
34
35 /**
36  * Checks whether a flag is set in the table and translates it into a bitmap
37  */
38 static void nixio_splice_flags__w(lua_State *L, int *m, int f, const char *t) {
39         lua_pushstring(L, t);
40         lua_rawget(L, -2);
41         if (lua_toboolean(L, -1)) {
42                 *m |= f;
43         }
44         lua_pop(L, 1);
45 }
46
47 /**
48  * Translate integer to poll flags and vice versa
49  */
50 static int nixio_splice_flags(lua_State *L) {
51         int flags = 0;
52
53         luaL_checktype(L, 1, LUA_TTABLE);
54         lua_settop(L, 1);
55         nixio_splice_flags__w(L, &flags, SPLICE_F_MOVE, "move");
56         nixio_splice_flags__w(L, &flags, SPLICE_F_NONBLOCK, "nonblock");
57         nixio_splice_flags__w(L, &flags, SPLICE_F_MORE, "more");
58         lua_pushinteger(L, flags);
59
60         return 1;
61 }
62
63 static int nixio_splice(lua_State *L) {
64         int fd_in = nixio__checkfd(L, 1);
65         int fd_out = nixio__checkfd(L, 2);
66         size_t len = luaL_checkinteger(L, 3);
67         int flags = luaL_optinteger(L, 4, 0);
68
69
70         long spliced = splice(fd_in, NULL, fd_out, NULL, len, flags);
71
72         if (spliced < 0) {
73                 return nixio__perror(L);
74         }
75
76         lua_pushnumber(L, spliced);
77         return 1;
78 }
79
80
81
82 /* module table */
83 static const luaL_reg R[] = {
84         {"splice",                      nixio_splice},
85         {"splice_flags",        nixio_splice_flags},
86         {NULL,                  NULL}
87 };
88
89 void nixio_open_splice(lua_State *L) {
90         luaL_register(L, NULL, R);
91 }