| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
#ifdef HAVE_CONFIG_H |
|---|
| 24 |
# include "config.h" |
|---|
| 25 |
#endif |
|---|
| 26 |
#include <assert.h> |
|---|
| 27 |
|
|---|
| 28 |
#include <vlc_common.h> |
|---|
| 29 |
#include "vlc_playlist.h" |
|---|
| 30 |
#include "playlist_internal.h" |
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
playlist_item_t * playlist_ItemGetById( playlist_t * p_playlist , int i_id, |
|---|
| 44 |
bool b_locked ) |
|---|
| 45 |
{ |
|---|
| 46 |
int i; |
|---|
| 47 |
PL_LOCK_IF( !b_locked ); |
|---|
| 48 |
ARRAY_BSEARCH( p_playlist->all_items,->i_id, int, i_id, i ); |
|---|
| 49 |
if( i != -1 ) |
|---|
| 50 |
{ |
|---|
| 51 |
PL_UNLOCK_IF( !b_locked ); |
|---|
| 52 |
return ARRAY_VAL( p_playlist->all_items, i ); |
|---|
| 53 |
} |
|---|
| 54 |
PL_UNLOCK_IF( !b_locked ); |
|---|
| 55 |
return NULL; |
|---|
| 56 |
} |
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 |
playlist_item_t * playlist_ItemGetByInput( playlist_t * p_playlist , |
|---|
| 66 |
input_item_t *p_item, |
|---|
| 67 |
bool b_locked ) |
|---|
| 68 |
{ |
|---|
| 69 |
int i; |
|---|
| 70 |
PL_LOCK_IF( !b_locked ); |
|---|
| 71 |
if( get_current_status_item( p_playlist ) && |
|---|
| 72 |
get_current_status_item( p_playlist )->p_input == p_item ) |
|---|
| 73 |
{ |
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 |
playlist_item_t *p_ret = get_current_status_item( p_playlist ); |
|---|
| 77 |
PL_UNLOCK_IF( !b_locked ); |
|---|
| 78 |
return p_ret; |
|---|
| 79 |
} |
|---|
| 80 |
|
|---|
| 81 |
for( i = 0 ; i < p_playlist->all_items.i_size; i++ ) |
|---|
| 82 |
{ |
|---|
| 83 |
if( ARRAY_VAL(p_playlist->all_items, i)->p_input->i_id == p_item->i_id ) |
|---|
| 84 |
{ |
|---|
| 85 |
PL_UNLOCK_IF( !b_locked ); |
|---|
| 86 |
return ARRAY_VAL(p_playlist->all_items, i); |
|---|
| 87 |
} |
|---|
| 88 |
} |
|---|
| 89 |
PL_UNLOCK_IF( !b_locked ); |
|---|
| 90 |
return NULL; |
|---|
| 91 |
} |
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
playlist_item_t * playlist_ItemGetByInputId( playlist_t *p_playlist, |
|---|
| 103 |
int i_input_id, |
|---|
| 104 |
playlist_item_t *p_root ) |
|---|
| 105 |
{ |
|---|
| 106 |
int i; |
|---|
| 107 |
PL_ASSERT_LOCKED; |
|---|
| 108 |
assert( p_root != NULL ); |
|---|
| 109 |
for( i = 0 ; i< p_root->i_children ; i++ ) |
|---|
| 110 |
{ |
|---|
| 111 |
if( p_root->pp_children[i]->p_input && |
|---|
| 112 |
p_root->pp_children[i]->p_input->i_id == i_input_id ) |
|---|
| 113 |
{ |
|---|
| 114 |
return p_root->pp_children[i]; |
|---|
| 115 |
} |
|---|
| 116 |
else if( p_root->pp_children[i]->i_children >= 0 ) |
|---|
| 117 |
{ |
|---|
| 118 |
return playlist_ItemGetByInputId( p_playlist, i_input_id, |
|---|
| 119 |
p_root->pp_children[i] ); |
|---|
| 120 |
} |
|---|
| 121 |
} |
|---|
| 122 |
return NULL; |
|---|
| 123 |
} |
|---|
| 124 |
|
|---|
| 125 |
|
|---|
| 126 |
|
|---|
| 127 |
|
|---|
| 128 |
|
|---|
| 129 |
static bool playlist_LiveSearchUpdateInternal( playlist_t *p_playlist, |
|---|
| 130 |
playlist_item_t *p_root, |
|---|
| 131 |
const char *psz_string ) |
|---|
| 132 |
{ |
|---|
| 133 |
int i; |
|---|
| 134 |
bool b_match = false; |
|---|
| 135 |
for( i = 0 ; i < p_root->i_children ; i ++ ) |
|---|
| 136 |
{ |
|---|
| 137 |
playlist_item_t *p_item = p_root->pp_children[i]; |
|---|
| 138 |
if( p_item->i_children > -1 ) |
|---|
| 139 |
{ |
|---|
| 140 |
if( playlist_LiveSearchUpdateInternal( p_playlist, p_item, psz_string ) || |
|---|
| 141 |
strcasestr( p_item->p_input->psz_name, psz_string ) ) |
|---|
| 142 |
{ |
|---|
| 143 |
p_item->i_flags &= ~PLAYLIST_DBL_FLAG; |
|---|
| 144 |
b_match = true; |
|---|
| 145 |
} |
|---|
| 146 |
else |
|---|
| 147 |
{ |
|---|
| 148 |
p_item->i_flags |= PLAYLIST_DBL_FLAG; |
|---|
| 149 |
} |
|---|
| 150 |
} |
|---|
| 151 |
else |
|---|
| 152 |
{ |
|---|
| 153 |
if( strcasestr( p_item->p_input->psz_name, psz_string ) || |
|---|
| 154 |
input_item_MetaMatch( p_item->p_input, vlc_meta_Album, psz_string ) || |
|---|
| 155 |
input_item_MetaMatch( p_item->p_input, vlc_meta_Artist, psz_string ) ) |
|---|
| 156 |
{ |
|---|
| 157 |
p_item->i_flags &= ~PLAYLIST_DBL_FLAG; |
|---|
| 158 |
b_match = true; |
|---|
| 159 |
} |
|---|
| 160 |
else |
|---|
| 161 |
{ |
|---|
| 162 |
p_item->i_flags |= PLAYLIST_DBL_FLAG; |
|---|
| 163 |
} |
|---|
| 164 |
} |
|---|
| 165 |
} |
|---|
| 166 |
return b_match; |
|---|
| 167 |
} |
|---|
| 168 |
|
|---|
| 169 |
int playlist_LiveSearchUpdate( playlist_t *p_playlist, playlist_item_t *p_root, |
|---|
| 170 |
const char *psz_string ) |
|---|
| 171 |
{ |
|---|
| 172 |
PL_ASSERT_LOCKED; |
|---|
| 173 |
p_playlist->b_reset_currently_playing = true; |
|---|
| 174 |
playlist_LiveSearchUpdateInternal( p_playlist, p_root, psz_string ); |
|---|
| 175 |
vlc_object_signal_unlocked( p_playlist ); |
|---|
| 176 |
return VLC_SUCCESS; |
|---|
| 177 |
} |
|---|