Click here to Skip to main content
Click here to Skip to main content

XMLite: simple XML parser.

By , 11 Oct 2004
 

Sample Image - XMLite1.gif

Why XMLite?

In my previous project, I needed some simple XML parser. I worked with Jabber server. Because I had no time I worked with Jabber client library called Jabbercom, a Win32 COM based DLL module. Jabber protocol is based on XML. But that library was not a complete XML parser for my project.

First, it couldn't support Korean text (maybe other languages too) and there is no escape character processing, and no entity encode/decode supports. I had to replace XML parser engine, but I can't use MSXML and Expat, and it had a heavy installation or was hard to use. So I decided to make XMLite. It is not a fully supported XML parser, but it is simple and small, so I hope it helps someone.

Using XMLite

Simply, XMLite has two main data structures, XNode and XAttr. XNode is for XML element node and XAttr is for XML attribute node. XNode has child XNodes and own attributes list XAttrs. If you see my source code, you'll think code is so easy to understand and use. The code is simple.

  1. XML parsing

    XMLite can parse one XML tag node plain text like below. You can check for parsing error. If XNode::Load returns NULL, then simply you can know plain XML text has some error. If you want to know more error information, then go to section 4 - error handling.

    CString sxml;
    sxml = _T("\
    <TAddress desc='book of bro'>\
    <TPerson type='me'><Name>Cho,Kyung Min</Name><Nick>bro</Nick></TPerson>\
    <TPerson type='friend'><Name>Baik,Ji Hoon</Name><Nick>bjh</Nick></TPerson>\
    <TPerson type=friend><Name>Bak,Gun Joo</Name><Nick>dichter</Nick></TPerson>\
    <TInformation count='3'/>\
    </TAddress>");
    
    XNode xml;
    if( xml.Load( sxml ) )
        AfxMessageBox(xml.GetXML());
    else
        AfxMessageBox(_T("error")); // simple parsing error check

    The result is shown in the picture above.

  2. Traveling with parsed XML

    CString sxml;
    sxml = _T("\
    <TAddressBook description=\"book of bro\">\
    <TPerson type='me'><Name>Cho,Kyung Min</Name><Nick>bro</Nick></TPerson>\
    <TPerson type='friend'><Name>Baik,Ji Hoon</Name><Nick>bjh</Nick></TPerson>\
    <TPerson type=friend><Name>Bak,Gun Joo</Name><Nick>dichter</Nick></TPerson>\
    <TInformation count='3'/>\
    </TAddressBook>");
    
    XNode xml;
    xml.Load( sxml );
    
    int i;
    XNodes childs;
    
    // DOM tree Childs Traveling 
    // method 1: Using GetChildCount() and GetChild()
    // Result: Person, Person, Person, Information
    LPXNode child;
    for( i = 0 ; i < xml.GetChildCount(); i++)
    {
        child = xml.GetChild(i);
        AfxMessageBox( child->GetXML() );
    }
    
    // method 2: LPXNodes and GetChilds() ( same result with method 1 )
    // Result: Person, Person, Person, Information
    childs = xml.GetChilds();
    for( i = 0 ; i < childs.size(); i++)
        AfxMessageBox( childs[i]->GetXML() );
    
    // method 3: Selected Childs with GetChilds()
    // Result: Person, Person, Person
    childs = xml.GetChilds(_T("Person") );
    for( i = 0 ; i < childs.size(); i++)
    {
        AfxMessageBox( childs[i]->GetXML() );
    }
    
    // method 4: Get Attribute Vaule of Child
    // Result: 3
    AfxMessageBox( xml.GetChildAttrValue( _T("Information"), _T("count") ) );
    int count = XStr2Int( xml.GetChildAttrValue( _T("Information"), 
                                                         _T("count") ));
    ASSERT( count == 3 );
  3. DOM Modify

    CString sxml;
    sxml = _T("\
    <TAddressBook description=\"book of bro\">\
    <TPerson type='me'><Name>Cho,Kyung Min</Name><Nick>bro</Nick></TPerson>\
    <TPerson type='friend'><Name>Baik,Ji Hoon</Name><Nick>bjh</Nick></TPerson>\
    <TPerson type=friend><Name>Bak,Gun Joo</Name><Nick>dichter</Nick></TPerson>\
    <TInformation count='3'/>\
    </TAddressBook>");
    
    XNode xml;
    xml.Load( sxml );
    
    // remove 'bro node'
    LPXNode child_bro = xml.GetChild(0);
    xml.RemoveChild( child_bro );
    
    AfxMessageBox(xml.GetXML());

    Result: there is no bro node.

    <TAddressBook description='book of bro' >
        <TPerson type='friend' >
            <Name>Baik,Ji Hoon</Name>
            <Nick>bjh</Nick>
        </TPerson>
        <TPerson type='friend' >
            <Name>Bak,Gun Joo</Name>
            <Nick>dichter</Nick>
        </TPerson>
        <TInformation count='3' />
    </TAddressBook>
  4. Error Handling

    XMLite has xml error handling, but it's not complete.

    CString serror_xml;
    serror_xml = _T("<XML>\
    <NoCloseTag type='me'><Name>Cho,Kyung Min</Name><Nick>bro</Nick>\
    </XML>");
        
    XNode xml;
    PARSEINFO pi;
    xml.Load( serror_xml, &pi );
    
    if( pi.erorr_occur ) // is error_occur?
    {
        //result: '<NoCloseTag> ... </XML>' is not wel-formed.
        AfxMessageBox( pi.error_string );
        AfxMessageBox( xml.GetXML()  );
    }
    else
        ASSERT(FALSE);

    then, result is

    '<NoCloseTag> ... </XML>' is not wel-formed.
  5. Entity and Escape Char Test

    XMLite has escape process. But this updated version has no escape for general case. But still you can use escape character with parsing value.

    pi.escape_value = '\\' 

    Upper case, escape character is:

    '\'
    like C/C++. And it has entity processing. Entity table is like shown below:
    Special character Special meaning Entity encoding
    > Begins a tag. >
    < Ends a tag. <
    " Quotation mark. "
    ' Apostrophe. &apos;
    & Ampersand. &
    CString sxml;
    sxml = _T("<XML>\
    <TAG attr='<\\'asdf\\\">'>asdf</TAG>\
    </XML>");
    
    XNode xml;
    PARSEINFO pi;
    pi.escape_value = '\\'  // using escape character on value string
    xml.Load( sxml, &pi );
    
    AfxMessageBox( xml.GetXML()  );

    Result:

    <XML>
        <TAG attr='<&apos;asdf">' >asdf</TAG>
    </XML>
  6. Configurate Parse and Display

    XMLite can trim when parsing and add newline for display (default).

    CString sxml;
    sxml = _T("<XML>\
    <TAG attr='   qwer      '>        asdf       </TAG>\
    </XML>");
    
    XNode xml;
    
    xml.Load( sxml );
    AfxMessageBox( xml.GetXML()  );
    
    PARSEINFO pi;
    pi.trim_value = true; // trim value
    xml.Load( sxml, &pi );
    AfxMessageBox( xml.GetXML()  );
    
    DISP_OPT opt;
    opt.newline = false; // no new line
    
    AfxMessageBox( xml.GetXML( &opt )  );

    Result:

    first,

    <XML>
        <TAG attr='   qwer      ' >        asdf       </TAG>
    </XML>

    after,

    <XML><TAG attr='qwer' >asdf</TAG></XML>
  7. Custom entity table

    XMLite can customize entity table for special parsing and display. You can define new entity table for customized parsing.

    CString sxml;
    sxml = _T("<XML>\
    <TAG attr='&asdf>'></TAG>\
    </XML>");
    
    // customized entity list
    static const XENTITY entity_table[] = {
            { '<', _T("<"), 4 } ,
            { '&', _T("&"), 5 }
        };
    XENTITYS entitys( (LPXENTITY)entity_table, 2 ) ;
    
    PARSEINFO pi;
    XNode xml;
    pi.entity_value = true; // force to use custom entitys
    pi.entitys = &entitys;
    xml.Load( sxml, &pi );
    AfxMessageBox( xml.GetXML()  );
    
    DISP_OPT opt;
    opt.entitys = &entitys;
    opt.reference_value = true; // force to use custom entitys
    
    AfxMessageBox( xml.GetXML( &opt )  );
  8. branch copy (deep-copy)

    Now XMLite can copy branch.

    void CTestXMLiteDlg::OnButton9() 
    {
        // TODO: Add your control notification handler code here
        CString sxml;
        sxml = _T("<addressbook description=""\"</span>book"" />\
    <person type=""me"" /><NAME>Cho,Kyung Min</NAME><NICK>bro</NICK></person />\
    <person type=""friend"" /><NAME>Baik,Ji Hoon</NAME><NICK>bjh</NICK></person />\
    <person type=""friend"" /><NAME>Bak,Gun Joo</NAME><NICK>dichter</NICK></person />\
    <information count=""3"" />\
    </addressbook />");
    
        XNode xml;
        xml.Load( sxml );
        AfxMessageBox( xml.GetXML()  );
    
            // copy one level node with its own attributes
        XNode xml2;
        xml2.CopyNode( &xml );
        AfxMessageBox( xml2.GetXML()  );
           
            // copy branch of other node (deep-copy)
        XNode xml3;
        //same with xml3 = xml;
        xml3.CopyBranch( &xml );
        AfxMessageBox( xml3.GetXML()  );
    
            // append copied-branch of other node as my child
        XNode xml4;
        //same with xml3.CopyBranch( &xml );
        xml4.AppendChildBranch( &xml );
        AfxMessageBox( xml4.GetXML()  );
    }
    
  9. Parsing xml with PI/CDATA/Comment

    Now XMLite can parse with PI/CDATA/Comment. But Still XMLite doesn't support PI's encoding function.

    void CTestXMLiteDlg::OnButton10() 
    {
     // TODO: Add your control notification handler code here
     CString sxml;
     sxml = _T("<?xml version='1.0'?>\
    \
    <![CDATA[some data]]>\
    <a>\
     <![CDATA[some data]]>\
     value\
     <![CDATA[some data2]]>\
    </a><!-- comment2-->");
     
     XNode xml;
     xml.Load( sxml );
    
     AfxMessageBox( xml.GetXML()  );
    }
  10. Parsing un-welformed xml (like HTML)

    Now XMLite can parse un-welformed xml like HTML with 'force_parse' attribute

    void CTestXMLiteDlg::OnButton11() 
    {
     // TODO: Add your control notification handler code here
     CString sXML = "\
    < html>\
      < body width='100'>\
         Some times I got say...\
      \
      \
      < p>\
      Thanks\
      < /body>\
    < /html>";
    
     XDoc xml;
    
     PARSEINFO pi;
     pi.force_parse = true;
     if( xml.Load( sXML, &pi ) )
     {
      LPXNode root = xml.GetRoot();
      //root->AppendChild( _T("child"), _T("value") );
      AfxMessageBox( xml.GetXML() );
     }
    
     // you can't not parse without force_parse on un-welformed xml!
     XNode node;
     if( node.Load( sXML ) )
     {
      AfxMessageBox( node.GetXML() );
     } 
    }
  11. Deep-Find

    XMLite's node can search own all children with tag name.

    CString sXML = "\
    <a>\
     
      \
     
      <C/>\
     
      <D/>\
     
      \
    </a>";
    
     XNode node;
     if( node.Load( sXML ) )
     {
      AfxMessageBox( node.GetXML() );
    
      LPXNode found = NULL;
      found = node.Find( _T("D") );
      if( found )
      {
       AfxMessageBox( found->GetXML() );
      }
     }

