0

我有一个表示如下的结构:(示例)

struct struct3
{
   struct structchild4
   {  
      float child5;
   } child6;
   unsigned int child7;
};

我希望它在 XML 中表示如下:

<tag1= "struct3">
        <name>struct3</name>
        <input_type>byte</input_type>
        <method></method>
        <tag_ref = "structchild4">
            <name>child6</name>
        </tag_ref>
        <tag2= "child7">
            <name>child7</name>
            <len>4</len>
            <value> </value>
        </tag2>
    </tag1>

我遵循的方法是将其转换为 gccXML 格式,然后使用 Visual C++ 对其进行解析。我使用 xerces-c DOM 解析器。

有人可以建议如何去做吗?谢谢!

4

1 回答 1

1

更好的方法是反射,BoostLib 有一些可以使用。你做这样的事情:

for( Attribute::Iterator it = reflectiveObject.getAttributeList().begin();
     it != reflectiveObject.getAttributeList().end();
     ++it )
{
    XML.createNode( it.getAttributeName() );
}

//然后方法相同。应该有一个上层迭代器递归遍历类型,如果类型具有子类或子结构,则标识 XML 并为它们运行相同的代码。

没有反射会更无聊,你应该为它创建 Formater 和 Parser,比如

if( dynamic_cast< DesirecClass* >( obj ) != NULL ){
    XML.createNode( typeid( obj ).name() );
}
// Hard Code (terrible treatment) for each attribute, etc...

您还可以搜索一些解构方法。

于 2012-07-24T02:35:53.267 回答