Commit 1d330ec5 authored by Rafaël Carré's avatar Rafaël Carré

Adds real-time device adding (not removal yet)

Don't add data DVDs when possible
Only uses D-Bus code if version >= 0.9.2
(refs #99)
parent f55fe383
...@@ -81,7 +81,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -81,7 +81,7 @@ static int Open( vlc_object_t *p_this )
playlist_t *p_playlist; playlist_t *p_playlist;
#ifdef HAVE_HAL_1 #if defined( HAVE_HAL_1 ) && defined( HAVE_DBUS_2 )
DBusError dbus_error; DBusError dbus_error;
DBusConnection *p_connection; DBusConnection *p_connection;
#endif #endif
...@@ -89,7 +89,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -89,7 +89,7 @@ static int Open( vlc_object_t *p_this )
p_sd->pf_run = Run; p_sd->pf_run = Run;
p_sd->p_sys = p_sys; p_sd->p_sys = p_sys;
#ifdef HAVE_HAL_1 #if defined( HAVE_HAL_1 ) && defined( HAVE_DBUS_2 )
dbus_error_init( &dbus_error ); dbus_error_init( &dbus_error );
p_sys->p_ctx = libhal_ctx_new(); p_sys->p_ctx = libhal_ctx_new();
...@@ -113,7 +113,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -113,7 +113,7 @@ static int Open( vlc_object_t *p_this )
if( !(p_sys->p_ctx = hal_initialize( NULL, FALSE ) ) ) if( !(p_sys->p_ctx = hal_initialize( NULL, FALSE ) ) )
#endif #endif
{ {
#ifdef HAVE_HAL_1 #if defined( HAVE_HAL_1 ) && defined( HAVE_DBUS_2 )
msg_Err( p_sd, "hal not available : %s", dbus_error.message ); msg_Err( p_sd, "hal not available : %s", dbus_error.message );
dbus_error_free( &dbus_error ); dbus_error_free( &dbus_error );
#else #else
...@@ -260,6 +260,12 @@ static void ParseDevice( services_discovery_t *p_sd, char *psz_device ) ...@@ -260,6 +260,12 @@ static void ParseDevice( services_discovery_t *p_sd, char *psz_device )
#endif #endif
if( !strcmp( psz_disc_type, "dvd_rom" ) ) if( !strcmp( psz_disc_type, "dvd_rom" ) )
{ {
#ifdef HAVE_HAL_1
/* hal 0.2.9.7 (HAVE_HAL) has not is_videodvd
* but hal 0.5.0 (HAVE_HAL_1) has */
if (libhal_device_get_property_bool( p_sys->p_ctx, psz_device,
"volume.disc.is_videodvd", NULL ) )
#endif
AddDvd( p_sd, psz_device ); AddDvd( p_sd, psz_device );
} }
else if( !strcmp( psz_disc_type, "cd_rom" ) ) else if( !strcmp( psz_disc_type, "cd_rom" ) )
...@@ -304,4 +310,70 @@ static void Run( services_discovery_t *p_sd ) ...@@ -304,4 +310,70 @@ static void Run( services_discovery_t *p_sd )
ParseDevice( p_sd, devices[ i ] ); ParseDevice( p_sd, devices[ i ] );
} }
} }
#ifdef HAVE_DBUS_2
/* We'll use D-Bus to listen for devices evenements */
/* TODO: Manage hot removal of devices */
DBusMessage* dbus_message;
DBusMessageIter dbus_args;
const char** psz_dbus_value;
char* psz_dbus_device;
DBusError dbus_error;
DBusConnection* p_connection;
dbus_error_init( &dbus_error );
/* connect to the system bus */
p_connection = dbus_bus_get( DBUS_BUS_SYSTEM, &dbus_error );
if ( dbus_error_is_set( &dbus_error ) )
{
msg_Err( p_sd, "D-Bus Connection Error (%s)\n", dbus_error.message);
dbus_error_free( &dbus_error );
return;
}
/* check for hal signals */
dbus_bus_add_match( p_connection,
"type='signal',interface='org.freedesktop.Hal.Manager'", &dbus_error );
dbus_connection_flush( p_connection );
/* an error ? oooh too bad :) */
if ( dbus_error_is_set( &dbus_error ) )
{
msg_Err( p_sd, "D-Bus signal match Error (%s)\n", dbus_error.message);
return;
}
while( !p_sd->b_die )
{
/* read next available message */
dbus_connection_read_write( p_connection, 0 );
dbus_message = dbus_connection_pop_message( p_connection );
if( dbus_message == NULL )
{
/* we've worked really hard, now it's time to sleep */
msleep( 100000 );
continue;
}
/* check if the message is a signal from the correct interface */
if( dbus_message_is_signal( dbus_message, "org.freedesktop.Hal.Manager",
"DeviceAdded" ) )
{
/* read the parameter (it must be an udi string) */
if( dbus_message_iter_init( dbus_message, &dbus_args ) &&
( dbus_message_iter_get_arg_type( &dbus_args ) ==
DBUS_TYPE_STRING )
)
{
dbus_message_iter_get_basic( &dbus_args, &psz_dbus_value );
/* psz_bus_value musn't be freed, but AddCdda will do it
* so we allocate some memory, and copy it into psz_dbus_device
*/
psz_dbus_device = strdup( psz_dbus_value );
ParseDevice( p_sd, psz_dbus_device );
}
}
dbus_message_unref( dbus_message );
}
#endif
} }
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