C ++中的动态XML代码生成

时间:2011-04-04 14:29:03

标签: c++ xml code-generation

我想将我自己的类的一些C ++对象转换为XML代码。我想有几个库提供C ++到XML映射,但我想保持库开发简单并制作我自己的东西。

生成XML构建的适当方法是什么?在Java中,有一些注释可用于动态生成XML。也许是模板机制?

到目前为止,我正在使用TinyXML。我真的很喜欢使用它。

以下是我想要生成的示例:

std::string XMLBuilder::buildThreadInformation(vector<threadinfo> threadinfos) {
TiXmlDocument document;
TiXmlDeclaration *declaration = new TiXmlDeclaration("1.0", "", "");

TiXmlElement *messageWrapElement = new TiXmlElement("message");
TiXmlElement *threadsElement = new TiXmlElement("threads");
messageWrapElement->LinkEndChild(threadsElement);

std::string numberString;
for (vector<threadinfo>::const_iterator it = threadinfos.begin(); it
        != threadinfos.end(); ++it) {
    TiXmlElement *threadElement = new TiXmlElement("thread");
    threadsElement->LinkEndChild(threadElement);

    TiXmlElement *threadNumberElement = new TiXmlElement("number");
    threadElement->LinkEndChild(threadNumberElement);

    numberString = boost::lexical_cast<std::string>((*it).thread_number);
    TiXmlText *threadNumber = new TiXmlText(numberString.c_str());
    threadNumberElement->LinkEndChild(threadNumber);

    TiXmlElement *threadNameElement = new TiXmlElement("name");
    threadElement->LinkEndChild(threadNameElement);

    TiXmlText *threadName = new TiXmlText((*it).name.c_str());
    threadNameElement->LinkEndChild(threadName);
}

document.LinkEndChild(declaration);
document.LinkEndChild(messageWrapElement);

TiXmlPrinter printer;
document.Accept(&printer);

std::string result = printer.CStr();

return result;

}

类threadinfo由int number和std :: string name组成。

1 个答案:

答案 0 :(得分:0)

RapidXML也很容易使用,可以为你创建动态xml。