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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: chxkeepalive.cpp,v 1.5.20.3 2004/07/09 01:48:15 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 "chxkeepalive.h"
  50. #include "hxengin.h" // IHXCallback, IHXScheduler
  51. #include "debug.h"
  52. #define D_KEEPALIVE 0x20000000
  53. class CHXKeepAliveImp : public IHXCallback
  54. {
  55. public:
  56.     CHXKeepAliveImp(IHXScheduler* pSched, 
  57.     UINT32 timeoutMS, 
  58.     IHXCallback* pKeepAliveCB);
  59.     ~CHXKeepAliveImp();
  60.     void OnActivity();
  61.     void Done();
  62.     /*
  63.      *  IUnknown methods
  64.      */
  65.     STDMETHOD(QueryInterface) (THIS_
  66. REFIID riid,
  67. void** ppvObj);
  68.     STDMETHOD_(ULONG32,AddRef) (THIS);
  69.     STDMETHOD_(ULONG32,Release) (THIS);
  70.     /*
  71.      *  IHXCallback methods
  72.      */
  73.     /************************************************************************
  74.      * Method:
  75.      *     IHXCallback::Func
  76.      * Purpose:
  77.      *     This is the function that will be called when a callback is
  78.      *     to be executed.
  79.      */
  80.     STDMETHOD(Func) (THIS);
  81. private:
  82.     HX_RESULT scheduleCallback();
  83.     
  84.     INT32 m_lRefCount;
  85.     IHXScheduler* m_pSched;
  86.     UINT32 m_timeoutMS;
  87.     IHXCallback* m_pKeepAliveCB;
  88.     BOOL m_bActivity;
  89.     HXTimeval m_lastTime;
  90.     BOOL m_bCBPending;
  91.     CallbackHandle m_cbHandle;
  92. };
  93. CHXKeepAlive::CHXKeepAlive() :
  94.     m_pImp(0)
  95. {}
  96. CHXKeepAlive::~CHXKeepAlive()
  97. {
  98.     reset();
  99. }
  100.     
  101. HX_RESULT CHXKeepAlive::Init(IHXScheduler* pSched, 
  102.      UINT32 timeoutMS, 
  103.      IHXCallback* pKeepAliveCB)
  104. {
  105.     HX_RESULT res = HXR_FAILED;
  106.     reset();
  107.     if (pSched && (timeoutMS > 0) && pKeepAliveCB)
  108.     {
  109. m_pImp = new CHXKeepAliveImp(pSched, timeoutMS, pKeepAliveCB);
  110. if (m_pImp)
  111. {
  112.     m_pImp->AddRef();
  113.     res = HXR_OK;
  114. }
  115.     }
  116.     return res;
  117. }
  118. void CHXKeepAlive::OnActivity()
  119. {
  120.     if (m_pImp)
  121.     {
  122. m_pImp->OnActivity();
  123.     }
  124. }
  125. void CHXKeepAlive::reset()
  126. {
  127.     if (m_pImp)
  128.     {
  129. m_pImp->Done();
  130. m_pImp->Release();
  131. m_pImp = 0;
  132.     }
  133. }
  134. CHXKeepAliveImp::CHXKeepAliveImp(IHXScheduler* pSched, 
  135.  UINT32 timeoutMS, 
  136.  IHXCallback* pKeepAliveCB) :
  137.     m_lRefCount(0),
  138.     m_pSched(pSched),
  139.     m_timeoutMS(timeoutMS),
  140.     m_pKeepAliveCB(pKeepAliveCB),
  141.     m_bActivity(FALSE),
  142.     m_lastTime(pSched->GetCurrentSchedulerTime()),
  143.     m_bCBPending(FALSE),
  144.     m_cbHandle(0)
  145. {
  146.     m_pSched->AddRef();
  147.     m_pKeepAliveCB->AddRef();
  148.     scheduleCallback();
  149. }
  150. CHXKeepAliveImp::~CHXKeepAliveImp()
  151. {
  152.     Done();
  153. }
  154. void CHXKeepAliveImp::OnActivity() // Called when any activity has occured
  155. {
  156.     DPRINTF(D_KEEPALIVE, ("CHXKeepAliveImp::OnActivity(%x)n", (PTR_INT)this));
  157.     m_bActivity = TRUE;
  158. }
  159. void CHXKeepAliveImp::Done()
  160. {
  161.     DPRINTF(D_KEEPALIVE, ("CHXKeepAliveImp::Done(%x)n", (PTR_INT)this));
  162.     if (m_bCBPending)
  163.     {
  164. m_pSched->Remove(m_cbHandle);
  165. m_bCBPending = FALSE;
  166. m_cbHandle = 0;
  167.     }
  168.     
  169.     HX_RELEASE(m_pSched);
  170.     HX_RELEASE(m_pKeepAliveCB);
  171. }
  172.     /*
  173.      *  IUnknown methods
  174.      */
  175. STDMETHODIMP CHXKeepAliveImp::QueryInterface(THIS_
  176.      REFIID riid,
  177.      void** ppvObj)
  178. {
  179. QInterfaceList qiList[] =
  180. {
  181. { GET_IIDHANDLE(IID_IUnknown), this },
  182. { GET_IIDHANDLE(IID_IHXCallback), (IHXCallback*) this },
  183. };
  184.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);   
  185. }
  186. STDMETHODIMP_(ULONG32) CHXKeepAliveImp::AddRef(THIS)
  187. {
  188.     return InterlockedIncrement(&m_lRefCount);
  189. }
  190. STDMETHODIMP_(ULONG32) CHXKeepAliveImp::Release(THIS)
  191. {
  192.     if(InterlockedDecrement(&m_lRefCount) > 0)
  193.     {
  194. return m_lRefCount;
  195.     }
  196.     delete this;
  197.     return 0;
  198. }
  199.     /*
  200.      *  IHXCallback methods
  201.      */
  202.     /************************************************************************
  203.      * Method:
  204.      *     IHXCallback::Func
  205.      * Purpose:
  206.      *     This is the function that will be called when a callback is
  207.      *     to be executed.
  208.      */
  209. STDMETHODIMP CHXKeepAliveImp::Func(THIS)
  210. {
  211.     DPRINTF(D_KEEPALIVE, ("CHXKeepAliveImp::Func(%x)n", (PTR_INT)this));
  212.     m_bCBPending = FALSE;
  213.     if (!m_bActivity && m_pKeepAliveCB)
  214.     {
  215. DPRINTF(D_KEEPALIVE, ("CHXKeepAliveImp::Func(%x) : dispatching callbackn", (PTR_INT)this));
  216. m_pKeepAliveCB->Func();
  217.     }
  218.     m_bActivity = FALSE;
  219.     scheduleCallback();
  220.     return HXR_OK;
  221. }
  222. HX_RESULT CHXKeepAliveImp::scheduleCallback()
  223. {
  224.     HX_RESULT res = HXR_UNEXPECTED;
  225.     if (!m_bCBPending && m_pSched)
  226.     {
  227. // Update timeout
  228. m_lastTime.tv_sec += m_timeoutMS / 1000;
  229. m_lastTime.tv_usec += (m_timeoutMS % 1000) * 1000;
  230. m_cbHandle = m_pSched->AbsoluteEnter(this, m_lastTime);
  231. m_bCBPending = TRUE;
  232. res = HXR_OK;
  233.     }
  234.     return res;
  235. }