]> git.sesse.net Git - vlc/blob - src/playlist/search.c
fc46c5671a596176fcf8f755a69eef67e8231a3b
[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         input_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     assert( p_root != NULL );
108     for( i = 0 ; i< p_root->i_children ; i++ )
109     {
110         if( p_root->pp_children[i]->p_input &&
111             p_root->pp_children[i]->p_input->i_id == i_input_id )
112         {
113             return p_root->pp_children[i];
114         }
115         else if( p_root->pp_children[i]->i_children >= 0 )
116         {
117             return playlist_ItemGetByInputId( p_playlist, i_input_id,
118                                               p_root->pp_children[i] );
119         }
120     }
121     return NULL;
122 }
123
124 /***************************************************************************
125  * Live search handling
126  ***************************************************************************/
127
128 static bool playlist_LiveSearchUpdateInternal( playlist_t *p_playlist,
129                                                      playlist_item_t *p_root,
130                                                      const char *psz_string )
131 {
132    int i;
133    bool b_match = false;
134    for( i = 0 ; i < p_root->i_children ; i ++ )
135    {
136         playlist_item_t *p_item = p_root->pp_children[i];
137         if( p_item->i_children > -1 )
138         {
139             if( playlist_LiveSearchUpdateInternal( p_playlist, p_item, psz_string ) ||
140                 strcasestr( p_item->p_input->psz_name, psz_string ) )
141             {
142                 p_item->i_flags &= ~PLAYLIST_DBL_FLAG;
143                 b_match = true;
144             }
145             else
146             {
147                 p_item->i_flags |= PLAYLIST_DBL_FLAG;
148             }
149         }
150         else
151         {
152             if( strcasestr( p_item->p_input->psz_name, psz_string ) || /* Soon to be replaced by vlc_meta_Title */
153                 input_item_MetaMatch( p_item->p_input, vlc_meta_Album, psz_string ) ||
154                 input_item_MetaMatch( p_item->p_input, vlc_meta_Artist, psz_string ) )
155             {
156                 p_item->i_flags &= ~PLAYLIST_DBL_FLAG;
157                 b_match = true;
158             }
159             else
160             {
161                 p_item->i_flags |= PLAYLIST_DBL_FLAG;
162             }
163         }
164    }
165    return b_match;
166 }
167
168 int playlist_LiveSearchUpdate( playlist_t *p_playlist, playlist_item_t *p_root,
169                                const char *psz_string )
170 {
171     p_playlist->b_reset_currently_playing = true;
172     playlist_LiveSearchUpdateInternal( p_playlist, p_root, psz_string );
173     vlc_object_signal_maybe( VLC_OBJECT(p_playlist) );
174     return VLC_SUCCESS;
175 }