1 /*****************************************************************************
2 * extension.c: Lua Extensions (meta data, web information, ...)
3 *****************************************************************************
4 * Copyright (C) 2009-2010 VideoLAN and authors
7 * Authors: Jean-Philippe André < jpeg # videolan.org >
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.
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.
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 *****************************************************************************/
34 #include "extension.h"
37 #include <vlc_common.h>
38 #include <vlc_input.h>
39 #include <vlc_interface.h>
40 #include <vlc_events.h>
41 #include <vlc_dialog.h>
43 /* Functions to register */
44 static const luaL_Reg p_reg
[] =
50 * Extensions capabilities
51 * Note: #define and ppsz_capabilities must be in sync
53 static const char caps
[][20] = {
54 #define EXT_HAS_MENU (1 << 0) ///< Hook: menu
56 #define EXT_TRIGGER_ONLY (1 << 1) ///< Hook: trigger. Not activable
58 #define EXT_INPUT_LISTENER (1 << 2) ///< Hook: input_changed
60 #define EXT_META_LISTENER (1 << 3) ///< Hook: meta_changed
62 #define EXT_PLAYING_LISTENER (1 << 4) ///< Hook: status_changed
66 static int ScanExtensions( extensions_manager_t
*p_this
);
67 static int ScanLuaCallback( vlc_object_t
*p_this
, const char *psz_script
,
68 const struct luabatch_context_t
* );
69 static int Control( extensions_manager_t
*, int, va_list );
70 static int GetMenuEntries( extensions_manager_t
*p_mgr
, extension_t
*p_ext
,
71 char ***pppsz_titles
, uint16_t **ppi_ids
);
72 static lua_State
* GetLuaState( extensions_manager_t
*p_mgr
,
74 static int TriggerMenu( extension_t
*p_ext
, int id
);
75 static int TriggerExtension( extensions_manager_t
*p_mgr
,
77 static void WatchTimerCallback( void* );
79 static int vlclua_extension_deactivate( lua_State
*L
);
80 static int vlclua_extension_keep_alive( lua_State
*L
);
83 static int vlclua_extension_dialog_callback( vlc_object_t
*p_this
,
89 /* Input item callback: vlc_InputItemMetaChanged */
90 static void inputItemMetaChanged( const vlc_event_t
*p_event
,
97 int Open_Extension( vlc_object_t
*p_this
)
99 if( lua_Disabled( p_this
) )
102 msg_Dbg( p_this
, "Opening Lua Extension module" );
104 extensions_manager_t
*p_mgr
= ( extensions_manager_t
* ) p_this
;
106 p_mgr
->pf_control
= Control
;
109 vlc_mutex_init( &p_mgr
->lock
);
111 /* Scan available Lua Extensions */
112 if( ScanExtensions( p_mgr
) != VLC_SUCCESS
)
114 msg_Err( p_mgr
, "Can't load extensions modules" );
118 // Create the dialog-event variable
119 var_Create( p_this
, "dialog-event", VLC_VAR_ADDRESS
);
120 var_AddCallback( p_this
, "dialog-event",
121 vlclua_extension_dialog_callback
, NULL
);
127 * Module unload function
129 void Close_Extension( vlc_object_t
*p_this
)
131 extensions_manager_t
*p_mgr
= ( extensions_manager_t
* ) p_this
;
133 var_DelCallback( p_this
, "dialog-event",
134 vlclua_extension_dialog_callback
, NULL
);
135 var_Destroy( p_mgr
, "dialog-event" );
137 extension_t
*p_ext
= NULL
;
139 /* Free extensions' memory */
140 ARRAY_FOREACH( p_ext
, p_mgr
->extensions
)
145 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
146 if( p_ext
->p_sys
->b_activated
== true && p_ext
->p_sys
->p_progress_id
== NULL
)
148 p_ext
->p_sys
->b_exiting
= true;
149 // QueueDeactivateCommand will signal the wait condition.
150 QueueDeactivateCommand( p_ext
);
154 if ( p_ext
->p_sys
->L
!= NULL
)
155 vlclua_fd_interrupt( &p_ext
->p_sys
->dtable
);
156 // however here we need to manually signal the wait cond, since no command is queued.
157 p_ext
->p_sys
->b_exiting
= true;
158 vlc_cond_signal( &p_ext
->p_sys
->wait
);
160 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
162 if( p_ext
->p_sys
->b_thread_running
== true )
163 vlc_join( p_ext
->p_sys
->thread
, NULL
);
165 /* Clear Lua State */
166 if( p_ext
->p_sys
->L
)
168 lua_close( p_ext
->p_sys
->L
);
169 vlclua_fd_cleanup( &p_ext
->p_sys
->dtable
);
172 free( p_ext
->psz_name
);
173 free( p_ext
->psz_title
);
174 free( p_ext
->psz_author
);
175 free( p_ext
->psz_description
);
176 free( p_ext
->psz_shortdescription
);
177 free( p_ext
->psz_url
);
178 free( p_ext
->psz_version
);
179 free( p_ext
->p_icondata
);
181 vlc_mutex_destroy( &p_ext
->p_sys
->running_lock
);
182 vlc_mutex_destroy( &p_ext
->p_sys
->command_lock
);
183 vlc_cond_destroy( &p_ext
->p_sys
->wait
);
184 vlc_timer_destroy( p_ext
->p_sys
->timer
);
186 free( p_ext
->p_sys
);
190 vlc_mutex_destroy( &p_mgr
->lock
);
192 ARRAY_RESET( p_mgr
->extensions
);
196 * Batch scan all Lua files in folder "extensions"
197 * @param p_mgr This extensions_manager_t object
199 static int ScanExtensions( extensions_manager_t
*p_mgr
)
202 vlclua_scripts_batch_execute( VLC_OBJECT( p_mgr
),
214 * Dummy Lua function: does nothing
215 * @note This function can be used to replace "require" while scanning for
217 * Even the built-in libraries are not loaded when calling descriptor()
219 static int vlclua_dummy_require( lua_State
*L
)
226 * Replacement for "require", adding support for packaged extensions
227 * @note Loads modules in the modules/ folder of a package
228 * @note Try first with .luac and then with .lua
230 static int vlclua_extension_require( lua_State
*L
)
232 const char *psz_module
= luaL_checkstring( L
, 1 );
233 vlc_object_t
*p_this
= vlclua_get_this( L
);
234 extension_t
*p_ext
= vlclua_extension_get( L
);
235 msg_Dbg( p_this
, "loading module '%s' from extension package",
237 char *psz_fullpath
, *psz_package
, *sep
;
238 psz_package
= strdup( p_ext
->psz_name
);
239 sep
= strrchr( psz_package
, '/' );
243 return luaL_error( L
, "could not find package name" );
246 if( -1 == asprintf( &psz_fullpath
,
247 "%s/modules/%s.luac", psz_package
, psz_module
) )
252 int i_ret
= vlclua_dofile( p_this
, L
, psz_fullpath
);
255 // Remove trailing 'c' --> try with .lua script
256 psz_fullpath
[ strlen( psz_fullpath
) - 1 ] = '\0';
257 i_ret
= vlclua_dofile( p_this
, L
, psz_fullpath
);
259 free( psz_fullpath
);
263 return luaL_error( L
, "unable to load module '%s' from package",
270 * Batch scan all Lua files in folder "extensions": callback
271 * @param p_this This extensions_manager_t object
272 * @param psz_filename Name of the script to run
273 * @param L Lua State, common to all scripts here
274 * @param dummy: unused
276 int ScanLuaCallback( vlc_object_t
*p_this
, const char *psz_filename
,
277 const struct luabatch_context_t
*dummy
)
280 extensions_manager_t
*p_mgr
= ( extensions_manager_t
* ) p_this
;
283 msg_Dbg( p_mgr
, "Scanning Lua script %s", psz_filename
);
285 /* Experimental: read .vle packages (Zip archives) */
286 char *psz_script
= NULL
;
287 int i_flen
= strlen( psz_filename
);
288 if( !strncasecmp( psz_filename
+ i_flen
- 4, ".vle", 4 ) )
290 msg_Dbg( p_this
, "reading Lua script in a zip archive" );
291 psz_script
= calloc( 1, i_flen
+ 6 + 12 + 1 );
294 strcpy( psz_script
, "zip://" );
295 strncat( psz_script
, psz_filename
, i_flen
+ 19 );
296 strncat( psz_script
, "!/script.lua", i_flen
+ 19 );
300 psz_script
= strdup( psz_filename
);
305 /* Create new script descriptor */
306 extension_t
*p_ext
= ( extension_t
* ) calloc( 1, sizeof( extension_t
) );
313 p_ext
->psz_name
= psz_script
;
314 p_ext
->p_sys
= (extension_sys_t
*) calloc( 1, sizeof( extension_sys_t
) );
315 if( !p_ext
->p_sys
|| !p_ext
->psz_name
)
317 free( p_ext
->psz_name
);
318 free( p_ext
->p_sys
);
322 p_ext
->p_sys
->p_mgr
= p_mgr
;
325 if( vlc_timer_create( &p_ext
->p_sys
->timer
, WatchTimerCallback
, p_ext
) )
327 free( p_ext
->psz_name
);
328 free( p_ext
->p_sys
);
333 /* Mutexes and conditions */
334 vlc_mutex_init( &p_ext
->p_sys
->command_lock
);
335 vlc_mutex_init( &p_ext
->p_sys
->running_lock
);
336 vlc_cond_init( &p_ext
->p_sys
->wait
);
338 /* Prepare Lua state */
339 lua_State
*L
= luaL_newstate();
340 lua_register( L
, "require", &vlclua_dummy_require
);
343 if( vlclua_dofile( p_this
, L
, psz_script
) ) // luaL_dofile
345 msg_Warn( p_mgr
, "Error loading script %s: %s", psz_script
,
346 lua_tostring( L
, lua_gettop( L
) ) );
351 /* Scan script for capabilities */
352 lua_getglobal( L
, "descriptor" );
354 if( !lua_isfunction( L
, -1 ) )
356 msg_Warn( p_mgr
, "Error while running script %s, "
357 "function descriptor() not found", psz_script
);
361 if( lua_pcall( L
, 0, 1, 0 ) )
363 msg_Warn( p_mgr
, "Error while running script %s, "
364 "function descriptor(): %s", psz_script
,
365 lua_tostring( L
, lua_gettop( L
) ) );
369 if( lua_gettop( L
) )
371 if( lua_istable( L
, -1 ) )
374 lua_getfield( L
, -1, "capabilities" );
375 if( lua_istable( L
, -1 ) )
378 while( lua_next( L
, -2 ) != 0 )
380 /* Key is at index -2 and value at index -1. Discard key */
381 const char *psz_cap
= luaL_checkstring( L
, -1 );
383 /* Find this capability's flag */
384 for( size_t i
= 0; i
< sizeof(caps
)/sizeof(caps
[0]); i
++ )
386 if( !strcmp( caps
[i
], psz_cap
) )
389 p_ext
->p_sys
->i_capabilities
|= 1 << i
;
396 msg_Warn( p_mgr
, "Extension capability '%s' unknown in"
397 " script %s", psz_cap
, psz_script
);
399 /* Removes 'value'; keeps 'key' for next iteration */
405 msg_Warn( p_mgr
, "In script %s, function descriptor() "
406 "did not return a table of capabilities.",
412 lua_getfield( L
, -1, "title" );
413 if( lua_isstring( L
, -1 ) )
415 p_ext
->psz_title
= strdup( luaL_checkstring( L
, -1 ) );
419 msg_Dbg( p_mgr
, "In script %s, function descriptor() "
420 "did not return a string as title.",
422 p_ext
->psz_title
= strdup( psz_script
);
427 lua_getfield( L
, -1, "author" );
428 p_ext
->psz_author
= luaL_strdupornull( L
, -1 );
431 /* Get description */
432 lua_getfield( L
, -1, "description" );
433 p_ext
->psz_description
= luaL_strdupornull( L
, -1 );
436 /* Get short description */
437 lua_getfield( L
, -1, "shortdesc" );
438 p_ext
->psz_shortdescription
= luaL_strdupornull( L
, -1 );
442 lua_getfield( L
, -1, "url" );
443 p_ext
->psz_url
= luaL_strdupornull( L
, -1 );
447 lua_getfield( L
, -1, "version" );
448 p_ext
->psz_version
= luaL_strdupornull( L
, -1 );
452 lua_getfield( L
, -1, "icon" );
453 if( !lua_isnil( L
, -1 ) && lua_isstring( L
, -1 ) )
455 int len
= lua_strlen( L
, -1 );
456 p_ext
->p_icondata
= malloc( len
);
457 if( p_ext
->p_icondata
)
459 p_ext
->i_icondata_size
= len
;
460 memcpy( p_ext
->p_icondata
, lua_tostring( L
, -1 ), len
);
467 msg_Warn( p_mgr
, "In script %s, function descriptor() "
468 "did not return a table!", psz_script
);
474 msg_Err( p_mgr
, "Script %s went completely foobar", psz_script
);
478 msg_Dbg( p_mgr
, "Script %s has the following capability flags: 0x%x",
479 psz_script
, p_ext
->p_sys
->i_capabilities
);
486 free( p_ext
->psz_name
);
487 free( p_ext
->psz_title
);
488 free( p_ext
->psz_url
);
489 free( p_ext
->psz_author
);
490 free( p_ext
->psz_description
);
491 free( p_ext
->psz_shortdescription
);
492 free( p_ext
->psz_version
);
493 vlc_mutex_destroy( &p_ext
->p_sys
->command_lock
);
494 vlc_mutex_destroy( &p_ext
->p_sys
->running_lock
);
495 vlc_cond_destroy( &p_ext
->p_sys
->wait
);
496 free( p_ext
->p_sys
);
501 /* Add the extension to the list of known extensions */
502 ARRAY_APPEND( p_mgr
->extensions
, p_ext
);
505 /* Continue batch execution */
509 static int Control( extensions_manager_t
*p_mgr
, int i_control
, va_list args
)
511 extension_t
*p_ext
= NULL
;
513 uint16_t **ppus
= NULL
;
514 char ***pppsz
= NULL
;
519 case EXTENSION_ACTIVATE
:
520 p_ext
= va_arg( args
, extension_t
* );
521 return Activate( p_mgr
, p_ext
);
523 case EXTENSION_DEACTIVATE
:
524 p_ext
= va_arg( args
, extension_t
* );
525 return Deactivate( p_mgr
, p_ext
);
527 case EXTENSION_IS_ACTIVATED
:
528 p_ext
= va_arg( args
, extension_t
* );
529 pb
= va_arg( args
, bool* );
530 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
531 *pb
= p_ext
->p_sys
->b_activated
;
532 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
535 case EXTENSION_HAS_MENU
:
536 p_ext
= va_arg( args
, extension_t
* );
537 pb
= va_arg( args
, bool* );
538 *pb
= ( p_ext
->p_sys
->i_capabilities
& EXT_HAS_MENU
) ? 1 : 0;
541 case EXTENSION_GET_MENU
:
542 p_ext
= va_arg( args
, extension_t
* );
543 pppsz
= va_arg( args
, char*** );
544 ppus
= va_arg( args
, uint16_t** );
547 return GetMenuEntries( p_mgr
, p_ext
, pppsz
, ppus
);
549 case EXTENSION_TRIGGER_ONLY
:
550 p_ext
= va_arg( args
, extension_t
* );
551 pb
= va_arg( args
, bool* );
552 *pb
= ( p_ext
->p_sys
->i_capabilities
& EXT_TRIGGER_ONLY
) ? 1 : 0;
555 case EXTENSION_TRIGGER
:
556 p_ext
= va_arg( args
, extension_t
* );
557 return TriggerExtension( p_mgr
, p_ext
);
559 case EXTENSION_TRIGGER_MENU
:
560 p_ext
= va_arg( args
, extension_t
* );
561 i
= va_arg( args
, int );
562 return TriggerMenu( p_ext
, i
);
564 case EXTENSION_SET_INPUT
:
566 p_ext
= va_arg( args
, extension_t
* );
567 input_thread_t
*p_input
= va_arg( args
, struct input_thread_t
* );
571 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
572 if ( p_ext
->p_sys
->b_exiting
== true )
574 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
577 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
579 vlc_mutex_lock( &p_ext
->p_sys
->running_lock
);
582 input_thread_t
*old
= p_ext
->p_sys
->p_input
;
583 input_item_t
*p_item
;
586 // Untrack meta fetched events
587 if( p_ext
->p_sys
->i_capabilities
& EXT_META_LISTENER
)
589 p_item
= input_GetItem( old
);
590 vlc_event_detach( &p_item
->event_manager
,
591 vlc_InputItemMetaChanged
,
592 inputItemMetaChanged
,
594 input_item_Release( p_item
);
596 vlc_object_release( old
);
599 p_ext
->p_sys
->p_input
= p_input
? vlc_object_hold( p_input
)
602 // Tell the script the input changed
603 if( p_ext
->p_sys
->i_capabilities
& EXT_INPUT_LISTENER
)
605 PushCommandUnique( p_ext
, CMD_SET_INPUT
);
608 // Track meta fetched events
609 if( p_ext
->p_sys
->p_input
&&
610 p_ext
->p_sys
->i_capabilities
& EXT_META_LISTENER
)
612 p_item
= input_GetItem( p_ext
->p_sys
->p_input
);
613 input_item_Hold( p_item
);
614 vlc_event_attach( &p_item
->event_manager
,
615 vlc_InputItemMetaChanged
,
616 inputItemMetaChanged
,
620 vlc_mutex_unlock( &p_ext
->p_sys
->running_lock
);
623 case EXTENSION_PLAYING_CHANGED
:
625 p_ext
= va_arg( args
, extension_t
* );
626 assert( p_ext
->psz_name
!= NULL
);
627 i
= va_arg( args
, int );
628 if( p_ext
->p_sys
->i_capabilities
& EXT_PLAYING_LISTENER
)
630 PushCommand( p_ext
, CMD_PLAYING_CHANGED
, i
);
634 case EXTENSION_META_CHANGED
:
636 p_ext
= va_arg( args
, extension_t
* );
637 PushCommand( p_ext
, CMD_UPDATE_META
);
641 msg_Warn( p_mgr
, "Control '%d' not yet implemented in Extension",
649 int lua_ExtensionActivate( extensions_manager_t
*p_mgr
, extension_t
*p_ext
)
651 assert( p_mgr
!= NULL
&& p_ext
!= NULL
);
652 return lua_ExecuteFunction( p_mgr
, p_ext
, "activate", LUA_END
);
655 int lua_ExtensionDeactivate( extensions_manager_t
*p_mgr
, extension_t
*p_ext
)
657 assert( p_mgr
!= NULL
&& p_ext
!= NULL
);
659 if( p_ext
->p_sys
->b_activated
== false )
662 vlclua_fd_interrupt( &p_ext
->p_sys
->dtable
);
664 // Unset and release input objects
665 if( p_ext
->p_sys
->p_input
)
667 if( p_ext
->p_sys
->i_capabilities
& EXT_META_LISTENER
)
670 input_item_t
*p_item
= input_GetItem( p_ext
->p_sys
->p_input
);
671 input_item_Release( p_item
);
673 vlc_object_release( p_ext
->p_sys
->p_input
);
674 p_ext
->p_sys
->p_input
= NULL
;
677 int i_ret
= lua_ExecuteFunction( p_mgr
, p_ext
, "deactivate", LUA_END
);
679 if ( p_ext
->p_sys
->L
== NULL
)
681 lua_close( p_ext
->p_sys
->L
);
682 p_ext
->p_sys
->L
= NULL
;
687 int lua_ExtensionWidgetClick( extensions_manager_t
*p_mgr
,
689 extension_widget_t
*p_widget
)
691 if( !p_ext
->p_sys
->L
)
694 lua_State
*L
= GetLuaState( p_mgr
, p_ext
);
695 lua_pushlightuserdata( L
, p_widget
);
696 lua_gettable( L
, LUA_REGISTRYINDEX
);
697 return lua_ExecuteFunction( p_mgr
, p_ext
, NULL
, LUA_END
);
702 * Get the list of menu entries from an extension script
705 * @param pppsz_titles Pointer to NULL. All strings must be freed by the caller
706 * @param ppi_ids Pointer to NULL. Must be freed by the caller.
707 * @note This function is allowed to run in the UI thread. This means
708 * that it MUST respond very fast.
709 * @todo Remove the menu() hook and provide a new function vlc.set_menu()
711 static int GetMenuEntries( extensions_manager_t
*p_mgr
, extension_t
*p_ext
,
712 char ***pppsz_titles
, uint16_t **ppi_ids
)
714 assert( *pppsz_titles
== NULL
);
715 assert( *ppi_ids
== NULL
);
717 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
718 if( p_ext
->p_sys
->b_activated
== false || p_ext
->p_sys
->b_exiting
== true )
720 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
721 msg_Dbg( p_mgr
, "Can't get menu of an unactivated/dying extension!" );
724 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
726 vlc_mutex_lock( &p_ext
->p_sys
->running_lock
);
728 int i_ret
= VLC_EGENERIC
;
729 lua_State
*L
= GetLuaState( p_mgr
, p_ext
);
731 if( ( p_ext
->p_sys
->i_capabilities
& EXT_HAS_MENU
) == 0 )
733 msg_Dbg( p_mgr
, "can't get a menu from an extension without menu!" );
737 lua_getglobal( L
, "menu" );
739 if( !lua_isfunction( L
, -1 ) )
741 msg_Warn( p_mgr
, "Error while running script %s, "
742 "function menu() not found", p_ext
->psz_name
);
746 if( lua_pcall( L
, 0, 1, 0 ) )
748 msg_Warn( p_mgr
, "Error while running script %s, "
749 "function menu(): %s", p_ext
->psz_name
,
750 lua_tostring( L
, lua_gettop( L
) ) );
754 if( lua_gettop( L
) )
756 if( lua_istable( L
, -1 ) )
759 size_t i_size
= lua_objlen( L
, -1 );
760 *pppsz_titles
= ( char** ) calloc( i_size
+1, sizeof( char* ) );
761 *ppi_ids
= ( uint16_t* ) calloc( i_size
+1, sizeof( uint16_t ) );
766 while( lua_next( L
, -2 ) != 0 )
768 assert( i_idx
< i_size
);
769 if( (!lua_isstring( L
, -1 )) || (!lua_isnumber( L
, -2 )) )
771 msg_Warn( p_mgr
, "In script %s, an entry in "
772 "the menu table is invalid!", p_ext
->psz_name
);
775 (*pppsz_titles
)[ i_idx
] = strdup( luaL_checkstring( L
, -1 ) );
776 (*ppi_ids
)[ i_idx
] = luaL_checkinteger( L
, -2 ) & 0xFFFF;
783 msg_Warn( p_mgr
, "Function menu() in script %s "
784 "did not return a table", p_ext
->psz_name
);
790 msg_Warn( p_mgr
, "Script %s went completely foobar", p_ext
->psz_name
);
797 vlc_mutex_unlock( &p_ext
->p_sys
->running_lock
);
798 if( i_ret
!= VLC_SUCCESS
)
800 msg_Dbg( p_mgr
, "Something went wrong in %s (%s:%d)",
801 __func__
, __FILE__
, __LINE__
);
806 /* Must be entered with the Lock on Extension */
807 static lua_State
* GetLuaState( extensions_manager_t
*p_mgr
,
810 assert( p_ext
!= NULL
);
811 lua_State
*L
= p_ext
->p_sys
->L
;
818 msg_Err( p_mgr
, "Could not create new Lua State" );
821 vlclua_set_this( L
, p_mgr
);
822 vlclua_set_playlist_internal( L
,
823 pl_Get((intf_thread_t
*)(p_mgr
->obj
.parent
)) );
824 vlclua_extension_set( L
, p_ext
);
827 luaL_register_namespace( L
, "vlc", p_reg
);
830 /* Load more libraries */
832 luaopen_dialog( L
, p_ext
);
835 if( vlclua_fd_init( L
, &p_ext
->p_sys
->dtable
) )
842 luaopen_playlist( L
);
843 luaopen_sd_intf( L
);
845 luaopen_strings( L
);
846 luaopen_variables( L
);
854 #if defined(_WIN32) && !VLC_WINSTORE_APP
858 /* Register extension specific functions */
859 lua_getglobal( L
, "vlc" );
860 lua_pushcfunction( L
, vlclua_extension_deactivate
);
861 lua_setfield( L
, -2, "deactivate" );
862 lua_pushcfunction( L
, vlclua_extension_keep_alive
);
863 lua_setfield( L
, -2, "keep_alive" );
865 /* Setup the module search path */
866 if( !strncmp( p_ext
->psz_name
, "zip://", 6 ) )
868 /* Load all required modules manually */
869 lua_register( L
, "require", &vlclua_extension_require
);
873 if( vlclua_add_modules_path( L
, p_ext
->psz_name
) )
875 msg_Warn( p_mgr
, "Error while setting the module "
876 "search path for %s", p_ext
->psz_name
);
877 vlclua_fd_cleanup( &p_ext
->p_sys
->dtable
);
882 /* Load and run the script(s) */
883 if( vlclua_dofile( VLC_OBJECT( p_mgr
), L
, p_ext
->psz_name
) )
885 msg_Warn( p_mgr
, "Error loading script %s: %s", p_ext
->psz_name
,
886 lua_tostring( L
, lua_gettop( L
) ) );
887 vlclua_fd_cleanup( &p_ext
->p_sys
->dtable
);
898 int lua_ExecuteFunction( extensions_manager_t
*p_mgr
, extension_t
*p_ext
,
899 const char *psz_function
, ... )
902 va_start( args
, psz_function
);
903 int i_ret
= lua_ExecuteFunctionVa( p_mgr
, p_ext
, psz_function
, args
);
909 * Execute a function in a Lua script
910 * @param psz_function Name of global function to execute. If NULL, assume
911 * that the function object is already on top of the
913 * @return < 0 in case of failure, >= 0 in case of success
914 * @note It's better to call this function from a dedicated thread
915 * (see extension_thread.c)
917 int lua_ExecuteFunctionVa( extensions_manager_t
*p_mgr
, extension_t
*p_ext
,
918 const char *psz_function
, va_list args
)
920 int i_ret
= VLC_SUCCESS
;
922 assert( p_mgr
!= NULL
);
923 assert( p_ext
!= NULL
);
925 lua_State
*L
= GetLuaState( p_mgr
, p_ext
);
930 lua_getglobal( L
, psz_function
);
932 if( !lua_isfunction( L
, -1 ) )
934 msg_Warn( p_mgr
, "Error while running script %s, "
935 "function %s() not found", p_ext
->psz_name
, psz_function
);
940 lua_datatype_e type
= LUA_END
;
941 while( ( type
= va_arg( args
, int ) ) != LUA_END
)
943 if( type
== LUA_NUM
)
945 lua_pushnumber( L
, va_arg( args
, int ) );
947 else if( type
== LUA_TEXT
)
949 lua_pushstring( L
, va_arg( args
, char* ) );
953 msg_Warn( p_mgr
, "Undefined argument type %d to lua function %s"
954 "from script %s", type
, psz_function
, p_ext
->psz_name
);
956 lua_pop( L
, i_args
);
962 // Start actual call to Lua
963 if( lua_pcall( L
, i_args
, 1, 0 ) )
965 msg_Warn( p_mgr
, "Error while running script %s, "
966 "function %s(): %s", p_ext
->psz_name
, psz_function
,
967 lua_tostring( L
, lua_gettop( L
) ) );
968 i_ret
= VLC_EGENERIC
;
971 i_ret
|= lua_DialogFlush( L
);
978 static inline int TriggerMenu( extension_t
*p_ext
, int i_id
)
980 return PushCommand( p_ext
, CMD_TRIGGERMENU
, i_id
);
983 int lua_ExtensionTriggerMenu( extensions_manager_t
*p_mgr
,
984 extension_t
*p_ext
, int id
)
986 int i_ret
= VLC_SUCCESS
;
987 lua_State
*L
= GetLuaState( p_mgr
, p_ext
);
992 luaopen_dialog( L
, p_ext
);
994 lua_getglobal( L
, "trigger_menu" );
995 if( !lua_isfunction( L
, -1 ) )
997 msg_Warn( p_mgr
, "Error while running script %s, "
998 "function trigger_menu() not found", p_ext
->psz_name
);
1002 /* Pass id as unique argument to the function */
1003 lua_pushinteger( L
, id
);
1005 if( lua_pcall( L
, 1, 1, 0 ) != 0 )
1007 msg_Warn( p_mgr
, "Error while running script %s, "
1008 "function trigger_menu(): %s", p_ext
->psz_name
,
1009 lua_tostring( L
, lua_gettop( L
) ) );
1010 i_ret
= VLC_EGENERIC
;
1013 i_ret
|= lua_DialogFlush( L
);
1014 if( i_ret
< VLC_SUCCESS
)
1016 msg_Dbg( p_mgr
, "Something went wrong in %s (%s:%d)",
1017 __func__
, __FILE__
, __LINE__
);
1023 /** Directly trigger an extension, without activating it
1024 * This is NOT multithreaded, and this code runs in the UI thread
1026 * @param p_ext Extension to trigger
1027 * @return Value returned by the lua function "trigger"
1029 static int TriggerExtension( extensions_manager_t
*p_mgr
,
1030 extension_t
*p_ext
)
1032 int i_ret
= lua_ExecuteFunction( p_mgr
, p_ext
, "trigger", LUA_END
);
1034 /* Close lua state for trigger-only extensions */
1035 if( p_ext
->p_sys
->L
)
1037 vlclua_fd_cleanup( &p_ext
->p_sys
->dtable
);
1038 lua_close( p_ext
->p_sys
->L
);
1040 p_ext
->p_sys
->L
= NULL
;
1045 /** Set extension associated to the current script
1046 * @param L current lua_State
1047 * @param p_ext the extension
1049 void vlclua_extension_set( lua_State
*L
, extension_t
*p_ext
)
1051 lua_pushlightuserdata( L
, vlclua_extension_set
);
1052 lua_pushlightuserdata( L
, p_ext
);
1053 lua_rawset( L
, LUA_REGISTRYINDEX
);
1056 /** Retrieve extension associated to the current script
1057 * @param L current lua_State
1058 * @return Extension pointer
1060 extension_t
*vlclua_extension_get( lua_State
*L
)
1062 lua_pushlightuserdata( L
, vlclua_extension_set
);
1063 lua_rawget( L
, LUA_REGISTRYINDEX
);
1064 extension_t
*p_ext
= (extension_t
*) lua_topointer( L
, -1 );
1069 /** Deactivate an extension by order from the extension itself
1070 * @param L lua_State
1071 * @note This is an asynchronous call. A script calling vlc.deactivate() will
1072 * be executed to the end before the last call to deactivate() is done.
1074 int vlclua_extension_deactivate( lua_State
*L
)
1076 extension_t
*p_ext
= vlclua_extension_get( L
);
1077 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
1078 bool b_ret
= QueueDeactivateCommand( p_ext
);
1079 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
1080 return ( b_ret
== true ) ? 1 : 0;
1083 /** Keep an extension alive. This resets the watch timer to 0
1084 * @param L lua_State
1085 * @note This is the "vlc.keep_alive()" function
1087 int vlclua_extension_keep_alive( lua_State
*L
)
1089 extension_t
*p_ext
= vlclua_extension_get( L
);
1091 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
1092 if( p_ext
->p_sys
->p_progress_id
!= NULL
)
1094 vlc_dialog_release( p_ext
->p_sys
->p_mgr
, p_ext
->p_sys
->p_progress_id
);
1095 p_ext
->p_sys
->p_progress_id
= NULL
;
1097 vlc_timer_schedule( p_ext
->p_sys
->timer
, false, WATCH_TIMER_PERIOD
,
1098 VLC_TIMER_FIRE_ONCE
);
1099 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
1104 /** Callback for the variable "dialog-event"
1105 * @param p_this Current object owner of the extension and the dialog
1106 * @param psz_var "dialog-event"
1107 * @param oldval Unused
1108 * @param newval Address of the dialog
1109 * @param p_data Unused
1111 static int vlclua_extension_dialog_callback( vlc_object_t
*p_this
,
1112 char const *psz_var
,
1117 /* psz_var == "dialog-event" */
1122 extension_dialog_command_t
*command
= newval
.p_address
;
1123 assert( command
!= NULL
);
1124 assert( command
->p_dlg
!= NULL
);
1126 extension_t
*p_ext
= command
->p_dlg
->p_sys
;
1127 assert( p_ext
!= NULL
);
1129 extension_widget_t
*p_widget
= command
->p_data
;
1131 switch( command
->event
)
1133 case EXTENSION_EVENT_CLICK
:
1134 assert( p_widget
!= NULL
);
1135 PushCommandUnique( p_ext
, CMD_CLICK
, p_widget
);
1137 case EXTENSION_EVENT_CLOSE
:
1138 PushCommandUnique( p_ext
, CMD_CLOSE
);
1141 msg_Dbg( p_this
, "Received unknown UI event %d, discarded",
1149 /** Callback on vlc_InputItemMetaChanged event
1151 static void inputItemMetaChanged( const vlc_event_t
*p_event
,
1154 assert( p_event
&& p_event
->type
== vlc_InputItemMetaChanged
);
1156 extension_t
*p_ext
= ( extension_t
* ) data
;
1157 assert( p_ext
!= NULL
);
1159 PushCommandUnique( p_ext
, CMD_UPDATE_META
);
1162 /** Watch timer callback
1163 * The timer expired, Lua may be stuck, ask the user what to do now
1165 static void WatchTimerCallback( void *data
)
1167 extension_t
*p_ext
= data
;
1168 extensions_manager_t
*p_mgr
= p_ext
->p_sys
->p_mgr
;
1170 vlc_mutex_lock( &p_ext
->p_sys
->command_lock
);
1172 for( struct command_t
*cmd
= p_ext
->p_sys
->command
;
1175 if( cmd
->i_command
== CMD_DEACTIVATE
)
1176 { /* We have a pending Deactivate command... */
1177 if( p_ext
->p_sys
->p_progress_id
!= NULL
)
1179 vlc_dialog_release( p_mgr
, p_ext
->p_sys
->p_progress_id
);
1180 p_ext
->p_sys
->p_progress_id
= NULL
;
1182 KillExtension( p_mgr
, p_ext
);
1183 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
1187 if( p_ext
->p_sys
->p_progress_id
== NULL
)
1189 p_ext
->p_sys
->p_progress_id
=
1190 vlc_dialog_display_progress( p_mgr
, true, 0.0,
1192 _( "Extension not responding!" ),
1193 _( "Extension '%s' does not respond.\n"
1194 "Do you want to kill it now? " ),
1196 if( p_ext
->p_sys
->p_progress_id
== NULL
)
1198 KillExtension( p_mgr
, p_ext
);
1199 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
1202 vlc_timer_schedule( p_ext
->p_sys
->timer
, false, VLC_TICK_FROM_MS(100),
1203 VLC_TIMER_FIRE_ONCE
);
1207 if( vlc_dialog_is_cancelled( p_mgr
, p_ext
->p_sys
->p_progress_id
) )
1209 vlc_dialog_release( p_mgr
, p_ext
->p_sys
->p_progress_id
);
1210 p_ext
->p_sys
->p_progress_id
= NULL
;
1211 KillExtension( p_mgr
, p_ext
);
1212 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);
1215 vlc_timer_schedule( p_ext
->p_sys
->timer
, false, VLC_TICK_FROM_MS(100),
1216 VLC_TIMER_FIRE_ONCE
);
1218 vlc_mutex_unlock( &p_ext
->p_sys
->command_lock
);