Commit f1e3dd73 authored by Rafaël Carré's avatar Rafaël Carré

Fix TEST_NEXT macro usage (renamed to TEST_NEXT_ITEM)

Removes not used or deprecated methods
parent e9cc3ff4
...@@ -83,58 +83,6 @@ vlc_module_end(); ...@@ -83,58 +83,6 @@ vlc_module_end();
/***************************************************************************** /*****************************************************************************
* Methods * Methods
*****************************************************************************/ *****************************************************************************/
#if 0
DBUS_METHOD( PlaylistExport_XSPF )
{ /*export playlist to an xspf file */
/* reads the filename to export to */
/* returns the status as int32:
* 0 : success
* 1 : error
* 2 : playlist empty
*/
REPLY_INIT;
OUT_ARGUMENTS;
DBusError error;
dbus_error_init( &error );
char *psz_file;
dbus_int32_t i_ret;
dbus_message_get_args( p_from, &error,
DBUS_TYPE_STRING, &psz_file,
DBUS_TYPE_INVALID );
if( dbus_error_is_set( &error ) )
{
msg_Err( (vlc_object_t*) p_this, "D-Bus message reading : %s\n",
error.message );
dbus_error_free( &error );
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
playlist_t *p_playlist = pl_Yield( (vlc_object_t*) p_this );
if( ( !playlist_IsEmpty( p_playlist ) ) &&
( p_playlist->p_root_category->i_children > 0 ) )
{
if( playlist_Export( p_playlist, psz_file,
p_playlist->p_root_category->pp_children[0],
"export-xspf" ) == VLC_SUCCESS )
i_ret = 0;
else
i_ret = 1;
}
else
i_ret = 2;
pl_Release( ((vlc_object_t*) p_this ) );
ADD_INT32( &i_ret );
REPLY_SEND;
}
#endif
/* Player */ /* Player */
...@@ -317,29 +265,14 @@ DBUS_METHOD( Play ) ...@@ -317,29 +265,14 @@ DBUS_METHOD( Play )
REPLY_SEND; REPLY_SEND;
} }
DBUS_METHOD( Disconnect )
{
REPLY_INIT;
DBusError error;
int i;
dbus_error_init( &error );
i = dbus_bus_release_name( p_conn, VLC_MPRIS_DBUS_SERVICE, &error );
if( ( i == -1 ) && ( dbus_error_is_set( &error ) ) )
{
msg_Err( (vlc_object_t*) p_this, "D-Bus disconnection failed : %s\n",
error.message );
dbus_error_free( &error );
}
REPLY_SEND;
}
DBUS_METHOD( GetCurrentMetadata ) DBUS_METHOD( GetCurrentMetadata )
{ {
REPLY_INIT; REPLY_INIT;
OUT_ARGUMENTS; OUT_ARGUMENTS;
playlist_t* p_playlist = pl_Yield( (vlc_object_t*) p_this ); playlist_t* p_playlist = pl_Yield( (vlc_object_t*) p_this );
GetInputMeta( p_playlist->status.p_item->p_input, &args ); if( p_playlist->status.p_item )
GetInputMeta( p_playlist->status.p_item->p_input, &args );
pl_Release( p_playlist ); pl_Release( p_playlist );
REPLY_SEND; REPLY_SEND;
...@@ -397,17 +330,19 @@ DBUS_METHOD( GetCurrentTrack ) ...@@ -397,17 +330,19 @@ DBUS_METHOD( GetCurrentTrack )
{ {
REPLY_INIT; REPLY_INIT;
OUT_ARGUMENTS; OUT_ARGUMENTS;
/* FIXME 0 indicates the first item,
* what to do if we're stopped, or empty ? */
dbus_int32_t i_position = 0; dbus_int32_t i_position = 0;
playlist_t *p_playlist = pl_Yield( (vlc_object_t*) p_this ); playlist_t *p_playlist = pl_Yield( (vlc_object_t*) p_this );
playlist_item_t* p_tested_item = p_playlist->p_root_onelevel; playlist_item_t* p_tested_item = p_playlist->p_root_onelevel;
while ( p_tested_item->p_input->i_id != while ( p_tested_item && p_tested_item->p_input->i_id !=
p_playlist->status.p_item->p_input->i_id ) p_playlist->status.p_item->p_input->i_id )
{ {
i_position++; i_position++;
TEST_NEXT; TEST_NEXT_ITEM;
} }
/* FIXME if p_tested_item is NULL at that point, what do we do ? */
pl_Release( p_playlist ); pl_Release( p_playlist );
ADD_INT32( &i_position ); ADD_INT32( &i_position );
...@@ -427,8 +362,8 @@ DBUS_METHOD( GetMetadata ) ...@@ -427,8 +362,8 @@ DBUS_METHOD( GetMetadata )
playlist_item_t* p_tested_item = p_playlist->p_root_onelevel; playlist_item_t* p_tested_item = p_playlist->p_root_onelevel;
dbus_message_get_args( p_from, &error, dbus_message_get_args( p_from, &error,
DBUS_TYPE_INT32, &i_position, DBUS_TYPE_INT32, &i_position,
DBUS_TYPE_INVALID ); DBUS_TYPE_INVALID );
if( dbus_error_is_set( &error ) ) if( dbus_error_is_set( &error ) )
{ {
...@@ -438,13 +373,14 @@ DBUS_METHOD( GetMetadata ) ...@@ -438,13 +373,14 @@ DBUS_METHOD( GetMetadata )
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
} }
while ( i_count < i_position ) while ( p_tested_item && ( i_count < i_position ) )
{ {
i_count++; i_count++;
TEST_NEXT; TEST_NEXT_ITEM;
} }
GetInputMeta ( p_tested_item->p_input, &args ); if( p_tested_item )
GetInputMeta ( p_tested_item->p_input, &args );
pl_Release( p_playlist ); pl_Release( p_playlist );
REPLY_SEND; REPLY_SEND;
...@@ -461,10 +397,11 @@ DBUS_METHOD( GetLength ) ...@@ -461,10 +397,11 @@ DBUS_METHOD( GetLength )
playlist_item_t* p_last_item = playlist_GetLastLeaf( p_playlist, playlist_item_t* p_last_item = playlist_GetLastLeaf( p_playlist,
p_playlist->p_root_onelevel ); p_playlist->p_root_onelevel );
while ( p_tested_item->p_input->i_id != p_last_item->p_input->i_id ) while ( p_tested_item &&
( p_tested_item->p_input->i_id != p_last_item->p_input->i_id ) )
{ {
i_elements++; i_elements++;
TEST_NEXT; TEST_NEXT_ITEM;
} }
pl_Release( p_playlist ); pl_Release( p_playlist );
...@@ -496,17 +433,20 @@ DBUS_METHOD( DelTrack ) ...@@ -496,17 +433,20 @@ DBUS_METHOD( DelTrack )
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
} }
while ( i_count < i_position ) while ( p_tested_item && ( i_count < i_position ) )
{ {
i_count++; i_count++;
TEST_NEXT; TEST_NEXT_ITEM;
} }
PL_LOCK; if( p_tested_item )
playlist_DeleteFromInput( p_playlist, {
p_tested_item->p_input->i_id, PL_LOCK;
VLC_TRUE ); playlist_DeleteFromInput( p_playlist,
PL_UNLOCK; p_tested_item->p_input->i_id,
VLC_TRUE );
PL_UNLOCK;
}
pl_Release( p_playlist ); pl_Release( p_playlist );
...@@ -673,7 +613,6 @@ DBUS_METHOD( handle_player ) ...@@ -673,7 +613,6 @@ DBUS_METHOD( handle_player )
METHOD_FUNC( "Play", Play ); METHOD_FUNC( "Play", Play );
METHOD_FUNC( "Pause", Pause ); METHOD_FUNC( "Pause", Pause );
METHOD_FUNC( "Repeat", Repeat ); METHOD_FUNC( "Repeat", Repeat );
METHOD_FUNC( "Disconnect", Disconnect );
METHOD_FUNC( "VolumeSet", VolumeSet ); METHOD_FUNC( "VolumeSet", VolumeSet );
METHOD_FUNC( "VolumeGet", VolumeGet ); METHOD_FUNC( "VolumeGet", VolumeGet );
METHOD_FUNC( "PositionSet", PositionSet ); METHOD_FUNC( "PositionSet", PositionSet );
...@@ -737,8 +676,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -737,8 +676,8 @@ static int Open( vlc_object_t *p_this )
dbus_bus_request_name( p_conn, VLC_MPRIS_DBUS_SERVICE, 0, &error ); dbus_bus_request_name( p_conn, VLC_MPRIS_DBUS_SERVICE, 0, &error );
if( dbus_error_is_set( &error ) ) if( dbus_error_is_set( &error ) )
{ {
msg_Err( p_this, "Error requesting % service: %s\n" msg_Err( p_this, "Error requesting service " VLC_MPRIS_DBUS_SERVICE
VLC_MPRIS_DBUS_SERVICE, error.message ); ": %s", error.message );
dbus_error_free( &error ); dbus_error_free( &error );
free( p_sys ); free( p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
...@@ -909,7 +848,8 @@ static int GetInputMeta( input_item_t* p_input, ...@@ -909,7 +848,8 @@ static int GetInputMeta( input_item_t* p_input,
ADD_VLC_META_STRING( 16, TrackID ); ADD_VLC_META_STRING( 16, TrackID );
vlc_mutex_lock( &p_input->lock ); vlc_mutex_lock( &p_input->lock );
ADD_META( 17, DBUS_TYPE_INT32, p_input->p_meta->i_status ); if( p_input->p_meta )
ADD_META( 17, DBUS_TYPE_INT32, p_input->p_meta->i_status );
vlc_mutex_unlock( &p_input->lock ); vlc_mutex_unlock( &p_input->lock );
ADD_VLC_META_STRING( 18, URI ); ADD_VLC_META_STRING( 18, URI );
......
...@@ -79,7 +79,8 @@ ...@@ -79,7 +79,8 @@
#define ADD_BYTE( b ) DBUS_ADD( DBUS_TYPE_BYTE, b ) #define ADD_BYTE( b ) DBUS_ADD( DBUS_TYPE_BYTE, b )
/* VLC related */ /* VLC related */
#define TEST_NEXT \ /* Don't forget to test p_tested_item for NULL on loops */
#define TEST_NEXT_ITEM \
p_tested_item = playlist_GetNextLeaf( p_playlist, \ p_tested_item = playlist_GetNextLeaf( p_playlist, \
p_playlist->p_root_onelevel, p_tested_item, VLC_FALSE, VLC_FALSE ); p_playlist->p_root_onelevel, p_tested_item, VLC_FALSE, VLC_FALSE );
...@@ -147,8 +148,6 @@ const char* psz_introspection_xml_data_player = ...@@ -147,8 +148,6 @@ const char* psz_introspection_xml_data_player =
" <method name=\"GetMetadata\">\n" " <method name=\"GetMetadata\">\n"
" <arg type=\"a{sv}\" direction=\"out\" />\n" " <arg type=\"a{sv}\" direction=\"out\" />\n"
" </method>\n" " </method>\n"
" <method name=\"Disconnect\">\n"
" </method>\n"
" <signal name=\"TrackChange\">\n" " <signal name=\"TrackChange\">\n"
" <arg type=\"a{sv}\"/>\n" " <arg type=\"a{sv}\"/>\n"
" </signal>\n" " </signal>\n"
......
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