]> git.sesse.net Git - vlc/blob - modules/meta_engine/luameta.c
8e50d661a9ec9e958788b99c81d57b194d05c001
[vlc] / modules / meta_engine / luameta.c
1 /*****************************************************************************
2  * luameta.c: Get meta/artwork using lua scripts
3  *****************************************************************************
4  * Copyright (C) 2006 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 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc_input.h>
32 #include <vlc_playlist.h>
33 #include <vlc_meta.h>
34 #include <vlc_url.h>
35 #include <vlc_strings.h>
36 #include <vlc_stream.h>
37 #include <vlc_charset.h>
38
39 #ifdef HAVE_SYS_STAT_H
40 #   include <sys/stat.h>
41 #endif
42
43 #include <lua.h>        /* Low level lua C API */
44 #include <lauxlib.h>    /* Higher level C API */
45 #include <lualib.h>     /* Lua libs */
46
47 /*****************************************************************************
48  * Local prototypes
49  *****************************************************************************/
50 static int FindArt( vlc_object_t * );
51 static int FindMeta( vlc_object_t *p_this );
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56
57 vlc_module_begin();
58     set_shortname( N_( "Lua Meta" ) );
59     set_description( _("Fetch Artwork using lua scripts") );
60     set_capability( "meta fetcher", 10 );
61     set_callbacks( FindMeta, NULL );
62     add_submodule();
63         set_capability( "art finder", 10 );
64         set_callbacks( FindArt, NULL );
65 vlc_module_end();
66
67 /*****************************************************************************
68  * Lua function bridge
69  *****************************************************************************/
70 static vlc_object_t * vlclua_get_this( lua_State *p_state )
71 {
72     vlc_object_t * p_this;
73     lua_getglobal( p_state, "vlc" );
74     lua_getfield( p_state, lua_gettop( p_state ), "private" );
75     p_this = (vlc_object_t*)lua_topointer( p_state, lua_gettop( p_state ) );
76     lua_pop( p_state, 2 );
77     return p_this;
78 }
79
80 static int vlclua_stream_new( lua_State *p_state )
81 {
82     vlc_object_t * p_this = vlclua_get_this( p_state );
83     int i = lua_gettop( p_state );
84     stream_t * p_stream;
85     const char * psz_url;
86     if( !i ) return 0;
87     psz_url = lua_tostring( p_state, 1 );
88     lua_pop( p_state, i );
89     p_stream = stream_UrlNew( p_this, psz_url );
90     lua_pushlightuserdata( p_state, p_stream );
91     return 1;
92 }
93
94 static int vlclua_stream_read( lua_State *p_state )
95 {
96     int i = lua_gettop( p_state );
97     stream_t * p_stream;
98     int n;
99     byte_t *p_read;
100     int i_read;
101     if( !i ) return 0;
102     p_stream = (stream_t *)lua_topointer( p_state, 1 );
103     n = lua_tonumber( p_state, 2 );
104     lua_pop( p_state, i );
105     p_read = malloc( n );
106     if( !p_read ) return 0;
107     i_read = stream_Read( p_stream, p_read, n );
108     lua_pushlstring( p_state, (const char *)p_read, i_read );
109     free( p_read );
110     return 1;
111 }
112
113 static int vlclua_stream_readline( lua_State *p_state )
114 {
115     int i = lua_gettop( p_state );
116     stream_t * p_stream;
117     if( !i ) return 0;
118     p_stream = (stream_t *)lua_topointer( p_state, 1 );
119     lua_pop( p_state, i );
120     char *psz_line = stream_ReadLine( p_stream );
121     if( psz_line )
122     {
123         lua_pushstring( p_state, psz_line );
124         free( psz_line );
125     }
126     else
127     {
128         lua_pushnil( p_state );
129     }
130     return 1;
131 }
132
133 static int vlclua_stream_delete( lua_State *p_state )
134 {
135     int i = lua_gettop( p_state );
136     stream_t * p_stream;
137     if( !i ) return 0;
138     p_stream = (stream_t *)lua_topointer( p_state, 1 );
139     lua_pop( p_state, i );
140     stream_Delete( p_stream );
141     return 1;
142 }
143
144 static int vlclua_decode_uri( lua_State *p_state )
145 {
146     int i = lua_gettop( p_state );
147     if( !i ) return 0;
148     const char *psz_cstring = lua_tostring( p_state, 1 );
149     if( !psz_cstring ) return 0;
150     char *psz_string = strdup( psz_cstring );
151     lua_pop( p_state, i );
152     decode_URI( psz_string );
153     lua_pushstring( p_state, psz_string );
154     free( psz_string );
155     return 1;
156 }
157
158 static int vlclua_resolve_xml_special_chars( lua_State *p_state )
159 {
160     int i = lua_gettop( p_state );
161     if( !i ) return 0;
162     const char *psz_cstring = lua_tostring( p_state, 1 );
163     if( !psz_cstring ) return 0;
164     char *psz_string = strdup( psz_cstring );
165     lua_pop( p_state, i );
166     resolve_xml_special_chars( psz_string );
167     lua_pushstring( p_state, psz_string );
168     free( psz_string );
169     return 1;
170 }
171
172 static int vlclua_msg_dbg( lua_State *p_state )
173 {
174     vlc_object_t *p_this = vlclua_get_this( p_state );
175     int i = lua_gettop( p_state );
176     if( !i ) return 0;
177     const char *psz_cstring = lua_tostring( p_state, 1 );
178     if( !psz_cstring ) return 0;
179     msg_Dbg( p_this, "%s", psz_cstring );
180     return 0;
181 }
182 static int vlclua_msg_warn( lua_State *p_state )
183 {
184     vlc_object_t *p_this = vlclua_get_this( p_state );
185     int i = lua_gettop( p_state );
186     if( !i ) return 0;
187     const char *psz_cstring = lua_tostring( p_state, 1 );
188     if( !psz_cstring ) return 0;
189     msg_Warn( p_this, "%s", psz_cstring );
190     return 0;
191 }
192 static int vlclua_msg_err( lua_State *p_state )
193 {
194     vlc_object_t *p_this = vlclua_get_this( p_state );
195     int i = lua_gettop( p_state );
196     if( !i ) return 0;
197     const char *psz_cstring = lua_tostring( p_state, 1 );
198     if( !psz_cstring ) return 0;
199     msg_Err( p_this, "%s", psz_cstring );
200     return 0;
201 }
202 static int vlclua_msg_info( lua_State *p_state )
203 {
204     vlc_object_t *p_this = vlclua_get_this( p_state );
205     int i = lua_gettop( p_state );
206     if( !i ) return 0;
207     const char *psz_cstring = lua_tostring( p_state, 1 );
208     if( !psz_cstring ) return 0;
209     msg_Info( p_this, "%s", psz_cstring );
210     return 0;
211 }
212
213 /* Functions to register */
214 static luaL_Reg p_reg[] =
215 {
216     { "stream_new", vlclua_stream_new },
217     { "stream_read", vlclua_stream_read },
218     { "stream_readline", vlclua_stream_readline },
219     { "stream_delete", vlclua_stream_delete },
220     { "decode_uri", vlclua_decode_uri },
221     { "resolve_xml_special_chars", vlclua_resolve_xml_special_chars },
222     { "msg_dbg", vlclua_msg_dbg },
223     { "msg_warn", vlclua_msg_warn },
224     { "msg_err", vlclua_msg_err },
225     { "msg_info", vlclua_msg_info },
226     { NULL, NULL }
227 };
228 /*****************************************************************************
229  *
230  *****************************************************************************/
231 static int file_select( const char *file )
232 {
233     int i = strlen( file );
234     return i > 4 && !strcmp( file+i-4, ".lua" );
235 }
236
237 static int file_compare( const char **a, const char **b )
238 {
239     return strcmp( *a, *b );
240 }
241
242 /*****************************************************************************
243  * Init lua
244  *****************************************************************************/
245 static lua_State * vlclua_meta_init( vlc_object_t *p_this, input_item_t * p_item )
246 {
247     lua_State * p_state = luaL_newstate();
248     if( !p_state )
249     {
250         msg_Err( p_this, "Could not create new Lua State" );
251         return NULL;
252     }
253
254     /* Load Lua libraries */
255     luaL_openlibs( p_state ); /* XXX: Don't open all the libs? */
256     
257     luaL_register( p_state, "vlc", p_reg );
258     
259     lua_pushlightuserdata( p_state, p_this );
260     lua_setfield( p_state, lua_gettop( p_state ) - 1, "private" );
261     
262     lua_pushstring( p_state, p_item->psz_name );
263     lua_setfield( p_state, lua_gettop( p_state ) - 1, "name" );
264     
265     lua_pushstring( p_state, input_item_GetTitle( p_item ) );
266     lua_setfield( p_state, lua_gettop( p_state ) - 1, "title" );
267     
268     lua_pushstring( p_state, input_item_GetAlbum( p_item ) );
269     lua_setfield( p_state, lua_gettop( p_state ) - 1, "album" );
270
271     lua_pushstring( p_state, input_item_GetArtURL( p_item ) );
272     lua_setfield( p_state, lua_gettop( p_state ) - 1, "arturl" );
273     /* XXX: all should be passed */
274
275     return p_state;
276 }
277
278 /*****************************************************************************
279  * Will execute func on all scripts in luadirname, and stop if func returns
280  * success.
281  *****************************************************************************/
282 static int vlclua_scripts_batch_execute( vlc_object_t *p_this,
283                                          const char * luadirname,
284                                          int (*func)(vlc_object_t *, const char *, lua_State *, void *),
285                                          lua_State * p_state,
286                                          void * user_data)
287 {
288     int i_ret = VLC_EGENERIC;
289
290     DIR   *dir           = NULL;
291     char **ppsz_filelist = NULL;
292     char **ppsz_fileend  = NULL;
293     char **ppsz_file;
294
295     char  *ppsz_dir_list[] = { NULL, NULL, NULL };
296     char **ppsz_dir;
297
298     ppsz_dir_list[0] = malloc( strlen( p_this->p_libvlc->psz_homedir )
299                              + strlen( DIR_SEP CONFIG_DIR DIR_SEP ) + strlen( luadirname ) + 1 );
300     sprintf( ppsz_dir_list[0], "%s" DIR_SEP CONFIG_DIR DIR_SEP "%s",
301              p_this->p_libvlc->psz_homedir, luadirname );
302
303 #   if defined(__APPLE__) || defined(SYS_BEOS) || defined(WIN32)
304     {
305         const char *psz_vlcpath = config_GetDataDir( p_this );
306         ppsz_dir_list[1] = malloc( strlen( psz_vlcpath ) + strlen( luadirname ) + 1 );
307         if( !ppsz_dir_list[1] ) return VLC_ENOMEM;
308         sprintf( ppsz_dir_list[1], "%s" DIR_SEP "%s", psz_vlcpath, luadirname );
309     }
310 #   endif
311
312     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
313     {
314         int i_files;
315
316         if( ppsz_filelist )
317         {
318             for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
319                  ppsz_file++ )
320                 free( *ppsz_file );
321             free( ppsz_filelist );
322             ppsz_filelist = NULL;
323         }
324
325         if( dir )
326         {
327             closedir( dir );
328         }
329
330         msg_Dbg( p_this, "Trying Lua scripts in %s", *ppsz_dir );
331         dir = utf8_opendir( *ppsz_dir );
332
333         if( !dir ) continue;
334         i_files = utf8_loaddir( dir, &ppsz_filelist, file_select, file_compare );
335         if( i_files < 1 ) continue;
336         ppsz_fileend = ppsz_filelist + i_files;
337
338         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend; ppsz_file++ )
339         {
340             char  *psz_filename;
341             asprintf( &psz_filename, "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file );
342             msg_Dbg( p_this, "Trying Lua playlist script %s", psz_filename );
343             
344             i_ret = func( p_this, psz_filename, p_state, user_data );
345             
346             free( psz_filename );
347
348             if( i_ret == VLC_SUCCESS ) break;
349         }
350         if( i_ret == VLC_SUCCESS ) break;
351     }
352
353     if( ppsz_filelist )
354     {
355         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
356              ppsz_file++ )
357             free( *ppsz_file );
358         free( ppsz_filelist );
359     }
360     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
361         free( *ppsz_dir );
362
363     if( dir ) closedir( dir );
364
365     return i_ret;
366 }
367
368 /*****************************************************************************
369  * Meta data setters utility.
370  *****************************************************************************/
371 static inline void read_meta_data( vlc_object_t *p_this,
372                                    lua_State *p_state, int o, int t,
373                                    input_item_t *p_input )
374 {
375     const char *psz_value;
376 #define TRY_META( a, b )                                    \
377     lua_getfield( p_state, o, a );                          \
378     if( lua_isstring( p_state, t ) )                        \
379     {                                                       \
380         psz_value = lua_tostring( p_state, t );             \
381         msg_Dbg( p_this, #b ": %s", psz_value );           \
382         input_item_Set ## b ( p_input, psz_value );   \
383     }                                                       \
384     lua_pop( p_state, 1 ); /* pop a */
385     TRY_META( "title", Title );
386     TRY_META( "artist", Artist );
387     TRY_META( "genre", Genre );
388     TRY_META( "copyright", Copyright );
389     TRY_META( "album", Album );
390     TRY_META( "tracknum", TrackNum );
391     TRY_META( "description", Description );
392     TRY_META( "rating", Rating );
393     TRY_META( "date", Date );
394     TRY_META( "setting", Setting );
395     TRY_META( "url", URL );
396     TRY_META( "language", Language );
397     TRY_META( "nowplaying", NowPlaying );
398     TRY_META( "publisher", Publisher );
399     TRY_META( "encodedby", EncodedBy );
400     TRY_META( "arturl", ArtURL );
401     TRY_META( "trackid", TrackID );
402 }
403
404 static inline void read_custom_meta_data( vlc_object_t *p_this,
405                                           lua_State *p_state, int o, int t,
406                                           input_item_t *p_input )
407 {
408     lua_getfield( p_state, o, "meta" );
409     if( lua_istable( p_state, t ) )
410     {
411         lua_pushnil( p_state );
412         while( lua_next( p_state, t ) )
413         {
414             if( !lua_isstring( p_state, t+1 ) )
415             {
416                 msg_Warn( p_this, "Custom meta data category name must be "
417                                    "a string" );
418             }
419             else if( !lua_istable( p_state, t+2 ) )
420             {
421                 msg_Warn( p_this, "Custom meta data category contents "
422                                    "must be a table" );
423             }
424             else
425             {
426                 const char *psz_meta_category = lua_tostring( p_state, t+1 );
427                 msg_Dbg( p_this, "Found custom meta data category: %s",
428                          psz_meta_category );
429                 lua_pushnil( p_state );
430                 while( lua_next( p_state, t+2 ) )
431                 {
432                     if( !lua_isstring( p_state, t+3 ) )
433                     {
434                         msg_Warn( p_this, "Custom meta category item name "
435                                            "must be a string." );
436                     }
437                     else if( !lua_isstring( p_state, t+4 ) )
438                     {
439                         msg_Warn( p_this, "Custom meta category item value "
440                                            "must be a string." );
441                     }
442                     else
443                     {
444                         const char *psz_meta_name =
445                             lua_tostring( p_state, t+3 );
446                         const char *psz_meta_value =
447                             lua_tostring( p_state, t+4 );
448                         msg_Dbg( p_this, "Custom meta %s, %s: %s",
449                                  psz_meta_category, psz_meta_name,
450                                  psz_meta_value );
451                         input_ItemAddInfo( p_input, psz_meta_category,
452                                            psz_meta_name, psz_meta_value );
453                     }
454                     lua_pop( p_state, 1 ); /* pop item */
455                 }
456             }
457             lua_pop( p_state, 1 ); /* pop category */
458         }
459     }
460     lua_pop( p_state, 1 ); /* pop "meta" */
461 }
462
463 /*****************************************************************************
464  * Called through lua_scripts_batch_execute to call 'fetch_art' on the script
465  * pointed by psz_filename.
466  *****************************************************************************/
467 static int fetch_art( vlc_object_t *p_this, const char * psz_filename,
468                       lua_State * p_state, void * user_data )
469 {
470     int i_ret = VLC_EGENERIC;
471     input_item_t * p_input = user_data;
472     int s;
473
474     /* Ugly hack to delete previous versions of the fetchart()
475     * functions. */
476     lua_pushnil( p_state );
477     lua_setglobal( p_state, "fetch_art" );
478     
479     /* Load and run the script(s) */
480     if( luaL_dofile( p_state, psz_filename ) )
481     {
482         msg_Warn( p_this, "Error loading script %s: %s", psz_filename,
483                   lua_tostring( p_state, lua_gettop( p_state ) ) );
484         lua_pop( p_state, 1 );
485         return VLC_EGENERIC;
486     }
487
488     lua_getglobal( p_state, "fetch_art" );
489
490     if( !lua_isfunction( p_state, lua_gettop( p_state ) ) )
491     {
492         msg_Warn( p_this, "Error while runing script %s, "
493                   "function fetch_art() not found", psz_filename );
494         lua_pop( p_state, 1 );
495         return VLC_EGENERIC;
496     }
497
498     if( lua_pcall( p_state, 0, 1, 0 ) )
499     {
500         msg_Warn( p_this, "Error while runing script %s, "
501                   "function fetch_art(): %s", psz_filename,
502                   lua_tostring( p_state, lua_gettop( p_state ) ) );
503         lua_pop( p_state, 1 );
504         return VLC_EGENERIC;
505     }
506
507     if((s = lua_gettop( p_state )))
508     {
509         const char * psz_value;
510
511         if( lua_isstring( p_state, s ) )
512         {
513             psz_value = lua_tostring( p_state, s );
514             if( psz_value && *psz_value != 0 )
515             {
516                 msg_Dbg( p_this, "setting arturl: %s", psz_value );
517                 input_item_SetArtURL ( p_input, psz_value );
518                 i_ret = VLC_SUCCESS;
519             }
520         }
521         else
522         {
523             msg_Err( p_this, "Lua playlist script %s: "
524                  "didn't return a string", psz_filename );
525         }
526     }
527     else
528     {
529         msg_Err( p_this, "Script went completely foobar" );
530     }
531
532     return i_ret;
533 }
534
535 /*****************************************************************************
536  * Called through lua_scripts_batch_execute to call 'fetch_meta' on the script
537  * pointed by psz_filename.
538  *****************************************************************************/
539 static int fetch_meta( vlc_object_t *p_this, const char * psz_filename,
540                        lua_State * p_state, void * user_data )
541 {
542     input_item_t * p_input = user_data;
543     int t;
544
545     /* Ugly hack to delete previous versions of the fetchmeta()
546     * functions. */
547     lua_pushnil( p_state );
548     lua_setglobal( p_state, "fetch_meta" );
549     
550     /* Load and run the script(s) */
551     if( luaL_dofile( p_state, psz_filename ) )
552     {
553         msg_Warn( p_this, "Error loading script %s: %s", psz_filename,
554                   lua_tostring( p_state, lua_gettop( p_state ) ) );
555         lua_pop( p_state, 1 );
556         return VLC_EGENERIC;
557     }
558     
559     lua_getglobal( p_state, "fetch_meta" );
560     
561     if( !lua_isfunction( p_state, lua_gettop( p_state ) ) )
562     {
563         msg_Warn( p_this, "Error while runing script %s, "
564                   "function fetch_meta() not found", psz_filename );
565         lua_pop( p_state, 1 );
566         return VLC_EGENERIC;
567     }
568     
569     if( lua_pcall( p_state, 0, 1, 0 ) )
570     {
571         msg_Warn( p_this, "Error while runing script %s, "
572                   "function fetch_meta(): %s", psz_filename,
573                   lua_tostring( p_state, lua_gettop( p_state ) ) );
574         lua_pop( p_state, 1 );
575         return VLC_EGENERIC;
576     }
577     
578
579     if((t = lua_gettop( p_state )))
580     {
581         if( lua_istable( p_state, t ) )
582         {
583             read_meta_data( p_this, p_state, t, t+1, p_input );
584             read_custom_meta_data( p_this, p_state, t, t+1, p_input );
585         }
586         else
587         {
588             msg_Err( p_this, "Lua playlist script %s: "
589                  "didn't return a table", psz_filename );
590         }
591     }
592     else
593     {
594         msg_Err( p_this, "Script went completely foobar" );
595     }
596
597     /* We tell the batch thing to continue, hence all script
598      * will get the change to add its meta. This behaviour could
599      * be changed. */
600     return VLC_EGENERIC;
601 }
602
603 /*****************************************************************************
604  * Module entry point for meta.
605  *****************************************************************************/
606 static int FindMeta( vlc_object_t *p_this )
607 {
608     meta_engine_t *p_me = (meta_engine_t *)p_this;
609     input_item_t *p_item = p_me->p_item;
610     lua_State *p_state = vlclua_meta_init( p_this, p_item );
611     
612     int i_ret = vlclua_scripts_batch_execute( p_this, "luameta", &fetch_meta, p_state, p_item );
613     lua_close( p_state );
614     return i_ret;
615 }
616
617 /*****************************************************************************
618  * Module entry point for art.
619  *****************************************************************************/
620 static int FindArt( vlc_object_t *p_this )
621 {
622     playlist_t *p_playlist = (playlist_t *)p_this;
623     input_item_t *p_item = (input_item_t *)(p_playlist->p_private);
624     lua_State *p_state = vlclua_meta_init( p_this, p_item );
625     
626     int i_ret = vlclua_scripts_batch_execute( p_this, "luameta", &fetch_art, p_state, p_item );
627     lua_close( p_state );
628     return i_ret;
629 }
630