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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * var_manager.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: var_manager.cpp 7561 2004-04-29 22:09:23Z 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 "var_manager.hpp"
  25. VarManager::VarManager( intf_thread_t *pIntf ): SkinObject( pIntf ),
  26.     m_tooltipText( pIntf ), m_helpText( pIntf )
  27. {
  28. }
  29. VarManager::~VarManager()
  30. {
  31.     // Delete the variables in the reverse order they were added
  32.     list<string>::const_iterator it1;
  33.     for( it1 = m_varList.begin(); it1 != m_varList.end(); it1++ )
  34.     {
  35.         m_varMap.erase(*it1);
  36.     }
  37.     // Delete the anonymous variables
  38.     while( !m_anonVarList.empty() )
  39.     {
  40.         m_anonVarList.pop_back();
  41.     }
  42. }
  43. VarManager *VarManager::instance( intf_thread_t *pIntf )
  44. {
  45.     if( ! pIntf->p_sys->p_varManager )
  46.     {
  47.         VarManager *pVarManager;
  48.         pVarManager = new VarManager( pIntf );
  49.         if( pVarManager )
  50.         {
  51.             pIntf->p_sys->p_varManager = pVarManager;
  52.         }
  53.     }
  54.     return pIntf->p_sys->p_varManager;
  55. }
  56. void VarManager::destroy( intf_thread_t *pIntf )
  57. {
  58.     if( pIntf->p_sys->p_varManager )
  59.     {
  60.         delete pIntf->p_sys->p_varManager;
  61.         pIntf->p_sys->p_varManager = NULL;
  62.     }
  63. }
  64. void VarManager::registerVar( const VariablePtr &rcVar, const string &rName )
  65. {
  66.     m_varMap[rName] = rcVar;
  67.     m_varList.push_front( rName );
  68. }
  69. void VarManager::registerVar( const VariablePtr &rcVar )
  70. {
  71.     m_anonVarList.push_back( rcVar );
  72. }
  73. Variable *VarManager::getVar( const string &rName )
  74. {
  75.     if( m_varMap.find( rName ) != m_varMap.end() )
  76.     {
  77.         return m_varMap[rName].get();
  78.     }
  79.     else
  80.     {
  81.         return NULL;
  82.     }
  83. }
  84. Variable *VarManager::getVar( const string &rName, const string &rType )
  85. {
  86.     if( m_varMap.find( rName ) != m_varMap.end() )
  87.     {
  88.         Variable *pVar = m_varMap[rName].get();
  89.         // Check the variable type
  90.         if( pVar->getType() != rType )
  91.         {
  92.             msg_Warn( getIntf(), "Variable %s has incorrect type (%s instead"
  93.                       " of (%s)", rName.c_str(), pVar->getType().c_str(),
  94.                       rType.c_str() );
  95.             return NULL;
  96.         }
  97.         else
  98.         {
  99.             return pVar;
  100.         }
  101.     }
  102.     else
  103.     {
  104.         return NULL;
  105.     }
  106. }