History

// XMLite : XML Lite Parser Library
// by bro ( Cho,Kyung Min: bro@shinbiro.com ) 2002-10-30
// History.
// 2002-10-29 : First Coded. Parsing XMLElelement and Attributes.
//              get xml parsed string ( looks good )
// 2002-10-30 : Get Node Functions, error handling ( not completed )
// 2002-12-06 : Helper Funtion string to long
// 2002-12-12 : Entity Helper Support
// 2003-04-08 : Close,
// 2003-07-23 : add property escape_value. (now no escape on default)
// 2003-10-24 : bugfix) attribute parsing <TAG \r\n a="1" /> is now ok
// 2004-03-05 : add branch copy functions

License

Sometimes I get email about license of XMLite. You can use/modify/redistribute XMLite for commercial/noncomercial. But please give me thanks email with your project information.
Then I will be happy and add it to references of XMLite. If you fix or update XMLite then give it to me for all to have. Thanks.

Reference

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Cho, Kyung-min
Software Developer
Korea (Republic Of) Korea (Republic Of)
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralVC2008 version of XMLitemembersaflyer8 Dec '08 - 20:25 
GeneralRe: VC2008 version of XMLitememberCho, Kyung-min12 Dec '08 - 17:58 
GeneralRe: VC2008 version of XMLitememberHumanchao26 Sep '10 - 16:35 
Questionthanks for xmllite !! another question :how to change the attribute value in a xml string ,and how to add a child to a xml string??memberlw840117 Sep '08 - 16:05 
AnswerRe: thanks for xmllite !! another question :how to change the attribute value in a xml string ,and how to add a child to a xml string?? [modified]memberCho, Kyung-min17 Sep '08 - 17:26 
GeneralRe: thanks for xmllite !! another question :how to change the attribute value in a xml string ,and how to add a child to a xml string??memberlw840118 Sep '08 - 16:45 
General[Message Removed]membernompel20 Sep '08 - 14:56 
GeneralRe: thanks for xmllite !! another question :how to change the attribute value in a xml string ,and how to add a child to a xml string??memberCho, Kyung-min20 Sep '08 - 20:37 
QuestionCan xmlite Load xml files ??such as temp.xml??memberlw840126 Aug '08 - 21:21 
AnswerRe: Can xmlite Load xml files ??such as temp.xml??memberCho, Kyung-min27 Aug '08 - 13:09 
GeneralThanks for using xmlitememberCho, Kyung-min30 Jul '08 - 6:47 
GeneralReading XML Data from an URLmemberT.RATHA KRISHNAN15 May '08 - 1:04 
GeneralRe: Reading XML Data from an URLmemberCho, Kyung-min19 May '08 - 13:32 
QuestionHow to read an xml file?memberiyadounove19 Apr '08 - 4:45 
AnswerRe: How to read an xml file?memberCho, Kyung-min19 May '08 - 13:35 
GeneralAnybody used this parser on Mobilememberzoomesh9 Apr '08 - 21:58 
GeneralRe: Anybody used this parser on MobilememberLittleIan30 Jul '08 - 1:32 
GeneralCDATAmemberLittleIan23 Jan '08 - 1:01 
GeneralRe: CDATAmemberCho, Kyung-min19 May '08 - 13:49 
GeneralRe: CDATAmemberLittleIan30 Jul '08 - 1:21 
GeneralVisual Studio 2005memberalex2827313 Dec '07 - 14:00 
GeneralI get errormemberMember 46842762 May '08 - 0:58 
GeneralRe: I get errormemberCho, Kyung-min19 May '08 - 13:50 
GeneralStandard compliantmemberFernando A. Gomez F.30 Oct '07 - 6:54 
GeneralRe: Standard compliantmemberas_sound_as1 Nov '07 - 23:16 
GeneralUnicode versionmemberyossi1328 Aug '07 - 23:40 
GeneralRe: Unicode versionmemberAlexandreN2 Sep '07 - 10:42 
GeneralRe: Unicode versionmembersfdbgulkierwhgoierhso8gihloiwghiloe8 Oct '07 - 0:41 
GeneralRe: Unicode versionmemberAlexandreN10 Oct '07 - 20:31 
GeneralRe: Unicode versionmembersfdbgulkierwhgoierhso8gihloiwghiloe10 Oct '07 - 21:43 
GeneralRe: Unicode versionmemberpatelnirajc11 Mar '11 - 6:54 
Generalxmlite failure parsing .docx document.xmlmemberXsummusX26 Aug '07 - 15:48 
Generalhere is updated XMLite for VS2005memberCho, Kyung-min17 Jun '07 - 14:40 
GeneralRe: here is updated XMLite for VS2005memberflippydeflippydebop30 Jul '07 - 21:30 
GeneralRe: here is updated XMLite for VS2005memberKlausi19 Sep '07 - 5:28 
Generalerror tryng to use this projectmemberanarkia19858 Dec '06 - 14:49 
GeneralRe: error tryng to use this projectmemberpmisik25 Apr '07 - 20:42 
QuestionAdd new attribute??membersamoboo6 Nov '06 - 7:50 
AnswerRe: Add new attribute??memberCho, Kyung-min7 Nov '06 - 12:46 
GeneralRe: Add new attribute??membersamoboo8 Nov '06 - 1:02 
GeneralRe: Add new attribute??membersamoboo8 Nov '06 - 3:49 
General[BUGFIX] GetXML() newline fix on Starting CloseTagmemberCho, Kyung-min8 Nov '06 - 18:12 
Generalinsert xml file on xmlmemberCho, Kyung-min5 Nov '06 - 14:58 
GeneralRe: insert xml file on xmlmembersamoboo6 Nov '06 - 0:43 
GeneralRe: insert xml file on xmlmembersamoboo6 Nov '06 - 7:45 
GeneralRe: insert xml file on xml (more general way)memberCho, Kyung-min7 Nov '06 - 12:37 
Generalthanksmember-=Seph=-25 Jul '06 - 17:07 
GeneralAbout GetAttrValue() in Unicode [modifed]memberRainVan20 May '06 - 8:33 
GeneralPossible bugmemberFernando A. Gómez F.15 May '06 - 10:54 
GeneralRe: Possible bugmemberCho, Kyung-min7 Nov '06 - 13:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 11 Oct 2004
Article Copyright 2002 by Cho, Kyung-min
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid