]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/stream.c
lua: remove "bla ? true : false"
[vlc] / modules / misc / lua / libs / stream.c
1 /*****************************************************************************
2  * stream.c: stream functions
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea at videolan tod org>
8  *          Pierre d'Herbemont <pdherbemont # videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifndef  _GNU_SOURCE
29 #   define  _GNU_SOURCE
30 #endif
31
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37 #include <vlc_plugin.h>
38 #include <vlc_meta.h>
39 #include <vlc_aout.h>
40
41 #include <lua.h>        /* Low level lua C API */
42 #include <lauxlib.h>    /* Higher level C API */
43
44 #include "../vlc.h"
45 #include "../libs.h"
46
47 /*****************************************************************************
48  * Stream handling
49  *****************************************************************************/
50 static int vlclua_stream_read( lua_State * );
51 static int vlclua_stream_readline( lua_State * );
52 static int vlclua_stream_delete( lua_State * );
53 static int vlclua_stream_add_filter( lua_State *L );
54
55 static const luaL_Reg vlclua_stream_reg[] = {
56     { "read", vlclua_stream_read },
57     { "readline", vlclua_stream_readline },
58     { "addfilter", vlclua_stream_add_filter },
59     { NULL, NULL }
60 };
61
62 static int vlclua_stream_new_inner( lua_State *L, stream_t *p_stream )
63 {
64     if( !p_stream )
65     {
66         lua_pushnil( L );
67         lua_pushliteral( L, "Error when opening stream" );
68         return 2;
69     }
70
71     stream_t **pp_stream = lua_newuserdata( L, sizeof( stream_t * ) );
72     *pp_stream = p_stream;
73
74     if( luaL_newmetatable( L, "stream" ) )
75     {
76         lua_newtable( L );
77         luaL_register( L, NULL, vlclua_stream_reg );
78         lua_setfield( L, -2, "__index" );
79         lua_pushcfunction( L, vlclua_stream_delete );
80         lua_setfield( L, -2, "__gc" );
81     }
82
83     lua_setmetatable( L, -2 );
84     return 1;
85 }
86
87 static int vlclua_stream_new( lua_State *L )
88 {
89     vlc_object_t * p_this = vlclua_get_this( L );
90     const char * psz_url = luaL_checkstring( L, 1 );
91     stream_t *p_stream = stream_UrlNew( p_this, psz_url );
92     return vlclua_stream_new_inner( L, p_stream );
93 }
94
95 static int vlclua_memory_stream_new( lua_State *L )
96 {
97     vlc_object_t * p_this = vlclua_get_this( L );
98     /* FIXME: duplicating the whole buffer is suboptimal. Keeping a reference to the string so that it doesn't get garbage collected would be better */
99     char * psz_content = strdup( luaL_checkstring( L, 1 ) );
100     stream_t *p_stream = stream_MemoryNew( p_this, (uint8_t *)psz_content, strlen( psz_content ), false );
101     return vlclua_stream_new_inner( L, p_stream );
102 }
103
104 static int vlclua_stream_read( lua_State *L )
105 {
106     int i_read;
107     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
108     int n = luaL_checkint( L, 2 );
109     uint8_t *p_read = malloc( n );
110     if( !p_read ) return vlclua_error( L );
111     i_read = stream_Read( *pp_stream, p_read, n );
112     lua_pushlstring( L, (const char *)p_read, i_read );
113     free( p_read );
114     return 1;
115 }
116
117 static int vlclua_stream_readline( lua_State *L )
118 {
119     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
120     char *psz_line = stream_ReadLine( *pp_stream );
121     if( psz_line )
122     {
123         lua_pushstring( L, psz_line );
124         free( psz_line );
125     }
126     else
127         lua_pushnil( L );
128     return 1;
129 }
130
131 static int vlclua_stream_add_filter( lua_State *L )
132 {
133     vlc_object_t *p_this = vlclua_get_this( L );
134
135     /* Make sure that we have 1 argument (+ 1 object) */
136     lua_settop( L, 2 );
137
138     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
139     if( !*pp_stream ) return vlclua_error( L );
140     const char *psz_filter = NULL;
141
142     if( lua_isstring( L, 2 ) )
143         psz_filter = lua_tostring( L, 2 );
144
145     if( !psz_filter || !*psz_filter )
146     {
147         msg_Dbg( p_this, "adding all automatic stream filters" );
148         while( true )
149         {
150             /* Add next automatic stream */
151             stream_t *p_filtered = stream_FilterNew( *pp_stream, NULL );
152             if( !p_filtered )
153                 break;
154             else
155             {
156                 msg_Dbg( p_this, "inserted an automatic stream filter" );
157                 *pp_stream = p_filtered;
158             }
159         }
160         luaL_getmetatable( L, "stream" );
161         lua_setmetatable( L, 1 );
162     }
163     else
164     {
165         /* Add a named filter */
166         stream_t *p_filter = stream_FilterNew( *pp_stream, psz_filter );
167         if( !p_filter )
168             msg_Dbg( p_this, "Unable to open requested stream filter '%s'",
169                      psz_filter );
170         else
171         {
172             *pp_stream = p_filter;
173             luaL_getmetatable( L, "stream" );
174             lua_setmetatable( L, 1 );
175         }
176     }
177
178     return 1;
179 }
180
181 static int vlclua_stream_delete( lua_State *L )
182 {
183     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
184     stream_Delete( *pp_stream );
185     return 0;
186 }
187
188 /*****************************************************************************
189  *
190  *****************************************************************************/
191 void luaopen_stream( lua_State *L )
192 {
193     lua_pushcfunction( L, vlclua_stream_new );
194     lua_setfield( L, -2, "stream" );
195     lua_pushcfunction( L, vlclua_memory_stream_new );
196     lua_setfield( L, -2, "memory_stream" );
197 }