]> git.sesse.net Git - vlc/blob - src/playlist/item.c
* src/input/control.c: added INPUT_ADD_INFO/INPUT_SET_NAME to input_Control().
[vlc] / src / playlist / item.c
1 /*****************************************************************************
2  * item.c : Playlist item functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #include <stdlib.h>                                      /* free(), strtol() */
24 #include <stdio.h>                                              /* sprintf() */
25 #include <string.h>                                            /* strerror() */
26
27 #include <vlc/vlc.h>
28 #include <vlc/input.h>
29
30 #include "vlc_playlist.h"
31
32 /**
33  * Create a new item, without adding it to the playlist
34  *
35  * \param psz_uri the mrl of the item
36  * \param psz_name a text giving a name or description of the item
37  * \return the new item or NULL on failure
38  */
39 playlist_item_t * __playlist_ItemNew( vlc_object_t *p_obj,
40                                       const char *psz_uri,
41                                       const char *psz_name )
42 {
43     playlist_item_t * p_item;
44
45     p_item = malloc( sizeof( playlist_item_t ) );
46     if( p_item == NULL ) return NULL;
47     if( psz_uri == NULL) return NULL;
48
49     memset( p_item, 0, sizeof( playlist_item_t ) );
50
51     p_item->input.psz_uri = strdup( psz_uri );
52
53     if( psz_name != NULL ) p_item->input.psz_name = strdup( psz_name );
54     else p_item->input.psz_name = strdup ( psz_uri );
55
56     p_item->b_enabled = VLC_TRUE;
57     p_item->i_group = PLAYLIST_TYPE_MANUAL;
58
59     p_item->input.i_duration = -1;
60     p_item->input.ppsz_options = NULL;
61     p_item->input.i_options = 0;
62
63     vlc_mutex_init( p_obj, &p_item->input.lock );
64
65     playlist_ItemCreateCategory( p_item, _("General") );
66     return p_item;
67 }
68
69 /**
70  * Deletes a playlist item
71  *
72  * \param p_item the item to delete
73  * \return nothing
74  */
75 void playlist_ItemDelete( playlist_item_t *p_item )
76 {
77 #if 0
78     int i,j;
79 #endif
80
81     vlc_mutex_lock( &p_item->input.lock );
82
83     if( p_item->input.psz_name ) free( p_item->input.psz_name );
84     if( p_item->input.psz_uri ) free( p_item->input.psz_uri );
85
86 #if 0
87     /* Free the info categories. Welcome to the segfault factory */
88     if( p_item->i_categories > 0 )
89     {
90         for( i = 0; i < p_item->i_categories; i++ )
91         {
92             for( j= 0 ; j < p_item->pp_categories[i]->i_infos; j++)
93             {
94                 if( p_item->pp_categories[i]->pp_infos[j]->psz_name)
95                 {
96                     free( p_item->pp_categories[i]->
97                                   pp_infos[j]->psz_name);
98                 }
99                 if( p_item->pp_categories[i]->pp_infos[j]->psz_value)
100                 {
101                     free( p_item->pp_categories[i]->
102                                   pp_infos[j]->psz_value);
103                 }
104                 free( p_item->pp_categories[i]->pp_infos[j] );
105             }
106             if( p_item->pp_categories[i]->i_infos )
107                 free( p_item->pp_categories[i]->pp_infos );
108             if( p_item->pp_categories[i]->psz_name)
109             {
110                 free( p_item->pp_categories[i]->psz_name );
111             }
112             free( p_item->pp_categories[i] );
113         }
114         free( p_item->pp_categories );
115     }
116 #endif
117
118     vlc_mutex_unlock( &p_item->input.lock );
119     vlc_mutex_destroy( &p_item->input.lock );
120
121     free( p_item );
122 }
123
124 /**
125  * Add a playlist item into a playlist
126  *
127  * \param p_playlist the playlist to insert into
128  * \param p_item the playlist item to insert
129  * \param i_mode the mode used when adding
130  * \param i_pos the possition in the playlist where to add. If this is
131  *        PLAYLIST_END the item will be added at the end of the playlist
132  *        regardless of it's size
133  * \return The id of the playlist item
134  */
135 int playlist_AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
136                       int i_mode, int i_pos)
137 {
138     vlc_value_t val;
139
140     vlc_mutex_lock( &p_playlist->object_lock );
141
142     /*
143      * CHECK_INSERT : checks if the item is already enqued before
144      * enqueing it
145      */
146     if ( i_mode & PLAYLIST_CHECK_INSERT )
147     {
148          int j;
149
150          if ( p_playlist->pp_items )
151          {
152              for ( j = 0; j < p_playlist->i_size; j++ )
153              {
154                  if ( !strcmp( p_playlist->pp_items[j]->input.psz_uri,
155                                p_item->input.psz_uri ) )
156                  {
157                       if ( p_item->input.psz_name )
158                       {
159                           free( p_item->input.psz_name );
160                       }
161                       if ( p_item->input.psz_uri )
162                       {
163                           free ( p_item->input.psz_uri );
164                       }
165                       free( p_item );
166                       vlc_mutex_unlock( &p_playlist->object_lock );
167                       return -1;
168                  }
169              }
170          }
171          i_mode &= ~PLAYLIST_CHECK_INSERT;
172          i_mode |= PLAYLIST_APPEND;
173     }
174
175     msg_Dbg( p_playlist, "adding playlist item `%s' ( %s )",
176              p_item->input.psz_name, p_item->input.psz_uri );
177
178     p_item->i_id = ++p_playlist->i_last_id;
179
180     /* Do a few boundary checks and allocate space for the item */
181     if( i_pos == PLAYLIST_END )
182     {
183         if( i_mode & PLAYLIST_INSERT )
184         {
185             i_mode &= ~PLAYLIST_INSERT;
186             i_mode |= PLAYLIST_APPEND;
187         }
188
189         i_pos = p_playlist->i_size - 1;
190     }
191
192     if( !(i_mode & PLAYLIST_REPLACE)
193          || i_pos < 0 || i_pos >= p_playlist->i_size )
194     {
195         /* Additional boundary checks */
196         if( i_mode & PLAYLIST_APPEND )
197         {
198             i_pos++;
199         }
200
201         if( i_pos < 0 )
202         {
203             i_pos = 0;
204         }
205         else if( i_pos > p_playlist->i_size )
206         {
207             i_pos = p_playlist->i_size;
208         }
209
210         INSERT_ELEM( p_playlist->pp_items, p_playlist->i_size, i_pos, p_item );
211         p_playlist->i_enabled ++;
212
213         if( p_playlist->i_index >= i_pos )
214         {
215             p_playlist->i_index++;
216         }
217     }
218     else
219     {
220         /* i_mode == PLAYLIST_REPLACE and 0 <= i_pos < p_playlist->i_size */
221         if( p_playlist->pp_items[i_pos]->input.psz_name )
222         {
223             free( p_playlist->pp_items[i_pos]->input.psz_name );
224         }
225         if( p_playlist->pp_items[i_pos]->input.psz_uri )
226         {
227             free( p_playlist->pp_items[i_pos]->input.psz_uri );
228         }
229         /* XXX: what if the item is still in use? */
230         free( p_playlist->pp_items[i_pos] );
231         p_playlist->pp_items[i_pos] = p_item;
232     }
233
234     if( i_mode & PLAYLIST_GO )
235     {
236         p_playlist->i_index = i_pos;
237         if( p_playlist->p_input )
238         {
239             input_StopThread( p_playlist->p_input );
240         }
241         p_playlist->i_status = PLAYLIST_RUNNING;
242     }
243
244     vlc_mutex_unlock( &p_playlist->object_lock );
245
246     val.b_bool = VLC_TRUE;
247     var_Set( p_playlist, "intf-change", val );
248
249     return p_item->i_id;
250 }
251
252 /**
253  *  Add a option to one item ( no need for p_playlist )
254  *
255  * \param p_item the item on which we want the info
256  * \param psz_format the option
257  * \return 0 on success
258  */
259 int playlist_ItemAddOption( playlist_item_t *p_item, const char *psz_option )
260 {
261     if( !psz_option ) return VLC_EGENERIC;
262
263     vlc_mutex_lock( &p_item->input.lock );
264     INSERT_ELEM( p_item->input.ppsz_options, p_item->input.i_options,
265                  p_item->input.i_options, strdup( psz_option ) );
266     vlc_mutex_unlock( &p_item->input.lock );
267
268     return VLC_SUCCESS;
269 }