rpsmplxml.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 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 RealNetworks Community Source License 
  8.  * Version 1.0 (the "License"). You may not use this file except in 
  9.  * compliance with the License executed by both you and RealNetworks.  You 
  10.  * may obtain a copy of the License at  
  11.  * http://www.helixcommunity.org/content/rcsl.  You may also obtain a 
  12.  * copy of the License by contacting RealNetworks directly.  Please see the 
  13.  * License for the rights, obligations and limitations governing use of the 
  14.  * contents of the file. 
  15.  *  
  16.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  17.  * developer of the Original Code and owns the copyrights in the portions 
  18.  * it created. 
  19.  *  
  20.  * This file, and the files included with this file, is distributed and made 
  21.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  22.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  23.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  24.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.  
  25.  * 
  26.  * Technology Compatibility Kit Test Suite(s) Location: 
  27.  *    http://www.helixcommunity.org/content/tck 
  28.  * 
  29.  * Contributor(s): 
  30.  *  
  31.  * ***** END LICENSE BLOCK ***** */ 
  32. //$Id: rpsmplxml.cpp,v 1.2 2003/05/01 16:15:40 sblachowicz Exp $
  33. #include <ctype.h>
  34. //#include "hlxclib/stdio.h"
  35. #include "hlxclib/string.h"
  36. #include "rpsmplxml.h"
  37. //----------------------------------------------------------- Constants
  38. //----------------------------------------------------------- Types
  39. //----------------------------------------------------------- Functions
  40. //----------------------------------------------------------- Methods
  41. //---------------------------------------------------- CRPSimpleXMLTag
  42. CRPSimpleXMLTag::CRPSimpleXMLTag()
  43. {
  44.     Init();
  45. }
  46. void CRPSimpleXMLTag::Init()
  47. {
  48.     m_type = RPXMLTag_Plain;
  49.     m_pName = 0;
  50.     m_bNeedClose = TRUE;
  51.     m_numAttrs = 0;
  52. }
  53. CRPSimpleXMLAttr *CRPSimpleXMLTag::FindAttribute( const char *pAttrName )
  54. {
  55.     CRPSimpleXMLAttr *pCurAttr = m_attrs;
  56.     for( INT32 i=0; i<m_numAttrs; i++, pCurAttr++ )
  57.     {
  58. if( !strcmp( pAttrName, pCurAttr->m_pName ) )
  59.     return pCurAttr;
  60.     }
  61.     return 0;
  62. }
  63. //---------------------------------------------------- CRPSimpleXMLParser
  64. CRPSimpleXMLParser::CRPSimpleXMLParser( char *pData ) :
  65.     m_pData( pData ),
  66.     m_pCurPtr( pData )
  67. {
  68. }
  69. CRPSimpleXMLParser::~CRPSimpleXMLParser()
  70. {
  71. }
  72. RPXMLParseResult CRPSimpleXMLParser::NextTag( CRPSimpleXMLTag& tag, BOOL bStrict )
  73. {
  74.     // Initialize the tag to an empty state
  75.     tag.Init();
  76.     // Look for opening bracket
  77.     while( *m_pCurPtr && *m_pCurPtr != '<' )
  78. m_pCurPtr++;
  79.     // Check for end of file
  80.     if( !*m_pCurPtr )
  81. return RPXMLResult_EOF;
  82.     // Skip past opening bracket
  83.     m_pCurPtr++;
  84.     // Skip white space
  85.     while( isspace( *m_pCurPtr ) )
  86. m_pCurPtr++;
  87.     // Check for end tag condition
  88.     if( *m_pCurPtr == '/' )
  89.     {
  90. tag.m_type = RPXMLTag_End;
  91. tag.m_bNeedClose = FALSE;
  92. m_pCurPtr++;
  93.     }
  94.     // Get tag name
  95.     tag.m_pName = m_pCurPtr;
  96.     while( _IsValidNameChar( *m_pCurPtr ) )
  97. m_pCurPtr++;
  98.     char *pNameEnd = m_pCurPtr;
  99.     // Look for attributes
  100.     while( *m_pCurPtr != '>' )
  101.     {
  102. // Check for error
  103. if( !*m_pCurPtr )
  104.     return RPXMLResult_Error;
  105. // check for an id
  106. if( isalpha( *m_pCurPtr ) || *m_pCurPtr == '_' )
  107. {
  108.     // found an id.  Check bound condiditons for number of attributes
  109.     HX_ASSERT( tag.m_numAttrs < kMaxXMLAttributes );
  110.     if( tag.m_numAttrs >= kMaxXMLAttributes )
  111. return RPXMLResult_Error;
  112.     // Parse the name
  113.     tag.m_attrs[ tag.m_numAttrs ].m_pName = m_pCurPtr;
  114.     while( _IsValidNameChar( *m_pCurPtr ) )
  115. m_pCurPtr++;
  116.     // Check for error
  117.     if( !*m_pCurPtr )
  118. return RPXMLResult_Error;
  119.     char *pIDEnd = m_pCurPtr;
  120.     // skip the equal sign
  121.     while( *m_pCurPtr != '=' )
  122.     {
  123. if( !*m_pCurPtr )
  124.     return RPXMLResult_Error;
  125. m_pCurPtr++;
  126.     }
  127.     m_pCurPtr++;
  128.     // Get the value
  129.     while( isspace( *m_pCurPtr ) )
  130. m_pCurPtr++;
  131.     // Check for error
  132.     if( !*m_pCurPtr )
  133. return RPXMLResult_Error;
  134.     // save quote type
  135.     char delim = 0;
  136.     if( *m_pCurPtr == '"' || *m_pCurPtr == ''' )
  137.     {
  138. delim = *m_pCurPtr;
  139. m_pCurPtr++;
  140.     }
  141.     if( bStrict && !delim )
  142. return RPXMLResult_Error;
  143.     tag.m_attrs[ tag.m_numAttrs++ ].m_pValue = m_pCurPtr;
  144.     while( delim && *m_pCurPtr != delim ||
  145.    !delim && !isspace(*m_pCurPtr) && *m_pCurPtr != '/')
  146.     {
  147. // Check for error
  148. if( !*m_pCurPtr )
  149.     return RPXMLResult_Error;
  150. m_pCurPtr++;
  151.     }
  152.     char *pValueEnd = m_pCurPtr;
  153.     m_pCurPtr++;
  154.     // If we ran into a forward slash either report an error, or note it
  155.     if( *pValueEnd == '/' )
  156.     {
  157. if( bStrict )
  158.     return RPXMLResult_Error;
  159. else
  160.     tag.m_bNeedClose = FALSE;
  161.     }
  162.     // Fix up ends of strings
  163.     *pIDEnd = '';
  164.     *pValueEnd = '';
  165. }
  166. else
  167.     m_pCurPtr++;
  168.     }
  169.     // Check for an end marker
  170.     if( *( m_pCurPtr - 1 ) == '/' )
  171.     {
  172. tag.m_bNeedClose = FALSE;
  173.     }
  174.     m_pCurPtr++;
  175.     // Fix up ends of strings
  176.     *pNameEnd = '';
  177.     return RPXMLResult_Tag;
  178. }