cmd_update_item.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_update_item.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2009 the VideoLAN team
  5.  * $Id: 8bc860c10a8577d5b00b3c886259d896e31e391d $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  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 General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #include <vlc_common.h>
  28. #include <vlc_playlist.h>
  29. #include "../src/os_factory.hpp"
  30. #include "async_queue.hpp"
  31. #include "cmd_vars.hpp"
  32. #include "cmd_update_item.hpp"
  33. void CmdUpdateItem::execute()
  34. {
  35.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  36.     if( pPlaylist == NULL )
  37.         return;
  38. input_thread_t *p_input = playlist_CurrentInput( pPlaylist );
  39.     if( !p_input )
  40.         return;
  41. // Get playlist item information
  42. input_item_t *pItem = input_GetItem( p_input );
  43.     char *pszName = input_item_GetName( pItem );
  44.     char *pszUri = input_item_GetURI( pItem );
  45. string name = pszName;
  46. // XXX: This should be done in VLC core, not here...
  47. // Remove path information if any
  48. OSFactory *pFactory = OSFactory::instance( getIntf() );
  49. string::size_type pos = name.rfind( pFactory->getDirSeparator() );
  50. if( pos != string::npos )
  51. {
  52. name = name.substr( pos + 1, name.size() - pos + 1 );
  53. }
  54. UString srcName( getIntf(), name.c_str() );
  55. UString srcURI( getIntf(), pszUri );
  56.     free( pszName );
  57.     free( pszUri );
  58.    // Create commands to update the stream variables
  59. CmdSetText *pCmd1 = new CmdSetText( getIntf(), m_rStreamName, srcName );
  60. CmdSetText *pCmd2 = new CmdSetText( getIntf(), m_rStreamURI, srcURI );
  61. // Push the commands in the asynchronous command queue
  62. AsyncQueue *pQueue = AsyncQueue::instance( getIntf() );
  63. pQueue->push( CmdGenericPtr( pCmd1 ), false );
  64. pQueue->push( CmdGenericPtr( pCmd2 ), false );
  65. vlc_object_release( p_input );
  66. }