engine.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * engine.c : Run the playlist and handle its control
- *****************************************************************************
- * Copyright (C) 1999-2008 the VideoLAN team
- *
- * Authors: Samuel Hocevar <sam@zoy.org>
- * Clément Stenac <zorglub@videolan.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <stddef.h>
- #include <assert.h>
- #include <vlc_common.h>
- #include <vlc_sout.h>
- #include <vlc_playlist.h>
- #include <vlc_interface.h>
- #include "playlist_internal.h"
- #include "stream_output/stream_output.h" /* sout_DeleteInstance */
- /*****************************************************************************
- * Local prototypes
- *****************************************************************************/
- static void VariablesInit( playlist_t *p_playlist );
- static void playlist_Destructor( vlc_object_t * p_this );
- static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd,
- vlc_value_t oldval, vlc_value_t newval, void *a )
- {
- (void)psz_cmd; (void)oldval; (void)newval; (void)a;
- playlist_t *p_playlist = (playlist_t*)p_this;
- PL_LOCK;
- pl_priv(p_playlist)->b_reset_currently_playing = true;
- vlc_cond_signal( &pl_priv(p_playlist)->signal );
- PL_UNLOCK;
- return VLC_SUCCESS;
- }
- /**
- * Create playlist
- *
- * Create a playlist structure.
- * param p_parent the vlc object that is to be the parent of this playlist
- * return a pointer to the created playlist, or NULL on error
- */
- playlist_t * playlist_Create( vlc_object_t *p_parent )
- {
- static const char playlist_name[] = "playlist";
- playlist_t *p_playlist;
- playlist_private_t *p;
- /* Allocate structure */
- p = vlc_custom_create( p_parent, sizeof( *p ),
- VLC_OBJECT_GENERIC, playlist_name );
- if( !p )
- return NULL;
- assert( offsetof( playlist_private_t, public_data ) == 0 );
- p_playlist = &p->public_data;
- TAB_INIT( pl_priv(p_playlist)->i_sds, pl_priv(p_playlist)->pp_sds );
- libvlc_priv(p_parent->p_libvlc)->p_playlist = p_playlist;
- VariablesInit( p_playlist );
- vlc_mutex_init( &p->lock );
- vlc_cond_init( &p->signal );
- /* Initialise data structures */
- pl_priv(p_playlist)->i_last_playlist_id = 0;
- pl_priv(p_playlist)->p_input = NULL;
- ARRAY_INIT( p_playlist->items );
- ARRAY_INIT( p_playlist->all_items );
- ARRAY_INIT( pl_priv(p_playlist)->items_to_delete );
- ARRAY_INIT( p_playlist->current );
- p_playlist->i_current_index = 0;
- pl_priv(p_playlist)->b_reset_currently_playing = true;
- pl_priv(p_playlist)->last_rebuild_date = 0;
- pl_priv(p_playlist)->b_tree = var_CreateGetBool( p_playlist, "playlist-tree" );
- pl_priv(p_playlist)->b_doing_ml = false;
- const bool b_auto_preparse = var_CreateGetBool( p_playlist, "auto-preparse" );
- pl_priv(p_playlist)->b_auto_preparse = b_auto_preparse;
- PL_LOCK; /* playlist_NodeCreate will check for it */
- p_playlist->p_root_category = playlist_NodeCreate( p_playlist, NULL, NULL,
- 0, NULL );
- p_playlist->p_root_onelevel = playlist_NodeCreate( p_playlist, NULL, NULL,
- 0, p_playlist->p_root_category->p_input );
- PL_UNLOCK;
- if( !p_playlist->p_root_category || !p_playlist->p_root_onelevel )
- return NULL;
- /* Create playlist and media library */
- PL_LOCK; /* playlist_NodesPairCreate will check for it */
- playlist_NodesPairCreate( p_playlist, _( "Playlist" ),
- &p_playlist->p_local_category,
- &p_playlist->p_local_onelevel, false );
- PL_UNLOCK;
- p_playlist->p_local_category->i_flags |= PLAYLIST_RO_FLAG;
- p_playlist->p_local_onelevel->i_flags |= PLAYLIST_RO_FLAG;
- if( !p_playlist->p_local_category || !p_playlist->p_local_onelevel ||
- !p_playlist->p_local_category->p_input ||
- !p_playlist->p_local_onelevel->p_input )
- return NULL;
- if( config_GetInt( p_playlist, "media-library") )
- {
- PL_LOCK; /* playlist_NodesPairCreate will check for it */
- playlist_NodesPairCreate( p_playlist, _( "Media Library" ),
- &p_playlist->p_ml_category,
- &p_playlist->p_ml_onelevel, false );
- PL_UNLOCK;
- if(!p_playlist->p_ml_category || !p_playlist->p_ml_onelevel)
- return NULL;
- p_playlist->p_ml_category->i_flags |= PLAYLIST_RO_FLAG;
- p_playlist->p_ml_onelevel->i_flags |= PLAYLIST_RO_FLAG;
- }
- else
- {
- p_playlist->p_ml_category = p_playlist->p_ml_onelevel = NULL;
- }
- /* Initial status */
- pl_priv(p_playlist)->status.p_item = NULL;
- pl_priv(p_playlist)->status.p_node = p_playlist->p_local_onelevel;
- pl_priv(p_playlist)->request.b_request = false;
- pl_priv(p_playlist)->status.i_status = PLAYLIST_STOPPED;
- pl_priv(p_playlist)->b_auto_preparse = false;
- playlist_MLLoad( p_playlist );
- pl_priv(p_playlist)->b_auto_preparse = b_auto_preparse;
- vlc_object_set_destructor( p_playlist, playlist_Destructor );
- return p_playlist;
- }
- /**
- * Destroy playlist
- *
- * Destroy a playlist structure.
- * param p_playlist the playlist object
- * return nothing
- */
- static void playlist_Destructor( vlc_object_t * p_this )
- {
- playlist_t *p_playlist = (playlist_t *)p_this;
- playlist_private_t *p_sys = pl_priv(p_playlist);
- assert( !p_sys->p_input );
- assert( !p_sys->p_input_resource );
- assert( !p_sys->p_preparser );
- assert( !p_sys->p_fetcher );
- vlc_cond_destroy( &p_sys->signal );
- vlc_mutex_destroy( &p_sys->lock );
- /* Remove all remaining items */
- FOREACH_ARRAY( playlist_item_t *p_del, p_playlist->all_items )
- free( p_del->pp_children );
- vlc_gc_decref( p_del->p_input );
- free( p_del );
- FOREACH_END();
- ARRAY_RESET( p_playlist->all_items );
- FOREACH_ARRAY( playlist_item_t *p_del, p_sys->items_to_delete )
- free( p_del->pp_children );
- vlc_gc_decref( p_del->p_input );
- free( p_del );
- FOREACH_END();
- ARRAY_RESET( p_sys->items_to_delete );
- ARRAY_RESET( p_playlist->items );
- ARRAY_RESET( p_playlist->current );
- msg_Dbg( p_this, "Destroyed" );
- }
- /** Get current playing input.
- */
- input_thread_t * playlist_CurrentInput( playlist_t * p_playlist )
- {
- input_thread_t * p_input;
- PL_LOCK;
- p_input = pl_priv(p_playlist)->p_input;
- if( p_input ) vlc_object_hold( p_input );
- PL_UNLOCK;
- return p_input;
- }
- /**
- * @}
- */
- /** Accessor for status item and status nodes.
- */
- playlist_item_t * get_current_status_item( playlist_t * p_playlist )
- {
- PL_ASSERT_LOCKED;
- return pl_priv(p_playlist)->status.p_item;
- }
- playlist_item_t * get_current_status_node( playlist_t * p_playlist )
- {
- PL_ASSERT_LOCKED;
- return pl_priv(p_playlist)->status.p_node;
- }
- void set_current_status_item( playlist_t * p_playlist,
- playlist_item_t * p_item )
- {
- PL_ASSERT_LOCKED;
- if( pl_priv(p_playlist)->status.p_item &&
- pl_priv(p_playlist)->status.p_item->i_flags & PLAYLIST_REMOVE_FLAG &&
- pl_priv(p_playlist)->status.p_item != p_item )
- {
- /* It's unsafe given current design to delete a playlist item :(
- playlist_ItemDelete( pl_priv(p_playlist)->status.p_item ); */
- }
- pl_priv(p_playlist)->status.p_item = p_item;
- }
- void set_current_status_node( playlist_t * p_playlist,
- playlist_item_t * p_node )
- {
- PL_ASSERT_LOCKED;
- if( pl_priv(p_playlist)->status.p_node &&
- pl_priv(p_playlist)->status.p_node->i_flags & PLAYLIST_REMOVE_FLAG &&
- pl_priv(p_playlist)->status.p_node != p_node )
- {
- /* It's unsafe given current design to delete a playlist item :(
- playlist_ItemDelete( pl_priv(p_playlist)->status.p_node ); */
- }
- pl_priv(p_playlist)->status.p_node = p_node;
- }
- static void VariablesInit( playlist_t *p_playlist )
- {
- /* These variables control updates */
- var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
- var_SetBool( p_playlist, "intf-change", true );
- var_Create( p_playlist, "item-change", VLC_VAR_INTEGER );
- var_SetInteger( p_playlist, "item-change", -1 );
- var_Create( p_playlist, "playlist-item-deleted", VLC_VAR_INTEGER );
- var_SetInteger( p_playlist, "playlist-item-deleted", -1 );
- var_Create( p_playlist, "playlist-item-append", VLC_VAR_ADDRESS );
- var_Create( p_playlist, "item-current", VLC_VAR_INTEGER );
- var_SetInteger( p_playlist, "item-current", -1 );
- var_Create( p_playlist, "activity", VLC_VAR_INTEGER );
- var_SetInteger( p_playlist, "activity", 0 );
- /* Variables to control playback */
- var_Create( p_playlist, "play-and-stop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_Create( p_playlist, "play-and-exit", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_Create( p_playlist, "random", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_Create( p_playlist, "repeat", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_Create( p_playlist, "loop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_AddCallback( p_playlist, "random", RandomCallback, NULL );
- /* */
- var_Create( p_playlist, "album-art", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
- }
- playlist_item_t * playlist_CurrentPlayingItem( playlist_t * p_playlist )
- {
- PL_ASSERT_LOCKED;
- return pl_priv(p_playlist)->status.p_item;
- }
- int playlist_Status( playlist_t * p_playlist )
- {
- PL_ASSERT_LOCKED;
- return pl_priv(p_playlist)->status.i_status;
- }