]> git.sesse.net Git - vlc/blob - src/playlist/item.c
* src/playlist/*: fixed complete fuckage of playlist_ItemAddOption() and moved it...
[vlc] / src / playlist / item.c
1 /*****************************************************************************
2  * item.c : Playlist item functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
5  * $Id: item.c,v 1.14 2004/02/08 18:17:22 gbazin Exp $
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/vout.h>
29 #include <vlc/sout.h>
30 #include <vlc/input.h>
31
32 #include "vlc_playlist.h"
33
34
35
36
37
38 /**
39  * Add a playlist item into a playlist
40  *
41  * \param p_playlist the playlist to insert into
42  * \param p_item the playlist item to insert
43  * \param i_mode the mode used when adding
44  * \param i_pos the possition in the playlist where to add. If this is
45  *        PLAYLIST_END the item will be added at the end of the playlist
46  *        regardless of it's size
47  * \return The id of the playlist item
48 */
49 int playlist_AddItem( playlist_t *p_playlist, playlist_item_t * p_item,
50                 int i_mode, int i_pos)
51 {
52     vlc_value_t     val;
53
54     vlc_mutex_lock( &p_playlist->object_lock );
55
56     /*
57      * CHECK_INSERT : checks if the item is already enqued before
58      * enqueing it
59      */
60     if ( i_mode & PLAYLIST_CHECK_INSERT )
61     {
62          int j;
63
64          if ( p_playlist->pp_items )
65          {
66              for ( j = 0; j < p_playlist->i_size; j++ )
67              {
68                  if ( !strcmp( p_playlist->pp_items[j]->psz_uri, p_item->psz_uri ) )
69                  {
70                       if( p_item->psz_name )
71                       {
72                           free( p_item->psz_name );
73                       }
74                       if( p_item->psz_uri )
75                       {
76                           free( p_item->psz_uri );
77                       }
78                       free( p_item );
79                       vlc_mutex_unlock( &p_playlist->object_lock );
80                       return -1;
81                  }
82              }
83          }
84          i_mode &= ~PLAYLIST_CHECK_INSERT;
85          i_mode |= PLAYLIST_APPEND;
86     }
87
88
89     msg_Dbg( p_playlist, "adding playlist item « %s » ( %s )", p_item->psz_name, p_item->psz_uri);
90
91
92     p_item->i_id = ++p_playlist->i_last_id;
93
94     /* Do a few boundary checks and allocate space for the item */
95     if( i_pos == PLAYLIST_END )
96     {
97         if( i_mode & PLAYLIST_INSERT )
98         {
99             i_mode &= ~PLAYLIST_INSERT;
100             i_mode |= PLAYLIST_APPEND;
101         }
102
103         i_pos = p_playlist->i_size - 1;
104     }
105
106     if( !(i_mode & PLAYLIST_REPLACE)
107          || i_pos < 0 || i_pos >= p_playlist->i_size )
108     {
109         /* Additional boundary checks */
110         if( i_mode & PLAYLIST_APPEND )
111         {
112             i_pos++;
113         }
114
115         if( i_pos < 0 )
116         {
117             i_pos = 0;
118         }
119         else if( i_pos > p_playlist->i_size )
120         {
121             i_pos = p_playlist->i_size;
122         }
123
124         INSERT_ELEM( p_playlist->pp_items,
125                      p_playlist->i_size,
126                      i_pos,
127                      p_item );
128         p_playlist->i_enabled ++;
129
130         if( p_playlist->i_index >= i_pos )
131         {
132             p_playlist->i_index++;
133         }
134     }
135     else
136     {
137         /* i_mode == PLAYLIST_REPLACE and 0 <= i_pos < p_playlist->i_size */
138         if( p_playlist->pp_items[i_pos]->psz_name )
139         {
140             free( p_playlist->pp_items[i_pos]->psz_name );
141         }
142         if( p_playlist->pp_items[i_pos]->psz_uri )
143         {
144             free( p_playlist->pp_items[i_pos]->psz_uri );
145         }
146         /* XXX: what if the item is still in use? */
147         free( p_playlist->pp_items[i_pos] );
148         p_playlist->pp_items[i_pos] = p_item;
149     }
150
151     if( i_mode & PLAYLIST_GO )
152     {
153         p_playlist->i_index = i_pos;
154         if( p_playlist->p_input )
155         {
156             input_StopThread( p_playlist->p_input );
157         }
158         p_playlist->i_status = PLAYLIST_RUNNING;
159     }
160
161     vlc_mutex_unlock( &p_playlist->object_lock );
162
163     val.b_bool = VLC_TRUE;
164     var_Set( p_playlist, "intf-change", val );
165
166     return p_item->i_id;
167 }
168
169 /**
170  *  Add a option to one item ( no need for p_playlist )
171  *
172  * \param p_item the item on which we want the info
173  * \param psz_format the option
174  * \return 0 on success
175 */
176 int playlist_ItemAddOption( playlist_item_t *p_item,
177                             const char *psz_option )
178 {
179     if( !psz_option ) return VLC_EGENERIC;
180
181     INSERT_ELEM( p_item->ppsz_options, p_item->i_options, p_item->i_options,
182                  strdup( psz_option ) );
183
184     return VLC_SUCCESS;
185 }