]> git.sesse.net Git - vlc/blob - modules/misc/lua/vlc.c
Implement Lua objects in the C code directly. Fix most type checks. Move every thing...
[vlc] / modules / misc / lua / vlc.c
1 /*****************************************************************************
2  * vlc.c: Generic lua interface 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 <assert.h>
37
38 #include <vlc_common.h>
39 #include <vlc_plugin.h>
40 #include <vlc_meta.h>
41 #include <vlc_charset.h>
42 #include <vlc_aout.h>
43
44 #include <lua.h>        /* Low level lua C API */
45 #include <lauxlib.h>    /* Higher level C API */
46 #include <lualib.h>     /* Lua libs */
47
48 #include "vlc.h"
49
50 /*****************************************************************************
51  * Module descriptor
52  *****************************************************************************/
53
54 #define INTF_TEXT N_("Lua interface")
55 #define INTF_LONGTEXT N_("Lua interface module to load")
56
57 #define CONFIG_TEXT N_("Lua interface configuration")
58 #define CONFIG_LONGTEXT N_("Lua interface configuration string. Format is: '[\"<interface module name>\"] = { <option> = <value>, ...}, ...'.")
59
60 vlc_module_begin();
61         set_shortname( N_( "Lua Art" ) );
62         set_description( N_("Fetch artwork using lua scripts") );
63         set_capability( "art finder", 10 );
64         set_callbacks( FindArt, NULL );
65
66     add_submodule();
67         add_shortcut( "luaplaylist" );
68         set_category( CAT_INPUT );
69         set_subcategory( SUBCAT_INPUT_DEMUX );
70         set_shortname( N_("Lua Playlist") );
71         set_description( N_("Lua Playlist Parser Interface") );
72         set_capability( "demux", 2 );
73         set_callbacks( Import_LuaPlaylist, Close_LuaPlaylist );
74
75     add_submodule();
76         add_shortcut( "luaintf" );
77         add_shortcut( "luarc" );
78         /* add_shortcut( "rc" ); */
79         add_shortcut( "luahotkeys" );
80         /* add_shortcut( "hotkeys" ); */
81         add_shortcut( "luatelnet" );
82         /* add_shortcut( "telnet" ); */
83         add_shortcut( "luahttp" );
84         /* add_shortcut( "http" ); */
85         set_description( N_("Lua Interface Module") );
86         set_capability( "interface", 0 );
87         add_string( "lua-intf", "dummy", NULL,
88                     INTF_TEXT, INTF_LONGTEXT, false );
89         add_string( "lua-config", "", NULL,
90                     CONFIG_TEXT, CONFIG_LONGTEXT, false );
91         set_callbacks( Open_LuaIntf, Close_LuaIntf );
92 vlc_module_end();
93
94 /*****************************************************************************
95  *
96  *****************************************************************************/
97 static int file_select( const char *file )
98 {
99     int i = strlen( file );
100     return i > 4 && !strcmp( file+i-4, ".lua" );
101 }
102
103 static int file_compare( const char **a, const char **b )
104 {
105     return strcmp( *a, *b );
106 }
107
108 int vlclua_dir_list( const char *luadirname, char **ppsz_dir_list )
109 {
110     int i = 0;
111     char *datadir = config_GetUserDataDir();
112     if( datadir == NULL )
113         return VLC_ENOMEM;
114
115     if( asprintf( &ppsz_dir_list[i], "%s" DIR_SEP "lua" DIR_SEP "%s",
116                    datadir, luadirname ) < 0 )
117     {
118         free( datadir );
119         return VLC_ENOMEM;
120     }
121     free( datadir );
122     i++;
123
124 #   if defined(__APPLE__) || defined(SYS_BEOS) || defined(WIN32)
125     {
126         const char *psz_vlcpath = config_GetDataDir();
127         if( asprintf( &ppsz_dir_list[i], "%s" DIR_SEP "lua" DIR_SEP "%s",
128                       psz_vlcpath, luadirname )  < 0 )
129             return VLC_ENOMEM;
130         i++;
131         if( asprintf( &ppsz_dir_list[i], "%s" DIR_SEP "share" DIR_SEP "lua" DIR_SEP "%s",
132                       psz_vlcpath, luadirname )  < 0 )
133             return VLC_ENOMEM;
134         i++;
135
136     }
137 #   else
138     if( asprintf( &ppsz_dir_list[i],
139                   "share" DIR_SEP "lua" DIR_SEP "%s", luadirname ) < 0 )
140         return VLC_ENOMEM;
141
142 #   ifdef HAVE_SYS_STAT_H
143     {
144         struct stat stat_info;
145         if( ( utf8_stat( ppsz_dir_list[i], &stat_info ) == -1 )
146             || !S_ISDIR( stat_info.st_mode ) )
147         {
148             free(ppsz_dir_list[i]);
149             if( asprintf( &ppsz_dir_list[i], "%s" DIR_SEP "lua" DIR_SEP "%s",
150                           config_GetDataDir (), luadirname ) < 0 )
151                 return VLC_ENOMEM;
152         }
153     }
154 #   endif
155     i++;
156 #   endif
157     return VLC_SUCCESS;
158 }
159
160 /*****************************************************************************
161  * Will execute func on all scripts in luadirname, and stop if func returns
162  * success.
163  *****************************************************************************/
164 int vlclua_scripts_batch_execute( vlc_object_t *p_this,
165                                   const char * luadirname,
166                                   int (*func)(vlc_object_t *, const char *, lua_State *, void *),
167                                   lua_State * L,
168                                   void * user_data)
169 {
170     int i_ret = VLC_EGENERIC;
171
172     char **ppsz_filelist = NULL;
173     char **ppsz_fileend  = NULL;
174     char **ppsz_file;
175
176     char  *ppsz_dir_list[] = { NULL, NULL, NULL, NULL };
177     char **ppsz_dir;
178
179     i_ret = vlclua_dir_list( luadirname, ppsz_dir_list );
180     if( i_ret != VLC_SUCCESS )
181         return i_ret;
182     i_ret = VLC_EGENERIC;
183
184
185     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
186     {
187         int i_files;
188
189         if( ppsz_filelist )
190         {
191             for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
192                  ppsz_file++ )
193                 free( *ppsz_file );
194             free( ppsz_filelist );
195             ppsz_filelist = NULL;
196         }
197
198         msg_Dbg( p_this, "Trying Lua scripts in %s", *ppsz_dir );
199         i_files = utf8_scandir( *ppsz_dir, &ppsz_filelist, file_select,
200                                 file_compare );
201         if( i_files < 1 ) continue;
202         ppsz_fileend = ppsz_filelist + i_files;
203
204         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend; ppsz_file++ )
205         {
206             char  *psz_filename;
207             if( asprintf( &psz_filename,
208                           "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file ) < 0)
209                 return VLC_ENOMEM;
210             msg_Dbg( p_this, "Trying Lua playlist script %s", psz_filename );
211
212             i_ret = func( p_this, psz_filename, L, user_data );
213
214             free( psz_filename );
215
216             if( i_ret == VLC_SUCCESS ) break;
217         }
218         if( i_ret == VLC_SUCCESS ) break;
219     }
220
221     if( ppsz_filelist )
222     {
223         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
224              ppsz_file++ )
225             free( *ppsz_file );
226         free( ppsz_filelist );
227     }
228     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
229         free( *ppsz_dir );
230
231     return i_ret;
232 }
233
234
235 /*****************************************************************************
236  * Meta data setters utility.
237  * Playlist item table should be on top of the stack when these are called
238  *****************************************************************************/
239 void __vlclua_read_meta_data( vlc_object_t *p_this, lua_State *L,
240                               input_item_t *p_input )
241 {
242 #define TRY_META( a, b )                                        \
243     lua_getfield( L, -1, a );                                   \
244     if( lua_isstring( L, -1 ) )                                 \
245     {                                                           \
246         char *psz_value = strdup( lua_tostring( L, -1 ) );      \
247         EnsureUTF8( psz_value );                                \
248         msg_Dbg( p_this, #b ": %s", psz_value );                \
249         input_item_Set ## b ( p_input, psz_value );             \
250         free( psz_value );                                      \
251     }                                                           \
252     lua_pop( L, 1 ); /* pop a */
253     TRY_META( "title", Title );
254     TRY_META( "artist", Artist );
255     TRY_META( "genre", Genre );
256     TRY_META( "copyright", Copyright );
257     TRY_META( "album", Album );
258     TRY_META( "tracknum", TrackNum );
259     TRY_META( "description", Description );
260     TRY_META( "rating", Rating );
261     TRY_META( "date", Date );
262     TRY_META( "setting", Setting );
263     TRY_META( "url", URL );
264     TRY_META( "language", Language );
265     TRY_META( "nowplaying", NowPlaying );
266     TRY_META( "publisher", Publisher );
267     TRY_META( "encodedby", EncodedBy );
268     TRY_META( "arturl", ArtURL );
269     TRY_META( "trackid", TrackID );
270 }
271
272 void __vlclua_read_custom_meta_data( vlc_object_t *p_this, lua_State *L,
273                                      input_item_t *p_input )
274 {
275     /* ... item */
276     lua_getfield( L, -1, "meta" );
277     /* ... item meta */
278     if( lua_istable( L, -1 ) )
279     {
280         lua_pushnil( L );
281         /* ... item meta nil */
282         while( lua_next( L, -2 ) )
283         {
284             /* ... item meta key value */
285             if( !lua_isstring( L, -2 ) )
286             {
287                 msg_Warn( p_this, "Custom meta data category name must be "
288                                    "a string" );
289             }
290             else if( !lua_istable( L, -1 ) )
291             {
292                 msg_Warn( p_this, "Custom meta data category contents "
293                                    "must be a table" );
294             }
295             else
296             {
297                 const char *psz_meta_category = lua_tostring( L, -2 );
298                 msg_Dbg( p_this, "Found custom meta data category: %s",
299                          psz_meta_category );
300                 lua_pushnil( L );
301                 /* ... item meta key value nil */
302                 while( lua_next( L, -2 ) )
303                 {
304                     /* ... item meta key value key2 value2 */
305                     if( !lua_isstring( L, -2 ) )
306                     {
307                         msg_Warn( p_this, "Custom meta category item name "
308                                            "must be a string." );
309                     }
310                     else if( !lua_isstring( L, -1 ) )
311                     {
312                         msg_Warn( p_this, "Custom meta category item value "
313                                            "must be a string." );
314                     }
315                     else
316                     {
317                         const char *psz_meta_name =
318                             lua_tostring( L, -2 );
319                         const char *psz_meta_value =
320                             lua_tostring( L, -1 );
321                         msg_Dbg( p_this, "Custom meta %s, %s: %s",
322                                  psz_meta_category, psz_meta_name,
323                                  psz_meta_value );
324                         input_ItemAddInfo( p_input, psz_meta_category,
325                                            psz_meta_name, psz_meta_value );
326                     }
327                     lua_pop( L, 1 ); /* pop item */
328                     /* ... item meta key value key2 */
329                 }
330                 /* ... item meta key value */
331             }
332             lua_pop( L, 1 ); /* pop category */
333             /* ... item meta key */
334         }
335         /* ... item meta */
336     }
337     lua_pop( L, 1 ); /* pop "meta" */
338     /* ... item -> back to original stack */
339 }
340
341 /*****************************************************************************
342  * Playlist utilities
343  ****************************************************************************/
344 /**
345  * Playlist item table should be on top of the stack when this is called
346  */
347 void __vlclua_read_options( vlc_object_t *p_this, lua_State *L,
348                             int *pi_options, char ***pppsz_options )
349 {
350     lua_getfield( L, -1, "options" );
351     if( lua_istable( L, -1 ) )
352     {
353         lua_pushnil( L );
354         while( lua_next( L, -2 ) )
355         {
356             if( lua_isstring( L, -1 ) )
357             {
358                 char *psz_option = strdup( lua_tostring( L, -1 ) );
359                 msg_Dbg( p_this, "Option: %s", psz_option );
360                 INSERT_ELEM( *pppsz_options, *pi_options, *pi_options,
361                              psz_option );
362             }
363             else
364             {
365                 msg_Warn( p_this, "Option should be a string" );
366             }
367             lua_pop( L, 1 ); /* pop option */
368         }
369     }
370     lua_pop( L, 1 ); /* pop "options" */
371 }
372
373 int __vlclua_playlist_add_internal( vlc_object_t *p_this, lua_State *L,
374                                     playlist_t *p_playlist,
375                                     input_item_t *p_parent, bool b_play )
376 {
377     int i_count = 0;
378
379     assert( p_parent || p_playlist );
380
381     /* playlist */
382     if( lua_istable( L, -1 ) )
383     {
384         lua_pushnil( L );
385         /* playlist nil */
386         while( lua_next( L, -2 ) )
387         {
388             /* playlist key item */
389             /* <Parse playlist item> */
390             if( lua_istable( L, -1 ) )
391             {
392                 lua_getfield( L, -1, "path" );
393                 /* playlist key item path */
394                 if( lua_isstring( L, -1 ) )
395                 {
396                     const char   *psz_path     = NULL;
397                     const char   *psz_name     = NULL;
398                     char        **ppsz_options = NULL;
399                     int           i_options    = 0;
400                     mtime_t       i_duration   = -1;
401                     input_item_t *p_input;
402
403                     /* Read path and name */
404                     psz_path = lua_tostring( L, -1 );
405                     msg_Dbg( p_this, "Path: %s", psz_path );
406                     lua_getfield( L, -2, "name" );
407                     /* playlist key item path name */
408                     if( lua_isstring( L, -1 ) )
409                     {
410                         psz_name = lua_tostring( L, -1 );
411                         msg_Dbg( p_this, "Name: %s", psz_name );
412                     }
413                     else
414                     {
415                         if( !lua_isnil( L, -1 ) )
416                             msg_Warn( p_this, "Playlist item name should be a string." );
417                         psz_name = psz_path;
418                     }
419
420                     /* Read duration */
421                     lua_getfield( L, -3, "duration" );
422                     /* playlist key item path name duration */
423                     if( lua_isnumber( L, -1 ) )
424                     {
425                         i_duration = (mtime_t)(lua_tonumber( L, -1 )*1e6);
426                     }
427                     else if( !lua_isnil( L, -1 ) )
428                     {
429                         msg_Warn( p_this, "Playlist item duration should be a number (in seconds)." );
430                     }
431                     lua_pop( L, 1 ); /* pop "duration" */
432
433                     /* playlist key item path name */
434
435                     /* Read options: item must be on top of stack */
436                     lua_pushvalue( L, -3 );
437                     /* playlist key item path name item */
438                     vlclua_read_options( p_this, L, &i_options, &ppsz_options );
439
440                     /* Create input item */
441                     p_input = input_ItemNewExt( p_playlist, psz_path,
442                                                 psz_name, i_options,
443                                                 (const char **)ppsz_options,
444                                                 i_duration );
445                     lua_pop( L, 3 ); /* pop "path name item" */
446                     /* playlist key item */
447
448                     /* Read meta data: item must be on top of stack */
449                     vlclua_read_meta_data( p_this, L, p_input );
450
451                     /* Read custom meta data: item must be on top of stack*/
452                     vlclua_read_custom_meta_data( p_this, L, p_input );
453
454                     /* Append item to playlist */
455                     if( p_parent ) /* Add to node */
456                         input_ItemAddSubItem( p_parent, p_input );
457                     else /* Play or Enqueue (preparse) */
458                         /* FIXME: playlist_AddInput() can fail */
459                         playlist_AddInput( p_playlist, p_input,
460                                PLAYLIST_APPEND | 
461                                ( b_play ? PLAYLIST_GO : PLAYLIST_PREPARSE ),
462                                PLAYLIST_END, true, false );
463                     i_count ++; /* increment counter */
464                     vlc_gc_decref( p_input );
465                     while( i_options > 0 )
466                         free( ppsz_options[--i_options] );
467                     free( ppsz_options );
468                 }
469                 else
470                 {
471                     lua_pop( L, 1 ); /* pop "path" */
472                     msg_Warn( p_this,
473                              "Playlist item's path should be a string" );
474                 }
475                 /* playlist key item */
476             }
477             else
478             {
479                 msg_Warn( p_this, "Playlist item should be a table" );
480             }
481             /* <Parse playlist item> */
482             lua_pop( L, 1 ); /* pop the value, keep the key for
483                               * the next lua_next() call */
484             /* playlist key */
485         }
486         /* playlist */
487     }
488     else
489     {
490         msg_Warn( p_this, "Playlist should be a table." );
491     }
492     return i_count;
493 }