Commit ff8e2f89 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Libvlc Event: Add support for input event.

parent 178365ae
...@@ -102,13 +102,15 @@ libvlc_instance_t * libvlc_new( int argc, char **argv, ...@@ -102,13 +102,15 @@ libvlc_instance_t * libvlc_new( int argc, char **argv,
p_new->p_callback_list = NULL; p_new->p_callback_list = NULL;
vlc_mutex_init(p_libvlc_int, &p_new->instance_lock); vlc_mutex_init(p_libvlc_int, &p_new->instance_lock);
vlc_mutex_init(p_libvlc_int, &p_new->event_callback_lock); vlc_mutex_init(p_libvlc_int, &p_new->event_callback_lock);
libvlc_event_init(p_new, p_e);
return p_new; return p_new;
} }
void libvlc_destroy( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) void libvlc_destroy( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
{ {
libvlc_event_remove_all_callbacks( p_instance, p_e /* current implementation never triggers it */); libvlc_event_fini( p_instance, p_e );
vlc_mutex_destroy( &p_instance->instance_lock ); vlc_mutex_destroy( &p_instance->instance_lock );
vlc_mutex_destroy( &p_instance->event_callback_lock); vlc_mutex_destroy( &p_instance->event_callback_lock);
libvlc_InternalCleanup( p_instance->p_libvlc_int ); libvlc_InternalCleanup( p_instance->p_libvlc_int );
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* $Id $ * $Id $
* *
* Authors: Filippo Carone <filippo@carone.org> * Authors: Filippo Carone <filippo@carone.org>
* Pierre d'Herbemont <pdherbemont # videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -23,6 +24,7 @@ ...@@ -23,6 +24,7 @@
#include "libvlc_internal.h" #include "libvlc_internal.h"
#include <vlc/libvlc.h> #include <vlc/libvlc.h>
#include <vlc_playlist.h>
/* /*
...@@ -57,6 +59,50 @@ static int handle_event( vlc_object_t *p_this, char const *psz_cmd, ...@@ -57,6 +59,50 @@ static int handle_event( vlc_object_t *p_this, char const *psz_cmd,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/* Utility function: Object should be released by vlc_object_release afterwards */
static input_thread_t * get_input(libvlc_instance_t * p_instance)
{
libvlc_exception_t p_e_unused; /* FIXME: error checking here */
libvlc_input_t * p_libvlc_input = libvlc_playlist_get_input( p_instance, &p_e_unused );
input_thread_t * p_input;
if( !p_libvlc_input )
return NULL;
p_input = libvlc_get_input_thread( p_libvlc_input, &p_e_unused );
libvlc_input_free(p_libvlc_input);
return p_input;
}
static int install_input_event( vlc_object_t *p_this, char const *psz_cmd,
vlc_value_t oldval, vlc_value_t newval,
void *p_data )
{
libvlc_instance_t * p_instance = p_data;
struct libvlc_callback_entry_list_t *p_listitem;
input_thread_t * p_input = get_input( p_instance );
vlc_mutex_lock( &p_instance->instance_lock );
p_listitem = p_instance->p_callback_list;
for( ; p_listitem ; p_listitem = p_listitem->next )
{
if (p_listitem->elmt->i_event_type == INPUT_POSITION_CHANGED)
{
/* FIXME: here we shouldn't listen on intf-change, we have to provide
* in vlc core a more accurate callback */
var_AddCallback( p_input, "intf-change", handle_event, p_listitem->elmt );
}
}
vlc_mutex_unlock( &p_instance->instance_lock );
vlc_object_release( p_input );
return VLC_SUCCESS;
}
static inline void add_callback_to_list( struct libvlc_callback_entry_t *entry, static inline void add_callback_to_list( struct libvlc_callback_entry_t *entry,
struct libvlc_callback_entry_list_t **list ) struct libvlc_callback_entry_list_t **list )
{ {
...@@ -82,25 +128,59 @@ static inline void add_callback_to_list( struct libvlc_callback_entry_t *entry, ...@@ -82,25 +128,59 @@ static inline void add_callback_to_list( struct libvlc_callback_entry_t *entry,
static int remove_variable_callback( libvlc_instance_t *p_instance, static int remove_variable_callback( libvlc_instance_t *p_instance,
struct libvlc_callback_entry_t * p_entry ) struct libvlc_callback_entry_t * p_entry )
{ {
const char * callback_name = NULL; input_thread_t * p_input = get_input( p_instance );
int res = VLC_SUCCESS;
/* Note: Appropriate lock should be held by the caller */ /* Note: Appropriate lock should be held by the caller */
switch ( p_entry->i_event_type ) switch ( p_entry->i_event_type )
{ {
case VOLUME_CHANGED: case VOLUME_CHANGED:
callback_name = "volume-change"; res = var_DelCallback( p_instance->p_libvlc_int, "volume-change",
handle_event, p_entry );
break; break;
case INPUT_POSITION_CHANGED: case INPUT_POSITION_CHANGED:
/* We may not be deleting the right p_input callback, in this case this
* will be a no-op */
var_DelCallback( p_input, "intf-change",
handle_event, p_entry );
break; break;
} }
if (p_input)
vlc_object_release( p_input );
if (!callback_name) return res;
return VLC_EGENERIC; }
return var_DelCallback( p_instance->p_libvlc_int, /*
callback_name, handle_event, * Internal libvlc functions
p_entry ); */
void libvlc_event_init( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
{
playlist_t *p_playlist = p_instance->p_libvlc_int->p_playlist;
if( !p_playlist )
RAISEVOID ("Can't listen to input event");
/* Install a Callback for input changes, so
* so we can track input event */
var_AddCallback( p_playlist, "playlist-current",
install_input_event, p_instance );
}
void libvlc_event_fini( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
{
playlist_t *p_playlist = p_instance->p_libvlc_int->p_playlist;
libvlc_exception_t p_e_unused;
libvlc_event_remove_all_callbacks( p_instance, &p_e_unused );
if( !p_playlist )
RAISEVOID ("Can't unregister input events");
var_DelCallback( p_playlist, "playlist-current",
install_input_event, p_instance );
} }
/* /*
...@@ -114,8 +194,8 @@ void libvlc_event_add_callback( libvlc_instance_t *p_instance, ...@@ -114,8 +194,8 @@ void libvlc_event_add_callback( libvlc_instance_t *p_instance,
libvlc_exception_t *p_e ) libvlc_exception_t *p_e )
{ {
struct libvlc_callback_entry_t *entry; struct libvlc_callback_entry_t *entry;
const char * callback_name = NULL; vlc_value_t unused1, unused2;
int res; int res = VLC_SUCCESS;
if ( !f_callback ) if ( !f_callback )
RAISEVOID (" Callback function is null "); RAISEVOID (" Callback function is null ");
...@@ -135,20 +215,17 @@ void libvlc_event_add_callback( libvlc_instance_t *p_instance, ...@@ -135,20 +215,17 @@ void libvlc_event_add_callback( libvlc_instance_t *p_instance,
switch ( i_event_type ) switch ( i_event_type )
{ {
case VOLUME_CHANGED: case VOLUME_CHANGED:
callback_name = "volume-change"; res = var_AddCallback( p_instance->p_libvlc_int, "volume-change",
handle_event, entry );
break; break;
case INPUT_POSITION_CHANGED: case INPUT_POSITION_CHANGED:
install_input_event( NULL, NULL, unused1, unused2, p_instance);
break; break;
default: default:
free( entry ); free( entry );
RAISEVOID( "Unsupported event." ); RAISEVOID( "Unsupported event." );
} }
res = var_AddCallback( p_instance->p_libvlc_int,
callback_name,
handle_event,
entry );
if (res != VLC_SUCCESS) if (res != VLC_SUCCESS)
{ {
free ( entry ); free ( entry );
......
...@@ -34,9 +34,9 @@ void libvlc_input_free( libvlc_input_t *p_input ) ...@@ -34,9 +34,9 @@ void libvlc_input_free( libvlc_input_t *p_input )
/* /*
* Retrieve the input thread. Be sure to release the object * Retrieve the input thread. Be sure to release the object
* once you are done with it. * once you are done with it. (libvlc Internal)
*/ */
static input_thread_t *libvlc_get_input_thread( libvlc_input_t *p_input, input_thread_t *libvlc_get_input_thread( libvlc_input_t *p_input,
libvlc_exception_t *p_e ) libvlc_exception_t *p_e )
{ {
input_thread_t *p_input_thread; input_thread_t *p_input_thread;
......
...@@ -43,6 +43,9 @@ VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) ); ...@@ -43,6 +43,9 @@ VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) );
VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t, VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t,
vlc_bool_t, int, const char *const * ) ); vlc_bool_t, int, const char *const * ) );
VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) );
VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t *, libvlc_exception_t * ) );
/*************************************************************************** /***************************************************************************
* Opaque structures for libvlc API * Opaque structures for libvlc API
***************************************************************************/ ***************************************************************************/
...@@ -79,6 +82,12 @@ struct libvlc_input_t ...@@ -79,6 +82,12 @@ struct libvlc_input_t
struct libvlc_instance_t *p_instance; ///< Parent instance struct libvlc_instance_t *p_instance; ///< Parent instance
}; };
/***************************************************************************
* Other internal functions
***************************************************************************/
VLC_EXPORT (input_thread_t *, libvlc_get_input_thread,
( struct libvlc_input_t *, libvlc_exception_t * ) );
#define RAISENULL( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \ #define RAISENULL( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
return NULL; } return NULL; }
#define RAISEVOID( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \ #define RAISEVOID( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment