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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: xmlconfig.h,v 1.3.36.1 2004/07/19 21:04:07 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. //   $Id: xmlconfig.h,v 1.3.36.1 2004/07/19 21:04:07 hubbe Exp $
  50. #ifndef _XMLCONFIG_H_
  51. #define _XMLCONFIG_H_
  52. #include "hxslist.h"
  53. #include "hxstack.h"
  54. #include "dict.h"
  55. #include "hxcfg.h"
  56. #include "hxmon.h"
  57. #include "hxcomm.h"
  58. #include "hxstrutl.h"
  59. class XMLTag;
  60. class Process;
  61. class ServerRegistry;
  62. class HXRegistry;
  63. class CBigByteQueue;
  64. #define AL_TAGIFY 1
  65. typedef enum
  66. {
  67.     CfgList,
  68.     CfgVar
  69. } XMLConfigType;
  70. typedef enum
  71. {
  72.     CfgVarInt,
  73.     CfgVarString,
  74.     CfgVarBool
  75. } XMLConfigVarType;
  76. struct XMLConfigAlias
  77. {
  78.     const char* from;
  79.     const char* to;
  80.     const char* attr1;
  81.     const char* attr2;
  82.     const char* attr3;
  83.     UINT32 flags;
  84. };
  85. class XMLConfigString
  86. {
  87.     char* m_pData;
  88.     int len;
  89.  
  90. public:
  91.     XMLConfigString(XMLConfigString& Old)
  92.     {
  93. m_pData = new char[256];
  94. len = Old.len;
  95.         memcpy(m_pData, Old.m_pData, (len + 1 <= 256 ? len + 1 : 256)); /* Flawfinder: ignore */
  96.     }
  97.     XMLConfigString()
  98.     {
  99. m_pData = new char[256];
  100. len = 0;
  101. m_pData[0] = 0;
  102.     }
  103.     ~XMLConfigString()
  104.     {
  105. delete[] m_pData;
  106.     }
  107.     const char* CharStar()
  108.     {
  109. return m_pData;
  110.     }
  111.     const char* Top()
  112.     {
  113. int i = len;
  114. while (i && m_pData[i] != '.')
  115. {
  116.     i--;
  117. }
  118. if (m_pData[i] == '.')
  119. {
  120.     i++;
  121. }
  122. return &(m_pData[i]);
  123.     }
  124.     void AddLevel(const char* pNew)
  125.     {
  126. if (len)
  127. {
  128.     len += SafeSprintf(&(m_pData[len]), 256 - len,
  129. ".%s", pNew);
  130. }
  131. else
  132. {
  133.     len = SafeSprintf(m_pData, 256,
  134. "%s", pNew);
  135. }
  136.     }
  137.     void RemoveLevel()
  138.     {
  139. int i = len;
  140. while (i > 0 && m_pData[i] != '.')
  141. {
  142.     i--;
  143. }
  144. m_pData[i] = 0;
  145. len = i;
  146.     }   
  147. };
  148. class XMLPropInfo
  149. {
  150. public:
  151.     char* m_pName;
  152.     HXPropType m_Type;
  153.     XMLPropInfo()
  154. : m_pName(0)
  155.     {
  156.     }
  157.     ~XMLPropInfo()
  158.     {
  159. if (m_pName)
  160. {
  161.     delete[] m_pName;
  162. }
  163.     }
  164. };
  165. class XMLConfig : public IHXRegConfig,
  166.                   public IHXActivePropUserResponse
  167. {
  168. public:
  169.     XMLConfig(IHXRegistry2* pRegistry, IHXErrorMessages* pMessages, const char* szserverversion,
  170.                      UINT32 dwMajor, UINT32 dwMinor);
  171.     virtual ~XMLConfig();
  172.     /*
  173.      * Com stuff.
  174.      */
  175.     STDMETHOD(QueryInterface) (REFIID riid, void** ppvObj);
  176.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  177.     STDMETHOD_(ULONG32,Release) (THIS);
  178.     /*
  179.      * IHXRegConfig stuff.
  180.      */
  181.     STDMETHOD(WriteKey) (THIS_
  182. const char* pKeyName);
  183.     /************************************************************************
  184.     * Called with status result on completion of set request.
  185.     */
  186.     STDMETHOD(SetActiveIntDone)   (THIS_
  187.     HX_RESULT res,
  188.     const char* pName,
  189.     UINT32 ul,
  190.     IHXBuffer* pInfo[],
  191.     UINT32 ulNumInfo);
  192.     STDMETHOD(SetActiveStrDone)   (THIS_
  193.     HX_RESULT res,
  194.     const char* pName,
  195.     IHXBuffer* pBuffer,
  196.     IHXBuffer* pInfo[],
  197.     UINT32 ulNumInfo);
  198.     STDMETHOD(SetActiveBufDone)   (THIS_
  199.     HX_RESULT res,
  200.     const char* pName,
  201.     IHXBuffer* pBuffer,
  202.     IHXBuffer* pInfo[],
  203.     UINT32 ulNumInfo);
  204.     STDMETHOD(DeleteActivePropDone) (THIS_
  205.     HX_RESULT res,
  206.     const char* pName,
  207.     IHXBuffer* pInfo[],
  208.     UINT32 ulNumInfo);
  209.     /*
  210.      * Uber reconfigure the server.
  211.      */
  212.     HX_RESULT Reconfigure(IHXReconfigServerResponse* pResp);
  213.     /*
  214.      * Reconfigure from file.
  215.      */
  216.     HX_RESULT Reconfigure(const char* pFilename);
  217.     /*
  218.      * Reconfigure from registry.
  219.      */
  220.     HX_RESULT ReconfigureFromReg(const char* pKeyname);
  221.     IHXReconfigServerResponse* m_pReconfigureResponse;
  222.     class XMLConfigListNode;
  223.     class XMLConfigList : public CHXSimpleList
  224.     {
  225.     public:
  226. ~XMLConfigList();
  227. XMLConfigListNode* m_parentnode;
  228. friend class XMLConfig;
  229.     };
  230.     class XMLConfigListNode
  231.     {
  232.     public:
  233. XMLConfigListNode() : m_pList(NULL), m_name(NULL), m_value(NULL),
  234.                       m_vserver(-1) {};
  235. XMLConfigList* m_pList;
  236. char* m_name;
  237. char* m_value;
  238. XMLConfigType m_type;
  239. UINT32 m_num;
  240. XMLConfigListNode* m_parent;
  241. UINT32 m_int;
  242. BOOL   m_bool;
  243. INT32  m_vserver;
  244. char* get_registry_name(INT32 vserver = -1);
  245. ~XMLConfigListNode();
  246. friend class XMLConfig;
  247.     };
  248.     CHXStack m_pListStack;
  249.     XMLConfigList* m_pList;
  250.     HX_RESULT Write(const char* name, const char* filename);
  251.     HX_RESULT Read(char* filename, char* pServRegKey, BOOL bIncludedFile = FALSE);
  252. //    STDMETHOD(Read) (THIS_ char* filename, char* pServRegKey, BOOL bIncludedFile = FALSE);
  253.     HX_RESULT WriteToFile(const char* pKeyName, const char* pFilename);
  254.     void _AddPropsToList(CHXSimpleList* pList, const char* pRoot, IHXRegistry2* pReg);
  255.     void _RemovePropFromList(CHXSimpleList* pList, const char* pName);
  256.     char* _GetPropValueString(const char* pName, IHXRegistry2* pReg);
  257.     void _CleanList(CHXSimpleList* pList);
  258.     void AppendPropsToFile(FILE* fp, XMLConfigString level,
  259. CHXSimpleList* pList, int indent_per_level,
  260. IHXRegistry2* hxreg,
  261. const char* pBase);
  262.     void _AppendPropToFile(FILE* fp, XMLConfigString level,
  263.      int indent_per_level,
  264.      IHXRegistry2* hxreg,
  265.      const char* pBase);
  266.     void _IndentFile(FILE* fp, int indent_per_level,
  267.  XMLConfigString level,
  268.  const char* pBase);
  269.     int _PropExists(XMLConfigString* p, IHXRegistry2* preg);
  270.     HX_RESULT _ResetProp(XMLConfigString*, const char*,
  271. IHXRegistry2*);
  272.     void MaybeSendReconfigResponse();
  273.     void _HandlePropsRemovedFromFile(
  274. XMLConfigString*, CHXSimpleList*,
  275. IHXRegistry2*);
  276.     IHXBuffer* _GetDefaultValString(
  277. const char*, IHXRegistry2*);
  278.     int _GetDefaultValInt(
  279. const char*, INT32*, IHXRegistry2*);
  280. protected:
  281. //Default Constructor
  282.     XMLConfig();
  283.     HX_RESULT init(IHXRegistry2* pRegistry, IHXErrorMessages* pMessages, const char* szserverversion,
  284.                    UINT32 dwMajor, UINT32 dwMinor);
  285. //Properties
  286.     char* m_filename;
  287. private:
  288.     INT32 m_lRefCount;
  289.     IHXRegistry2* m_pRegistry;
  290.     IHXErrorMessages* m_pMessages;
  291.     char* m_szServerversion;
  292.     UINT32 m_ulMajor;
  293.     UINT32 m_ulMinor;
  294.     UINT32 m_ActiveSetsOutstanding;
  295.     Dict m_alias_dict;
  296.     INT32 m_vserver;
  297.     
  298.     HX_RESULT DumpConfig(const char* name, int indent, FILE* outfile,
  299.  IHXRegistry2* hxreg);
  300.     BOOL Expand(XMLTag*, CBigByteQueue* queue);
  301.     void ExpandAttribute(XMLTag*, const char* attribute);
  302.     void DumpList(XMLConfigList* list, int indent);
  303.     void StuffRegistry(XMLConfigList* list);
  304.     XMLConfigVarType GetVarType(XMLConfigListNode* node);
  305. };
  306. #endif