hxaudvol.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxaudvol.cpp,v 1.6.20.1 2004/07/09 02:08:08 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hlxclib/stdio.h"
  50. #include "hlxclib/string.h"
  51. #include "hxresult.h"
  52. #include "hxtypes.h"
  53. #include "hxcom.h"
  54. #include "hxausvc.h"
  55. #include "hxaudvol.h"
  56. #include "hxslist.h"
  57. #include "hxheap.h"
  58. #ifdef _DEBUG
  59. #undef HX_THIS_FILE
  60. static const char HX_THIS_FILE[] = __FILE__;
  61. #endif
  62. /************************************************************************
  63.  *  Method:
  64.  * IHXVolume::CHXVolume()
  65.  * Purpose:
  66.  * Constructor. Clean up and set free.
  67.  */
  68. CHXVolume::CHXVolume()
  69. : m_uVolume(HX_INIT_VOLUME)
  70. , m_lRefCount(0)
  71. , m_bMute(FALSE)
  72. , m_pSinkList(0)
  73. {
  74.     Init();
  75. }
  76. /************************************************************************
  77.  *  Method:
  78.  * IHXVolume::~CHXVolume()
  79.  * Purpose:
  80.  * Destructor. Clean up and set free.
  81.  */
  82. CHXVolume::~CHXVolume()
  83. {
  84.     /* Delete items in lists */
  85.     if ( m_pSinkList )
  86.     {
  87. IHXVolumeAdviseSink* s = 0;
  88.         CHXSimpleList::Iterator lIter = m_pSinkList->Begin();
  89.         for (; lIter != m_pSinkList->End(); ++lIter)
  90.         {
  91.             s = (IHXVolumeAdviseSink*) (*lIter);
  92.             if ( s )
  93.     {
  94.                 s->Release();
  95. s = 0;
  96.     }
  97.         }
  98.   delete m_pSinkList;
  99. m_pSinkList = 0;
  100.     }
  101. }
  102. /////////////////////////////////////////////////////////////////////////
  103. //  Method:
  104. //      IUnknown::QueryInterface
  105. //  Purpose:
  106. //      Implement this to export the interfaces supported by your
  107. //      object.
  108. //
  109. STDMETHODIMP CHXVolume::QueryInterface(REFIID riid, void** ppvObj)
  110. {
  111.     QInterfaceList qiList[] =
  112.         {
  113.             { GET_IIDHANDLE(IID_IHXVolume), (IHXVolume*)this },
  114.             { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IHXVolume*)this },
  115.         };
  116.     
  117.     return ::QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  118. }
  119. /////////////////////////////////////////////////////////////////////////
  120. //  Method:
  121. //      IUnknown::AddRef
  122. //  Purpose:
  123. //      Everyone usually implements this the same... feel free to use
  124. //      this implementation.
  125. //
  126. STDMETHODIMP_(ULONG32) CHXVolume::AddRef()
  127. {
  128.     return InterlockedIncrement(&m_lRefCount);
  129. }
  130. /////////////////////////////////////////////////////////////////////////
  131. //  Method:
  132. //      IUnknown::Release
  133. //  Purpose:
  134. //      Everyone usually implements this the same... feel free to use
  135. //      this implementation.
  136. //
  137. STDMETHODIMP_(ULONG32) CHXVolume::Release()
  138. {
  139.     if (InterlockedDecrement(&m_lRefCount) > 0)
  140.     {
  141.         return m_lRefCount;
  142.     }
  143.     delete this;
  144.     return 0;
  145. }
  146. /*
  147.  *  IHXVolume methods
  148.  */
  149. /************************************************************************
  150.  *  Method:
  151.  * IHXVolume::Init
  152.  * Purpose:
  153.  *
  154.  */
  155. STDMETHODIMP CHXVolume::Init()
  156. {
  157.     HX_RESULT theErr = HXR_OK;
  158.     /* create sink lists. */
  159.     m_pSinkList = new CHXSimpleList;
  160.     if ( !m_pSinkList )
  161. theErr = HXR_OUTOFMEMORY;
  162.     if ( !theErr )
  163.     {
  164. if(!m_pSinkList->IsPtrListValid())
  165.     theErr = HXR_OUTOFMEMORY;
  166.     }
  167.     if ( !theErr )
  168. return HXR_OK;
  169.     else
  170. return HXR_FAILED;
  171. }
  172. /************************************************************************
  173.  *  Method:
  174.  * IHXVolume::SetVolume
  175.  * Purpose:
  176.  *
  177.  */
  178. STDMETHODIMP CHXVolume::SetVolume
  179. (
  180.     const UINT16 uVolume
  181. )
  182. {
  183.     m_uVolume   = uVolume;
  184.     /* Call all advise sinks in list. */
  185.     if ( m_pSinkList )
  186.     {
  187. IHXVolumeAdviseSink* s = 0;
  188.         CHXSimpleList::Iterator lIter = m_pSinkList->Begin();
  189.         for (; lIter != m_pSinkList->End(); ++lIter)
  190.         {
  191.             s = (IHXVolumeAdviseSink*) (*lIter);
  192.             if ( s )
  193.                 s->OnVolumeChange(uVolume);
  194.         }
  195.     }
  196.     return HXR_OK;
  197. }
  198. /************************************************************************
  199.  *  Method:
  200.  * IHXVolume::GetVolume
  201.  * Purpose:
  202.  *
  203.  */
  204. STDMETHODIMP_(UINT16) CHXVolume::GetVolume()
  205. {
  206.     return m_uVolume;
  207. }
  208. /************************************************************************
  209.  *  Method:
  210.  * IHXVolume::SetMute
  211.  * Purpose:
  212.  *
  213.  */
  214. STDMETHODIMP CHXVolume::SetMute
  215. (
  216. const BOOL bMute
  217. )
  218. {
  219.     m_bMute = bMute;
  220.     /* Call all advise sinks in list. */
  221.     if ( m_pSinkList )
  222.     {
  223. IHXVolumeAdviseSink* s = 0;
  224.         CHXSimpleList::Iterator lIter = m_pSinkList->Begin();
  225.         for (; lIter != m_pSinkList->End(); ++lIter)
  226.         {
  227.             s = (IHXVolumeAdviseSink*) (*lIter);
  228.             if ( s )
  229.                 s->OnMuteChange(bMute);
  230.         }
  231.     }
  232.     return HXR_OK;
  233. }
  234. /************************************************************************
  235.  *  Method:
  236.  * IHXVolume::GetMute
  237.  * Purpose:
  238.  *
  239.  */
  240. STDMETHODIMP_(BOOL) CHXVolume::GetMute()
  241. {
  242.     return m_bMute;
  243. }
  244. /************************************************************************
  245.  *  Method:
  246.  * IHXVolume::AddAdviseSink
  247.  * Purpose:
  248.  *
  249.  */
  250. STDMETHODIMP CHXVolume::AddAdviseSink
  251. (
  252.     IHXVolumeAdviseSink* pSink
  253. )
  254. {
  255.     if (!pSink || !m_pSinkList)
  256.     {
  257. return HXR_FAILED;
  258.     }
  259.     /* Check if this one already exists */
  260.     LISTPOSITION lPos = m_pSinkList->Find(pSink);
  261.     if (lPos)
  262.     {
  263. return HXR_FAILED;
  264.     }
  265.     pSink->AddRef();
  266.     m_pSinkList->AddTail((void*) pSink);
  267.     return HXR_OK;
  268. }
  269. /************************************************************************
  270.  *  Method:
  271.  * IHXVolume::RemoveAdviseSink
  272.  * Purpose:
  273.  *
  274.  */
  275. STDMETHODIMP CHXVolume::RemoveAdviseSink
  276. (
  277.     IHXVolumeAdviseSink* pSink
  278. )
  279. {
  280.     if (!pSink || !m_pSinkList)
  281.     {
  282. return HXR_FAILED;
  283.     }
  284.     LISTPOSITION lpos = m_pSinkList->Find(pSink);
  285.     if (lpos)
  286.     {
  287.   m_pSinkList->RemoveAt(lpos);
  288. pSink->Release();
  289. return HXR_OK;
  290.     }
  291.     
  292.     return HXR_FAILED;
  293. }