欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

propimpl.cpp

这是一个mp3的源代码
CPP
字号:
/*____________________________________________________________________________
	
	FreeAmp - The Free MP3 Player

	Portions Copyright (C) 1998-1999 EMusic.com

	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., 675 Mass Ave, Cambridge, MA 02139, USA.
	
	$Id: propimpl.cpp,v 1.5 1999/11/02 20:24:44 robert Exp $
____________________________________________________________________________*/

#include "propimpl.h"

PropertiesImpl::PropertiesImpl() 
{
}

PropertiesImpl::~PropertiesImpl() 
{
}

Error PropertiesImpl::GetProperty(const char *pProp, PropValue **ppVal) 
{
    Error rtn = kError_UnknownErr;
    m_lock.Acquire();
    if (ppVal) 
    {
	   *ppVal = NULL;
       if (pProp) 
       {
           map<string, PropElem *>::iterator i;
		   i = m_props.find(pProp);
           if (i != m_props.end()) 
           {
		       *ppVal = (*i).second->m_val;
		       rtn = kError_NoErr;
           }
       }
    }
    m_lock.Release();
    return rtn;
}

Error PropertiesImpl::SetProperty(const char *pProp, PropValue *pVal) 
{
    Error rtn = kError_UnknownErr;
    m_lock.Acquire();

	if (pProp) 
    {
       map<string, PropElem *>::iterator  i;
       PropElem                                *ppe;
       i = m_props.find(pProp);
       
       bool needToAddItem = false;
       if (i == m_props.end()) 
       {
	       ppe = new PropElem();
           needToAddItem = true;
       }
       else
           ppe = (*i).second;
           
	   if (ppe->m_val) 
       {
	       delete ppe->m_val;
	   }
       ppe->m_val = pVal;
       if (needToAddItem) 
       {
	      m_props[pProp] = ppe;
       }   
          
	   PropertyWatcher *pw = NULL;
       
	   for(uint32 j = 0; j < ppe->m_propWatchers.size(); j++) 
       {
	       pw = ppe->m_propWatchers[j];
	       if (pw) 
           {
	   	       pw->PropertyChange(pProp, pVal);
	       }
	   }
	   rtn = kError_NoErr;
    }
    
    m_lock.Release();
    return rtn;
}

Error PropertiesImpl::RegisterPropertyWatcher(const char *pProp, PropertyWatcher *pw) 
{
    Error rtn = kError_UnknownErr;
    m_lock.Acquire();

	if (pProp) 
    {
        map<string, PropElem *>::iterator i;
        i = m_props.find(pProp);
        
	    if (i != m_props.end()) 
        {
            PropElem *ppe = (*i).second;
            
	        ppe->m_propWatchers.push_back(pw);
	        rtn = kError_NoErr;
	    }
	}

    m_lock.Release();
    return rtn;
}

Error PropertiesImpl::RemovePropertyWatcher(const char *pProp, PropertyWatcher *pw) 
{
    Error rtn = kError_UnknownErr;
    m_lock.Acquire();

	if (pProp) 
    {
        map<string, PropElem *>::iterator i;
        i = m_props.find(pProp);
        
	    if (i != m_props.end()) 
        {
           PropElem *ppe = (*i).second;
           
	       int32 endNum = ppe->m_propWatchers.size();
           for (int i = 0; i < endNum ; i++) 
           {
	          if (pw == ppe->m_propWatchers[i]) 
              {
	              ppe->m_propWatchers.erase(&ppe->m_propWatchers[i]);
		          endNum--;
	          }
	       }
	       rtn = kError_NoErr;
	    }
	}

    m_lock.Release();
    return rtn;

}



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -