]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/stream.c
b44507f589e32d0fd5ad9b6e629ffce82b003930
[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( lua_State *L )
63 {
64     vlc_object_t * p_this = vlclua_get_this( L );
65     stream_t * p_stream;
66     const char * psz_url;
67     psz_url = luaL_checkstring( L, 1 );
68     p_stream = stream_UrlNew( p_this, psz_url );
69     if( !p_stream )
70         return luaL_error( L, "Error when opening url: `%s'", psz_url );
71
72     stream_t **pp_stream = lua_newuserdata( L, sizeof( stream_t * ) );
73     *pp_stream = p_stream;
74
75     if( luaL_newmetatable( L, "stream" ) )
76     {
77         lua_newtable( L );
78         luaL_register( L, NULL, vlclua_stream_reg );
79         lua_setfield( L, -2, "__index" );
80         lua_pushcfunction( L, vlclua_stream_delete );
81         lua_setfield( L, -2, "__gc" );
82     }
83
84     lua_setmetatable( L, -2 );
85     return 1;
86 }
87
88 static int vlclua_stream_read( lua_State *L )
89 {
90     int i_read;
91     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
92     int n = luaL_checkint( L, 2 );
93     uint8_t *p_read = malloc( n );
94     if( !p_read ) return vlclua_error( L );
95     i_read = stream_Read( *pp_stream, p_read, n );
96     lua_pushlstring( L, (const char *)p_read, i_read );
97     free( p_read );
98     return 1;
99 }
100
101 static int vlclua_stream_readline( lua_State *L )
102 {
103     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
104     char *psz_line = stream_ReadLine( *pp_stream );
105     if( psz_line )
106     {
107         lua_pushstring( L, psz_line );
108         free( psz_line );
109     }
110     else
111         lua_pushnil( L );
112     return 1;
113 }
114
115 static int vlclua_stream_add_filter( lua_State *L )
116 {
117     vlc_object_t *p_this = vlclua_get_this( L );
118
119     /* Make sure that we have 1 argument (+ 1 object) */
120     lua_settop( L, 2 );
121
122     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
123     if( !*pp_stream ) return vlclua_error( L );
124     const char *psz_filter = NULL;
125
126     if( lua_isstring( L, 2 ) )
127         psz_filter = lua_tostring( L, 2 );
128
129     if( !psz_filter || !*psz_filter )
130     {
131         msg_Dbg( p_this, "adding all automatic stream filters" );
132         while( true )
133         {
134             /* Add next automatic stream */
135             stream_t *p_filtered = stream_FilterNew( *pp_stream, NULL );
136             if( !p_filtered )
137                 break;
138             else
139             {
140                 msg_Dbg( p_this, "inserted an automatic stream filter" );
141                 *pp_stream = p_filtered;
142             }
143         }
144         luaL_getmetatable( L, "stream" );
145         lua_setmetatable( L, 1 );
146     }
147     else
148     {
149         /* Add a named filter */
150         stream_t *p_filter = stream_FilterNew( *pp_stream, psz_filter );
151         if( !p_filter )
152             msg_Dbg( p_this, "Unable to open requested stream filter '%s'",
153                      psz_filter );
154         else
155         {
156             *pp_stream = p_filter;
157             luaL_getmetatable( L, "stream" );
158             lua_setmetatable( L, 1 );
159         }
160     }
161
162     return 1;
163 }
164
165 static int vlclua_stream_delete( lua_State *L )
166 {
167     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
168     stream_Delete( *pp_stream );
169     return 0;
170 }
171
172 /*****************************************************************************
173  *
174  *****************************************************************************/
175 void luaopen_stream( lua_State *L )
176 {
177     lua_pushcfunction( L, vlclua_stream_new );
178     lua_setfield( L, -2, "stream" );
179 }