1 /*****************************************************************************
2 * item.c : Playlist item functions
3 *****************************************************************************
4 * Copyright (C) 1999-2004 VideoLAN
7 * Authors: Samuel Hocevar <sam@zoy.org>
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.
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.
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() */
28 #include <vlc/input.h>
30 #include "vlc_playlist.h"
33 * Create a new item, without adding it to the playlist
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
39 playlist_item_t * __playlist_ItemNew( vlc_object_t *p_obj,
41 const char *psz_name )
43 playlist_item_t * p_item;
45 p_item = malloc( sizeof( playlist_item_t ) );
46 if( p_item == NULL ) return NULL;
47 if( psz_uri == NULL) return NULL;
49 memset( p_item, 0, sizeof( playlist_item_t ) );
51 p_item->input.psz_uri = strdup( psz_uri );
53 if( psz_name != NULL ) p_item->input.psz_name = strdup( psz_name );
54 else p_item->input.psz_name = strdup ( psz_uri );
56 p_item->b_enabled = VLC_TRUE;
57 p_item->i_group = PLAYLIST_TYPE_MANUAL;
58 p_item->i_nb_played = 0;
60 p_item->input.i_duration = -1;
61 p_item->input.ppsz_options = NULL;
62 p_item->input.i_options = 0;
64 vlc_mutex_init( p_obj, &p_item->input.lock );
66 playlist_ItemCreateCategory( p_item, _("General") );
71 * Deletes a playlist item
73 * \param p_item the item to delete
76 void playlist_ItemDelete( playlist_item_t *p_item )
78 vlc_mutex_lock( &p_item->input.lock );
80 if( p_item->input.psz_name ) free( p_item->input.psz_name );
81 if( p_item->input.psz_uri ) free( p_item->input.psz_uri );
83 /* Free the info categories */
84 if( p_item->input.i_categories > 0 )
88 for( i = 0; i < p_item->input.i_categories; i++ )
90 info_category_t *p_category = p_item->input.pp_categories[i];
92 for( j = 0; j < p_category->i_infos; j++)
94 if( p_category->pp_infos[j]->psz_name )
96 free( p_category->pp_infos[j]->psz_name);
98 if( p_category->pp_infos[j]->psz_value )
100 free( p_category->pp_infos[j]->psz_value );
102 free( p_category->pp_infos[j] );
105 if( p_category->i_infos ) free( p_category->pp_infos );
106 if( p_category->psz_name ) free( p_category->psz_name );
110 free( p_item->input.pp_categories );
113 vlc_mutex_unlock( &p_item->input.lock );
114 vlc_mutex_destroy( &p_item->input.lock );
120 * Add a playlist item into a playlist
122 * \param p_playlist the playlist to insert into
123 * \param p_item the playlist item to insert
124 * \param i_mode the mode used when adding
125 * \param i_pos the possition in the playlist where to add. If this is
126 * PLAYLIST_END the item will be added at the end of the playlist
127 * regardless of it's size
128 * \return The id of the playlist item
130 int playlist_AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
131 int i_mode, int i_pos)
135 vlc_mutex_lock( &p_playlist->object_lock );
138 * CHECK_INSERT : checks if the item is already enqued before
141 if ( i_mode & PLAYLIST_CHECK_INSERT )
145 if ( p_playlist->pp_items )
147 for ( j = 0; j < p_playlist->i_size; j++ )
149 if ( !strcmp( p_playlist->pp_items[j]->input.psz_uri,
150 p_item->input.psz_uri ) )
152 if ( p_item->input.psz_name )
154 free( p_item->input.psz_name );
156 if ( p_item->input.psz_uri )
158 free ( p_item->input.psz_uri );
161 vlc_mutex_unlock( &p_playlist->object_lock );
166 i_mode &= ~PLAYLIST_CHECK_INSERT;
167 i_mode |= PLAYLIST_APPEND;
170 msg_Dbg( p_playlist, "adding playlist item `%s' ( %s )",
171 p_item->input.psz_name, p_item->input.psz_uri );
173 p_item->i_id = ++p_playlist->i_last_id;
175 /* Do a few boundary checks and allocate space for the item */
176 if( i_pos == PLAYLIST_END )
178 if( i_mode & PLAYLIST_INSERT )
180 i_mode &= ~PLAYLIST_INSERT;
181 i_mode |= PLAYLIST_APPEND;
184 i_pos = p_playlist->i_size - 1;
187 if( !(i_mode & PLAYLIST_REPLACE)
188 || i_pos < 0 || i_pos >= p_playlist->i_size )
190 /* Additional boundary checks */
191 if( i_mode & PLAYLIST_APPEND )
200 else if( i_pos > p_playlist->i_size )
202 i_pos = p_playlist->i_size;
205 INSERT_ELEM( p_playlist->pp_items, p_playlist->i_size, i_pos, p_item );
206 p_playlist->i_enabled ++;
208 if( p_playlist->i_index >= i_pos )
210 p_playlist->i_index++;
215 /* i_mode == PLAYLIST_REPLACE and 0 <= i_pos < p_playlist->i_size */
216 if( p_playlist->pp_items[i_pos]->input.psz_name )
218 free( p_playlist->pp_items[i_pos]->input.psz_name );
220 if( p_playlist->pp_items[i_pos]->input.psz_uri )
222 free( p_playlist->pp_items[i_pos]->input.psz_uri );
224 /* XXX: what if the item is still in use? */
225 free( p_playlist->pp_items[i_pos] );
226 p_playlist->pp_items[i_pos] = p_item;
229 if( i_mode & PLAYLIST_GO )
231 p_playlist->i_index = i_pos;
232 if( p_playlist->p_input )
234 input_StopThread( p_playlist->p_input );
236 p_playlist->i_status = PLAYLIST_RUNNING;
239 vlc_mutex_unlock( &p_playlist->object_lock );
241 val.b_bool = VLC_TRUE;
242 var_Set( p_playlist, "intf-change", val );
248 * Add a option to one item ( no need for p_playlist )
250 * \param p_item the item on which we want the info
251 * \param psz_format the option
252 * \return 0 on success
254 int playlist_ItemAddOption( playlist_item_t *p_item, const char *psz_option )
256 if( !psz_option ) return VLC_EGENERIC;
258 vlc_mutex_lock( &p_item->input.lock );
259 INSERT_ELEM( p_item->input.ppsz_options, p_item->input.i_options,
260 p_item->input.i_options, strdup( psz_option ) );
261 vlc_mutex_unlock( &p_item->input.lock );