statinfo.h
上传用户: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-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 _STATINFO_H_
  36. #define _STATINFO_H_
  37. #define REG_TYPE_STRING     100
  38. #define REG_TYPE_NUMBER     101
  39. #define REG_TYPE_COMPOSITE  102
  40. #define REG_TYPE_UNKNOWN    200
  41. class CStatisticEntry
  42. {
  43. public:
  44.     IHXRegistry* m_pRegistry; 
  45.     UINT32 m_ulRegistryID;
  46.     UINT32 m_ulType;
  47.     BOOL m_bAddKey;
  48.    
  49. CStatisticEntry(IHXRegistry*     /*IN*/  pRegistry,
  50. char*     /*IN*/  pszRegKey,
  51. UINT32     /*IN*/  ulType);
  52. ~CStatisticEntry(void);
  53.     HX_RESULT SetStr(char* /*IN*/  pszValue);
  54.     HX_RESULT SetInt(INT32 /*IN*/ lValue);
  55.     
  56.     INT32 GetInt(void);
  57.     char* GetStr(void);
  58.     
  59. };
  60. class STATS
  61. {
  62. public:
  63.     STATS(IHXRegistry*   /*IN*/ pRegistry,
  64.   UINT32     /*IN*/ ulRegistryID);
  65.     virtual ~STATS();
  66.     virtual void Reset(void);
  67.     
  68.     //Assignment operator. Copies only the values, will not change
  69.     //the parent, registry or anything else.
  70.     virtual STATS& operator=(const STATS& rhs );    
  71.     HX_RESULT m_lastError;
  72.     IHXRegistry* m_pRegistry;
  73.     UINT32 m_ulRegistryID;
  74.     BOOL m_bInitialized;
  75.    
  76.     CStatisticEntry* m_pNormal;
  77.     CStatisticEntry* m_pRecovered;
  78.     CStatisticEntry* m_pReceived;
  79.     CStatisticEntry* m_pOutOfOrder;
  80.     CStatisticEntry* m_pLost;
  81.     CStatisticEntry* m_pLate;
  82.     CStatisticEntry* m_pDuplicate;
  83.     CStatisticEntry* m_pTotal;
  84.     CStatisticEntry* m_pLost30;
  85.     CStatisticEntry* m_pTotal30;
  86.     CStatisticEntry* m_pResendRequested;
  87.     CStatisticEntry* m_pResendReceived;
  88.     CStatisticEntry* m_pClipBandwidth;
  89.     CStatisticEntry* m_pAvgBandwidth;
  90.     CStatisticEntry* m_pCurBandwidth;
  91.     CStatisticEntry* m_pHighLatency;
  92.     CStatisticEntry* m_pLowLatency;
  93.     CStatisticEntry* m_pAvgLatency;
  94. };
  95. class PLAYER_STATS : public STATS
  96. {
  97. public:
  98.     PLAYER_STATS(IHXRegistry*    /*IN*/  pRegistry,
  99.  UINT32     /*IN*/  ulRegistryID);
  100.     virtual ~PLAYER_STATS();
  101.     virtual void Reset(void);
  102.     //Assignment operator. Copies only the values, will not change
  103.     //the parent, registry or anything else.
  104.     virtual PLAYER_STATS& operator=(const PLAYER_STATS& rhs );
  105.     CStatisticEntry* m_pBufferingMode;
  106. };
  107. class SOURCE_STATS : public STATS
  108. {
  109. public:
  110.     SOURCE_STATS(IHXRegistry*    /*IN*/  pRegistry,
  111.  UINT32     /*IN*/  ulRegistryID);
  112.     virtual ~SOURCE_STATS();
  113.     virtual void Reset(void);
  114.     //Assignment operator. Copies only the values, will not change
  115.     //the parent, registry or anything else.
  116.     virtual SOURCE_STATS& operator=(const SOURCE_STATS& rhs );
  117.     CStatisticEntry* m_pTransportMode;
  118.     CStatisticEntry* m_pBufferingMode;
  119.     CStatisticEntry* m_pSourceName;
  120.     CStatisticEntry* m_pServerInfo;
  121.     CStatisticEntry* m_pProtocolVersion;
  122.     CStatisticEntry* m_pProtocol;
  123.     
  124.     CStatisticEntry* m_pTitle;
  125.     CStatisticEntry* m_pAuthor;
  126.     CStatisticEntry* m_pCopyright;
  127.     CStatisticEntry* m_pAbstract;
  128.     CStatisticEntry* m_pDescription;
  129.     CStatisticEntry* m_pKeywords;
  130. };
  131. class STREAM_STATS : public STATS
  132. {
  133. public:
  134.     STREAM_STATS(IHXRegistry*    /*IN*/  pRegistry,
  135.  UINT32     /*IN*/  ulRegistryID);
  136.     virtual ~STREAM_STATS();
  137.     virtual void Reset(void);
  138.     //Assignment operator. Copies only the values, will not change
  139.     //the parent, registry or anything else.
  140.     virtual STREAM_STATS& operator=(const STREAM_STATS& rhs );
  141.     CStatisticEntry* m_pRenderer;
  142.     CStatisticEntry* m_pMimeType;
  143. };
  144. BOOL SetIntIfNecessary(CStatisticEntry* pEntry, INT32 lValue);
  145. #endif // _STATINFO_H_