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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rpsmplxml.cpp,v 1.2.32.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: rpsmplxml.cpp,v 1.2.32.1 2004/07/19 21:04:07 hubbe Exp $
  50. #include <ctype.h>
  51. //#include "hlxclib/stdio.h"
  52. #include "hlxclib/string.h"
  53. #include "rpsmplxml.h"
  54. //----------------------------------------------------------- Constants
  55. //----------------------------------------------------------- Types
  56. //----------------------------------------------------------- Functions
  57. //----------------------------------------------------------- Methods
  58. //---------------------------------------------------- CRPSimpleXMLTag
  59. CRPSimpleXMLTag::CRPSimpleXMLTag()
  60. {
  61.     Init();
  62. }
  63. void CRPSimpleXMLTag::Init()
  64. {
  65.     m_type = RPXMLTag_Plain;
  66.     m_pName = 0;
  67.     m_bNeedClose = TRUE;
  68.     m_numAttrs = 0;
  69. }
  70. CRPSimpleXMLAttr *CRPSimpleXMLTag::FindAttribute( const char *pAttrName )
  71. {
  72.     CRPSimpleXMLAttr *pCurAttr = m_attrs;
  73.     for( INT32 i=0; i<m_numAttrs; i++, pCurAttr++ )
  74.     {
  75. if( !strcmp( pAttrName, pCurAttr->m_pName ) )
  76.     return pCurAttr;
  77.     }
  78.     return 0;
  79. }
  80. //---------------------------------------------------- CRPSimpleXMLParser
  81. CRPSimpleXMLParser::CRPSimpleXMLParser( char *pData ) :
  82.     m_pData( pData ),
  83.     m_pCurPtr( pData )
  84. {
  85. }
  86. CRPSimpleXMLParser::~CRPSimpleXMLParser()
  87. {
  88. }
  89. RPXMLParseResult CRPSimpleXMLParser::NextTag( CRPSimpleXMLTag& tag, BOOL bStrict )
  90. {
  91.     // Initialize the tag to an empty state
  92.     tag.Init();
  93.     // Look for opening bracket
  94.     while( *m_pCurPtr && *m_pCurPtr != '<' )
  95. m_pCurPtr++;
  96.     // Check for end of file
  97.     if( !*m_pCurPtr )
  98. return RPXMLResult_EOF;
  99.     // Skip past opening bracket
  100.     m_pCurPtr++;
  101.     // Skip white space
  102.     while( isspace( *m_pCurPtr ) )
  103. m_pCurPtr++;
  104.     // Check for end tag condition
  105.     if( *m_pCurPtr == '/' )
  106.     {
  107. tag.m_type = RPXMLTag_End;
  108. tag.m_bNeedClose = FALSE;
  109. m_pCurPtr++;
  110.     }
  111.     // Get tag name
  112.     tag.m_pName = m_pCurPtr;
  113.     while( _IsValidNameChar( *m_pCurPtr ) )
  114. m_pCurPtr++;
  115.     char *pNameEnd = m_pCurPtr;
  116.     // Look for attributes
  117.     while( *m_pCurPtr != '>' )
  118.     {
  119. // Check for error
  120. if( !*m_pCurPtr )
  121.     return RPXMLResult_Error;
  122. // check for an id
  123. if( isalpha( *m_pCurPtr ) || *m_pCurPtr == '_' )
  124. {
  125.     // found an id.  Check bound condiditons for number of attributes
  126.     HX_ASSERT( tag.m_numAttrs < kMaxXMLAttributes );
  127.     if( tag.m_numAttrs >= kMaxXMLAttributes )
  128. return RPXMLResult_Error;
  129.     // Parse the name
  130.     tag.m_attrs[ tag.m_numAttrs ].m_pName = m_pCurPtr;
  131.     while( _IsValidNameChar( *m_pCurPtr ) )
  132. m_pCurPtr++;
  133.     // Check for error
  134.     if( !*m_pCurPtr )
  135. return RPXMLResult_Error;
  136.     char *pIDEnd = m_pCurPtr;
  137.     // skip the equal sign
  138.     while( *m_pCurPtr != '=' )
  139.     {
  140. if( !*m_pCurPtr )
  141.     return RPXMLResult_Error;
  142. m_pCurPtr++;
  143.     }
  144.     m_pCurPtr++;
  145.     // Get the value
  146.     while( isspace( *m_pCurPtr ) )
  147. m_pCurPtr++;
  148.     // Check for error
  149.     if( !*m_pCurPtr )
  150. return RPXMLResult_Error;
  151.     // save quote type
  152.     char delim = 0;
  153.     if( *m_pCurPtr == '"' || *m_pCurPtr == ''' )
  154.     {
  155. delim = *m_pCurPtr;
  156. m_pCurPtr++;
  157.     }
  158.     if( bStrict && !delim )
  159. return RPXMLResult_Error;
  160.     tag.m_attrs[ tag.m_numAttrs++ ].m_pValue = m_pCurPtr;
  161.     while( delim && *m_pCurPtr != delim ||
  162.    !delim && !isspace(*m_pCurPtr) && *m_pCurPtr != '/')
  163.     {
  164. // Check for error
  165. if( !*m_pCurPtr )
  166.     return RPXMLResult_Error;
  167. m_pCurPtr++;
  168.     }
  169.     char *pValueEnd = m_pCurPtr;
  170.     m_pCurPtr++;
  171.     // If we ran into a forward slash either report an error, or note it
  172.     if( *pValueEnd == '/' )
  173.     {
  174. if( bStrict )
  175.     return RPXMLResult_Error;
  176. else
  177.     tag.m_bNeedClose = FALSE;
  178.     }
  179.     // Fix up ends of strings
  180.     *pIDEnd = '';
  181.     *pValueEnd = '';
  182. }
  183. else
  184.     m_pCurPtr++;
  185.     }
  186.     // Check for an end marker
  187.     if( *( m_pCurPtr - 1 ) == '/' )
  188.     {
  189. tag.m_bNeedClose = FALSE;
  190.     }
  191.     m_pCurPtr++;
  192.     // Fix up ends of strings
  193.     *pNameEnd = '';
  194.     return RPXMLResult_Tag;
  195. }