image: fix image misfunctioning in recent builds
[vlc.git] / src / playlist / control.c
blob5df928345c84ce95e30b09765f607a5bda6c83b6
1 /*****************************************************************************
2 * control.c : Handle control of the playlist & running through it
3 *****************************************************************************
4 * Copyright (C) 1999-2004 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Samuel Hocevar <sam@zoy.org>
8 * Clément Stenac <zorglub@videolan.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #include <vlc_common.h>
29 #include "vlc_playlist.h"
30 #include "playlist_internal.h"
31 #include <assert.h>
33 /*****************************************************************************
34 * Local prototypes
35 *****************************************************************************/
36 static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args );
38 /*****************************************************************************
39 * Playlist control
40 *****************************************************************************/
42 void playlist_Lock( playlist_t *pl )
44 vlc_mutex_lock( &pl_priv(pl)->lock );
47 void playlist_Unlock( playlist_t *pl )
49 vlc_mutex_unlock( &pl_priv(pl)->lock );
52 void playlist_AssertLocked( playlist_t *pl )
54 vlc_assert_locked( &pl_priv(pl)->lock );
57 int playlist_Control( playlist_t * p_playlist, int i_query,
58 bool b_locked, ... )
60 va_list args;
61 int i_result;
62 PL_LOCK_IF( !b_locked );
63 va_start( args, b_locked );
64 i_result = PlaylistVAControl( p_playlist, i_query, args );
65 va_end( args );
66 PL_UNLOCK_IF( !b_locked );
68 return i_result;
71 static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args )
73 playlist_item_t *p_item, *p_node;
75 PL_ASSERT_LOCKED;
77 if( i_query != PLAYLIST_STOP )
78 if( pl_priv(p_playlist)->killed || playlist_IsEmpty( p_playlist ) )
79 return VLC_EGENERIC;
81 switch( i_query )
83 case PLAYLIST_STOP:
84 pl_priv(p_playlist)->request.i_status = PLAYLIST_STOPPED;
85 pl_priv(p_playlist)->request.b_request = true;
86 pl_priv(p_playlist)->request.p_item = NULL;
87 break;
89 // Node can be null, it will keep the same. Use with care ...
90 // Item null = take the first child of node
91 case PLAYLIST_VIEWPLAY:
92 p_node = (playlist_item_t *)va_arg( args, playlist_item_t * );
93 p_item = (playlist_item_t *)va_arg( args, playlist_item_t * );
94 if ( p_node == NULL )
96 p_node = get_current_status_node( p_playlist );
97 assert( p_node );
99 pl_priv(p_playlist)->request.i_status = PLAYLIST_RUNNING;
100 pl_priv(p_playlist)->request.i_skip = 0;
101 pl_priv(p_playlist)->request.b_request = true;
102 pl_priv(p_playlist)->request.p_node = p_node;
103 pl_priv(p_playlist)->request.p_item = p_item;
104 if( p_item && var_GetBool( p_playlist, "random" ) )
105 pl_priv(p_playlist)->b_reset_currently_playing = true;
106 break;
108 case PLAYLIST_PLAY:
109 if( pl_priv(p_playlist)->p_input )
111 pl_priv(p_playlist)->status.i_status = PLAYLIST_RUNNING;
112 var_SetInteger( pl_priv(p_playlist)->p_input, "state", PLAYING_S );
113 break;
115 else
117 pl_priv(p_playlist)->request.i_status = PLAYLIST_RUNNING;
118 pl_priv(p_playlist)->request.b_request = true;
119 pl_priv(p_playlist)->request.p_node = get_current_status_node( p_playlist );
120 pl_priv(p_playlist)->request.p_item = get_current_status_item( p_playlist );
121 pl_priv(p_playlist)->request.i_skip = 0;
123 break;
125 case PLAYLIST_PAUSE:
126 if( !pl_priv(p_playlist)->p_input )
127 { /* FIXME: is this really useful without input? */
128 pl_priv(p_playlist)->status.i_status = PLAYLIST_PAUSED;
129 /* return without notifying the playlist thread as there is nothing to do */
130 return VLC_SUCCESS;
133 if( var_GetInteger( pl_priv(p_playlist)->p_input, "state" ) == PAUSE_S )
135 pl_priv(p_playlist)->status.i_status = PLAYLIST_RUNNING;
136 var_SetInteger( pl_priv(p_playlist)->p_input, "state", PLAYING_S );
138 else
140 pl_priv(p_playlist)->status.i_status = PLAYLIST_PAUSED;
141 var_SetInteger( pl_priv(p_playlist)->p_input, "state", PAUSE_S );
143 break;
145 case PLAYLIST_SKIP:
146 pl_priv(p_playlist)->request.p_node = get_current_status_node( p_playlist );
147 pl_priv(p_playlist)->request.p_item = get_current_status_item( p_playlist );
148 pl_priv(p_playlist)->request.i_skip = (int) va_arg( args, int );
149 /* if already running, keep running */
150 if( pl_priv(p_playlist)->status.i_status != PLAYLIST_STOPPED )
151 pl_priv(p_playlist)->request.i_status = pl_priv(p_playlist)->status.i_status;
152 pl_priv(p_playlist)->request.b_request = true;
153 break;
155 default:
156 msg_Err( p_playlist, "unknown playlist query" );
157 return VLC_EBADVAR;
159 vlc_cond_signal( &pl_priv(p_playlist)->signal );
161 return VLC_SUCCESS;
164 /*****************************************************************************
165 * Preparse control
166 *****************************************************************************/
167 /** Enqueue an item for preparsing */
168 int playlist_PreparseEnqueue( playlist_t *p_playlist, input_item_t *p_item )
170 playlist_private_t *p_sys = pl_priv(p_playlist);
172 if( unlikely(p_sys->p_preparser == NULL) )
173 return VLC_ENOMEM;
174 playlist_preparser_Push( p_sys->p_preparser, p_item );
175 return VLC_SUCCESS;
178 int playlist_AskForArtEnqueue( playlist_t *p_playlist, input_item_t *p_item )
180 playlist_private_t *p_sys = pl_priv(p_playlist);
182 if( unlikely(p_sys->p_fetcher == NULL) )
183 return VLC_ENOMEM;
184 playlist_fetcher_Push( p_sys->p_fetcher, p_item );
185 return VLC_SUCCESS;