audio_svr_cntxt.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35.  
  36. /*
  37.  *  Description: 
  38.  *
  39.  *  This file contains the implimentation of the HXSymbianAudioServerContext
  40.  *  class. This class specialized bsThread and provides an exection
  41.  *  context for the Audio Server.
  42.  *
  43.  */
  44. #include "hlxclib/stdlib.h"
  45. #include "audio_svr_cntxt.h"
  46. #include "audio_svr.h"
  47. _LIT(kHXSymbianAudioServer, "HelixAudioServer");
  48. static const TInt kDefaultStack = 0x4000;
  49. //
  50. // HXSymbianAudioServerContext::ctor
  51. // 
  52. HXSymbianAudioServerContext::HXSymbianAudioServerContext()
  53.     : m_pServer(0),
  54.       m_running(false),
  55.       m_handleOpen(false)
  56. {}
  57. //
  58. // HXSymbianAudioServerContext::dtor
  59. //
  60. HXSymbianAudioServerContext::~HXSymbianAudioServerContext()
  61. {
  62. // make sure server is stopped
  63.     Stop();
  64.     m_handle.Close();
  65.     m_startSem.Close();
  66. }
  67. //
  68. // HXSymbianAudioServerContext::Start
  69. //
  70. // This call wraps the normal thread startup call (Run()) in order to
  71. // wait on a startup semaphore. This ensures the server thread is 
  72. // fully started before the calling thread proceeds.
  73. //
  74. void HXSymbianAudioServerContext::Start()
  75. {
  76.     if (!m_running)
  77.     {
  78. m_startSem.CreateLocal(0);
  79. this->Run();
  80. m_startSem.Wait();
  81.     }
  82. }
  83. //
  84. // HXSymbianAudioServerContext::Stop
  85. //
  86. // 
  87. //
  88. void HXSymbianAudioServerContext::Stop()
  89. {
  90.     if (m_running)
  91.     {
  92. m_startSem.Wait();
  93. m_running = false;
  94.     }
  95. }
  96. bool HXSymbianAudioServerContext::Running()
  97. {
  98.     return m_running;
  99. }
  100. TInt HXSymbianAudioServerContext::Run()
  101. {
  102.     if (!m_running)
  103.     {
  104. // close handle if previously opened
  105. if (m_handleOpen)
  106.     m_handle.Close();
  107. if (KErrNone == m_handle.Create(kHXSymbianAudioServer,
  108. HXSymbianAudioServerContext::_Main,
  109. kDefaultStack, 
  110. NULL, this, EOwnerThread))
  111. {
  112.     m_handleOpen = true;
  113.     m_handle.Resume();
  114.     m_running = true;
  115. }
  116.     }
  117.     return m_running ? KErrNone : KErrGeneral;
  118. }
  119. //
  120. // HXSymbianAudioServerContext::Main
  121. //
  122. // This is the entry point for the new execution context. The call to
  123. // StartServerL() blocks until the server shuts down.
  124. //
  125. void* HXSymbianAudioServerContext::Main()
  126. {
  127.     TRAPD(leaveCode, StartServerL());
  128.     if (leaveCode != KErrNone)
  129.     {
  130. User::Panic(_L("HXSymbianAudioServerContext"), leaveCode);
  131.     }
  132.     return (void*)0;
  133. }    
  134. //
  135. // HXSymbianAudioServerContext::StartServerL
  136. // 
  137. // Create and start the server object and active scheduler. This call
  138. // runs within the new execution context.
  139. //
  140. void HXSymbianAudioServerContext::StartServerL()
  141. {
  142.     HBufC* pName = HXSymbianAudioServer::AllocServerName();
  143.     if (pName)
  144.     {
  145. m_pServer = new HXSymbianAudioServer;
  146. m_pServer->StartL(*pName);
  147. // signal waiter that server has started
  148. m_startSem.Signal();
  149. CActiveScheduler::Start();
  150.     
  151. delete pName;
  152.     }
  153.     // signal waiter that server has exited
  154.     m_startSem.Signal();
  155.     delete m_pServer;
  156.     m_pServer = 0;
  157. }
  158. TInt HXSymbianAudioServerContext::_Main (TAny* obj)
  159. {
  160.     void* pstatus = 0;
  161.     HXSymbianAudioServerContext* impl = (HXSymbianAudioServerContext*)obj;
  162.     // increase the priority of the audio thread
  163.     RThread().SetPriority(EPriorityMore);
  164.     // allocate a cleanup trap for use on this thread
  165.     CTrapCleanup* pCleanupTrap = CTrapCleanup::New();
  166.     // install active scheduler
  167.     CActiveScheduler::Install(new CActiveScheduler);
  168.     pstatus = impl->Main();
  169.     // fall out of main body
  170.     //
  171.     delete CActiveScheduler::Current();
  172.     delete pCleanupTrap;
  173.     // clean up memory allocated by stdlib functions
  174.     CloseSTDLIB();
  175.     // reset thread members in case this thread is restarted
  176.     impl->m_running = false;
  177.     return ((TInt)pstatus);
  178. }