• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            woomsg

            在路上

            gloox代碼分析2 - xml parser模塊

            gloox自己實現(xiàn)了xml的解析模塊,沒有用到第三方的庫(tinyXML,expat )
            主要涉及的文件:
            tag.h (tag.cpp)
            taghandler.h
            parser.h (parser.cpp)

            1. Tag一個Tag就是一個XML元素
            例如:
            a.
            <book kind='computer'>
              <store id='23'/>
              <author>
                qiang
              </author>
            </book>
            b. <book id='32'/>
            c. <book>name1</book>

            首先介紹一個概念: escape-string,何為escape-string?
            在escape-string中:
             '&'轉換成&amp;, '<'轉換成&lt;, '>'轉換成&gt;.
            編碼表如下:
            //////////////////////////////////////////////////////////////////////////
            // 編碼表 (中間的空格去掉,這里只是為了方便顯示):
            // -------------------------------------------------------
            // | 字符     | 十進制 | 十六進制 | THML字符集 | Unicode |
            // -------------------------------------------------------
            // | " 雙引號 | & # 34;  | & # x22;   | "          | \u0022  |
            // -------------------------------------------------------
            // | ' 單引號 | & # 39;  | & # x27;   | & apos;     | \u0027  |
            // -------------------------------------------------------
            // | & 與     | & # 38;  | & # x26;   | & amp;      | \u0026  |
            // -------------------------------------------------------
            // | < 小于號 | & # 60;  | & # x3C;   | & lt;       | \u003c  |
            // -------------------------------------------------------
            // | > 大于好 | & # 62;  | & # x3E;   | & gt;       | \u003e  |
            // -------------------------------------------------------
            gloox - APIs
            Tag::escape()    功能: string -> escape-string
            Tag::relax()  功能: escape-string -> string

            主要成員變量:
            attributes - 所有屬性的list
            name - 節(jié)點名字
            cdata - 節(jié)點數(shù)據(jù),例如<name>cdata</name>中的cdata
            children - 所有的子節(jié)點
            parent - 父節(jié)點指針,如果沒有則為空
            bool incoming - 表示構造xml node的時候傳入的字符串是否是escape-string,如果是,需要在構造的時候調(diào)用relex把escape-string轉換成string.

            主要方法:
            也就是一些針對name\children\attributes\cdata進行增加\刪除\修改的方法
            xml()方法返回該節(jié)點的一個完整的xml數(shù)據(jù)流
            findTag和findTagList提供對XPath的支持.

            例如:
            屏幕將輸出:
            <book kind='computer'><store id='23'/><author>qiang</author></book>
             1#include <iostream>
             2#include "tag.h"
             3
             4#pragma comment( lib, "gloox.lib" )
             5using namespace gloox;
             6
             7// <book kind='computer'>
             8//   <store id='23'/>
             9//   <author>
            10//     qiang
            11//   </author>
            12// </book>
            13//
            14
            15
            16int main( int argc, char* argv[] ) {
            17  Tag* tag_book = new Tag( "book");
            18  tag_book->addAttribute( "kind""computer" );
            19  
            20  Tag* tag_store = new Tag( "store" );
            21  tag_store->addAttribute( "id""32" );
            22
            23  Tag* tag_author = new Tag( "author""qiang" );
            24
            25  tag_book->addChild( tag_store );
            26  tag_book->addChild( tag_author );
            27
            28  std::cout<<tag_book->xml()<<std::endl;
            29  return 0;
            30}

            2. TagHandler是一個接收parser解析完成的tag的接口,繼承該類,則可以接收parser解析的tag對象事件.
            只有一個接口
            virtual void handleTag( Tag *tag ) = 0 - 接收解析完的tag

            3. Parser一個XML解析器
            提供的接口非常簡潔,只需要一個TagHandler來構造,該handler接收并處理解析的tag,另外只有一個feed接口來填充數(shù)據(jù).
            要注意的是feed接口填充的數(shù)據(jù)必須是一個格式正確的xml,否則無法解析,也就是說parser不會判斷xml的格式。

            例如:
            下面的例子中對feed來說分開填充和一次性填充數(shù)據(jù)的效果是一樣的,也就是scenario1和scenario2的效果是一樣的,這也剛好和上層應用中TCP 流處理的方式統(tǒng)一,對于接收到服務器端的XML流,無論是否完整,只需要直接feed就可以了。handlerTag方法將收到兩個
            xml tag解析完成的事件,分別來自scenario1和scenario2,屏幕將輸出:
            <book kind='computer'><store id='23'/><author>qiang</author></book> 
            <book kind='computer'><store id='23'/><author>qiang</author></book>
             1#include <iostream>
             2#include "tag.h"
             3#include "parser.h"
             4
             5#pragma comment( lib, "gloox.lib" )
             6using namespace gloox;
             7
             8// <book kind='computer'>
             9//   <store id='23'/>
            10//   <author>
            11//     qiang
            12//   </author>
            13// </book>
            14//
            15//
            16
            17class TagHandlerImpl : public TagHandler {
            18public:
            19    ~TagHandlerImpl() {}
            20
            21    void run() {
            22      Parser* parser = new Parser(this);
            23      // scenario1
            24      std::string data = "<book kind='computer'><store id='23'/><author>qiang</author></book>";
            25      parser->feed( data );
            26
            27      // scenario2
            28      std::string data1 = "<book kind='computer";
            29      std::string data2 = "'><store id='23'/><auth";
            30      std::string data3 = "or>qiang</author></book>";
            31      parser->feed( data1 );
            32      parser->feed( data2 );
            33      parser->feed( data3 );
            34    }

            35
            36    void handleTag( Tag *tag ) {
            37      std::cout<<tag->xml()<<std::endl;
            38    }

            39}
            ;
            40
            41int main( int argc, char* argv[] ) {
            42  TagHandlerImpl* taghandlerImpl = new TagHandlerImpl();
            43  taghandlerImpl->run();
            44
            45  return 0;
            46}


            posted on 2008-10-18 14:51 ysong.lee 閱讀(2591) 評論(0)  編輯 收藏 引用

            久久久精品人妻一区二区三区蜜桃| 久久精品国产亚洲AV无码娇色| 久久亚洲av无码精品浪潮| 久久久久久久久久免免费精品| 伊人精品久久久久7777| 亚洲精品乱码久久久久久| 国产999精品久久久久久| 亚洲女久久久噜噜噜熟女| 色综合久久久久| 少妇人妻88久久中文字幕| 久久国产视屏| 精品999久久久久久中文字幕| 中文字幕精品无码久久久久久3D日动漫 | 久久久久18| 狠狠色丁香婷综合久久| 久久久久久久久久久久久久| 青青草原综合久久| 久久九九精品99国产精品| 久久精品亚洲AV久久久无码| 国内精品欧美久久精品| 99精品国产在热久久无毒不卡| 欧美亚洲国产精品久久| 久久久久久极精品久久久| 大蕉久久伊人中文字幕| 国产精品久久久久无码av| 色欲久久久天天天综合网| 少妇熟女久久综合网色欲| 日批日出水久久亚洲精品tv| 久久免费美女视频| www.久久99| 精品999久久久久久中文字幕| 久久精品99久久香蕉国产色戒| 性色欲网站人妻丰满中文久久不卡| 一97日本道伊人久久综合影院| 久久久久久无码国产精品中文字幕| 国产综合精品久久亚洲| 国产精品一区二区久久精品无码 | 久久AV高潮AV无码AV| 偷偷做久久久久网站| 久久久久国产精品嫩草影院| 午夜精品久久久久久久|