rapidxml庫(kù)的使用示例

最近需要在c++引擎中使用xml解析及生成功能震捣,對(duì)選擇xml庫(kù)的過程記錄一下

xml benchmark

  • 參考 XML Benchmark Results 10.10.2009 的結(jié)果 初步選擇使用RapidXML
  • 查看RapidXML自己的benchmark數(shù)據(jù)土浸,性能接近strlen

使用示例

參考各種數(shù)據(jù)對(duì)比台丛,決定使用RapidXML,解析及生成的示例代碼如下

#include <iostream>
#include <string>
#include <vector>
#include <sstream> // for stringstream

#include "rapidxml.hpp"
#include "rapidxml_print.hpp"

using namespace std;

void parse() {
    string s = 
    "<xml4nlp>"
        "<doc scribbleList=\"\" nid=\"001\" scribble=\"0\" length=\"5\">"
            "<para id=\"0\" offset=\"0\">"
                "<sent id=\"0\" cont=\"apple\">"
                    "<word id=\"0\" cont=\"apple\" pos=\"n\" ne=\"O\" head=\"2\" relation=\"ATT\"/>"
                "</sent>"
            "</para>"
        "</doc>"
    "</xml4nlp>";

    vector<char> xml(s.begin(), s.end());
    xml.emplace_back('\0');
    rapidxml::xml_document<> xml_doc;
    try {
        xml_doc.parse<rapidxml::parse_default>(xml.data());

        auto dump_attribute = [](rapidxml::xml_node<> * node) {
            for (rapidxml::xml_attribute<> * attribute = node->first_attribute(); attribute; attribute = attribute->next_attribute()) {
                std::cout << "    attribute name=" << attribute->name() << " value=" << attribute->value() << endl;
            }
        };
        rapidxml::xml_node<>* xml4nlp = xml_doc.first_node("xml4nlp");
        for (rapidxml::xml_node<> * doc = xml4nlp->first_node("doc"); doc; doc = doc->next_sibling()) {
            for (rapidxml::xml_node<>* para = doc->first_node("para"); para; para = para->next_sibling()) {
                for (rapidxml::xml_node<>* sent = para->first_node("sent"); sent; sent = sent->next_sibling()) {
                    for (rapidxml::xml_node<>* word = sent->first_node("word"); word; word = word->next_sibling()) {
                        dump_attribute(word);
                    }
                }
            }
        }
    }
    catch (rapidxml::parse_error e) {
        std::cout << e.what() << std::endl;
    }
}

void generate() {
    // 1.DOM
    rapidxml::xml_document<> doc;

    // 2.node_declaration
    rapidxml::xml_node<>* declaration = doc.allocate_node(rapidxml::node_declaration);
    declaration->append_attribute(doc.allocate_attribute("version", "1.0"));
    declaration->append_attribute(doc.allocate_attribute("encoding", "utf-8"));
    doc.append_node(declaration);

    // 3.node_element
    rapidxml::xml_node<>* root = doc.allocate_node(rapidxml::node_element, "xml4nlp");
    doc.append_node(root);

    // 4.node_comment
    rapidxml::xml_node<>* comment = doc.allocate_node(rapidxml::node_comment, 0, "This is a node for comment!");
    root->append_node(comment);

    rapidxml::xml_node<>* para = doc.allocate_node(rapidxml::node_element, "para");
    root->append_node(para);

    // 5.set attribute
    rapidxml::xml_node<>* sent = doc.allocate_node(rapidxml::node_element, "sent");
    para->append_node(sent);
    sent->append_attribute(doc.allocate_attribute("id", doc.allocate_string("0")));
    sent->append_attribute(doc.allocate_attribute("cont", doc.allocate_string("apple")));

    stringstream output;
    output << doc;
    cout << output.str() << endl;
}

int main(int argc, char** argv) {
    parse();
    //generate();
    return 0;
}

Reference

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末溃列,一起剝皮案震驚了整個(gè)濱河市食零,隨后出現(xiàn)的幾起案子辜羊,更是在濱河造成了極大的恐慌笋除,老刑警劉巖斜友,帶你破解...
    沈念sama閱讀 206,378評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異垃它,居然都是意外死亡鲜屏,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門国拇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來洛史,“玉大人,你說我怎么就攤上這事酱吝『绶疲” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵掉瞳,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我浪漠,道長(zhǎng)陕习,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評(píng)論 1 279
  • 正文 為了忘掉前任址愿,我火速辦了婚禮该镣,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘响谓。我一直安慰自己损合,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評(píng)論 5 371
  • 文/花漫 我一把揭開白布娘纷。 她就那樣靜靜地躺著嫁审,像睡著了一般。 火紅的嫁衣襯著肌膚如雪赖晶。 梳的紋絲不亂的頭發(fā)上律适,一...
    開封第一講書人閱讀 49,036評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音遏插,去河邊找鬼捂贿。 笑死,一個(gè)胖子當(dāng)著我的面吹牛胳嘲,可吹牛的內(nèi)容都是我干的厂僧。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼了牛,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼颜屠!你這毒婦竟也來了辰妙?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤汽纤,失蹤者是張志新(化名)和其女友劉穎上岗,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蕴坪,經(jīng)...
    沈念sama閱讀 43,469評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡肴掷,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了背传。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片呆瞻。...
    茶點(diǎn)故事閱讀 38,059評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖径玖,靈堂內(nèi)的尸體忽然破棺而出痴脾,到底是詐尸還是另有隱情,我是刑警寧澤梳星,帶...
    沈念sama閱讀 33,703評(píng)論 4 323
  • 正文 年R本政府宣布赞赖,位于F島的核電站,受9級(jí)特大地震影響冤灾,放射性物質(zhì)發(fā)生泄漏前域。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評(píng)論 3 307
  • 文/蒙蒙 一韵吨、第九天 我趴在偏房一處隱蔽的房頂上張望匿垄。 院中可真熱鬧,春花似錦归粉、人聲如沸椿疗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)届榄。三九已至,卻和暖如春倔喂,著一層夾襖步出監(jiān)牢的瞬間痒蓬,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工滴劲, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留攻晒,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,501評(píng)論 2 354
  • 正文 我出身青樓班挖,卻偏偏與公主長(zhǎng)得像鲁捏,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容