X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fplaylist%2Fsearch.c;h=c7e59b5c6d1dc97586a5022ff6302fc3cb4d53e6;hb=0d0f59ac637b318caf578652ea006ce193f7c581;hp=c709074cbc9c3f7fc3906060187559a2a4b8acb3;hpb=d3fe7f28797d4dba65ffcdd60bf932e758a48a9e;p=vlc diff --git a/src/playlist/search.c b/src/playlist/search.c index c709074cbc..c7e59b5c6d 100644 --- a/src/playlist/search.c +++ b/src/playlist/search.c @@ -20,6 +20,11 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif +#include + #include #include "vlc_playlist.h" #include "playlist_internal.h" @@ -41,7 +46,8 @@ playlist_item_t * playlist_ItemGetById( playlist_t * p_playlist , int i_id, int i; if( !b_locked ) PL_LOCK; ARRAY_BSEARCH( p_playlist->all_items,->i_id, int, i_id, i ); - if( i != -1 ) { + if( i != -1 ) + { if( !b_locked ) PL_UNLOCK; return ARRAY_VAL( p_playlist->all_items, i ); } @@ -81,31 +87,86 @@ playlist_item_t * playlist_ItemGetByInput( playlist_t * p_playlist , return NULL; } +/** + * Get input by item id + * + * Find the playlist item matching the input id under the given node + * \param p_playlist the playlist + * \param i_input_id the id of the input to find + * \param p_root the root node of the search + * \return the playlist item or NULL on failure + */ +playlist_item_t * playlist_ItemGetByInputId( playlist_t *p_playlist, + int i_input_id, + playlist_item_t *p_root ) +{ + int i; + assert( p_root != NULL ); + for( i = 0 ; i< p_root->i_children ; i++ ) + { + if( p_root->pp_children[i]->p_input && + p_root->pp_children[i]->p_input->i_id == i_input_id ) + { + return p_root->pp_children[i]; + } + else if( p_root->pp_children[i]->i_children >= 0 ) + { + return playlist_ItemGetByInputId( p_playlist, i_input_id, + p_root->pp_children[i] ); + } + } + return NULL; +} + /*************************************************************************** * Live search handling ***************************************************************************/ -int playlist_LiveSearchUpdate( playlist_t *p_playlist, playlist_item_t *p_root, - const char *psz_string ) +static vlc_bool_t playlist_LiveSearchUpdateInternal( playlist_t *p_playlist, + playlist_item_t *p_root, + const char *psz_string ) { int i; - p_playlist->b_reset_currently_playing = VLC_TRUE; - for( i = 0 ; i< p_root->i_children ; i ++ ) + vlc_bool_t b_match = VLC_FALSE; + for( i = 0 ; i < p_root->i_children ; i ++ ) { playlist_item_t *p_item = p_root->pp_children[i]; if( p_item->i_children > -1 ) { - playlist_LiveSearchUpdate( p_playlist, p_item, psz_string ); + if( playlist_LiveSearchUpdateInternal( p_playlist, p_item, psz_string ) || + strcasestr( p_item->p_input->psz_name, psz_string ) ) + { + p_item->i_flags &= ~PLAYLIST_DBL_FLAG; + b_match = VLC_TRUE; + } + else + { + p_item->i_flags |= PLAYLIST_DBL_FLAG; + } } -#define META_MATCHES( field ) ( p_item->p_input->p_meta && \ - p_item->p_input->p_meta->psz_##field && \ - strcasestr( p_item->p_input->p_meta->psz_##field, psz_string ) ) - if( strcasestr( p_item->p_input->psz_name, psz_string ) || - META_MATCHES( artist ) || META_MATCHES( album ) ) - p_item->i_flags &= ~PLAYLIST_DBL_FLAG; else - p_item->i_flags |= PLAYLIST_DBL_FLAG; + { + if( strcasestr( p_item->p_input->psz_name, psz_string ) || /* Soon to be replaced by vlc_meta_Title */ + input_item_MetaMatch( p_item->p_input, vlc_meta_Album, psz_string ) || + input_item_MetaMatch( p_item->p_input, vlc_meta_Artist, psz_string ) ) + { + p_item->i_flags &= ~PLAYLIST_DBL_FLAG; + b_match = VLC_TRUE; + } + else + { + p_item->i_flags |= PLAYLIST_DBL_FLAG; + } + } } - vlc_cond_signal( &p_playlist->object_wait ); - return VLC_SUCCESS; + return b_match; +} + +int playlist_LiveSearchUpdate( playlist_t *p_playlist, playlist_item_t *p_root, + const char *psz_string ) +{ + p_playlist->b_reset_currently_playing = VLC_TRUE; + playlist_LiveSearchUpdateInternal( p_playlist, p_root, psz_string ); + vlc_cond_signal( &p_playlist->object_wait ); + return VLC_SUCCESS; }