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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * var_manager.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 91f65fef838df636287dac75f2d1fa57ac186301 $
  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. #include "var_manager.hpp"
  25. VarManager::VarManager( intf_thread_t *pIntf ): SkinObject( pIntf ),
  26.     m_pTooltipText( NULL ), m_pHelpText( NULL )
  27. {
  28.     m_pTooltipText = new VarText( pIntf );
  29.     m_pHelpText = new VarText( pIntf, false );
  30. }
  31. VarManager::~VarManager()
  32. {
  33.     // Delete the variables in the reverse order they were added
  34.     list<string>::const_iterator it1;
  35.     for( it1 = m_varList.begin(); it1 != m_varList.end(); it1++ )
  36.     {
  37.         m_varMap.erase(*it1);
  38.     }
  39.     // Delete the anonymous variables
  40.     while( !m_anonVarList.empty() )
  41.     {
  42.         m_anonVarList.pop_back();
  43.     }
  44.     delete m_pTooltipText;
  45.     // Warning! the help text must be the last variable to be deleted,
  46.     // because VarText destructor references it (FIXME: find a cleaner way?)
  47.     delete m_pHelpText;
  48. }
  49. VarManager *VarManager::instance( intf_thread_t *pIntf )
  50. {
  51.     if( ! pIntf->p_sys->p_varManager )
  52.     {
  53.         VarManager *pVarManager;
  54.         pVarManager = new VarManager( pIntf );
  55.         if( pVarManager )
  56.         {
  57.             pIntf->p_sys->p_varManager = pVarManager;
  58.         }
  59.     }
  60.     return pIntf->p_sys->p_varManager;
  61. }
  62. void VarManager::destroy( intf_thread_t *pIntf )
  63. {
  64.     if( pIntf->p_sys->p_varManager )
  65.     {
  66.         delete pIntf->p_sys->p_varManager;
  67.         pIntf->p_sys->p_varManager = NULL;
  68.     }
  69. }
  70. void VarManager::registerVar( const VariablePtr &rcVar, const string &rName )
  71. {
  72.     m_varMap[rName] = rcVar;
  73.     m_varList.push_front( rName );
  74.     m_anonVarList.push_back( rcVar );
  75. }
  76. void VarManager::registerVar( const VariablePtr &rcVar )
  77. {
  78.     m_anonVarList.push_back( rcVar );
  79. }
  80. Variable *VarManager::getVar( const string &rName )
  81. {
  82.     if( m_varMap.find( rName ) != m_varMap.end() )
  83.     {
  84.         return m_varMap[rName].get();
  85.     }
  86.     else
  87.     {
  88.         return NULL;
  89.     }
  90. }
  91. Variable *VarManager::getVar( const string &rName, const string &rType )
  92. {
  93.     if( m_varMap.find( rName ) != m_varMap.end() )
  94.     {
  95.         Variable *pVar = m_varMap[rName].get();
  96.         // Check the variable type
  97.         if( pVar->getType() != rType )
  98.         {
  99.             msg_Warn( getIntf(), "variable %s has incorrect type (%s instead"
  100.                       " of (%s)", rName.c_str(), pVar->getType().c_str(),
  101.                       rType.c_str() );
  102.             return NULL;
  103.         }
  104.         else
  105.         {
  106.             return pVar;
  107.         }
  108.     }
  109.     else
  110.     {
  111.         return NULL;
  112.     }
  113. }
  114. void VarManager::registerConst( const string &rName, const string &rValue)
  115. {
  116.     m_constMap[rName] = rValue;
  117. }
  118. string VarManager::getConst( const string &rName )
  119. {
  120.     return m_constMap[rName];
  121. }