async_queue.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * async_queue.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: async_queue.cpp 8562 2004-08-29 09:00:03Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include "async_queue.hpp"
  25. #include "../src/os_factory.hpp"
  26. #include "../src/os_timer.hpp"
  27. AsyncQueue::AsyncQueue( intf_thread_t *pIntf ): SkinObject( pIntf )
  28. {
  29.     // Initialize the mutex
  30.     vlc_mutex_init( pIntf, &m_lock );
  31.     // Create a timer
  32.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  33.     m_pTimer = pOsFactory->createOSTimer( Callback( this, &doFlush ) );
  34.     // Flush the queue every 10 ms
  35.     m_pTimer->start( 10, false );
  36. }
  37. AsyncQueue::~AsyncQueue()
  38. {
  39.     delete( m_pTimer );
  40.     vlc_mutex_destroy( &m_lock );
  41. }
  42. AsyncQueue *AsyncQueue::instance( intf_thread_t *pIntf )
  43. {
  44.     if( ! pIntf->p_sys->p_queue )
  45.     {
  46.         AsyncQueue *pQueue;
  47.         pQueue = new AsyncQueue( pIntf );
  48.         if( pQueue )
  49.         {
  50.              // Initialization succeeded
  51.              pIntf->p_sys->p_queue = pQueue;
  52.         }
  53.      }
  54.      return pIntf->p_sys->p_queue;
  55. }
  56. void AsyncQueue::destroy( intf_thread_t *pIntf )
  57. {
  58.     if( pIntf->p_sys->p_queue )
  59.     {
  60.         delete pIntf->p_sys->p_queue;
  61.         pIntf->p_sys->p_queue = NULL;
  62.     }
  63. }
  64. void AsyncQueue::push( const CmdGenericPtr &rcCommand )
  65. {
  66.     m_cmdList.push_back( rcCommand );
  67. }
  68. void AsyncQueue::remove( const string &rType )
  69. {
  70.     vlc_mutex_lock( &m_lock );
  71.     list<CmdGenericPtr>::iterator it;
  72.     for( it = m_cmdList.begin(); it != m_cmdList.end(); it++ )
  73.     {
  74.         // Remove the command if it is of the given type
  75.         if( (*it).get()->getType() == rType )
  76.         {
  77.             list<CmdGenericPtr>::iterator itNew = it;
  78.             itNew++;
  79.             m_cmdList.erase( it );
  80.             it = itNew;
  81.         }
  82.     }
  83.     vlc_mutex_unlock( &m_lock );
  84. }
  85. void AsyncQueue::flush()
  86. {
  87.     vlc_mutex_lock( &m_lock );
  88.     while( m_cmdList.size() > 0 )
  89.     {
  90.         // Pop the first command from the queue
  91.         CmdGenericPtr cCommand = m_cmdList.front();
  92.         m_cmdList.pop_front();
  93.         // And execute it
  94.         cCommand.get()->execute();
  95.     }
  96.     vlc_mutex_unlock( &m_lock );
  97. }
  98. void AsyncQueue::doFlush( SkinObject *pObj )
  99. {
  100.     AsyncQueue *pThis = (AsyncQueue*)pObj;
  101.     // Flush the queue
  102.     pThis->flush();
  103. }