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

Symbian

开发平台:

Visual C++

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