]> git.sesse.net Git - vlc/blob - src/playlist/search.c
playlist: Fix a legitimate warning.
[vlc] / src / playlist / search.c
1 /*****************************************************************************
2  * search.c : Search functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
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  * Item search functions
34  ***************************************************************************/
35
36 /**
37  * Search a playlist item by its playlist_item id
38  *
39  * \param p_playlist the playlist
40  * \param i_id the id to find
41  * \return the item or NULL on failure
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  * Search an item by its input_item_t
60  *
61  * \param p_playlist the playlist
62  * \param p_item the input_item_t to find
63  * \return the item, or NULL on failure
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         /* FIXME: this is potentially dangerous, we could destroy
75          * p_ret any time soon */
76         playlist_item_t *p_ret = get_current_status_item( p_playlist );
77         PL_UNLOCK_IF( !b_locked );
78         return p_ret;
79     }
80     /** \todo Check if this is always incremental and whether we can bsearch */
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  * Get input by item id
95  *
96  * Find the playlist item matching the input id under the given node
97  * \param p_playlist the playlist
98  * \param i_input_id the id of the input to find
99  * \param p_root the root node of the search
100  * \return the playlist item or NULL on failure
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  * Live search handling
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 ) || /* Soon to be replaced by vlc_meta_Title */
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_maybe( VLC_OBJECT(p_playlist) );
176     return VLC_SUCCESS;
177 }