]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/net.c
Remove timeout parameter from lua listner:accept().
[vlc] / modules / misc / lua / libs / net.c
1 /*****************************************************************************
2  * net.c: Network related functions
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea at videolan tod org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifndef  _GNU_SOURCE
28 #   define  _GNU_SOURCE
29 #endif
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_network.h>
37 #include <vlc_url.h>
38
39 #include <lua.h>        /* Low level lua C API */
40 #include <lauxlib.h>    /* Higher level C API */
41
42 #ifdef HAVE_POLL
43 #include <poll.h>       /* poll structures and defines */
44 #endif
45
46 #include "../vlc.h"
47 #include "../libs.h"
48
49 /*****************************************************************************
50  *
51  *****************************************************************************/
52 static int vlclua_url_parse( lua_State *L )
53 {
54     const char *psz_url = luaL_checkstring( L, 1 );
55     const char *psz_option = luaL_optstring( L, 2, NULL );
56     vlc_url_t url;
57
58     vlc_UrlParse( &url, psz_url, psz_option?*psz_option:0 );
59
60     lua_newtable( L );
61     lua_pushstring( L, url.psz_protocol );
62     lua_setfield( L, -2, "protocol" );
63     lua_pushstring( L, url.psz_username );
64     lua_setfield( L, -2, "username" );
65     lua_pushstring( L, url.psz_password );
66     lua_setfield( L, -2, "password" );
67     lua_pushstring( L, url.psz_host );
68     lua_setfield( L, -2, "host" );
69     lua_pushinteger( L, url.i_port );
70     lua_setfield( L, -2, "port" );
71     lua_pushstring( L, url.psz_path );
72     lua_setfield( L, -2, "path" );
73     lua_pushstring( L, url.psz_option );
74     lua_setfield( L, -2, "option" );
75
76     vlc_UrlClean( &url );
77
78     return 1;
79 }
80
81 /*****************************************************************************
82  * Net listen
83  *****************************************************************************/
84 static int vlclua_net_listen_close( lua_State * );
85 static int vlclua_net_accept( lua_State * );
86 static int vlclua_net_fds( lua_State * );
87
88 static const luaL_Reg vlclua_net_listen_reg[] = {
89     { "accept", vlclua_net_accept },
90     { "fds", vlclua_net_fds },
91     { NULL, NULL }
92 };
93
94 static int vlclua_net_listen_tcp( lua_State *L )
95 {
96     vlc_object_t *p_this = vlclua_get_this( L );
97     const char *psz_host = luaL_checkstring( L, 1 );
98     int i_port = luaL_checkint( L, 2 );
99     int *pi_fd = net_ListenTCP( p_this, psz_host, i_port );
100     if( pi_fd == NULL )
101         return luaL_error( L, "Cannot listen on %s:%d", psz_host, i_port );
102
103     int **ppi_fd = lua_newuserdata( L, sizeof( int * ) );
104     *ppi_fd = pi_fd;
105
106     if( luaL_newmetatable( L, "net_listen" ) )
107     {
108         lua_newtable( L );
109         luaL_register( L, NULL, vlclua_net_listen_reg );
110         lua_setfield( L, -2, "__index" );
111         lua_pushcfunction( L, vlclua_net_listen_close );
112         lua_setfield( L, -2, "__gc" );
113     }
114
115     lua_setmetatable( L, -2 );
116     return 1;
117 }
118
119 static int vlclua_net_listen_close( lua_State *L )
120 {
121     int **ppi_fd = (int**)luaL_checkudata( L, 1, "net_listen" );
122     net_ListenClose( *ppi_fd );
123     return 0;
124 }
125
126 static int vlclua_net_fds( lua_State *L )
127 {
128     int **ppi_fd = (int**)luaL_checkudata( L, 1, "net_listen" );
129     int *pi_fd = *ppi_fd;
130
131     int i_count = 0;
132     while( pi_fd[i_count] != -1 )
133         lua_pushinteger( L, pi_fd[i_count++] );
134
135     return i_count;
136 }
137
138 static int vlclua_net_accept( lua_State *L )
139 {
140     vlc_object_t *p_this = vlclua_get_this( L );
141     int **ppi_fd = (int**)luaL_checkudata( L, 1, "net_listen" );
142     int i_fd = net_Accept( p_this, *ppi_fd );
143
144     lua_pushinteger( L, i_fd );
145     return 1;
146 }
147
148 /*****************************************************************************
149  *
150  *****************************************************************************/
151 static int vlclua_net_close( lua_State *L )
152 {
153     int i_fd = luaL_checkint( L, 1 );
154     net_Close( i_fd );
155     return 0;
156 }
157
158 static int vlclua_net_send( lua_State *L )
159 {
160     int i_fd = luaL_checkint( L, 1 );
161     size_t i_len;
162     const char *psz_buffer = luaL_checklstring( L, 2, &i_len );
163     i_len = luaL_optint( L, 3, i_len );
164     i_len = send( i_fd, psz_buffer, i_len, 0 );
165     lua_pushinteger( L, i_len );
166     return 1;
167 }
168
169 static int vlclua_net_recv( lua_State *L )
170 {
171     int i_fd = luaL_checkint( L, 1 );
172     size_t i_len = luaL_optint( L, 2, 1 );
173     char psz_buffer[i_len];
174     i_len = recv( i_fd, psz_buffer, i_len, 0 );
175     lua_pushlstring( L, psz_buffer, i_len );
176     return 1;
177 }
178
179 /*****************************************************************************
180  *
181  *****************************************************************************/
182 /* Takes a { fd : events } table as first arg and modifies it to { fd : revents } */
183 static int vlclua_net_poll( lua_State *L )
184 {
185     luaL_checktype( L, 1, LUA_TTABLE );
186     double f_timeout = luaL_optnumber( L, 2, -1. );
187
188     int i_fds = 0;
189     lua_pushnil( L );
190     while( lua_next( L, 1 ) )
191     {
192         i_fds++;
193         lua_pop( L, 1 );
194     }
195     struct pollfd *p_fds = malloc( i_fds * sizeof( struct pollfd ) );
196     lua_pushnil( L );
197     int i = 0;
198     while( lua_next( L, 1 ) )
199     {
200         p_fds[i].fd = luaL_checkinteger( L, -2 );
201         p_fds[i].events = luaL_checkinteger( L, -1 );
202         p_fds[i].revents = 0;
203         lua_pop( L, 1 );
204         i++;
205     }
206
207     int i_ret = poll( p_fds, i_fds, f_timeout < 0. ? -1 : (int)(f_timeout*1000) );
208     for( i = 0; i < i_fds; i++ )
209     {
210         lua_pushinteger( L, p_fds[i].fd );
211         lua_pushinteger( L, p_fds[i].revents );
212         lua_settable( L, 1 );
213     }
214     free( p_fds );
215     lua_pushinteger( L, i_ret );
216     return 1;
217 }
218
219 static int vlclua_net_select( lua_State *L )
220 {
221     int i_ret;
222     size_t i_nfds = luaL_checkint( L, 1 );
223     fd_set *fds_read = (fd_set*)luaL_checkudata( L, 2, "fd_set" );
224     fd_set *fds_write = (fd_set*)luaL_checkudata( L, 3, "fd_set" );
225     double f_timeout = luaL_checknumber( L, 4 );
226     struct timeval timeout;
227
228 #ifndef WIN32
229     if( i_nfds > FD_SETSIZE )
230         i_nfds = FD_SETSIZE;
231 #endif
232     if( f_timeout >= 0. )
233     {
234         timeout.tv_sec = (int)f_timeout;
235         timeout.tv_usec = (int)(1e6*(f_timeout-(double)((int)f_timeout)));
236     }
237     i_ret = select( i_nfds, fds_read, fds_write, 0, f_timeout >= 0. ? &timeout : NULL );
238     lua_pushinteger( L, i_ret );
239     return 1;
240 }
241
242 /*****************************************************************************
243  *
244  *****************************************************************************/
245 static int vlclua_fd_clr( lua_State * );
246 static int vlclua_fd_isset( lua_State * );
247 static int vlclua_fd_set( lua_State * );
248 static int vlclua_fd_zero( lua_State * );
249
250 static const luaL_Reg vlclua_fd_set_reg[] = {
251     { "clr", vlclua_fd_clr },
252     { "isset", vlclua_fd_isset },
253     { "set", vlclua_fd_set },
254     { "zero", vlclua_fd_zero },
255     { NULL, NULL }
256 };
257
258 static int vlclua_fd_set_new( lua_State *L )
259 {
260     fd_set *fds = (fd_set*)lua_newuserdata( L, sizeof( fd_set ) );
261     FD_ZERO( fds );
262
263     if( luaL_newmetatable( L, "fd_set" ) )
264     {
265         lua_newtable( L );
266         luaL_register( L, NULL, vlclua_fd_set_reg );
267         lua_setfield( L, -2, "__index" );
268     }
269
270     lua_setmetatable( L, -2 );
271     return 1;
272 }
273
274 static int vlclua_fd_clr( lua_State *L )
275 {
276     fd_set *fds = (fd_set*)luaL_checkudata( L, 1, "fd_set" );
277     int i_fd = luaL_checkint( L, 2 );
278     FD_CLR( i_fd, fds );
279     return 0;
280 }
281
282 static int vlclua_fd_isset( lua_State *L )
283 {
284     fd_set *fds = (fd_set*)luaL_checkudata( L, 1, "fd_set" );
285     int i_fd = luaL_checkint( L, 2 );
286     lua_pushboolean( L, FD_ISSET( i_fd, fds ) );
287     return 1;
288 }
289
290 static int vlclua_fd_set( lua_State *L )
291 {
292     fd_set *fds = (fd_set*)luaL_checkudata( L, 1, "fd_set" );
293     size_t i_fd = luaL_checkint( L, 2 );
294     /* FIXME: we should really use poll() instead here, but that breaks the
295      * VLC/LUA API. On Windows, overflow protection is built-in FD_SET, not
296      * on POSIX. In both cases, run-time behavior will however be wrong. */
297 #ifndef WIN32
298     if( i_fd < FD_SETSIZE )
299 #endif
300         FD_SET( i_fd, fds );
301     return 0;
302 }
303
304 static int vlclua_fd_zero( lua_State *L )
305 {
306     fd_set *fds = (fd_set*)luaL_checkudata( L, 1, "fd_set" );
307     FD_ZERO( fds );
308     return 0;
309 }
310
311 /*****************************************************************************
312  *
313  *****************************************************************************/
314 /*
315 static int vlclua_fd_open( lua_State *L )
316 {
317 }
318 */
319
320 static int vlclua_fd_write( lua_State *L )
321 {
322     int i_fd = luaL_checkint( L, 1 );
323     size_t i_len;
324     ssize_t i_ret;
325     const char *psz_buffer = luaL_checklstring( L, 2, &i_len );
326     i_len = luaL_optint( L, 3, i_len );
327     i_ret = write( i_fd, psz_buffer, i_len );
328     lua_pushinteger( L, i_ret );
329     return 1;
330 }
331
332 static int vlclua_fd_read( lua_State *L )
333 {
334     int i_fd = luaL_checkint( L, 1 );
335     size_t i_len = luaL_optint( L, 2, 1 );
336     char psz_buffer[i_len];
337     i_len = read( i_fd, psz_buffer, i_len );
338     lua_pushlstring( L, psz_buffer, i_len );
339     return 1;
340 }
341
342 /*****************************************************************************
343  *
344  *****************************************************************************/
345 static int vlclua_stat( lua_State *L )
346 {
347 #ifdef HAVE_SYS_STAT_H
348     const char *psz_path = luaL_checkstring( L, 1 );
349     struct stat s;
350     if( utf8_stat( psz_path, &s ) )
351         return 0;
352         //return luaL_error( L, "Couldn't stat %s.", psz_path );
353     lua_newtable( L );
354     if( S_ISREG( s.st_mode ) )
355         lua_pushstring( L, "file" );
356     else if( S_ISDIR( s.st_mode ) )
357         lua_pushstring( L, "dir" );
358 #ifdef S_ISCHR
359     else if( S_ISCHR( s.st_mode ) )
360         lua_pushstring( L, "character device" );
361 #endif
362 #ifdef S_ISBLK
363     else if( S_ISBLK( s.st_mode ) )
364         lua_pushstring( L, "block device" );
365 #endif
366 #ifdef S_ISFIFO
367     else if( S_ISFIFO( s.st_mode ) )
368         lua_pushstring( L, "fifo" );
369 #endif
370 #ifdef S_ISLNK
371     else if( S_ISLNK( s.st_mode ) )
372         lua_pushstring( L, "symbolic link" );
373 #endif
374 #ifdef S_ISSOCK
375     else if( S_ISSOCK( s.st_mode ) )
376         lua_pushstring( L, "socket" );
377 #endif
378     else
379         lua_pushstring( L, "unknown" );
380     lua_setfield( L, -2, "type" );
381     lua_pushinteger( L, s.st_mode );
382     lua_setfield( L, -2, "mode" );
383     lua_pushinteger( L, s.st_uid );
384     lua_setfield( L, -2, "uid" );
385     lua_pushinteger( L, s.st_gid );
386     lua_setfield( L, -2, "gid" );
387     lua_pushinteger( L, s.st_size );
388     lua_setfield( L, -2, "size" );
389     lua_pushinteger( L, s.st_atime );
390     lua_setfield( L, -2, "access_time" );
391     lua_pushinteger( L, s.st_mtime );
392     lua_setfield( L, -2, "modification_time" );
393     lua_pushinteger( L, s.st_ctime );
394     lua_setfield( L, -2, "creation_time" );
395     return 1;
396 #else
397 #   warning "Woops, looks like we don't have stat on your platform"
398     return luaL_error( L, "System is missing <sys/stat.h>" );
399 #endif
400 }
401
402 static int vlclua_opendir( lua_State *L )
403 {
404     const char *psz_dir = luaL_checkstring( L, 1 );
405     DIR *p_dir;
406     int i = 0;
407
408     if( ( p_dir = utf8_opendir( psz_dir ) ) == NULL )
409         return luaL_error( L, "cannot open directory `%s'.", psz_dir );
410
411     lua_newtable( L );
412     for( ;; )
413     {
414         char *psz_filename = utf8_readdir( p_dir );
415         if( !psz_filename ) break;
416         i++;
417         lua_pushstring( L, psz_filename );
418         lua_rawseti( L, -2, i );
419         free( psz_filename );
420     }
421     closedir( p_dir );
422     return 1;
423 }
424
425 /*****************************************************************************
426  *
427  *****************************************************************************/
428 static const luaL_Reg vlclua_net_reg[] = {
429     { "url_parse", vlclua_url_parse },
430     { "listen_tcp", vlclua_net_listen_tcp },
431     { "close", vlclua_net_close },
432     { "send", vlclua_net_send },
433     { "recv", vlclua_net_recv },
434     { "poll", vlclua_net_poll },
435     { "select", vlclua_net_select },
436     { "fd_set_new", vlclua_fd_set_new },
437     { "read", vlclua_fd_read },
438     { "write", vlclua_fd_write },
439     { "stat", vlclua_stat }, /* Not really "net" */
440     { "opendir", vlclua_opendir }, /* Not really "net" */
441     { NULL, NULL }
442 };
443
444 void luaopen_net( lua_State *L )
445 {
446     lua_newtable( L );
447     luaL_register( L, NULL, vlclua_net_reg );
448 #define ADD_CONSTANT( name, value )    \
449     lua_pushinteger( L, value ); \
450     lua_setfield( L, -2, name );
451     ADD_CONSTANT( "POLLIN", POLLIN )
452     ADD_CONSTANT( "POLLPRI", POLLPRI )
453     ADD_CONSTANT( "POLLOUT", POLLOUT )
454     ADD_CONSTANT( "POLLERR", POLLERR )
455     ADD_CONSTANT( "POLLHUP", POLLHUP )
456     ADD_CONSTANT( "POLLNVAL", POLLNVAL )
457     lua_setfield( L, -2, "net" );
458 }