rendstats.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 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. #ifndef __RENDSTATS_H__
  36. #define __RENDSTATS_H__
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "hxtypes.h"
  41. #include "hxresult.h"
  42. #include "hxcom.h"
  43. #include "hxcomm.h"
  44. #include "hxbuffer.h"
  45. #include "hxmon.h"
  46. #include "statinfo.h"
  47. /****************************************************************************
  48.  *  CRendererStatisticsDisplay
  49.  */
  50. class CRendererStatisticsDisplay
  51. {
  52. public:
  53.     typedef class CFormatEntry
  54.     {
  55.     public:
  56. /*
  57.  *  Costructor/Destructor
  58.  */
  59. CFormatEntry(void)
  60. : m_pEntry(NULL)
  61. , m_pName(NULL)
  62. , m_ulType(REG_TYPE_UNKNOWN)
  63. , m_bIsDirty(FALSE)
  64. , m_lVal(0)
  65. , m_pVal(NULL)
  66. {
  67.     ;
  68. }
  69. ~CFormatEntry()
  70. {
  71.     HX_DELETE(m_pEntry);
  72.     HX_VECTOR_DELETE(m_pName);
  73.     HX_VECTOR_DELETE(m_pVal);
  74. }
  75. /*
  76.  *  Main Interface
  77.  */
  78. HX_RESULT Prime(IHXRegistry* pRegistry, 
  79. char* pName, 
  80. UINT32 ulType);
  81. void Hide(void)
  82. {
  83.     HX_DELETE(m_pEntry);
  84.     m_bIsDirty = FALSE;
  85. }
  86. void Kill(void)
  87. {
  88.     HX_DELETE(m_pEntry);
  89.     HX_VECTOR_DELETE(m_pName);
  90.     HX_VECTOR_DELETE(m_pVal);
  91.     m_lVal = 0;
  92.     m_ulType = REG_TYPE_UNKNOWN;
  93.     m_bIsDirty = FALSE;
  94. }
  95. HX_RESULT Update(INT32 lVal)
  96. {
  97.     HX_RESULT retVal = HXR_UNEXPECTED;
  98.     if (m_ulType == REG_TYPE_NUMBER)
  99.     {
  100. m_lVal = lVal;
  101. m_bIsDirty = TRUE;
  102.     }
  103.     return retVal;
  104. }
  105. HX_RESULT Update(const char* pVal)
  106. {
  107.     HX_RESULT retVal = HXR_UNEXPECTED;
  108.     if (m_ulType == REG_TYPE_STRING)
  109.     {
  110. retVal = HXR_INVALID_PARAMETER;
  111. HX_VECTOR_DELETE(m_pVal);
  112. if (pVal)
  113. {
  114.     m_pVal = new char [strlen(pVal) + 1];
  115.     retVal = HXR_OUTOFMEMORY;
  116.     if (m_pVal)
  117.     {
  118. strcpy(m_pVal, pVal); /* Flawfinder: ignore */
  119. m_bIsDirty = TRUE;
  120.     }
  121. }
  122.     }
  123.     return retVal;
  124. }
  125. HX_RESULT Refresh(IHXRegistry* pRegistry)
  126. {
  127.     HX_RESULT retVal = HXR_OK;
  128.     if (m_bIsDirty)
  129.     {
  130. if (!m_pEntry)
  131. {
  132.     retVal = Prime(pRegistry, 
  133.    m_pName,
  134.    m_ulType);
  135. }
  136. if (SUCCEEDED(retVal))
  137. {
  138.     HX_ASSERT(m_pEntry);
  139.     switch (m_ulType)
  140.     {
  141.     case REG_TYPE_NUMBER:
  142. retVal = m_pEntry->SetInt(m_lVal);
  143. break;
  144.     case REG_TYPE_STRING:
  145. if (m_pVal)
  146. {
  147.     retVal = m_pEntry->SetStr(m_pVal);
  148. }
  149. break;
  150.     default:
  151. retVal = HXR_UNEXPECTED;
  152. break;
  153.     }
  154. }  
  155. if (SUCCEEDED(retVal))
  156. {
  157.     m_bIsDirty = FALSE;
  158. }
  159.     }
  160.     return retVal;
  161. }
  162. const char* GetStatName(void);
  163. void MarkAsDirty(void) { m_bIsDirty = TRUE; }
  164. BOOL IsDisplayed(void) { return (m_pEntry != NULL); }
  165. BOOL IsPrimed(void) { return (m_pName != NULL); }
  166. BOOL IsDirty(void)  { return m_bIsDirty; }
  167. CStatisticEntry* m_pEntry;
  168. char*  m_pName;
  169. UINT32  m_ulType;
  170. BOOL  m_bIsDirty;
  171. INT32  m_lVal;
  172. char*  m_pVal;
  173.     };
  174.     /*
  175.      * Costructor/Destructor
  176.      */
  177.     CRendererStatisticsDisplay(IHXRegistry* pRegistry, UINT32 ulNumEntries);
  178.     ~CRendererStatisticsDisplay();
  179.     /*
  180.      * Main Interface
  181.      */
  182.     HX_RESULT MoveToRegID(ULONG32 ulRegID);
  183.     ULONG32 GetRegID(void)  { return m_ulRegistryID; }
  184.     HX_RESULT RefreshEntries(UINT32 ulRegistryID);
  185.     HX_RESULT HideEntry(UINT32 ulEntryID);
  186.     HX_RESULT DestroyEntry(UINT32 ulEntryID);
  187.     HX_RESULT ReprimeEntries(void);
  188.     HX_RESULT PrimeEntry(UINT32 ulEntryID,
  189.  const char* pzName, 
  190.  UINT32 ulType);
  191.     HX_RESULT UpdateEntry(UINT32 ulEntryID, INT32 lVal);
  192.     HX_RESULT UpdateEntry(UINT32 ulEntryID, const char* pVal);
  193.     HX_RESULT MarkEntryAsDirty(UINT32 ulEntryID);
  194.     BOOL IsEntryDirty(UINT32 ulEntryID);
  195. private:
  196.     CFormatEntry* m_pFormatEntryArray;
  197.     UINT32 m_ulFormatEntryArraySize;
  198.     IHXRegistry* m_pRegistry;
  199.     UINT32 m_ulRegistryID;
  200. };
  201. #endif // __RENDSTATS_H__